/* ============================================
   TABLE OF CONTENTS
   ============================================ 
   1. Base & Reset Styles
   2. CSS Variables & Theme Colors
   3. Typography & Global Elements
   4. Header & Navigation
   5. Mobile Hamburger Menu
   6. Hero Section
   7. Footer
   8. Kabul Code Lab Credit
   9. Utility Classes
   10. Responsive Media Queries
   ============================================ */

/* ============================================
   1. BASE & RESET STYLES
   ============================================ */

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 0;
    background-color: var(--bg-light);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* ============================================
   2. CSS VARIABLES & THEME COLORS
   ============================================ */

:root {
    /* Brand Colors - 70/20/10 Rule */
    --deep-navy: #0B132B; /* 70% - Primary dark */
    --burgundy-accent: #500E3F; /* 20% - Secondary accent */
    --solar-amber: #FFB703; /* 10% - CTA / Highlights */
    /* Supporting Colors */
    --bg-light: #f5f5f5; /* White smoke background */
    --cyan: #00ccff; /* KCL brand color */
    --cyan-light: #33d6ff; /* KCL hover color */
    --text-gray: #4a5568; /* Body text */
    --border-light: #d0d0d0; /* Light borders */
}

/* ============================================
   3. TYPOGRAPHY & GLOBAL ELEMENTS
   ============================================ */

/* Buttons - Solar Amber (Default Primary) */
.btn-primary,
.btn-cta {
    background-color: var(--solar-amber);
    border-color: var(--solar-amber);
    color: var(--deep-navy);
    font-weight: 600;
}

    .btn-primary:hover {
        background-color: #e6a500;
        border-color: #e6a500;
        color: var(--deep-navy);
    }

/* Background Utilities */
.bg-navy {
    background-color: var(--deep-navy);
    color: white;
}

/* Accent Utilities */
.text-accent {
    color: var(--burgundy-accent);
}

.border-accent {
    border-color: var(--burgundy-accent);
}

/* ============================================
   4. HEADER & NAVIGATION
   ============================================ */

header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: var(--bg-light);
    transition: box-shadow 0.3s ease;
}

    /* Optional shadow when scrolled (requires JS) */
    header.scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    /* Nav Links Hover */
    header .nav-link {
        transition: color 0.2s ease;
    }

        header .nav-link:hover {
            color: var(--solar-amber) !important;
        }

    /* Free Quote Button Hover */
    header .btn {
        transition: all 0.3s ease;
    }

        header .btn:hover {
            border-color: var(--solar-amber) !important;
            background-color: white !important;
            color: var(--deep-navy) !important;
            box-shadow: 0 2px 8px rgba(255, 183, 3, 0.15);
        }
/* Header Logo */
.header-logo {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Mobile Logo Size */
@media (max-width: 768px) {
    .header-logo {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .header-logo {
        height: 35px;
    }
}

/* ============================================
   4B. DROPDOWN MENU STYLES
   ============================================ */

/* Dropdown Container */
.dropdown {
    position: relative;
}

/* Dropdown Toggle */
.dropdown-toggle::after {
    display: none !important; /* Hide Bootstrap's default caret */
}

.dropdown-toggle i {
    transition: transform 0.2s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
    color: var(--solar-amber) !important;
}

/* Dropdown Menu Container */
.dropdown-menu {
    background-color: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    margin-top: 0.5rem !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    min-width: 220px;
}

/* Dropdown Items */
.dropdown-item {
    color: var(--deep-navy);
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

    .dropdown-item:hover {
        background-color: rgba(255, 183, 3, 0.08);
        color: var(--solar-amber);
        padding-left: 1.75rem;
    }

/* Dropdown Divider */
.dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0, 0, 0, 0.05);
}

/* ============================================
   DESKTOP: HOVER TO EXPAND (Fixed Gap Issue)
   ============================================ */

@media (min-width: 992px) {
    /* Add invisible padding to bridge the gap */
    .dropdown-toggle {
        padding-bottom: 1.5rem !important;
        margin-bottom: -1rem !important;
    }

    /* Dropdown menu appears with proper spacing */
    .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
        pointer-events: none;
        margin-top: 0.25rem !important;
    }

    /* Show on hover - stays open while over menu */
    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Keep menu open when cursor is over it */
    .dropdown-menu:hover {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    /* Chevron rotation */
    .dropdown-toggle i {
        font-size: 0.7rem;
        opacity: 0.6;
        transition: transform 0.25s ease, opacity 0.2s ease, color 0.2s ease;
    }

    .dropdown:hover .dropdown-toggle i {
        opacity: 1;
    }
}

/* ============================================
   MOBILE: CLICK TO EXPAND
   ============================================ */

@media (max-width: 991px) {
    .dropdown-toggle {
        padding-bottom: 0.5rem !important;
        margin-bottom: 0 !important;
    }

    .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0 !important;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

        .dropdown-menu.show {
            display: block;
        }

    .dropdown-item {
        color: var(--deep-navy);
        padding: 0.5rem 1rem;
    }

        .dropdown-item:hover {
            background-color: transparent;
            color: var(--solar-amber);
            padding-left: 1.25rem;
        }

    .dropdown-divider {
        display: none;
    }

    /* Chevron on mobile */
    .dropdown-toggle i {
        transition: transform 0.25s ease, color 0.2s ease;
    }

    /* When expanded - chevron rotates */
    .dropdown .dropdown-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
        color: var(--solar-amber) !important;
    }

    /* When collapsed - chevron returns */
    .dropdown .dropdown-toggle[aria-expanded="false"] i {
        transform: rotate(0deg);
        color: var(--deep-navy) !important;
        opacity: 0.6;
    }
}

