/* ICS Brand Core Styles */
/* Main stylesheet containing brand variables, typography, and essential base styles */

/* ===========================================
   TYPOGRAPHY - INTER FONT FAMILY
   =========================================== */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--ics-gray-800);
}

/* ===========================================
   ICS BRAND COLOR VARIABLES
   =========================================== */
:root {
    /* Primary Brand Colors */
    --ics-black: #000000;
    --ics-white: #FFFFFF;
    --ics-orange-500: #F97316;
    --ics-orange-600: #EA580C;
    --ics-orange-700: #C2410C;
    --ics-orange-300: #FDBA74;
    --ics-orange-200: #FED7AA;
    
    /* Background Colors */
    --ics-cream: #FFFDF6;
    --ics-yellow-50: #FFFDF6;
    --ics-yellow-100: #FFFBE6;
    --ics-yellow-800: #92400E;
    --ics-yellow-400: #FACC15;
    
    /* Neutral Grays */
    --ics-gray-50: #F9FAFB;
    --ics-gray-100: #F3F4F6;
    --ics-gray-200: #E5E7EB;
    --ics-gray-300: #D1D5DB;
    --ics-gray-400: #9CA3AF;
    --ics-gray-600: #4B5563;
    --ics-gray-700: #374151;
    --ics-gray-800: #1F2937;
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

/* Text Color Utilities */
.text-ics-orange { color: var(--ics-orange-500) !important; }
.text-ics-gray-600 { color: var(--ics-gray-600) !important; }
.text-ics-gray-700 { color: var(--ics-gray-700) !important; }
.text-ics-gray-800 { color: var(--ics-gray-800) !important; }

/* Background Color Utilities */
.bg-ics-orange { background-color: var(--ics-orange-500) !important; }
.bg-ics-gray-50 { background-color: var(--ics-gray-50) !important; }

/* Layout Utilities */
.max-w-6xl {
    max-width: 72rem;
    margin-left: auto;
    margin-right: auto;
}


/* ===========================================
   FOCUS STATES & ACCESSIBILITY
   =========================================== */
.btn:focus,
.nav-link:focus {
    box-shadow: 0 0 0 2px var(--ics-orange-500);
    outline: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--ics-orange-500);
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25);
}

/* ===========================================
   SECTION BACKGROUNDS
   =========================================== */
.hero-section {
    background: linear-gradient(135deg, var(--ics-cream) 0%, #FFFEF9 100%);
}

/* ===========================================
   NAVBAR STYLES
   =========================================== */
.navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.25rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-brand-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.navbar-brand span {
    margin-left: 0.5rem;
}

.navbar-brand:hover {
    color: var(--ics-white) !important;
}

.nav-link-hover:hover {
    color: var(--ics-orange-300) !important;
    transition: color 0.3s ease;
}


/* Mobile navbar adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
        text-align: center;
    }
}

/* ===========================================
   CONTENT DISPLAY STATES
   =========================================== */
.tab-content.d-none {
    display: none !important;
}

.tab-content.active {
    display: block !important;
}

.product-content.d-none {
    display: none !important;
}

.product-content.active {
    display: block !important;
}

/* ===========================================
   ACCORDION OVERRIDES
   =========================================== */
.accordion-button {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--ics-yellow-50);
    color: var(--ics-gray-800);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem var(--ics-orange-500);
    border-color: var(--ics-orange-500);
}

/* ===========================================
   FOOTER STYLES
   =========================================== */
footer a:hover {
    color: var(--ics-white) !important;
    text-decoration: none;
}

/* ===========================================
   FORM ENHANCEMENTS
   =========================================== */
.input-group .btn-ics-cta {
    border-radius: 0 0.375rem 0.375rem 0;
}

/* ===========================================
   BORDER UTILITIES
   =========================================== */
.border-ics-gray-200 {
    border-color: var(--ics-gray-200) !important;
}

/* ===========================================
   HERO SECTION INLINE CSS EXTRACTION
   =========================================== */
.hero-badge-factory {
    background-color: #FFFBE6 !important;
    color: #D97706 !important;
}

.hero-title-main {
    font-size: 3rem;
}

.hero-title-sub {
    font-size: 2.25rem;
    color: #D97706;
}

.hero-bullet-points {
    color: #1F2937;
}

.hero-description-container {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-text {
    color: #374151 !important;
}

.hero-features-container-shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 2rem !important;
}

.hero-feature-icon-circle {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #FFFBE6;
}

.hero-feature-icon-color {
    color: #D97706;
}

.hero-feature-text-color {
    color: #4B5563;
}

.product-image-border {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}