/* ============================================================
   GREEN ASTRONAUT (GA SOLAR) — MAIN STYLESHEET
   NAVY BLUE + GREEN GRADIENT THEME
   Solar Products Supplier Company
   ============================================================ */
:root {
    /* ===== NAVY BLUE (PRIMARY DARK) ===== */
    --primary: #0a1628;
    --navy-dark: #0a1628;
    --navy-mid: #0f2137;
    --navy-light: #0a1a2e;

    /* ===== GREEN GRADIENT (ACCENT) ===== */
    --accent: #16a34a;
    --accent-light: #4ade80;
    --accent-deep: #10b981;
    --accent-soft: #f0fdf4;
    --accent-border: #bbf7d0;
    --green-gradient: linear-gradient(135deg, #4ade80, #22c55e, #10b981);

    /* ===== SUPPORTING COLORS ===== */
    --blue: #0284c7;
    --blue-soft: #e0f2fe;
    --blue-border: #bae6fd;

    --green: #16a34a;
    --green-soft: #dcfce7;
    --green-border: #bbf7d0;

    --purple: #7c3aed;
    --purple-soft: #f3e8ff;
    --purple-border: #ddd6fe;

    /* ===== SURFACES & TEXT ===== */
    --surface: #ffffff;
    --surface-low: #f8fafc;
    --surface-border: #e5e7eb;
    --text: #0f172a;
    --text-soft: #64748b;
    --text-light: #94a3b8;
    --footer-bg: #0a1628;
    --success: #16a34a;

    --font-main: 'Inter', sans-serif;
    --container: 1280px;
    --transition: 0.3s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--surface);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.label-caps {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
}

.hidden-mobile {
    display: block;
}

.mobile-only {
    display: none !important;
}

.full-width {
    width: 100%;
}

/* ---------- Buttons ---------- */
.btn-primary {
    background: var(--green-gradient);
    color: #fff;
    padding: 13px 28px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 12px 28px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(34, 197, 94, 0.35);
}

.btn-outline {
    background: #fff;
    color: var(--accent);
    padding: 13px 28px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid var(--accent-border);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline:hover {
    background: var(--accent-soft);
    border-color: var(--accent);
}

.btn-white {
    background: #fff;
    color: var(--accent);
    padding: 15px 30px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-2px);
    color: var(--accent-deep);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-ghost:hover {
    background: rgba(74, 222, 128, 0.14);
    border-color: var(--accent-light);
    color: var(--accent-light);
}

.btn-icon {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 21px;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ============================================================
   SIDE SOCIAL ICONS
   ============================================================ */
.social-sidebar {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

/* Brand social colors */
.facebook {
    background-color: #3b5998;
}

.messenger {
    background-color: #0084ff;
}

.whatsapp {
    background-color: #25d366;
}

.email {
    background-color: var(--navy-mid);
}

.share {
    background-color: var(--accent);
}

.social-icon:hover {
    width: 55px;
    padding-left: 10px;
    color: #ffffff;
}

@media (max-width: 768px) {
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}


/* ============================================================
   TOPBAR DESIGN
   ============================================================ */
.top-bar {
    background: linear-gradient(90deg, var(--navy-dark), var(--navy-mid));
    color: #94a3b8;
    font-size: 13px;
    padding: 8px 0;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(74, 222, 128, 0.12);
}

.top-bar-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.top-item i {
    color: var(--accent-light);
    /* Green brand accent */
    font-size: 14px;
}

.top-item a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-item a:hover,
.top-item:hover {
    color: #ffffff;
}

/* Social Icons in Topbar */
.top-socials {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 15px;
}

.top-socials a {
    color: var(--accent-light);
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.top-socials a:hover {
    color: #fff;
    background: var(--green-gradient);
    transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVENESS
   ============================================================ */
@media (max-width: 992px) {
    .top-bar-content.left .top-item:last-child {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
}


/* ---------- Section Headers ---------- */
.section-header {
    margin-bottom: 54px;
}

.section-header.center {
    text-align: center;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary);
    margin: 10px 0 14px;
    letter-spacing: -0.03em;
}

.section-subtext {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-soft);
    max-width: 680px;
    margin: 0 auto;
}

.header-line {
    width: 72px;
    height: 4px;
    background: var(--green-gradient);
    border-radius: 999px;
    margin-top: 18px;
}

.section-header.center .header-line {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: relative;
    width: 100%;
    z-index: 99;
    background: rgba(10, 22, 40, 0.95);
    /* Navy blue glass */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 222, 128, 0.2);
    transition: all 0.3s ease;
}

.navbar.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    box-shadow: 0 8px 30px rgba(10, 22, 40, 0.3);
}

/* ============================================================
   LOGO STYLING
   ============================================================ */
.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    min-width: fit-content;
}

.brand-logo {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.brand:hover .brand-logo {
    transform: scale(1.03);
}

/* Mobile Menu Logo */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(74, 222, 128, 0.15);
    background: var(--navy-dark);
}

.mobile-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.mobile-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

#mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent-light);
    padding: 5px;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: fit-content;
}

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--green-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.3);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text strong {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.brand-text span {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-links a {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #e2e8f0;
    /* Light text on navy navbar */
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: var(--green-gradient);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--accent-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--accent-light);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Desktop dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
    margin-top: -4px;
}

.nav-dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 380px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(10, 22, 40, 0.15);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 12px;
    border: 1px solid rgba(34, 197, 94, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #333;
    transition: background 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--accent-soft);
}

.dropdown-menu a i {
    font-size: 1.3rem;
    width: 32px;
    text-align: center;
    color: var(--accent);
}

.dropdown-menu a strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary);
}

.dropdown-menu a span {
    display: block;
    font-size: 0.78rem;
    color: #777;
    margin-top: 2px;
}

/* Mobile dropdown */
.mobile-dropdown {
    width: 100%;
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #475569;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-dropdown-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 16px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 260px;
}

.mobile-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    font-size: 0.95rem;
}

/* ============================================================
   MAIN + HERO IMPROVISED
   ============================================================ */
/* main {
    margin-top: 84px;
} */

.hero {
    position: relative;
    min-height: 780px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

.hero-bg-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1);
    animation: kenburns 8s ease-in-out forwards;
}

@keyframes kenburns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

/* Stronger, darker overlay for legibility over real photos */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(6, 12, 20, 0.92) 22%,
            rgba(6, 12, 20, 0.72) 45%,
            rgba(6, 12, 20, 0.38) 68%,
            rgba(6, 12, 20, 0.12) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 32px;
    width: 100%;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-eyebrow .label-caps {
    color: #fff;
    opacity: 0.85;
}

.eyebrow-line {
    width: 42px;
    height: 2px;
    background: var(--accent);
}

.hero-title {
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.1;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    max-width: 780px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.accent-text {
    color: var(--accent);
}

.hero-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 540px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.hero-mini-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-mini-stats div {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(6px);
    border-radius: 16px;
    padding: 14px 16px;
    min-width: 130px;
}

.hero-mini-stats strong {
    display: block;
    font-size: 20px;
    color: var(--accent);
    font-weight: 900;
}

.hero-mini-stats span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ============================================
   HERO NAVIGATION — ARROWS & DOTS
   ============================================ */

/* ---------- ARROWS ---------- */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;

    /* Size */
    width: 52px;
    height: 52px;

    /* Appearance */
    background: rgba(0, 0, 0, 0.35);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Layout */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Interaction */
    cursor: pointer;
    outline: none;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Subtle shadow for depth */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Positioning */
.hero-arrow-prev {
    left: 24px;
}

.hero-arrow-next {
    right: 24px;
}

/* Hover State */
.hero-arrow:hover {
    background: var(--accent, #e63946);
    border-color: var(--accent, #e63946);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(230, 57, 70, 0.4),
        0 0 0 4px rgba(230, 57, 70, 0.15);
}

/* Active / Click State */
.hero-arrow:active {
    transform: translateY(-50%) scale(0.95);
    transition-duration: 0.1s;
}

/* Focus Visible (Accessibility) */
.hero-arrow:focus-visible {
    outline: 2px solid var(--accent, #e63946);
    outline-offset: 4px;
    background: rgba(0, 0, 0, 0.5);
}

/* Icon nudge for visual centering */
.hero-arrow-prev i {
    margin-right: 2px;
    /* optical center correction */
}

.hero-arrow-next i {
    margin-left: 2px;
}

/* ---------- DOTS CONTAINER ---------- */
.hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;

    display: flex;
    align-items: center;
    gap: 12px;

    /* Glass pill background */
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 10px 18px;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ---------- INDIVIDUAL DOT ---------- */
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0;

    background: rgba(255, 255, 255, 0.35);

    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    position: relative;
}

/* Larger click/tap target (accessibility) */
.hero-dot::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
}

/* Hover */
.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

/* Active / Current Dot */
.hero-dot.active {
    width: 28px;
    border-radius: 50px;
    background: var(--accent, #e63946);
    box-shadow: 0 0 12px rgba(230, 57, 70, 0.5),
        0 0 0 3px rgba(230, 57, 70, 0.15);
}

/* Focus Visible (Accessibility) */
.hero-dot:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}


/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-arrow {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }

    .hero-arrow-prev {
        left: 18px;
    }

    .hero-arrow-next {
        right: 18px;
    }

    .hero-dots {
        bottom: 22px;
        padding: 8px 14px;
        gap: 10px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
        background: rgba(0, 0, 0, 0.45);
    }

    .hero-arrow-prev {
        left: 12px;
    }

    .hero-arrow-next {
        right: 12px;
    }

    .hero-dots {
        bottom: 16px;
        padding: 7px 12px;
        gap: 8px;
    }

    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dot.active {
        width: 22px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .hero-arrow-prev {
        left: 8px;
    }

    .hero-arrow-next {
        right: 8px;
    }

    .hero-dots {
        bottom: 12px;
        padding: 6px 10px;
        gap: 7px;
    }

    .hero-dot {
        width: 7px;
        height: 7px;
    }

    .hero-dot.active {
        width: 20px;
    }
}


/* ============================================
   OPTIONAL: HIDE ARROWS ON TOUCH, SHOW ON HOVER
   ============================================ */

/*
@media (hover: hover) {
    .hero-arrow {
        opacity: 0;
        transition: all 0.35s ease, opacity 0.35s ease;
    }

    .hero-section:hover .hero-arrow {
        opacity: 1;
    }
}
*/

/* ============================================================
   ABOUT
   ============================================================ */
.about-section {
    padding: 110px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}

.about-shell {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 20px;
}

.about-title {
    font-size: clamp(32px, 3vw, 50px);
    line-height: 1.12;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.about-title span {
    color: var(--accent);
}

.about-lead {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-soft);
    max-width: 680px;
    margin-bottom: 34px;
}

.about-feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 22px;
    transition: all var(--transition);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.03);
}