/* ============================================
   4C. DROPDOWN SUBMENU STYLES (Expandable)
   ============================================ */

/* Submenu Container */
.dropdown-submenu {
    position: relative;
}

.dropdown-toggle-sub {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

/* Submenu Dropdown */
.submenu {
    position: absolute;
    left: 100%;
    top: -0.5rem;
    background-color: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1050;
}

    /* Submenu Items */
    .submenu .dropdown-item {
        padding: 0.6rem 1.5rem;
        white-space: nowrap;
    }

/* ============================================
   DESKTOP: HOVER TO EXPAND SUBMENU
   ============================================ */

@media (min-width: 992px) {
    .dropdown-toggle-sub i {
        margin-left: 0.5rem !important;
        font-size: 0.7rem;
        opacity: 0.6;
        transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    }

    .dropdown-submenu:hover .submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }

    .dropdown-submenu:hover .dropdown-toggle-sub {
        background-color: rgba(255, 183, 3, 0.08);
        color: var(--solar-amber);
    }

        .dropdown-submenu:hover .dropdown-toggle-sub i {
            transform: translateX(3px);
            color: var(--solar-amber);
            opacity: 1 !important;
        }
}

/* ============================================
   MOBILE: CLICK TO EXPAND SUBMENU
   ============================================ */

@media (max-width: 991px) {
    .submenu {
        position: static !important;
        background-color: transparent !important;
        box-shadow: none !important;
        padding-left: 1.5rem !important;
        margin-top: 0 !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none;
        border: none !important;
        pointer-events: auto !important;
        list-style: none;
    }

        .submenu.show {
            display: block !important;
        }

    .dropdown-submenu .dropdown-toggle-sub {
        padding: 0.5rem 1rem !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        color: var(--deep-navy) !important;
        font-weight: 500 !important;
        font-size: 0.95rem !important;
        width: auto !important;
    }

        /* Chevron - right next to text, NOT far right */
        .dropdown-submenu .dropdown-toggle-sub i {
            margin-left: 0.5rem !important;
            font-size: 0.7rem !important;
            opacity: 0.6 !important;
            transition: transform 0.25s ease, color 0.2s ease !important;
            display: inline-block !important;
        }

    .submenu .dropdown-item {
        padding: 0.4rem 1.5rem !important;
        font-size: 0.9rem !important;
        white-space: normal !important;
        display: block !important;
        width: 100% !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        color: var(--deep-navy) !important;
        font-weight: 500 !important;
    }

        .submenu .dropdown-item:hover {
            color: var(--solar-amber) !important;
            background-color: transparent !important;
            padding-left: 1.75rem !important;
        }

    /* Expanded state - chevron rotates */
    .dropdown-submenu .dropdown-toggle-sub[aria-expanded="true"] i {
        transform: rotate(90deg) !important;
        color: var(--solar-amber) !important;
        opacity: 1 !important;
    }

    /* Collapsed state */
    .dropdown-submenu .dropdown-toggle-sub[aria-expanded="false"] i {
        transform: rotate(0deg) !important;
    }
}


/* ============================================
   5. MOBILE HAMBURGER MENU
   ============================================ */

.navbar-toggler {
    border: 2px solid var(--deep-navy) !important;
    border-radius: 8px;
    padding: 0.25rem 0.5rem;
    transition: border-color 0.2s ease;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(11, 19, 43, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.25) !important;
    outline: none;
}