.about-feature-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-border);
    box-shadow: 0 18px 34px rgba(255, 113, 0, 0.08);
}

.about-feature-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.about-feature-icon.icon-green {
    background: var(--green-soft);
    color: var(--green);
}

.about-feature-icon.icon-purple {
    background: var(--purple-soft);
    color: var(--purple);
}

.about-feature-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 6px;
}

.about-feature-card p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.75;
}

.about-right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-image-card {
    position: relative;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.about-image-card img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.about-floating-box {
    position: absolute;
    left: 24px;
    bottom: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 18px 20px;
    max-width: 290px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.about-floating-box strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.about-floating-box span {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-stat-item {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 24px 18px;
    text-align: center;
}

.about-stat-item strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 6px;
}

.about-stat-item span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-soft);
}

.about-stat-item.accent-box {
    background: linear-gradient(135deg, var(--accent), #ff9140);
    border-color: transparent;
}

.about-stat-item.accent-box strong {
    font-size: 20px;
}

.about-stat-item.accent-box strong,
.about-stat-item.accent-box span {
    color: #fff;
}

/* ============================================================
   PRODUCTS — COLORFUL VISUAL EDITION
   ============================================================ */
.products-section {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fafbff 0%, #fff 50%, #f8fafc 100%);
}

/* ─── FLOATING BACKGROUND SHAPES ─── */
.products-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
    top: 5%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
    top: 30%;
    right: -8%;
    animation-delay: -5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1), transparent 70%);
    bottom: 15%;
    left: 10%;
    animation-delay: -10s;
}

.shape-4 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08), transparent 70%);
    bottom: 5%;
    right: 15%;
    animation-delay: -15s;
}

@keyframes floatShape {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(-15px, 25px) scale(0.95);
    }

    75% {
        transform: translate(20px, 15px) scale(1.03);
    }
}

/* ─── SECTION HEADER ─── */
.products-section .section-header {
    position: relative;
    z-index: 1;
}

/* ─── FILTER TABS ─── */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 2px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #64748b;
    font-family: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-tab i {
    font-size: 14px;
    transition: transform 0.3s;
}

.filter-tab:hover i {
    transform: scale(1.2);
}

.filter-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.1);
    border-color: #cbd5e1;
}

.filter-tab.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
}