.navbar-toggler:hover {
    border-color: var(--solar-amber) !important;
}

/* ============================================
   6. HERO SECTION
   ============================================ */

.hero-section {
    padding: 2.5rem 0 4.5rem;
    min-height: 62vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-gray);
    font-weight: 400;
    letter-spacing: 0.3px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 20px;
}
.hero-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 520px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 2rem;
    font-size: 0.95rem;
    color: var(--deep-navy);
    font-weight: 500;
    opacity: 0.85;
}
    .hero-trust span {
        display: inline-flex;
        align-items: center;
    }

    .hero-trust i {
        color: var(--solar-amber);
        font-size: 0.95rem;
    }
/* Hero Buttons */
.btn-hero-primary {
    background-color: var(--solar-amber);
    color: var(--deep-navy);
    border: 2px solid var(--solar-amber);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .btn-hero-primary:hover {
        background-color: #e6a500;
        border-color: #e6a500;
        color: var(--deep-navy);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255, 183, 3, 0.25);
    }

.btn-hero-secondary {
    background-color: transparent;
    color: var(--deep-navy);
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

    .btn-hero-secondary:hover {
        border-color: var(--solar-amber);
        background-color: white;
        color: var(--deep-navy);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    }
.btn-hero-primary,
.btn-hero-secondary {
    font-size: 0.95rem;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
}

/* ============================================
   6B. ABOUT PAGE
   ============================================ */

/* Main section spacing */
.about-hero-section {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
}

.about-why-section,
.about-cert-section,
.about-stats-section {
    padding: 5rem 0;
}

/* Section backgrounds */
.about-hero-section {
    background: var(--bg-light);
}

.about-why-section {
    background: #ffffff;
}

.about-cert-section {
    background: var(--bg-light);
}

.about-stats-section {
    background: #ffffff;
}

/* Shared headings */
.about-section-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-section-subtitle {
    max-width: 760px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ============================================
   ABOUT HERO
   ============================================ */

.about-hero-image-wrap {
    position: relative;
}

.about-hero-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.10);
    display: block;
}

.about-hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1.2;
    letter-spacing: -0.4px;
    margin: 0 0 1.1rem;
}

.about-hero-text {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 0.8rem;
    max-width: 580px;
}

.about-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.2rem;
    margin: 1.4rem 0;
}

    .about-trust-list span {
        display: inline-flex;
        align-items: center;
        font-size: 0.96rem;
        font-weight: 600;
        color: var(--deep-navy);
    }

    .about-trust-list i {
        color: var(--solar-amber);
        font-size: 0.95rem;
    }

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

/* Hero Buttons */
.btn-about-primary,
.btn-about-secondary {
    border-radius: 8px;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 0.8rem 1.6rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-about-primary {
    background-color: var(--solar-amber);
    color: var(--deep-navy);
    border: 2px solid var(--solar-amber);
}

    .btn-about-primary:hover {
        background-color: #e6a500;
        border-color: #e6a500;
        color: var(--deep-navy);
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(255, 183, 3, 0.24);
    }

.btn-about-secondary {
    background-color: transparent;
    color: var(--deep-navy);
    border: 2px solid var(--border-light);
}

    .btn-about-secondary:hover {
        background-color: #ffffff;
        border-color: var(--solar-amber);
        color: var(--deep-navy);
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
    }

/* ============================================
   WHY CHOOSE US
   ============================================ */

.about-feature-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 2rem 1.4rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

    .about-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
        border-color: var(--solar-amber);
    }

.about-feature-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 1.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 183, 3, 0.12);
    color: var(--solar-amber);
    font-size: 1.35rem;
}

.about-feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.75rem;
}

.about-feature-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.97rem;
    line-height: 1.7;
}

/* ============================================
   CERTIFICATIONS / TRUST
   ============================================ */

.about-cert-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 2rem 1.4rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

    .about-cert-card:hover {
        transform: translateY(-5px);
        border-color: var(--solar-amber);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    }

.about-cert-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--deep-navy);
    color: var(--solar-amber);
    font-size: 1.3rem;
}

.about-cert-card h3 {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.75rem;
}

.about-cert-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.96rem;
    line-height: 1.7;
}

/* ============================================
   STATS
   ============================================ */

.about-stat-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 2rem 1.5rem;
    height: 100%;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

    .about-stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 34px rgba(0, 0, 0, 0.07);
    }

.about-stat-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 183, 3, 0.12);
    color: var(--solar-amber);
    font-size: 1.5rem;
}

.about-stat-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--deep-navy);
    margin-bottom: 0.75rem;
}

.about-stat-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.98rem;
    line-height: 1.7;
}
.about-feature-card,
.about-stat-card {
    border: 1px solid rgba(0, 0, 0, 0.06);
}
/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1199.98px) {
    .about-hero-title {
        font-size: 2.8rem;
    }

    .about-section-title {
        font-size: 2.35rem;
    }
}

@media (max-width: 991.98px) {
    .about-hero-section,
    .about-why-section,
    .about-cert-section,
    .about-stats-section {
        padding: 4rem 0;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-section-title {
        font-size: 2.15rem;
    }

    .about-hero-image {
        max-height: 420px;
    }

    .about-hero-text {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .about-hero-section,
    .about-why-section,
    .about-cert-section,
    .about-stats-section {
        padding: 3rem 0;
    }

    .about-hero-title {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .about-section-title {
        font-size: 1.9rem;
    }

    .about-section-subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }

    .about-hero-image {
        max-height: 320px;
        border-radius: 18px;
    }

    .about-hero-text {
        font-size: 1rem;
    }

    .about-trust-list {
        flex-direction: column;
        gap: 0.8rem;
    }

    .about-hero-actions {
        flex-direction: column;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
    }

    .about-feature-card,
    .about-cert-card,
    .about-stat-card {
        padding: 1.5rem 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .about-hero-title {
        font-size: 1.85rem;
    }

    .about-section-title {
        font-size: 1.7rem;
    }

    .about-feature-card h3,
    .about-cert-card h3,
    .about-stat-card h3 {
        font-size: 1.05rem;
    }
}

/* ============================================
   7. PRICING PACKAGES SECTION
   ============================================ */

.packages-section {
    padding: 5rem 0;
    background-color: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* Package Cards */
.package-card.mockup-style {
    background: #f3f3f3;
    border: 1.5px solid #ea930f;
    border-radius: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .package-card.mockup-style:hover {
        transform: translateY(-6px);
        box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
    }

/* Top corner sale ribbon */
.sale-corner {
    position: absolute;
    top: 0;
    left: 0;
    width: 92px;
    height: 82px;
    background: #ea930f;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    z-index: 2;
}

    /* ONLY place text here */
    .sale-corner::before {
        content: "SALE";
        position: absolute;
        top: 18px;
        left: 2px;
        color: #fff;
        font-weight: 900;
        font-size: 0.95rem;
        letter-spacing: 1.5px;
        transform: rotate(-45deg);
    }

/* Top area */
.package-top {
    padding: 1.75rem 1.5rem 0.75rem;
    text-align: center;
}

.package-icon {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: #ea930f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

.package-header {
    margin: 0;
}

.package-title {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    margin-bottom: 0.15rem;
}

.package-size {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f2c46;
    margin-bottom: 0;
}

/* Old elements hidden if still present anywhere */
.quality-badge,
.package-subtitle,
.sale-badge,
.package-card.featured {
    display: none;
}

/* Price bar */
.package-price-bar {
    width: 100%;
    background: #1f2c46;
    color: #fff;
    text-align: center;
    font-size: 2.35rem;
    font-weight: 700;
    line-height: 1;
    padding: 1rem 1rem;
    margin: 0.75rem 0 1.25rem;
}

    .package-price-bar .currency {
        font-size: 0.95em;
        vertical-align: baseline;
    }

    .package-price-bar .asterisk {
        font-size: 0.75em;
        vertical-align: super;
        font-weight: 700;
    }

/* Features */
.package-features {
    list-style: none;
    padding: 0 2rem;
    margin: 0;
    flex-grow: 1;
}

    .package-features li {
        position: relative;
        padding: 0.55rem 0 0.55rem 1.25rem;
        color: #000;
        font-size: 1rem;
        font-weight: 500;
        border-bottom: none;
        display: block;
    }

        .package-features li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 1.05rem;
            width: 9px;
            height: 9px;
            background: #ea930f;
            border-radius: 50%;
        }

        .package-features li i {
            display: none;
        }

/* Footer */
.package-footer {
    margin-top: auto;
    padding: 1.5rem 1.5rem 1.9rem;
    background: rgba(255, 255, 255, 0.18);
}

.btn-package {
    background: #ea930f;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 0.9rem 1.7rem;
    font-weight: 700;
    font-size: 1rem;
    min-width: 230px;
    text-align: center;
    box-shadow: none;
    transition: all 0.25s ease;
}

    .btn-package:hover {
        background: #d88308;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(234, 147, 15, 0.22);
    }

/* Disclaimer */
.price-disclaimer {
    color: var(--text-gray);
    font-size: 0.85rem;
}

    .price-disclaimer a {
        color: var(--deep-navy);
        font-weight: 600;
        text-decoration: underline;
    }

        .price-disclaimer a:hover {
            color: var(--cyan);
        }

/* Responsive */
@media (max-width: 1199px) {
    .package-title {
        font-size: 1.65rem;
    }

    .package-price-bar {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .packages-section {
        padding: 4rem 0;
    }

    .package-card.mockup-style {
        min-height: 100%;
    }

    .package-title {
        font-size: 1.55rem;
    }

    .package-price-bar {
        font-size: 1.9rem;
        padding: 0.95rem 1rem;
    }

    .package-features {
        padding: 0 1.5rem;
    }

    .btn-package {
        min-width: 210px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .packages-section {
        padding: 3rem 0;
    }

    .package-top {
        padding: 1.5rem 1.2rem 0.6rem;
    }

    .package-icon {
        width: 74px;
        height: 74px;
        font-size: 1.75rem;
        margin-bottom: 0.9rem;
    }

    .package-title {
        font-size: 1.45rem;
    }

    .package-size {
        font-size: 1.05rem;
    }

    .package-price-bar {
        font-size: 1.8rem;
        margin: 0.75rem 0 1rem;
    }

    .package-features {
        padding: 0 1.35rem;
    }

        .package-features li {
            font-size: 0.97rem;
            padding: 0.5rem 0 0.5rem 1.15rem;
        }

    .package-footer {
        padding: 1.25rem 1rem 1.6rem;
    }

    .btn-package {
        min-width: 100%;
        width: 100%;
        padding: 0.85rem 1.2rem;
    }
}

@media (max-width: 480px) {
    .package-card.mockup-style {
        border-radius: 12px;
    }

    .sale-corner {
        width: 82px;
        height: 72px;
    }

    .package-top {
        padding: 1.35rem 1rem 0.5rem;
    }

    .package-icon {
        width: 68px;
        height: 68px;
        font-size: 1.6rem;
    }

    .package-title {
        font-size: 1.3rem;
    }

    .package-size {
        font-size: 1rem;
    }

    .package-price-bar {
        font-size: 1.65rem;
        padding: 0.85rem 0.75rem;
    }

    .package-features {
        padding: 0 1.1rem;
    }

        .package-features li {
            font-size: 0.93rem;
        }

    .package-footer {
        padding: 1.1rem 0.9rem 1.35rem;
    }

    .btn-package {
        font-size: 0.92rem;
    }
}

/* ============================================
   7B. RECENT INSTALLATIONS CAROUSEL
   ============================================ */

.installations-section {
    position: relative;
    padding: 5rem 0 7rem;
    background-color: var(--bg-light);
    overflow: hidden;
}

.installations-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--deep-navy);
    margin: 0 auto;
    text-align: center;
    max-width: 720px;
}

.installations-carousel {
    position: relative;
}

.installations-stage {
    position: relative;
    height: 540px;
    overflow: visible;
}

.installations-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.installation-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30%;
    min-width: 260px;
    max-width: 360px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.82);
    transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
}

.installation-card {
    border-radius: 22px;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid rgba(10, 25, 74, 0.08);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.installation-slide.is-active .installation-card {
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18), 0 0 0 6px rgba(255, 255, 255, 0.9);
}
.installation-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Center slide */
.installation-slide.is-active {
    opacity: 1;
    z-index: 3;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1.1);
    filter: blur(0);
}

/* Side slides */
.installation-slide.is-prev {
    opacity: 0.7;
    z-index: 2;
    transform: translate(-138%, -50%) scale(0.9);
    filter: blur(1.5px) saturate(0.9);
}

.installation-slide.is-next {
    opacity: 0.7;
    z-index: 2;
    transform: translate(38%, -50%) scale(0.9);
    filter: blur(1.5px) saturate(0.9);
}

/* Hidden helper slides */
.installation-slide.is-hidden-left {
    opacity: 0;
    z-index: 1;
    transform: translate(-220%, -50%) scale(0.78);
    filter: blur(3px);
}

.installation-slide.is-hidden-right {
    opacity: 0;
    z-index: 1;
    transform: translate(120%, -50%) scale(0.78);
    filter: blur(3px);
}

.installations-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--deep-navy);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.25s ease;
}

    .installations-arrow:hover {
        background-color: var(--solar-amber);
        color: var(--deep-navy);
    }