/* Orange tab */
.filter-tab.tab-orange:hover {
    border-color: #fdba74;
    color: #ea580c;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

.filter-tab.tab-orange.active {
    background: linear-gradient(135deg, #f97316, #ef4444);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 28px rgba(249, 115, 22, 0.4);
}

/* Blue tab */
.filter-tab.tab-blue:hover {
    border-color: #93c5fd;
    color: #2563eb;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

.filter-tab.tab-blue.active {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.4);
}

/* Green tab */
.filter-tab.tab-green:hover {
    border-color: #86efac;
    color: #16a34a;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
}

.filter-tab.tab-green.active {
    background: linear-gradient(135deg, #22c55e, #14b8a6);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4);
}

/* Purple tab */
.filter-tab.tab-purple:hover {
    border-color: #c4b5fd;
    color: #9333ea;
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
}

.filter-tab.tab-purple.active {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 28px rgba(168, 85, 247, 0.4);
}

/* ─── PRODUCTS GRID ─── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 1;
}

/* ─── PRODUCT CARD ─── */
.product-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: transparent;
}

.product-card.hidden-card {
    display: none;
}

/* Color strip at top */
.card-color-strip {
    height: 4px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.strip-orange {
    background: linear-gradient(90deg, #f97316, #ef4444, #f59e0b);
    background-size: 200% 100%;
    animation: stripGlow 3s ease-in-out infinite;
}

.strip-blue {
    background: linear-gradient(90deg, #3b82f6, #6366f1, #06b6d4);
    background-size: 200% 100%;
    animation: stripGlow 3s ease-in-out infinite;
}

.strip-green {
    background: linear-gradient(90deg, #22c55e, #14b8a6, #10b981);
    background-size: 200% 100%;
    animation: stripGlow 3s ease-in-out infinite;
}

.strip-purple {
    background: linear-gradient(90deg, #a855f7, #ec4899, #8b5cf6);
    background-size: 200% 100%;
    animation: stripGlow 3s ease-in-out infinite;
}

@keyframes stripGlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Ambient glow behind card on hover */
.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 0;
    border-radius: 24px;
}

.product-card:hover .card-glow {
    opacity: 1;
}

.glow-orange {
    box-shadow: 0 25px 60px rgba(249, 115, 22, 0.15),
        0 0 0 1px rgba(249, 115, 22, 0.08),
        inset 0 1px 0 rgba(249, 115, 22, 0.05);
}

.glow-blue {
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.15),
        0 0 0 1px rgba(59, 130, 246, 0.08),
        inset 0 1px 0 rgba(59, 130, 246, 0.05);
}

.glow-green {
    box-shadow: 0 25px 60px rgba(34, 197, 94, 0.15),
        0 0 0 1px rgba(34, 197, 94, 0.08),
        inset 0 1px 0 rgba(34, 197, 94, 0.05);
}

.glow-purple {
    box-shadow: 0 25px 60px rgba(168, 85, 247, 0.15),
        0 0 0 1px rgba(168, 85, 247, 0.08),
        inset 0 1px 0 rgba(168, 85, 247, 0.05);
}

/* ─── FLOATING BADGE ─── */
.product-badge {
    position: absolute;
    top: 20px;
    left: 18px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.3s;
}

.product-card:hover .product-badge {
    transform: scale(1.05);
}

.badge-orange {
    background: linear-gradient(135deg, rgba(255, 237, 213, 0.95), rgba(254, 215, 170, 0.95));
    color: #ea580c;
    border: 1px solid rgba(249, 115, 22, 0.25);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.15);
}

.badge-blue {
    background: linear-gradient(135deg, rgba(219, 234, 254, 0.95), rgba(191, 219, 254, 0.95));
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.25);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.badge-green {
    background: linear-gradient(135deg, rgba(220, 252, 231, 0.95), rgba(187, 247, 208, 0.95));
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.25);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
}

.badge-purple {
    background: linear-gradient(135deg, rgba(243, 232, 255, 0.95), rgba(233, 213, 255, 0.95));
    color: #9333ea;
    border: 1px solid rgba(168, 85, 247, 0.25);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.15);
}

/* ─── PRODUCT BODY ─── */
.product-body {
    padding: 18px 22px 16px;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Colorful image background wrapper */
.product-img-wrap {
    width: 100%;
    height: 400px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.img-bg-orange {
    background: linear-gradient(160deg, #fff7ed 0%, #ffedd5 40%, #fed7aa 100%);
    border: 1px solid rgba(249, 115, 22, 0.08);
}

.img-bg-blue {
    background: linear-gradient(160deg, #eff6ff 0%, #dbeafe 40%, #bfdbfe 100%);
    border: 1px solid rgba(59, 130, 246, 0.08);
}

.img-bg-green {
    background: linear-gradient(160deg, #f0fdf4 0%, #dcfce7 40%, #bbf7d0 100%);
    border: 1px solid rgba(34, 197, 94, 0.08);
}

.img-bg-purple {
    background: linear-gradient(160deg, #faf5ff 0%, #f3e8ff 40%, #e9d5ff 100%);
    border: 1px solid rgba(168, 85, 247, 0.08);
}

/* Shimmer sweep on hover */
.product-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    pointer-events: none;
    z-index: 2;
}

.product-card:hover .product-img-wrap::after {
    animation: shimmer 0.7s ease forwards;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 150%;
    }
}

/* Corner decoration circles inside img wrap */
.product-img-wrap::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.img-bg-orange::before {
    background: #f97316;
}

.img-bg-blue::before {
    background: #3b82f6;
}

.img-bg-green::before {
    background: #22c55e;
}

.img-bg-purple::before {
    background: #a855f7;
}

/* Product image */
.product-body img {
    width: 80%;
    height: 75%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.product-card:hover .product-body img {
    transform: scale(1.1) translateY(-6px);
}

/* Product title */
.product-body h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

/* Colorful product tag pills */
.product-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.tag-orange {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    color: #ea580c;
    border: 1px solid rgba(249, 115, 22, 0.15);
}

.tag-blue {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
    border: 1px solid rgba(59, 130, 246, 0.15);
}

.tag-green {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.15);
}

.tag-purple {
    background: linear-gradient(135deg, #faf5ff, #f3e8ff);
    color: #9333ea;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

/* ─── PRODUCT FOOTER ─── */
.product-footer {
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.footer-orange {
    background: linear-gradient(135deg, #fffbf5, #fff7ed);
    border-top: 2px solid rgba(249, 115, 22, 0.1);
}

.footer-blue {
    background: linear-gradient(135deg, #f8fbff, #eff6ff);
    border-top: 2px solid rgba(59, 130, 246, 0.1);
}

.footer-green {
    background: linear-gradient(135deg, #f7fef9, #f0fdf4);
    border-top: 2px solid rgba(34, 197, 94, 0.1);
}

.footer-purple {
    background: linear-gradient(135deg, #fdfaff, #faf5ff);
    border-top: 2px solid rgba(168, 85, 247, 0.1);
}

/* Brand chip with glowing dot */
.brand-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.brand-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.chip-orange {
    color: #ea580c;
}

.dot-orange {
    background: #f97316;
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
}

.chip-blue {
    color: #2563eb;
}

.dot-blue {
    background: #3b82f6;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.chip-green {
    color: #16a34a;
}

.dot-green {
    background: #22c55e;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.chip-purple {
    color: #9333ea;
}

.dot-purple {
    background: #a855f7;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

/* Star ratings */
.rating-stars {
    display: flex;
    gap: 2px;
    font-size: 12px;
    color: #f59e0b;
}

.stars-blue {
    color: #3b82f6;
}

.stars-green {
    color: #22c55e;
}

.stars-purple {
    color: #a855f7;
}

/* ─── HOVER COLOR BORDERS PER CATEGORY ─── */
.product-card[data-category="panels"]:hover {
    border-color: rgba(249, 115, 22, 0.3);
    box-shadow: 0 25px 60px rgba(249, 115, 22, 0.12);
}

.product-card[data-category="inverters"]:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.12);
}

.product-card[data-category="batteries"]:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 25px 60px rgba(34, 197, 94, 0.12);
}

.product-card[data-category="mounting"]:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 25px 60px rgba(168, 85, 247, 0.12);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .bg-shape {
        display: none;
    }
}

@media (max-width: 600px) {
    .products-section {
        padding: 60px 0 80px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .filter-tabs {
        gap: 8px;
        margin-bottom: 36px;
    }

    .filter-tab {
        padding: 10px 16px;
        font-size: 10px;
        gap: 5px;
    }

    .product-body img {
        height: 180px;
    }

    .product-img-wrap {
        height: 250px;
    }

    .product-badge {
        top: 14px;
        left: 14px;
        padding: 5px 12px;
        font-size: 9px;
    }
}

/* ===================== PARTNERSHIP COMMITMENT SECTION ===================== */

.partnership-commit-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1a1f3a 50%, #0f172a 100%);
    overflow: hidden;
}

.partnership-commit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* Background Glows */
.partnership-commit-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.partnership-commit-glow-1 {
    width: 400px;
    height: 400px;
    background: #22c55e;
    top: -100px;
    left: -100px;
    animation: partnership-float 6s ease-in-out infinite;
}

.partnership-commit-glow-2 {
    width: 500px;
    height: 500px;
    background: #3b82f6;
    bottom: -150px;
    right: -100px;
    animation: partnership-float 8s ease-in-out infinite reverse;
}

@keyframes partnership-float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

/* Main Wrapper */
.partnership-commit-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ===== IMAGE SECTION ===== */

.partnership-commit-img-box {
    perspective: 1000px;
}

.partnership-commit-img-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(34, 197, 94, 0.15),
        0 0 80px rgba(59, 130, 246, 0.1);
    transform-style: preserve-3d;
    animation: partnership-img-float 3s ease-in-out infinite;
}

@keyframes partnership-img-float {

    0%,
    100% {
        transform: translateY(0px) rotateX(5deg);
    }

    50% {
        transform: translateY(-20px) rotateX(5deg);
    }
}

.partnership-commit-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.partnership-commit-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    mix-blend-mode: overlay;
}

.partnership-commit-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #0f172a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: partnership-badge-pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes partnership-badge-pop {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.partnership-commit-badge i {
    color: #fbbf24;
    font-size: 18px;
}

/* ===== CONTENT SECTION ===== */

.partnership-commit-content-box {
    color: #fff;
}

.partnership-commit-header {
    margin-bottom: 40px;
}

.partnership-commit-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #22c55e;
    margin-bottom: 15px;
    background: rgba(34, 197, 94, 0.1);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    transition: all 0.3s ease;
}

.partnership-commit-label:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.6);
}

.partnership-commit-heading {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.partnership-commit-highlight {
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-commit-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #d1d5db;
    margin-bottom: 40px;
}

/* ===== FEATURES SECTION ===== */

.partnership-commit-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.partnership-commit-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.partnership-commit-feature-item:hover {
    background: rgba(34, 197, 94, 0.12);
    border-color: rgba(34, 197, 94, 0.5);
    transform: translateX(12px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.partnership-commit-feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    border-radius: 12px;
    flex-shrink: 0;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
}

.partnership-commit-feature-text h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #ffffff;
}

.partnership-commit-feature-text p {
    font-size: 14px;
    color: #9ca3af;
    margin: 0;
}

/* ===== STATISTICS SECTION ===== */

.partnership-commit-statistics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 35px 0;
    margin-bottom: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partnership-commit-stat {
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.partnership-commit-stat:hover .partnership-commit-stat-number {
    transform: scale(1.1);
}

.partnership-commit-stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.partnership-commit-stat-label {
    font-size: 13px;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    font-weight: 600;
}

/* ===== CTA SECTION ===== */

.partnership-commit-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
}

.partnership-commit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.partnership-commit-btn-primary {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    flex: 1;
}

.partnership-commit-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(34, 197, 94, 0.45);
}

.partnership-commit-btn-primary:active {
    transform: translateY(-2px);
}

.partnership-commit-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.partnership-commit-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.partnership-commit-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #9ca3af;
    justify-content: center;
}

.partnership-commit-note i {
    color: #22c55e;
    font-size: 14px;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .partnership-commit-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .partnership-commit-heading {
        font-size: 36px;
    }

    .partnership-commit-img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .partnership-commit-section {
        padding: 60px 0;
    }

    .partnership-commit-wrapper {
        gap: 40px;
    }

    .partnership-commit-heading {
        font-size: 28px;
    }

    .partnership-commit-desc {
        font-size: 15px;
        line-height: 1.7;
    }

    .partnership-commit-features {
        gap: 15px;
    }

    .partnership-commit-feature-item {
        padding: 18px;
    }

    .partnership-commit-statistics {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 0;
    }

    .partnership-commit-stat-number {
        font-size: 28px;
    }

    .partnership-commit-actions {
        flex-direction: column;
    }

    .partnership-commit-btn {
        width: 100%;
        padding: 14px 24px;
    }

    .partnership-commit-img-container {
        border-radius: 16px;
    }

    .partnership-commit-img {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .partnership-commit-section {
        padding: 40px 0;
    }

    .partnership-commit-wrapper {
        gap: 30px;
    }

    .partnership-commit-heading {
        font-size: 22px;
        line-height: 1.3;
    }

    .partnership-commit-desc {
        font-size: 14px;
    }

    .partnership-commit-label {
        font-size: 11px;
        padding: 8px 14px;
    }

    .partnership-commit-feature-item {
        padding: 16px;
        gap: 14px;
    }

    .partnership-commit-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }

    .partnership-commit-feature-text h4 {
        font-size: 15px;
    }

    .partnership-commit-feature-text p {
        font-size: 12px;
    }

    .partnership-commit-stat-number {
        font-size: 24px;
    }

    .partnership-commit-stat-label {
        font-size: 11px;
    }

    .partnership-commit-btn {
        font-size: 14px;
        padding: 12px 20px;
    }

    .partnership-commit-badge {
        bottom: 20px;
        left: 20px;
        padding: 12px 18px;
        font-size: 12px;
    }

    .partnership-commit-img {
        height: 280px;
    }
}

/* ===== ACCESSIBILITY ===== */

.partnership-commit-btn:focus-visible {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
}

.partnership-commit-feature-item:focus-within {
    outline: 2px solid rgba(34, 197, 94, 0.5);
}



/* ============================================================
   BRAND SHOWCASE - COLORFUL DESIGN WITH LOGOS
   ============================================================ */
.brands-section {
    padding: 100px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.brands-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

/* ─── BRAND CATEGORY ROW CARD ─── */
.brand-category {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
}

.brand-category:hover {
    transform: translateY(-5px);
}

/* Category-specific Border Colors on Hover */
.brand-category.card-orange:hover {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.05);
}

.brand-category.card-blue:hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.05);
}

.brand-category.card-green:hover {
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.05);
}

/* ─── CATEGORY HEADER SECTION ─── */
.category-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.card-orange .category-icon {
    background: #fff7ed;
    color: #ea580c;
}

.card-blue .category-icon {
    background: #eff6ff;
    color: #2563eb;
}

.card-green .category-icon {
    background: #f0fdf4;
    color: #16a34a;
}

.category-title h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 8px;
    line-height: 1.3;
}

/* ─── BADGES ─── */
.brand-category .badge-orange,
.brand-category .badge-blue,
.brand-category .badge-green {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-orange {
    background: #ffedd5;
    color: #ea580c;
}

.badge-blue {
    background: #dbeafe;
    color: #2563eb;
}

.badge-green {
    background: #dcfce7;
    color: #16a34a;
}

/* ─── LOGO DISPLAY GRID ─── */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.logos-grid.col-3-layout {
    grid-template-columns: repeat(3, 1fr);
}

/* Individual Brand Logo Cards */
.logo-card {
    background: #ffffff;
    border: 1.5px solid #f1f5f9;
    border-radius: 16px;
    height: 100px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Logo Image Properties */
.logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.6); */
    /* Soft grayscale when inactive */
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Image Fallback Font Styling */
.logo-fallback {
    font-weight: 900;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hover Zoom & Full Color Restoration */
.logo-card:hover {
    transform: translateY(-6px) scale(1.04);
}

.logo-card:hover .logo-wrap img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

/* Custom Colored Ambient Under-Glow Shadows on Hover */
.logo-glow {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.logo-card:hover .logo-glow {
    opacity: 1;
}

.orange-glow {
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15);
}

.blue-glow {
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.green-glow {
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.15);
}

/* Logo Border Highlights on Hover */
.card-orange .logo-card:hover {
    border-color: rgba(249, 115, 22, 0.35);
}

.card-blue .logo-card:hover {
    border-color: rgba(59, 130, 246, 0.35);
}

.card-green .logo-card:hover {
    border-color: rgba(34, 197, 94, 0.35);
}

/* ─── TRUST BADGES ROW ─── */
.trust-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.orange-box {
    background: #fff7ed;
    color: #ea580c;
}

.blue-box {
    background: #eff6ff;
    color: #2563eb;
}

.green-box {
    background: #f0fdf4;
    color: #16a34a;
}

.trust-item span {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── RESPONSIVE LAYOUT MEDIA QUERIES ─── */
@media (max-width: 1024px) {
    .brand-category {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }

    .category-header {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .logos-grid.col-3-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding-left: 10px;
    }

    .logo-card {
        height: 80px;
        padding: 10px;
    }

       .category-header {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }


}


/* ============================================================
   DYNAMIC PARTNERSHIP HERO SLIDER
   ============================================================ */
.partnership-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    width: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    /* Use your site's font */
    display: flex;
    align-items: center;
}

/* Background Images */
.ph-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 8s ease;
    transform: scale(1.05);
    z-index: 0;
}

.ph-bg.active {
    opacity: 1;
    transform: scale(1);
}

/* Dark Overlay */
.ph-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 15, 28, 0.92) 0%, rgba(10, 15, 28, 0.7) 50%, rgba(10, 15, 28, 0.4) 100%);
    z-index: 1;
}

/* Scroll Indicator */
.ph-scroll-indicator {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
}

.ph-scroll-indicator span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.6);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.ph-scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.ph-scroll-line::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent, #FF7100);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* Main Container Layout */
.ph-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    row-gap: 70px;

    align-items: center;
}

/* Left Content */
.ph-left-content {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.ph-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #FF7100;
    margin-bottom: 20px;
}

.ph-title {
    font-size: clamp(36px, 4.5vw, 74px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
    width: 90%;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

@media (max-width:475px ){
    .ph-title{
        width: 100%;
    }
}

/* Right Content (Circles) */
.ph-right-content {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 40px;
}

.ph-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: all 0.6s ease;
}

.ph-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ph-circle:hover img {
    transform: scale(1.1);
}

.ph-circle-1 {
    width: 220px;
    height: 220px;
    top: 10%;
    right: 10%;
    z-index: 2;
}

.ph-circle-2 {
    width: 260px;
    height: 260px;
    bottom: 15%;
    right: 0%;
    z-index: 1;
}

/* Bottom Info Bar */
.ph-bottom-bar {
    grid-column: 1 / -1;
    grid-row: 2 / 3;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--accent, #FF7100);
    border-radius: 12px;
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ph-bar-left {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex: 1;
}

.ph-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--accent, #FF7100);
    line-height: 1;
    letter-spacing: -0.04em;
    font-family: 'Playfair Display', serif;
    /* Elegant serif for numbers */
}

.ph-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 6px 0 0;
    max-width: 600px;
    transition: opacity 0.4s ease;
}

/* Navigation Arrows */
.ph-bar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ph-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.ph-arrow:hover {
    background: var(--accent, #FF7100);
    border-color: var(--accent, #FF7100);
    color: #fff;
}

/* Progress Counter */
.ph-bar-progress {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    min-width: 70px;
    text-align: right;
}

.ph-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
    .ph-circle-1 {
        width: 180px;
        height: 180px;
    }

    .ph-circle-2 {
        width: 200px;
        height: 200px;
    }

    .ph-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .partnership-hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 120px;
    }

    .ph-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 30px;
    }

    .ph-left-content {
        grid-column: 1;
        grid-row: 1;
        text-align: center;
    }

    .ph-right-content {
        grid-column: 1;
        grid-row: 2;
        justify-content: center;
        padding-right: 0;
        height: 250px;
    }

    .ph-circle-1 {
        width: 140px;
        height: 140px;
        top: 10%;
        right: 25%;
    }

    .ph-circle-2 {
        width: 160px;
        height: 160px;
        bottom: 0%;
        right: 15%;
    }

    .ph-bottom-bar {
        grid-column: 1;
        grid-row: 3;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 0;
        padding: 24px;
    }

    .ph-bar-left {
        flex-direction: column;
        gap: 12px;
    }

    .ph-number {
        font-size: 42px;
    }

    .ph-bar-nav {
        flex-direction: row;
        width: 100%;
        justify-content: flex-end;
    }

    .ph-bar-progress {
        width: 100%;
        text-align: left;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 16px;
    }

    .ph-scroll-indicator {
        display: none;
    }
}



/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
    padding: 110px 0;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #fcfdff 40%,
            #f8fafc 75%,
            #f1f5f9 100%);
    overflow: hidden;
}

.why-bg-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.6;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.section-header.center {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.label-caps {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent, #FF7100);
    background: rgba(255, 113, 0, 0.08);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 10px;
    margin-top: 10px;
    border: 1px solid rgba(255, 113, 0, 0.12);
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 900;
    color: var(--primary, #1f1b16);
    margin: 10px 0 14px;
    letter-spacing: -0.03em;
}

.header-line {
    width: 72px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent, #FF7100), #ff9a3c);
    border-radius: 999px;
    margin: 18px auto 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.why-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary, #1f1b16);
    line-height: 1.5;
    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.03),
        0 1px 2px rgba(0, 0, 0, 0.02);
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.why-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(255, 113, 0, 0) 0%,
            rgba(255, 113, 0, 0.04) 50%,
            rgba(255, 113, 0, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-item:hover::after {
    opacity: 1;
}

.why-item i {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent, #FF7100), #ff9a3c);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 8px 18px rgba(255, 113, 0, 0.28);
    transition: all 0.35s ease;
    flex-shrink: 0;
}

.why-item span {
    flex: 1;
}

.why-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 113, 0, 0.22);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.06),
        0 8px 18px rgba(255, 113, 0, 0.12);
}

.why-item:hover i {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 10px 22px rgba(255, 113, 0, 0.36);
}

/* Responsive */
@media (max-width: 768px) {
    .why-section {
        padding: 80px 0;
    }

    .why-grid {
        gap: 14px;
        grid-template-columns: 1fr;
    }

    .why-item {
        padding: 18px 20px;
        font-size: 14px;
    }

    .why-item i {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 64px 0;
    }

    .section-header.center {
        margin-bottom: 40px;
    }
}

/* ============================================================
   NETWORK SECTION — SEA COUNTRY SVG MAP
   ============================================================ */

.network-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(255, 113, 0, 0.12), transparent 32%),
        linear-gradient(160deg, #eaf4fa 0%, #e2eef5 52%, #f7fbfd 100%);
    overflow: hidden;
}

.sea-network-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

/* LEFT SIDE */
.network-left {
    position: relative;
}

.network-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    border-radius: 999px;
    padding: 10px 16px;
    color: #0284c7;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(2, 132, 199, 0.08);
    margin-bottom: 20px;
}

.network-badge i {
    color: var(--accent);
}

.network-title {
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.04em;
    line-height: 1.08;
    margin-bottom: 20px;
}

.network-title span {
    display: block;
    color: var(--accent);
}

.network-desc {
    font-size: 16px;
    color: var(--text-soft);
    line-height: 1.85;
    max-width: 560px;
    margin-bottom: 20px;
}

/* Support Pills */
.network-support-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 26px;
}

.network-support-pills span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #dbeafe;
    color: var(--primary);
    border-radius: 999px;
    padding: 10px 15px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.network-support-pills i {
    color: var(--accent);
}