.installations-arrow-prev {
    left: 0;
}

.installations-arrow-next {
    right: 0;
}

.installations-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1rem;
}

.installations-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: none;
    background-color: #c9c9c9;
    transition: all 0.25s ease;
    padding: 0;
}

    .installations-dot.active {
        background-color: var(--deep-navy);
        transform: scale(1.15);
    }

/* Tablet */
@media (max-width: 991px) {
    .installations-section {
        padding: 4rem 0 5rem;
    }

    .installations-title {
        font-size: 2.3rem;
        max-width: 620px;
    }

    .installations-stage {
        height: 450px;
    }

    .installation-slide {
        width: 42%;
        min-width: 220px;
    }

    .installation-image {
        height: 330px;
    }

    .installation-slide.is-active {
        transform: translate(-50%, -50%) scale(1.04);
    }

    .installation-slide.is-prev {
        transform: translate(-118%, -50%) scale(0.88);
        filter: blur(1.2px) saturate(0.92);
        opacity: 0.72;
    }

    .installation-slide.is-next {
        transform: translate(18%, -50%) scale(0.88);
        filter: blur(1.2px) saturate(0.92);
        opacity: 0.72;
    }

    .installations-arrow {
        width: 44px;
        height: 44px;
    }

    .installations-arrow-prev {
        left: 4px;
    }

    .installations-arrow-next {
        right: 4px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .installations-section {
        padding: 3rem 0 4rem;
    }

    .installations-title {
        font-size: 2rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .installations-stage {
        height: 340px;
    }

    .installation-slide {
        width: 82%;
        min-width: 0;
        max-width: 360px;
    }

    .installation-image {
        height: 250px;
    }

    .installation-slide.is-active {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        filter: blur(0);
    }


    .installation-slide.is-prev,
    .installation-slide.is-next,
    .installation-slide.is-hidden-left,
    .installation-slide.is-hidden-right {
        opacity: 0;
        filter: blur(0);
        transform: translate(-50%, -50%) scale(0.92);
    }

    .installations-arrow {
        width: 40px;
        height: 40px;
    }

    .installations-arrow-prev {
        left: 6px;
    }

    .installations-arrow-next {
        right: 6px;
    }

    .installations-dots {
        margin-top: 1rem;
    }
}

/* ============================================
   7. FOOTER
   ============================================ */

footer {
    background-color: var(--deep-navy) !important;
    color: white !important;
}

    footer a {
        transition: color 0.2s ease;
    }

        footer a:hover {
            color: var(--solar-amber) !important;
        }

/* ============================================
   8. KABUL CODE LAB CREDIT
   ============================================ */

.footer-credit {
    color: white;
    letter-spacing: 0.3px;
}

.kcl-link {
    color: var(--cyan) !important;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .kcl-link::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0%;
        height: 2px;
        background-color: var(--cyan);
        transition: width 0.3s ease;
    }

    .kcl-link:hover {
        color: var(--cyan-light) !important;
        text-shadow: 0 0 8px rgba(0, 207, 255, 0.9);
    }

        .kcl-link:hover::after {
            width: 100%;
        }

/* ============================================
   9. FOOTER TOP BAR
   ============================================ */

.footer-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0.5rem 0 0.75rem 0;
}

.footer-top-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.footer-top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
}