/* Stats */
.improved-network-stats {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid #dbeafe;
    border-radius: 26px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    /* max-width: 600px; */
    margin-bottom: 22px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.network-stat-row {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 16px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.stat-icon.blue-icon {
    background: #e0f2fe;
    color: #0284c7;
}

.network-stat-row strong {
    font-size: 34px;
    font-weight: 900;
    color: #0284c7;
    line-height: 1;
    letter-spacing: -0.02em;
}

.network-stat-row em {
    font-style: normal;
    color: #0284c7;
    font-weight: 900;
    font-size: 26px;
}

.network-stat-row span {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    font-weight: 800;
    color: var(--text-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Country Info */
.active-country-panel {
    /* max-width: 600px; */
    margin-bottom: 20px;
}

.country-info {
    display: none;
    align-items: flex-start;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 5px solid var(--accent);
    border-radius: 22px;
    padding: 20px 22px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.country-info.active {
    display: flex;
    animation: countryFade 0.35s ease;
}

@keyframes countryFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.country-flag {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #edf2f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.country-info h4 {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 6px;
}

.country-info p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.75;
}

/* Country Chips */
.sea-country-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /* max-width: 620px; */
}

.sea-country-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--primary);
    border: 1px solid #d8e5ec;
    border-radius: 999px;
    padding: 10px 16px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sea-country-chip span {
    font-size: 17px;
}

.sea-country-chip:hover {
    transform: translateY(-2px);
    border-color: var(--accent-border);
    box-shadow: 0 10px 24px rgba(255, 113, 0, 0.12);
}

.sea-country-chip.active {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    box-shadow: 0 12px 28px rgba(255, 113, 0, 0.22);
}

/* RIGHT MAP */
:root {
    --accent-green: #7dc242;
    /* Gorgeous grass green from reference map */
    --accent-bright: #22c55e;
    /* Interactive active states */
    --neighbor-gray: #cbd5e1;
    /* Muted clean grey for background nations */
}

.sea-map-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.sea-map-card {
    position: relative;
    width: 100%;
    /* Clean white/blue clean professional background gradient */
    background: linear-gradient(135deg, #ffffff 30%, #f0fdf4 75%, #e0f2fe 100%);
    border-radius: 32px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.sea-map-svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================================
   HERO RIGHT — MAP CARD (NEW)
=========================================================== */

.hero-map-wrap {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: heroMapFloat 6s ease-in-out 1s infinite;
    will-change: transform;
}

/* Soft green glow behind map */
.hero-map-wrap::before {
    content: '';
    position: absolute;
    top: 12%;
    left: 8%;
    right: 8%;
    bottom: 12%;
    background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

/* Decorative dotted grid (top-right corner) */
.hero-map-wrap::after {
    content: '';
    position: absolute;
    top: -28px;
    right: -20px;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.22) 1.5px, transparent 1.6px);
    background-size: 16px 16px;
    z-index: 0;
    pointer-events: none;
}

/* The map image itself */
.hero-map-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.50);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-map-wrap:hover .hero-map-img {
    transform: scale(1.025);
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.60);
}

/* Glass badge on map */
.hero-map-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    background: rgba(10, 22, 40, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.30);
    pointer-events: none;
}

.hero-map-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-light);
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    70%  { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

@keyframes heroMapFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* ================= MODERN PILLS / CHIPS ================= */

.country-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.country-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.country-pill:hover,
.country-pill.active {
    background: #f0fdf4;
    border-color: var(--accent-bright);
    color: #15803d;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.15);
    transform: translateY(-1.5px);
}

/* flag svg  */

.sea-map-caption {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    max-width: 780px;
    position: relative;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);

    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);

    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.caption-content {
    flex: 1;
}

.caption-title {
    margin: 0 0 16px 0;
    padding: 0;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #0f7a3a;
    line-height: 1.4;
}

/* Country pills */

.country-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.country-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #ffffff;

    border-radius: 100px;
    border: 1px solid #f1f5f9;

    color: #0f172a;
    font-weight: 500;
    font-size: 0.95rem;

    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);

    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.country-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.15);
    border-color: #dcfce7;
    background: #ffffff;
}

/* Flag Styling */

.flag-icon {
    width: 24px;
    height: 18px;
    border-radius: 6px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    object-fit: cover;
    display: inline-block;
    background-size: cover !important;
}

/* Map Pin */

.map-pin-wrapper {
    padding: 12px;
    border-radius: 16px;
    background: rgba(254, 242, 242, 0.8);
    border: 1px solid rgba(254, 202, 202, 0.5);
}

.map-pin {
    font-size: 28px;
    color: #ef4444;
    animation: bounce 2s infinite;
}

/* Small bounce animation on the pin */

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Mobile view */

@media screen and (max-width: 600px) {
    .sea-map-caption {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .map-pin-wrapper {
        align-self: flex-start;
    }

    .country-pill {
        padding: 9px 14px;
        font-size: 0.9rem;
    }

    .flag-icon {
        width: 22px;
        height: 16px;
    }
}




/* Responsive */
@media (max-width: 1100px) {
    .sea-network-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .sea-map-card {
        min-height: 100%;
    }
}

@media (max-width: 768px) {
    .network-section {
        padding: 78px 0;
    }

    .network-title {
        font-size: 32px;
    }

    .improved-network-stats {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .sea-map-card {
        min-height: 100%;
        border-radius: 24px;
    }

    .sea-map-svg {
        padding: 18px;
    }

    .sea-tooltip {
        font-size: 10px;
        padding: 7px 11px;
    }

    .country-info {
        padding: 18px;
    }

    .country-flag {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .sea-map-card {
        min-height: 100%;
    }

    .sea-tooltip {
        display: none;
    }

    .sea-map-caption {
        align-items: flex-start;
    }
}

/* ============================================================
   PROJECTS SLIDER - LIGHT TECH split-screen EDITION (100% FLUID)
   ============================================================ */
.projects-section {
    padding: 100px 0;
    background: #ffffff;
    /* Clean light tech background */
    overflow: hidden;
}

.projects-container-fluid {
    width: 100%;
}

.projects-slider-wrapper {
    width: 100%;
    margin-top: 40px;
    position: relative;
    padding: 0px 15px;
}

/* Force Swiper slides to render smoothly */
.projectsSwiper {
    width: 100%;
    /* padding: 20px 0 80px; */
}

.projectsSwiper .swiper-slide {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    /* padding: 0 24px; */
    height: auto;
    box-sizing: border-box;
}

/* ─── SPLIT-SCREEN LAYOUT GRID ─── */
.project-split-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* 55% Visual, 45% Tech Details */
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
    min-height: 520px;
}

/* ─── VISUAL IMAGE SIDE (55%) ─── */
.project-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #0f172a;
    overflow: hidden;
}

.project-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-split-layout:hover .project-visual img {
    transform: scale(1.04);
}

/* Floating Status badges on images */
.project-floating-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 5;
}

.badge-commercial {
    background: var(--electric-blue);
}

.badge-residential {
    background: var(--accent);
}

.badge-industrial {
    background: #7c3aed;
}

.pulse-ring {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    position: relative;
}

.pulse-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 50%;
    animation: badge-pulse 1.8s infinite;
}

@keyframes badge-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* ─── INFORMATION SIDE (45%) ─── */
.project-details {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    position: relative;
}

.project-serial {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.project-details h3 {
    font-size: 28px;
    font-weight: 900;
    color: #0b1329;
    /* Cosmic Navy Title */
    margin-bottom: 16px;
    line-height: 1.25;
}

.project-desc {
    font-size: 14.5px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ─── TECHNICAL SPECIFICATIONS GRID ─── */
.project-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 15px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 25px;
}

.metric-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.metric-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Keep icon styling visually rich but simple */
.orange-box {
    background: #fff7ed;
    color: #ea580c;
}

.blue-box {
    background: #eff6ff;
    color: var(--electric-blue);
}

.green-box {
    background: #f0fdf4;
    color: var(--accent);
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.m-val {
    font-size: 13.5px;
    font-weight: 800;
    color: #0b1329;
}

.m-lbl {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* ─── HARDWARE BADGES ROW ─── */
.project-hardware-row {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    gap: 15px;
}

.hardware-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #0b1329;
    letter-spacing: 0.05em;
}

.hardware-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.hw-badge {
    font-size: 10px;
    font-weight: 800;
    color: var(--accent);
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ─── SWIPER SLIDER CONTROLLERS ─── */
.projects-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.projectsSwiper .swiper-button-next,
.projectsSwiper .swiper-button-prev {
    position: static;
    color: #0b1329;
    background: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    margin: 0;
    transition: all var(--transition);
}

.projectsSwiper .swiper-button-next:after,
.projectsSwiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: 900;
}

.projectsSwiper .swiper-button-next:hover,
.projectsSwiper .swiper-button-prev:hover {
    background: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
    transform: scale(1.05);
}

/* Custom bullet styling */
.projects-pagination {
    width: auto !important;
}

.projectsSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    margin: 0 6px !important;
    transition: all var(--transition);
}

.projectsSwiper .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 24px;
    border-radius: 99px;
}

/* ============================================================
   RESPONSIVE DESIGN ADAPTATIONS
   ============================================================ */
@media (max-width: 1024px) {
    .project-split-layout {
        grid-template-columns: 1fr;
        /* Stack vertically on tablet/mobile */
        min-height: auto;
    }

    .project-visual {
        height: 320px;
        min-height: auto;
    }

    .project-details {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .project-visual {
        height: 250px;
    }

    .project-details h3 {
        font-size: 22px;
    }

    .project-metrics-grid {
        grid-template-columns: 1fr;
        /* Stack specifications linearly */
        gap: 16px;
    }

    .project-hardware-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ============================================================
   CTA BANNER — PROFESSIONAL REDESIGN
   ============================================================ */
.cta-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg,
            #0a0f1c 0%,
            #111827 30%,
            #1a1a2e 60%,
            #0f172a 100%);
}

/* ---------- Background Decorative Elements ---------- */
.cta-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Ambient Glows */
.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.cta-glow-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 113, 0, 0.2), transparent 70%);
    animation: ctaGlowPulse 6s ease-in-out infinite;
}

.cta-glow-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 140, 50, 0.15), transparent 70%);
    animation: ctaGlowPulse 8s ease-in-out infinite reverse;
}

/* Dot Grid Pattern */
.cta-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Floating Geometric Shapes */
.cta-float-shape {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 113, 0, 0.08);
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 15%;
    animation: ctaFloat 20s linear infinite;
}

.cta-shape-2 {
    width: 200px;
    height: 200px;
    bottom: 5%;
    left: 10%;
    border-color: rgba(255, 140, 50, 0.06);
    animation: ctaFloat 15s linear infinite reverse;
}

.cta-shape-3 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 40%;
    border-color: rgba(255, 255, 255, 0.04);
    animation: ctaFloat 12s linear infinite;
}

/* Floating Particles */
.cta-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 113, 0, 0.4);
    border-radius: 50%;
    animation: ctaParticleFloat 10s ease-in-out infinite;
}

.cta-particle-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.cta-particle-2 {
    top: 70%;
    left: 75%;
    width: 3px;
    height: 3px;
    animation-delay: 2s;
    animation-duration: 14s;
}

.cta-particle-3 {
    top: 40%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 140, 50, 0.3);
    animation-delay: 4s;
    animation-duration: 11s;
}

.cta-particle-4 {
    top: 80%;
    left: 30%;
    width: 3px;
    height: 3px;
    animation-delay: 1s;
    animation-duration: 16s;
}

.cta-particle-5 {
    top: 15%;
    left: 85%;
    width: 4px;
    height: 4px;
    background: rgba(255, 200, 100, 0.25);
    animation-delay: 3s;
    animation-duration: 13s;
}

/* ---------- CTA Inner Layout ---------- */
.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ---------- Left Content ---------- */
.cta-content {
    flex: 1;
    max-width: 600px;
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(255, 113, 0, 0.1);
    border: 1px solid rgba(255, 113, 0, 0.2);
    border-radius: 999px;
    margin-bottom: 24px;
}

.cta-badge-dot {
    width: 8px;
    height: 8px;
    background: #FF7100;
    border-radius: 50%;
    animation: ctaDotPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 113, 0, 0.5);
}

.cta-badge-text {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF7100;
}

/* Heading */
.cta-heading {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta-heading-accent {
    background: linear-gradient(135deg, #FF7100, #ffaa44, #FF7100);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ctaShimmer 4s linear infinite;
}

/* Description */
.cta-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 36px;
    max-width: 520px;
}

/* Stats Row */
.cta-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.cta-stat span {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
    display: block;
}

.cta-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(255, 113, 0, 0.3),
            transparent);
}

/* ---------- Right Action Card ---------- */
.cta-action-box {
    flex-shrink: 0;
    width: 400px;
}

.cta-action-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.cta-action-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF7100, #ffaa44, #FF7100);
    background-size: 200% auto;
    animation: ctaShimmer 3s linear infinite;
}

.cta-action-card:hover {
    border-color: rgba(255, 113, 0, 0.15);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 113, 0, 0.06);
}

/* Card Icon */
.cta-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #FF7100, #ff9a3c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(255, 113, 0, 0.3);
}

.cta-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.cta-card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* ---------- CTA Buttons ---------- */
.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Primary Button */
.cta-btn-primary {
    background: linear-gradient(135deg, #FF7100, #ff9a3c);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 16px rgba(255, 113, 0, 0.35);
}

.cta-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff8b2b, #ffaa44);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 113, 0, 0.45);
}

.cta-btn-primary:hover::before {
    opacity: 1;
}

.cta-btn-primary i,
.cta-btn-primary span {
    position: relative;
    z-index: 1;
}

/* Secondary Button */
.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 113, 0, 0.3);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ---------- Trust Section ---------- */
.cta-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-trust-avatars {
    display: flex;
}

.cta-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(17, 24, 39, 1);
    object-fit: cover;
    margin-left: -8px;
    background: #1e293b;
}

.cta-avatar:first-child {
    margin-left: 0;
}

.cta-avatar-more {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: #FF7100;
    background: rgba(255, 113, 0, 0.15);
    border-color: rgba(17, 24, 39, 1);
}

.cta-trust-text {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.4;
}

.cta-trust-text strong {
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- Animations ---------- */
@keyframes ctaGlowPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes ctaFloat {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes ctaParticleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-10px) translateX(-20px);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-40px) translateX(10px);
        opacity: 0.9;
    }
}

@keyframes ctaDotPulse {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(255, 113, 0, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 12px rgba(255, 113, 0, 0.7);
        transform: scale(1.2);
    }
}

@keyframes ctaShimmer {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
    .cta-banner {
        padding: 80px 0;
    }

    .cta-inner {
        gap: 40px;
    }

    .cta-action-box {
        width: 360px;
    }

    .cta-heading {
        font-size: clamp(28px, 3.5vw, 40px);
    }

    .cta-stats {
        gap: 18px;
    }

    .cta-stat strong {
        font-size: 22px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
    .cta-banner {
        padding: 60px 0;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .cta-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cta-description {
        max-width: 100%;
    }

    .cta-heading {
        font-size: clamp(26px, 5vw, 36px);
    }

    .cta-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .cta-stat-divider {
        display: none;
    }

    .cta-stat {
        min-width: 100px;
    }

    .cta-action-box {
        width: 100%;
        /* max-width: 420px; */
    }

    .cta-action-card {
        padding: 32px 24px;
    }

    .cta-trust {
        justify-content: center;
    }

    /* Hide some decorative elements on mobile */
    .cta-shape-3,
    .cta-particle-4,
    .cta-particle-5 {
        display: none;
    }
}

@media (max-width: 480px) {
    .cta-banner {
        padding: 48px 0;
    }

    .cta-heading {
        font-size: 26px;
    }

    .cta-description {
        font-size: 14px;
    }

    .cta-stat strong {
        font-size: 20px;
    }

    .cta-action-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .cta-card-title {
        font-size: 20px;
    }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(255, 113, 0, 0.1), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 34px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-info-card {
    position: relative;
    background: #fff;
    border: 1px solid #e9edf3;
    border-radius: 28px;
    padding: 34px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.contact-info-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 113, 0, 0.12), transparent 65%);
    pointer-events: none;
}

.contact-card-icon {
    width: 66px;
    height: 66px;
    border-radius: 20px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 22px;
}

.contact-small-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.contact-info-card h3 {
    font-size: 26px;
    line-height: 1.25;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.contact-info-card>p {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text-soft);
    margin-bottom: 24px;
}

.contact-highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff7f1;
    border: 1px solid #ffd8bd;
    border-radius: 18px;
    padding: 16px;
}

.contact-highlight i {
    color: var(--accent);
    margin-top: 3px;
}

.contact-highlight span {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--primary);
    font-weight: 600;
}

.contact-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid #e9edf3;
    transition: all 0.35s ease;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.035);
}

.contact-item:hover {
    transform: translateY(-4px);
    border-color: var(--accent-border);
    box-shadow: 0 18px 42px rgba(255, 113, 0, 0.08);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    flex-shrink: 0;
}

.contact-item .label-caps {
    font-size: 10px;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.55;
}

.contact-item a:hover {
    color: var(--accent);
}

/* Form */
.contact-form-wrap {
    position: relative;
    background: #fff;
    padding: 38px;
    border-radius: 30px;
    border: 1px solid #e9edf3;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.07);
    overflow: hidden;
}

.contact-form-wrap::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 113, 0, 0.13), transparent 66%);
    pointer-events: none;
}

.form-top {
    position: relative;
    z-index: 2;
    margin-bottom: 28px;
}

.form-badge {
    display: inline-flex;
    padding: 8px 13px;
    border-radius: 999px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.form-top h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.form-top p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
}

.input-wrap {
    position: relative;
}

.input-wrap>i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent);
    font-size: 14px;
    z-index: 2;
}

.textarea-wrap>i {
    top: 20px;
    transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    padding: 15px 15px 15px 44px;
    font-size: 14px;
    border-radius: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: #f8fafc;
    color: var(--text);
    font-family: var(--font-main);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.7;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    background: #fff;
    border-color: #ffb277;
    box-shadow: 0 0 0 4px rgba(255, 113, 0, 0.1);
}

.contact-submit-btn {
    margin-top: 4px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-message {
    margin-top: 4px;
    display: none;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 14px;
    background: #f8fafc;
}

/* ===================== FOOTER (MINIMAL) ===================== */

.footer{
    background:var(--navy-dark);
    color:rgba(255,255,255,.7);
    padding:60px 0 25px;
}

.footer-minimal{
    text-align:center;
}

.footer-minimal-top{

    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;

}

.footer-brand{

    display:inline-flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
    flex-wrap: wrap;
    justify-content:center

}

.footer-logo{

    height:50px;
    width:auto;

}

.footer-brand-text{

    text-align:left;

}

.footer-brand-text strong{

    color:#fff;
    display:block;
    font-size:1.1rem;
    font-weight:800;

}

.footer-brand-text span{

    color:var(--accent-light);
    font-size:.8rem;
    text-transform:uppercase;
    letter-spacing:.1em;

}

.footer-address{

    color:rgba(255,255,255,.6);
    font-size:.92rem;
    max-width:600px;
    line-height:1.6;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;

}

.footer-address i{

    color:var(--accent-light);

}

.footer-contact-list{

    list-style:none;
    padding:0;

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;

}

.footer-contact-list li{

    display:flex;
    align-items:center;
    justify-content: center;
    gap:8px;

}

.footer-contact-list i{

    color:var(--accent-light);
    font-size:1rem;

}

.footer-contact-list a{

    color:rgba(255,255,255,.75);
    text-decoration:none;
    font-size:.92rem;
    transition:.3s;

}

.footer-contact-list a:hover{

    color:var(--accent-light);

}

.footer-socials{

    display:flex;
    gap:12px;
    margin-top:5px;

}

.footer-socials a{

    width:40px;
    height:40px;

    border-radius:50%;

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.1);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    transition:.3s;

}