/* ============================================
   10. FOOTER TOP LINKS + LOGO
   ============================================ */

.footer-nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1;
    padding: 0 1.1rem;
    display: inline-flex;
    align-items: center;
    position: relative;
}

    .footer-nav-link:hover {
        color: var(--solar-amber) !important;
    }

.footer-brand-link {
    padding-left: 0;
    gap: 0.65rem;
    font-weight: 600;
}

.footer-brand-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cyan-light);
    font-size: 0.9rem;
}

.footer-top-left .footer-nav-link:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.18);
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 190, 50, 0.1);
    color: var(--solar-amber);
    font-size: 1.25rem;
}

.footer-logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.3px;
}

.footer-logo-white {
    color: #ffffff;
}

.footer-logo-gold {
    color: var(--solar-amber);
}

.footer-logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0, 207, 255, 0.2));
}

/* ============================================
   11. FOOTER RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 991.98px) {
    .footer-top-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

    .footer-top-left {
        width: 100%;
        justify-content: center;
    }

    .footer-top-right {
        width: 100%;
        justify-content: center;
    }

    .footer-logo-text {
        font-size: 1.15rem;
        line-height: 1.2;
    }
}

/* Mobile */
@media (max-width: 767.98px) {
    .footer-top-bar {
        gap: 1rem;
        padding: 0.25rem 0 0.5rem 0;
    }

    .footer-top-left {
        display: flex;
        flex-wrap: wrap;
        row-gap: 0.85rem;
        justify-content: center;
    }

    .footer-nav-link {
        font-size: 0.95rem;
        padding: 0 0.85rem;
    }

    .footer-brand-link {
        padding-left: 0;
    }

    .footer-top-left .footer-nav-link:not(:last-child)::after {
        height: 14px;
    }

    .footer-top-right {
        justify-content: center;
    }

    .footer-logo-wrap {
        gap: 0.6rem;
        justify-content: center;
    }

    .footer-logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.05rem;
    }

    .footer-logo-text {
        font-size: 1rem;
        line-height: 1.25;
        white-space: normal;
    }

    .footer-logo-img {
        height: 36px;
    }
}

/* Small mobile */
@media (max-width: 575.98px) {
    .footer-top-left {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.85rem 1.25rem;
        width: 100%;
    }

    .footer-nav-link {
        padding: 0;
        font-size: 0.92rem;
        justify-content: center;
    }

    .footer-brand-link {
        width: 100%;
        justify-content: center;
    }

    .footer-top-left .footer-nav-link::after {
        display: none !important;
    }

    .footer-top-right {
        width: 100%;
        justify-content: center;
    }

    .footer-logo-wrap {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-logo-text {
        font-size: 0.95rem;
        text-align: center;
    }

    .footer-logo-img {
        height: 32px;
    }
}


/* ============================================
   10. RESPONSIVE MEDIA QUERIES
   ============================================ */

/* Tablet and larger */
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

/* Hero - Large tablets */
@media (max-width: 992px) {
    .hero-section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .hero-image {
        max-height: 350px;
        margin-top: 2rem;
    }
}

/* Hero - Tablets */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-image {
        max-height: 300px;
    }
}

/* Hero - Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.75rem !important;
        width: 100%;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }

    .hero-image {
        max-height: 250px;
    }
}
/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page-section {
    background: linear-gradient( 180deg, var(--bg-light) 0%, #eef2f6 100% );
    padding: 5rem 0;
}
.contact-page-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1.2;
    letter-spacing: -0.4px;
    margin-bottom: 0.75rem;
}

.contact-page-subtitle {
    max-width: 680px;
    margin: 0.75rem auto 0;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.contact-info-card {
    background: #ffffff; /* keep pure white for contrast */
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

    .contact-info-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
        border-color: rgba(255, 183, 3, 0.4);
    }

.contact-info-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 10px;
    background: rgba(255, 183, 3, 0.12);
    color: var(--solar-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    display: inline-block;
    font-weight: 600;
    color: var(--deep-navy);
    word-break: break-word;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

    .contact-info-card a:hover {
        color: var(--solar-amber);
    }

.contact-info-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    .contact-page-title {
        font-size: 2.2rem;
    }
}
.contact-form-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

    .contact-form-card .form-label {
        font-weight: 700;
        color: var(--deep-navy);
        margin-bottom: 0.5rem;
    }
.clickable-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

    .clickable-card:hover {
        color: inherit;
    }

.contact-input {
    border-radius: 8px;
    border: 1px solid #d6dbe1;
    padding: 0.95rem 1rem;
    min-height: 52px;
    background: #fff;
    box-shadow: none;
    color: var(--deep-navy);
}

    .contact-input:focus {
        border-color: var(--solar-amber);
        box-shadow: 0 0 0 0.15rem rgba(255, 183, 3, 0.12);
    }

.contact-textarea {
    min-height: 180px;
    resize: vertical;
}

.system-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 0.25rem;
}

.system-option {
    margin-right: 0 !important;
}

    .system-option .form-check-input {
        margin-top: 0.2rem;
        border-color: #7d8793;
        border-radius: 2px;
    }

        .system-option .form-check-input:checked {
            background-color: var(--solar-amber);
            border-color: var(--solar-amber);
        }

    .system-option .form-check-label {
        color: var(--deep-navy);
        font-weight: 500;
    }

/* Contact button aligned with site button style */
.btn-contact-submit {
    background-color: var(--solar-amber);
    color: var(--deep-navy);
    border: 2px solid var(--solar-amber);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.9rem 2.2rem;
    min-width: 170px;
    transition: all 0.3s ease;
}

    .btn-contact-submit:hover {
        background-color: #e6a500;
        border-color: #e6a500;
        color: var(--deep-navy);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(255, 183, 3, 0.25);
    }

.contact-mini-info p,
.contact-mini-info a {
    color: var(--deep-navy);
}

    .contact-mini-info a:hover {
        color: var(--solar-amber);
    }