.footer-socials a:hover{

    background:var(--accent);
    border-color:var(--accent);
    transform:translateY(-3px);

}

.footer-minimal-bottom{

    margin-top:40px;
    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-minimal-bottom p{

    color:rgba(255,255,255,.4);
    font-size:.85rem;

}

@media(max-width:600px){

    .footer-contact-list{
        flex-direction:column;
        gap:14px;
    }

}

/* ============================================================
   WHATSAPP + MOBILE MENU
   ============================================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 2rem;
    background: #25D366;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 1000;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 120;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 0 24px;
    border-bottom: 1px solid #eef2f7;
}

.mobile-menu-header .logo {
    font-weight: 800;
    color: var(--primary);
}

.mobile-menu-header button {
    border: none;
    background: none;
    font-size: 24px;
    color: var(--accent);
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    gap: 22px;
}

.mobile-nav a {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #475569;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav a.active {
    color: var(--accent);
}

.mobile-quote-btn {
    margin-top: 10px;
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {

    .about-shell,
    .footer-top,
    .contact-grid,
    .network-grid, .page-hero-content {
        grid-template-columns: 1fr !important;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .mobile-only {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none;
    }

    .container {
        padding: 0 20px;
    }

    .brand-text strong {
        font-size: 14px;
    }

    .brand-text span {
        font-size: 9px;
    }

    .hero {
        min-height: 680px;
        align-items: flex-start;
    }

    /* .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0.97) 40%,
                rgba(255, 255, 255, 0.78) 100%);
    } */

    .hero-content {
        padding: 56px 20px 70px;
    }

    .hero-title {
        font-size: 32px;
    }

    .br-lg {
        display: none;
    }

    .hero-buttons a,
    .hero-buttons button {
        width: 100%;
    }

    .hero-arrow {
        display: none;
    }

    .section-header h2 {
        font-size: 29px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .filter-tab {
        padding: 11px 16px;
        font-size: 11px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-section,
    .brands-section,
    .network-section,
    .projects-section,
    .contact-section,
    .about-section {
        padding: 78px 0;
    }

    .projects-slider-container {
        padding: 0;
    }

    .projectsSwiper .swiper-button-next,
    .projectsSwiper .swiper-button-prev {
        display: none;
    }

    .network-stats {
        grid-template-columns: 1fr;
    }

    .network-stat strong {
        font-size: 34px;
    }

    .cta-banner {
        padding: 56px 0;
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        width: 100%;
    }

    .cta-actions a,
    .cta-actions button {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap,
    .contact-info-card {
        padding: 26px;
        border-radius: 24px;
    }

    .contact-info-card h3,
    .form-top h3 {
        font-size: 23px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .about-image-card img {
        height: 340px;
    }

    .about-floating-box {
        position: static;
        margin: 18px;
    }

    .brand-logo-wall {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 520px) and (max-width: 767px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 519px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-mini-stats {
        flex-direction: column;
    }

    .whatsapp-btn {
        right: 1rem;
        bottom: 1rem;
        font-size: 0.82rem;
    }

    .brand-mark,
    .footer-brand-mark {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }
}


/* extra section  */


/* ============================================================
   ADVANTAGE SECTION — PREMIUM DARK EDITION
   ============================================================ */
.advantage-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(160deg, #0a1628 0%, #0f2137 50%, #0a1a2e 100%);
    overflow: hidden;
    color: #fff;
}

/* ─── BACKGROUND ELEMENTS ─── */
.adv-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.adv-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.adv-glow-1 {
    width: 500px;
    height: 500px;
    background: rgba(34, 197, 94, 0.15);
    top: -150px;
    left: -100px;
    animation: advFloat 12s ease-in-out infinite;
}

.adv-glow-2 {
    width: 450px;
    height: 450px;
    background: rgba(59, 130, 246, 0.12);
    bottom: -150px;
    right: -100px;
    animation: advFloat 15s ease-in-out infinite reverse;
}

.adv-glow-3 {
    width: 350px;
    height: 350px;
    background: rgba(249, 115, 22, 0.08);
    top: 40%;
    left: 45%;
    animation: advFloat 18s ease-in-out infinite;
}

@keyframes advFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(40px, -30px) scale(1.1);
    }
}

/* Grid pattern overlay */
.adv-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}

/* Floating rings */
.adv-float-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.adv-ring-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 8%;
    animation: advSpin 25s linear infinite;
}

.adv-ring-2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 5%;
    border-style: dashed;
    animation: advSpin 20s linear infinite reverse;
}

@keyframes advSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Floating particles */
.adv-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.6);
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.adv-particle-1 {
    top: 20%;
    left: 15%;
    animation: advParticle 6s ease-in-out infinite;
}

.adv-particle-2 {
    top: 60%;
    right: 20%;
    background: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.8);
    animation: advParticle 8s ease-in-out infinite 1s;
}

.adv-particle-3 {
    bottom: 25%;
    left: 40%;
    background: rgba(249, 115, 22, 0.6);
    box-shadow: 0 0 12px rgba(249, 115, 22, 0.8);
    animation: advParticle 7s ease-in-out infinite 2s;
}

@keyframes advParticle {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-25px);
        opacity: 1;
    }
}

/* ─── SECTION HEADER ─── */
.adv-header {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.adv-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #4ade80;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.adv-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: advPulse 2s ease-in-out infinite;
}

@keyframes advPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
}

.adv-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: #fff;
}

.adv-title-accent {
    display: block;
    background: linear-gradient(135deg, #4ade80, #22c55e, #10b981);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.adv-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

/* ─── CARDS GRID ─── */
.adv-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ─── ADVANTAGE CARD ─── */
.adv-card {
    position: relative;
    padding: 36px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.adv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Featured card */
.adv-card-featured {
    background: linear-gradient(160deg, rgba(34, 197, 94, 0.12), rgba(16, 185, 129, 0.05));
    border-color: rgba(34, 197, 94, 0.3);
    transform: scale(1.03);
}

.adv-card-featured:hover {
    transform: scale(1.03) translateY(-10px);
}

/* Ribbon on featured */
.adv-card-badge-ribbon {
    position: absolute;
    top: 20px;
    right: -32px;
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 6px 40px;
    transform: rotate(45deg);
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
    z-index: 3;
}

/* Card glow on hover */
.adv-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.adv-card:hover .adv-card-glow {
    opacity: 1;
}

/* Shine sweep */
.adv-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transition: none;
    pointer-events: none;
}

.adv-card:hover .adv-card-shine {
    animation: advShine 0.8s ease forwards;
}

@keyframes advShine {
    to {
        left: 200%;
    }
}

/* Card top row */
.adv-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

/* Icon */
.adv-card-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 18px;
    font-size: 26px;
    color: #4ade80;
    transition: all 0.4s ease;
}

.adv-card:hover .adv-card-icon {
    transform: rotate(-8deg) scale(1.1);
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: #fff;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

/* Number */
.adv-card-number {
    font-size: 48px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.08);
    transition: color 0.4s ease;
}

.adv-card:hover .adv-card-number {
    color: rgba(34, 197, 94, 0.2);
}

/* Title */
.adv-card-title {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

/* Text */
.adv-card-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

/* Footer */
.adv-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.adv-card-stat {
    display: flex;
    flex-direction: column;
}

.adv-card-stat strong {
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.adv-plus {
    -webkit-text-fill-color: #4ade80;
}

.adv-card-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Arrow */
.adv-card-arrow {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.4s ease;
}

.adv-card:hover .adv-card-arrow {
    background: linear-gradient(135deg, #22c55e, #10b981);
    border-color: transparent;
    color: #fff;
    transform: translateX(4px);
    box-shadow: 0 6px 18px rgba(34, 197, 94, 0.4);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
    .adv-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .adv-card-featured {
        transform: scale(1);
    }

    .adv-card-featured:hover {
        transform: translateY(-10px);
    }

    .adv-ring-1,
    .adv-ring-2 {
        display: none;
    }
}

@media (max-width: 600px) {
    .advantage-section {
        padding: 70px 0;
    }

    .adv-card {
        padding: 28px 24px;
    }

    .adv-card-number {
        font-size: 40px;
    }
}

/* ============================================================
   WHY CHOOSE US — COLORFUL CARD EDITION
   ============================================================ */
.why-section {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f5f7fa 100%);
    overflow: hidden;
}

/* Background decorations */
.why-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    pointer-events: none;
}

.why-bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.why-glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(34, 197, 94, 0.08);
    top: 5%;
    left: -8%;
}

.why-glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(249, 115, 22, 0.07);
    bottom: 5%;
    right: -8%;
}

.why-section .section-header {
    position: relative;
    z-index: 2;
}

/* ─── GRID ─── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

/* ─── WHY ITEM CARD ─── */
.why-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Colored left accent bar */
.why-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #22c55e, #10b981);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.1);
}