@media (max-width: 768px) {
    .contact-page-section {
        padding: 3rem 0;
    }

    .contact-page-title {
        font-size: 1.9rem;
    }

    .contact-form-card {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .system-options {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-contact-submit {
        width: 100%;
        min-width: 100%;
    }
}

.contact-map-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}
    .contact-map-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 18px;
        padding: 1px;
        background: linear-gradient( 135deg, rgba(255, 183, 3, 0.4), rgba(255, 183, 3, 0.05) );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }
    .contact-map-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 60px rgba(0, 0, 0, 0.12);
    }

    .contact-map-card iframe {
        display: block;
        width: 100%;
        filter: contrast(1.05) saturate(1.05);
    }
.contact-map-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .contact-map-card iframe {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .contact-map-card iframe {
        height: 240px;
    }
}

/* ============================================
   SOLUTIONS PAGE
   ============================================ */

.solutions-hero-section {
    padding: 3rem 0 4rem;
    background: var(--bg-light);
}

.solutions-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1.2;
    margin: 0.75rem 0 1rem;
}

.solutions-subtitle {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Cards */

.solutions-grid-section {
    padding: 4rem 0;
    background: #ffffff;
}

.solution-card {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 2rem 1.4rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

    .solution-card:hover {
        transform: translateY(-6px);
        border-color: var(--solar-amber);
        box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
    }

.solution-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    border-radius: 12px;
    background: rgba(255, 183, 3, 0.12);
    color: var(--solar-amber);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.solution-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.6rem;
}

.solution-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.97rem;
    line-height: 1.7;
}

/* CTA */

.solutions-cta-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.solutions-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.solutions-cta-text {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.solutions-cta-actions {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

/* Responsive */

@media (max-width: 767px) {
    .solutions-title {
        font-size: 2rem;
    }

    .solutions-cta-title {
        font-size: 1.7rem;
    }

    .solutions-cta-actions {
        flex-direction: column;
    }

        .solutions-cta-actions .btn {
            width: 100%;
        }
}

/* ============================================
   SOLUTIONS FAQ
   ============================================ */

.solutions-faq-section {
    padding: 4rem 0 5rem;
    background: #ffffff;
}

.solutions-faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.solutions-faq-subtitle {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-gray);
    font-size: 1.02rem;
    line-height: 1.8;
}

.solutions-faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}
    .solutions-faq-accordion .accordion-item {
        border-top: 1px solid var(--border-light) !important;
    }
        .solutions-faq-accordion .accordion-item:not(:first-of-type) {
            border-top: 1px solid var(--border-light) !important;
        }
.solutions-faq-item {
    border: 1px solid var(--border-light) !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: var(--bg-light);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
    margin-bottom: 1rem;
}

.solutions-faq-button {
    background: var(--bg-light);
    color: var(--deep-navy);
    font-weight: 700;
    font-size: 1rem;
    padding: 1.2rem 1.25rem;
    box-shadow: none !important;
    border-radius: 0 !important;
}

    .solutions-faq-button:not(.collapsed) {
        background: var(--bg-light);
        color: var(--deep-navy);
    }

    .solutions-faq-button:focus {
        box-shadow: none;
        border-color: transparent;
    }

.solutions-faq-item:first-child .solutions-faq-button,
.solutions-faq-item .solutions-faq-button.collapsed {
    border-radius: 0 !important;
}
.solutions-faq-body {
    background: #ffffff;
    color: var(--text-gray);
    font-size: 0.98rem;
    line-height: 1.75;
    padding: 1.2rem 1.25rem 1.35rem;
}

.solutions-faq-item .accordion-button::after {
    filter: none;
}

@media (max-width: 767px) {
    .solutions-faq-section {
        padding: 3rem 0 4rem;
    }

    .solutions-faq-title {
        font-size: 1.7rem;
    }

    .solutions-faq-button {
        font-size: 0.96rem;
        padding: 1rem 1rem;
    }

    .solutions-faq-body {
        font-size: 0.95rem;
        padding: 1rem 1rem 1.15rem;
    }
}
/* FAQ arrow color */
.solutions-faq-item .accordion-button::after {
    filter: brightness(0) saturate(100%) invert(73%) sepia(88%) saturate(742%) hue-rotate(358deg) brightness(101%) contrast(101%);
}

/* When open (slightly stronger) */
.solutions-faq-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(73%) sepia(88%) saturate(900%) hue-rotate(358deg) brightness(105%) contrast(105%);
}