.why-item:hover::before {
    transform: scaleY(1);
}

/* ─── ICON BOX ─── */
.why-icon-box {
    flex-shrink: 0;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 16px;
    font-size: 24px;
    color: #16a34a;
    transition: all 0.4s ease;
}

.why-item:hover .why-icon-box {
    background: linear-gradient(135deg, #22c55e, #10b981);
    color: #fff;
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

/* ─── CONTENT ─── */
.why-content {
    flex-grow: 1;
}

.why-content h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary, #0f172a);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.why-content p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
}

/* ─── NUMBER ─── */
.why-number {
    flex-shrink: 0;
    font-size: 30px;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    transition: color 0.4s ease;
}

.why-item:hover .why-number {
    color: rgba(34, 197, 94, 0.2);
}

/* ─── ALTERNATING COLOR ACCENTS ─── */
/* Orange items (2, 5, 8) */
.why-item:nth-child(3n+2)::before {
    background: linear-gradient(180deg, #f97316, #ef4444);
}

.why-item:nth-child(3n+2) .why-icon-box {
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    color: #ea580c;
}

.why-item:nth-child(3n+2):hover {
    border-color: rgba(249, 115, 22, 0.25);
    box-shadow: 0 15px 35px rgba(249, 115, 22, 0.1);
}

.why-item:nth-child(3n+2):hover .why-icon-box {
    background: linear-gradient(135deg, #f97316, #ef4444);
    color: #fff;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.why-item:nth-child(3n+2):hover .why-number {
    color: rgba(249, 115, 22, 0.2);
}

/* Blue items (3, 6, 9) */
.why-item:nth-child(3n+3)::before {
    background: linear-gradient(180deg, #3b82f6, #6366f1);
}

.why-item:nth-child(3n+3) .why-icon-box {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    color: #2563eb;
}

.why-item:nth-child(3n+3):hover {
    border-color: rgba(59, 130, 246, 0.25);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.1);
}

.why-item:nth-child(3n+3):hover .why-icon-box {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}

.why-item:nth-child(3n+3):hover .why-number {
    color: rgba(59, 130, 246, 0.2);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .why-item {
        padding: 18px 20px;
        gap: 14px;
    }

    .why-icon-box {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .why-number {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 60px 0 80px;
    }

    .why-content h4 {
        font-size: 15px;
    }

    .why-content p {
        font-size: 12px;
    }
}



/* ============================================================
   FAQ SECTION — WARM EARTHY TONE
   ============================================================ */
/* UPDATED FAQ SECTION TO MATCH NAVY BLUE THEME */
.faq-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #fcfdff 40%,
            #f8fafc 75%,
            #f1f5f9 100%);
    overflow: hidden;
}

.faq-glow-1 {
    background: radial-gradient(circle, rgba(22, 93, 255, 0.09), transparent 70%);
}

.faq-glow-2 {
    background: radial-gradient(circle, rgba(82, 136, 255, 0.06), transparent 70%);
}

/* Background elements */
.faq-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.faq-glow-1 {
    position: absolute;
    width: 420px;
    height: 420px;
    top: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(255, 113, 0, 0.12), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.faq-glow-2 {
    position: absolute;
    width: 360px;
    height: 360px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 153, 51, 0.1), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.faq-grid-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
}

/* Layout stays the same */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* Left side */
.faq-left {
    position: sticky;
    top: 120px;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(255, 113, 0, 0.08);
    border: 1px solid rgba(255, 113, 0, 0.12);
    border-radius: 999px;
    margin-bottom: 24px;
}

.faq-badge-dot {
    width: 7px;
    height: 7px;
    background: #FF7100;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 113, 0, 0.35);
    animation: dotPulse 2s ease-in-out infinite;
}

.faq-badge span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #FF7100;
}

.faq-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 900;
    color: #1f1b16;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.faq-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--accent), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-description {
    font-size: 15px;
    line-height: 1.8;
    color: #6b6255;
    margin-bottom: 32px;
}

/* Image wrapper */
.faq-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.faq-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.faq-image-wrapper:hover .faq-image {
    transform: scale(1.05);
}

.faq-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 27, 22, 0.65), transparent 60%);
}

.faq-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.faq-image-badge i {
    font-size: 18px;
    color: #FF7100;
}

.faq-image-badge strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1f1b16;
}

.faq-image-badge span {
    font-size: 11px;
    color: #7a7163;
}

/* Quick contact */
.faq-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.faq-contact p {
    font-size: 14px;
    color: #6b6255;
    margin: 0;
}

.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent), #ff9a3c);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 6px 18px rgba(255, 113, 0, 0.25);
}

.faq-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 113, 0, 0.35);
}

/* Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    border-color: rgba(255, 113, 0, 0.18);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    border-color: rgba(255, 113, 0, 0.22);
    background: rgba(255, 249, 244, 0.95);
    box-shadow: 0 12px 28px rgba(255, 113, 0, 0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: all 0.3s ease;
}

.faq-q-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: rgba(255, 113, 0, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.faq-item.active .faq-q-icon {
    background: linear-gradient(135deg, var(--accent), var(--accent));
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(255, 113, 0, 0.28);
}

.faq-question span {
    flex: 1;
    font-size: 15px;
    font-weight: 700;
    color: #3a332b;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span {
    color: #1f1b16;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.faq-toggle .fa-plus {
    font-size: 12px;
    color: #8c8576;
    transition: all 0.3s ease;
}

.faq-toggle .fa-minus {
    position: absolute;
    font-size: 12px;
    color: #FF7100;
    opacity: 0;
    transform: rotate(-90deg);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: rgba(255, 113, 0, 0.1);
}

.faq-item.active .faq-toggle .fa-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle .fa-minus {
    opacity: 1;
    transform: rotate(0deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px 0 80px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px 80px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: #6b6255;
    margin: 0;
}

/* Animations (same as before) */
@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(255, 113, 0, 0.25);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 12px rgba(255, 113, 0, 0.45);
        transform: scale(1.3);
    }
}

/* Responsive tweaks (same breakpoints) */
@media (max-width: 991px) {
    .faq-section {
        padding: 80px 0;
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .faq-left {
        position: static;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-answer {
        padding: 0 20px 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }

    .faq-question {
        padding: 16px 18px;
        gap: 10px;
    }

    .faq-contact {
        flex-direction: column;
        text-align: center;
    }
}




/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-section {
    position: relative;
    padding: 120px 0;
    background: #f8fafc;
    overflow: hidden;
}

/* Background */
.team-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.team-glow-1 {
    position: absolute;
    width: 400px;
    height: 400px;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(255, 113, 0, 0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(100px);
}

.team-glow-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: 10%;
    background: radial-gradient(circle, rgba(255, 140, 50, 0.05), transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
}

.team-grid-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 44px 44px;
}

/* Header */
.team-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 2;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 10px;
    background: rgba(255, 113, 0, 0.08);
    border: 1px solid rgba(255, 113, 0, 0.15);
    border-radius: 999px;
    margin-bottom: 24px;
}

.team-badge-dot {
    width: 7px;
    height: 7px;
    background: #FF7100;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 113, 0, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

.team-badge span {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
}

.team-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    color: var();
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.team-title-accent {
    display: block;
    color: var(--accent);
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
}

.team-subtitle {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-soft);
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

/* Team Card */
.team-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border-color: rgba(255, 113, 0, 0.15);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 113, 0, 0.04);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 113, 0, 0.15);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(255, 113, 0, 0.04);
}

/* Card Image */
.team-card-image {
    position: relative;
    overflow: hidden;
    height: 340px;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image img {
    transform: scale(1.08);
}

.team-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(10, 15, 28, 0.9) 0%,
            rgba(10, 15, 28, 0.3) 40%,
            transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-card-overlay {
    opacity: 1;
}

/* Social Links */
.team-card-social {
    display: flex;
    gap: 10px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.team-card:hover .team-card-social {
    transform: translateY(0);
}

.team-card-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.team-card-social a:hover {
    background: #FF7100;
    color: #ffffff;
    border-color: #FF7100;
    transform: translateY(-3px);
}

/* Accent Line */
.team-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FF7100, #ffaa44, #FF7100);
    background-size: 200% auto;
    animation: shimmerText 3s linear infinite;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-card:hover .team-card-accent {
    transform: scaleX(1);
}

/* Card Info */
.team-card-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.team-card-details h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.team-card-role {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.team-card-tag {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 113, 0, 0.08);
    border: 1px solid rgba(255, 113, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent);
    transition: all 0.3s ease;
}

.team-card:hover .team-card-tag {
    background: linear-gradient(135deg, #FF7100, #ff9a3c);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 113, 0, 0.3);
}

/* Bottom CTA */
.team-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.team-cta p {
    font-size: 15px;
    color: var(--primary);
    margin: 0;
}

.team-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 113, 0, 0.08);
    border: 1px solid rgba(255, 113, 0, 0.2);
    border-radius: 12px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-cta-btn:hover {
    background: linear-gradient(135deg, #FF7100, #ff9a3c);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 113, 0, 0.3);
}

.team-cta-btn i {
    transition: transform 0.3s ease;
}

.team-cta-btn:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
    .team-section {
        padding: 80px 0;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid .team-card:last-child {
        grid-column: 1 / -1;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .team-section {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-grid .team-card:last-child {
        max-width: 100%;
        width: 100%;
    }

    .team-card-image {
        height: 280px;
    }

    .team-cta {
        flex-direction: column;
        text-align: center;
    }
}