/* BOXMAR Desktop — Homepage Sections (Trust, Bento, About, Stats, Testimonials, FAQ) */

/* ============================================
   BOXMAR — Desktop Component Styles
   Pure desktop/tablet UI — no @media max-width
   queries. All responsive rules live in
   mobile/components.css and mobile/flagship.css
   ============================================ */


/* ============================================
   BOXMAR GLOBAL LOGISTICS — UI Components
   All self-contained interface components:
   Top bar, Navbar, Hero, Buttons, Trust bar,
   Bento grid, Cards, Forms, Stats, Testimonials,
   FAQ, CTA, Footer, Floating elements, Animations.
   
   Depends on: base.css (design tokens must be
   loaded first via styles.css entry point).
   ============================================ */


/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: linear-gradient(90deg, var(--navy-800) 0%, #0D1E38 50%, var(--navy-800) 100%);
    border-top: 1px solid rgba(200, 146, 42, 0.22);
    border-bottom: 1px solid rgba(200, 146, 42, 0.22);
    padding: var(--space-lg) 0;
    position: relative;
    overflow: hidden;
}

.trust-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(200, 146, 42, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.trust-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--t-base);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    border: 1px solid transparent;
}

.trust-item:hover {
    color: var(--gold-300);
    background: rgba(200, 146, 42, 0.06);
    border-color: rgba(200, 146, 42, 0.15);
}

.trust-item svg {
    flex-shrink: 0;
    transition: transform var(--t-base);
}

.trust-item:hover svg {
    transform: scale(1.15);
}

.trust-item .icon {
    color: var(--gold-400);
    font-size: 1.1rem;
}


/* ============================================
   BENTO GRID — Service cards
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: var(--space-lg);
    grid-auto-flow: dense;
}

.bento-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.015) 100%);
    border: 1px solid rgba(200, 146, 42, 0.15);
    backdrop-filter: blur(24px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.5s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bento-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(200, 146, 42, 0.4);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(200, 146, 42, 0.25), 0 0 60px rgba(200, 146, 42, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.bento-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.bento-card:hover::before {
    opacity: 0.22;
}

/* Size variants */
.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card.wide {
    grid-column: span 2;
    grid-row: span 1;
    padding: var(--space-lg) var(--space-xl);
}

.bento-card.tall {
    grid-row: span 2;
    grid-column: span 1;
}

/* Per-service colour glows */
.bento-chem::before {
    background: radial-gradient(circle at top right, var(--gold-500) 0%, transparent 55%);
}

.bento-sea::before {
    background: radial-gradient(circle at top right, var(--blue-400) 0%, transparent 55%);
}

.bento-road::before {
    background: radial-gradient(circle at top right, var(--gold-400) 0%, transparent 55%);
}

.bento-air::before {
    background: radial-gradient(circle at top right, var(--silver-300) 0%, transparent 55%);
}

.bento-rail::before {
    background: radial-gradient(circle at top right, var(--blue-300) 0%, transparent 55%);
}

.bento-food::before {
    background: radial-gradient(circle at top right, var(--gold-300) 0%, transparent 55%);
}

.bento-content {
    position: relative;
    z-index: 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: rgba(200, 146, 42, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(200, 146, 42, 0.2);
    color: var(--gold-400);
    transition: all var(--t-base);
}

.bento-card:hover .bento-icon {
    background: var(--grad-gold);
    color: var(--navy-900);
    border-color: var(--gold-400);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.bento-card h3 {
    margin-bottom: var(--space-xs);
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.bento-card p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.bento-large-visual {
    position: absolute;
    top: -20px;
    right: -20px;
    opacity: 0.07;
    transition: all var(--t-slow);
    z-index: 0;
}

.bento-card:hover .bento-large-visual {
    opacity: 0.3;
    transform: scale(1.12) rotate(-5deg);
}

.bento-arrow {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transform: translate(-14px, 14px) rotate(-45deg);
    transition: all var(--t-spring);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
}

.bento-arrow svg {
    width: 18px;
    height: 18px;
}

.bento-card:hover .bento-arrow {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
    background: var(--gold-400);
    color: var(--navy-900);
    border-color: var(--gold-300);
    box-shadow: var(--shadow-gold);
}


/* ============================================
   PROMISE CARDS
   ============================================ */
.promise-card {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    transition: all var(--t-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.promise-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform var(--t-base);
    transform-origin: left;
}

.promise-card:hover::after {
    transform: scaleX(1);
}

.promise-card:hover {
    transform: translateY(-6px);
    border-color: rgba(200, 146, 42, 0.25);
    background: rgba(200, 146, 42, 0.06);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(200, 146, 42, 0.12);
}

.promise-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    background: rgba(200, 146, 42, 0.1);
    border: 1px solid rgba(200, 146, 42, 0.22);
    transition: all var(--t-base);
}

.promise-card:hover .promise-icon {
    background: rgba(200, 146, 42, 0.18);
    border-color: rgba(200, 146, 42, 0.4);
    transform: scale(1.08);
}

/* Promise card text — explicit colors for light and dark contexts */
.promise-card h4 {
    color: var(--navy-800);
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.promise-card p {
    color: var(--gray-600);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

/* Promise card on light backgrounds */
.section--gray .promise-card {
    background: var(--white);
    border: 1px solid var(--silver-100);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    backdrop-filter: none;
}

.section--gray .promise-card:hover {
    background: var(--white);
    border-color: rgba(200, 146, 42, 0.25);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(200, 146, 42, 0.12);
}

/* Promise card on dark backgrounds — keep original glass style */
.section--dark .promise-card h4 {
    color: var(--white);
}

.section--dark .promise-card p {
    color: rgba(255, 255, 255, 0.55);
}


/* ============================================
   MISSION & VISION CARDS
   ============================================ */
.mv-card {
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all var(--t-base);
    border: 1px solid var(--silver-100);
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.mv-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
    color: var(--navy-800);
}

.mv-card p {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 0.95rem;
}


/* ============================================
   STATS SECTION
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.stat-card {
    text-align: center;
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: all var(--t-base);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform var(--t-base);
    transform-origin: center;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    background: rgba(200, 146, 42, 0.06);
    border-color: rgba(200, 146, 42, 0.22);
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(200, 146, 42, 0.08);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 146, 42, 0.09);
    border-radius: var(--radius-md);
    border: 1px solid rgba(200, 146, 42, 0.18);
    transition: all var(--t-base);
}

.stat-card:hover .stat-icon {
    background: rgba(200, 146, 42, 0.16);
    border-color: rgba(200, 146, 42, 0.35);
    transform: scale(1.08);
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.stat-number {
    font-family: var(--font-accent);
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-200), var(--gold-400), var(--gold-300));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--space-sm);
    filter: drop-shadow(0 0 12px rgba(200, 146, 42, 0.2));
}

.stat-label {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Stat rings (animated SVG circles) */
.stat-ring {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-md);
}

.stat-ring svg {
    width: 120px;
    height: 120px;
    transform: rotate(-90deg);
}

.stat-ring circle {
    fill: none;
    stroke-width: 4;
}

.stat-ring .ring-bg {
    stroke: rgba(255, 255, 255, 0.08);
}

.stat-ring .ring-fg {
    stroke: var(--gold-400);
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 2.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-ring.visible .ring-fg {
    stroke-dashoffset: 0;
}

.stat-ring .ring-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-accent);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--gold-400);
}


/* ============================================
   TESTIMONIALS SLIDER
   ============================================ */
.testimonials-slider {
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--silver-100);
    box-shadow: var(--shadow-lg);
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: var(--space-3xl) var(--space-2xl);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--gray-600);
    font-style: italic;
    margin-bottom: var(--space-xl);
    max-width: 640px;
}

.testimonial-card>div:first-child {
    color: var(--gold-400);
    opacity: 0.3;
}

.testimonial-author {
    font-weight: 700;
    font-size: 1rem;
    color: var(--navy-800);
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--silver-200);
    cursor: pointer;
    transition: all var(--t-base);
}

.testimonial-dot.active {
    background: var(--gold-500);
    width: 28px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(200, 146, 42, 0.4);
}


/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-item {
    border: 1px solid var(--silver-100);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
    background: var(--white);
    transition: all var(--t-base);
}

.faq-item:hover {
    border-color: rgba(200, 146, 42, 0.3);
    box-shadow: 0 4px 20px rgba(200, 146, 42, 0.07);
}

.faq-item.active {
    border-color: var(--gold-500);
    box-shadow: 0 4px 24px rgba(200, 146, 42, 0.12);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--navy-700);
    cursor: pointer;
    text-align: left;
    transition: color var(--t-base);
}

.faq-question:hover {
    color: var(--gold-600);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold-500);
    transition: transform var(--t-base);
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: var(--space-md) var(--space-xl) var(--space-lg);
    color: var(--gray-600);
    line-height: 1.85;
    font-size: 0.93rem;
    border-top: 1px solid rgba(200, 146, 42, 0.1);
}


/* ============================================
   ABOUT TIMELINE
   ============================================ */
.timeline {
    position: relative;
    padding: var(--space-2xl) 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--gold-500), var(--gold-300), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-weight: 800;
    color: var(--navy-900);
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-gold), 0 0 0 6px var(--white), 0 0 0 8px rgba(200, 146, 42, 0.2);
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    border: 1px solid var(--silver-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--t-base);
}

.timeline-content:hover {
    border-color: rgba(200, 146, 42, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.timeline-content h3 {
    font-size: 1.05rem;
    margin-bottom: var(--space-sm);
    color: var(--navy-800);
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 0.92rem;
    margin: 0;
}


/* ============================================
   SPECS TABLE
   ============================================ */
.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.specs-table th {
    background: linear-gradient(135deg, #D4A843, #C8922A);
    color: var(--navy-900);
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.specs-table td {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--silver-100);
    font-size: 0.9rem;
    color: var(--gray-700);
    transition: background var(--t-fast);
}

.specs-table tbody tr:nth-child(even) td {
    background: rgba(200, 146, 42, 0.03);
}

.specs-table tr:last-child td {
    border-bottom: none;
}

.specs-table tr:hover td {
    background: var(--gold-50) !important;
    color: var(--navy-800);
}

.specs-table td:first-child {
    font-weight: 600;
    color: var(--navy-700);
}

.specs-table td:last-child {
    color: var(--gray-600);
}


/* ============================================
   PREMIUM / FEATURE / ADVANTAGE CARDS
   ============================================ */
.premium-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--grad-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: var(--space-2xl);
    overflow: hidden;
    transition: all var(--t-spring);
    cursor: pointer;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transition: transform var(--t-base);
    transform-origin: left;
}

.premium-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(200, 146, 42, 0.25);
    box-shadow: var(--shadow-xl);
}

.premium-card:hover::before {
    transform: scaleX(1);
}

.premium-card .card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 146, 42, 0.1), transparent 70%);
    top: -60px;
    right: -60px;
    transition: all var(--t-slow);
    opacity: 0;
}

.premium-card:hover .card-glow {
    opacity: 1;
    transform: scale(1.3);
}

.premium-card .card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: var(--space-lg);
    background: rgba(200, 146, 42, 0.08);
    border: 1px solid rgba(200, 146, 42, 0.15);
    transition: all var(--t-base);
}

.premium-card:hover .card-icon {
    background: var(--grad-gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.1) rotate(3deg);
}

.premium-card .card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold-400);
    fill: none;
    stroke-width: 1.5;
    transition: stroke var(--t-fast);
}

.premium-card:hover .card-icon svg {
    stroke: var(--navy-900);
}

.premium-card h3 {
    color: var(--white);
    margin-bottom: var(--space-sm);
    font-size: 1.12rem;
}

.premium-card p {
    color: var(--silver-400);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.premium-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-400);
    font-weight: 700;
    font-size: 0.88rem;
    transition: gap var(--t-fast);
}

.premium-card:hover .card-link {
    gap: 12px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all var(--t-base);
    text-align: center;
}

.feature-card:hover {
    background: rgba(200, 146, 42, 0.05);
    border-color: rgba(200, 146, 42, 0.2);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-card .feature-num {
    font-family: var(--font-accent);
    font-size: 2.4rem;
    font-weight: 800;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.advantage-card,
.feature-box {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--silver-100);
    background: var(--white);
    transition: all var(--t-base);
}

.advantage-card:hover,
.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200, 146, 42, 0.25);
}


/* ============================================
   ICON BOXES
   ============================================ */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.icon-box svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
}

.icon-box--gold {
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.15), rgba(200, 146, 42, 0.05));
    border: 1px solid rgba(200, 146, 42, 0.2);
}

.icon-box--gold svg {
    stroke: var(--gold-400);
    fill: none;
    stroke-width: 1.5;
}

.icon-box--blue {
    background: linear-gradient(135deg, rgba(58, 135, 200, 0.15), rgba(58, 135, 200, 0.05));
    border: 1px solid rgba(58, 135, 200, 0.2);
}

.icon-box--blue svg {
    stroke: var(--blue-400);
    fill: none;
    stroke-width: 1.5;
}

.icon-box--silver {
    background: linear-gradient(135deg, rgba(143, 164, 184, 0.15), rgba(143, 164, 184, 0.05));
    border: 1px solid rgba(143, 164, 184, 0.2);
}

.icon-box--silver svg {
    stroke: var(--silver-400);
    fill: none;
    stroke-width: 1.5;
}


/* ============================================
   ANIMATED GRADIENT BORDER
   ============================================ */
.glow-border {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    z-index: -1;
    background: conic-gradient(from 0deg, var(--gold-500), var(--blue-500), var(--silver-300), var(--gold-300), var(--gold-500));
    border-radius: inherit;
    animation: spin-glow 5s linear infinite;
}

.glow-border::after {
    content: '';
    position: absolute;
    inset: 2px;
    z-index: -1;
    background: var(--navy-900);
    border-radius: inherit;
}

@keyframes spin-glow {
    to {
        transform: rotate(360deg);
    }
}


/* ============================================
   CHAT BOX — Premium v3
   ============================================ */
.chatbox {
    position: fixed;
    bottom: 24px;
    right: 90px;
    z-index: var(--z-chat);
    width: 390px;
    border-radius: var(--radius-xl);
    background: linear-gradient(145deg, rgba(16, 24, 40, 0.85), rgba(16, 24, 40, 0.95));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 146, 42, 0.15);
    overflow: hidden;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(200, 146, 42, 0.2),
        0 0 40px rgba(200, 146, 42, 0.08);
    /* Dark premium shadow */
    transform: translateY(calc(100% + 30px)) scale(0.95);
    opacity: 0;
    transition: all 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.chatbox.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: all;
}

/* ── Header ── */
.chatbox-header {
    background: linear-gradient(135deg, rgba(16, 24, 40, 0.9) 0%, rgba(10, 15, 28, 0.95) 100%);
    color: var(--white);
    padding: 16px var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* Lighter border for separation */
    position: relative;
    overflow: hidden;
}

.chatbox-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 146, 42, 0.3), transparent);
}

.chatbox-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.chatbox-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    flex-shrink: 0;
    box-shadow: 0 0 0 2px rgba(16, 24, 40, 1), 0 0 12px rgba(200, 146, 42, 0.4);
    position: relative;
}

/* Glowing ring behind avatar */
.chatbox-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--grad-gold);
    opacity: 0.3;
    z-index: -1;
    animation: avatar-pulse 3s ease-in-out infinite;
}

@keyframes avatar-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
}

.chatbox-header-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.chatbox-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.chatbox-status {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 6px;
}

.chatbox-status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
    animation: status-pulse 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes status-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.3);
    }
}

.chatbox-header-actions {
    display: flex;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.chatbox-minimize {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--t-fast);
}

.chatbox-minimize:hover {
    background: rgba(200, 146, 42, 0.15);
    border-color: rgba(200, 146, 42, 0.3);
    color: var(--gold-400);
}

/* ── Body ── */
.chatbox-body {
    display: flex;
    flex-direction: column;
    /* Transparent to let the main container's glass effect show through */
    background: transparent;
}

.chatbox-messages {
    padding: var(--space-lg) var(--space-md);
    height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
}

.chatbox-messages::-webkit-scrollbar {
    width: 6px;
}

.chatbox-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chatbox-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.chatbox-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 146, 42, 0.3);
}

/* ── Messages ── */
.chat-msg {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    animation: msg-appear 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(15px);
}

@keyframes msg-appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-msg.bot {
    justify-content: flex-start;
}

.chat-msg.user {
    justify-content: flex-end;
    flex-direction: row-reverse;
}

.chat-msg-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-width: 85%;
}

.chat-msg.user .chat-msg-content {
    align-items: flex-end;
}

/* Small bot avatar */
.chat-avatar-sm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: var(--navy-900);
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 2px;
    box-shadow: 0 2px 6px rgba(200, 146, 42, 0.2);
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.88rem;
    line-height: 1.6;
    word-break: break-word;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.chat-msg.bot .chat-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom-left-radius: 6px;
    /* Soft left border highlight for bot */
    border-left: 3px solid var(--gold-500);
}

.chat-msg.user .chat-bubble {
    background: var(--grad-gold);
    color: var(--navy-900);
    border-bottom-right-radius: 6px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(200, 146, 42, 0.25);
}

/* Timestamp */
.chat-time {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.4);
    padding: 0 6px;
}

/* ── Quick Replies ── */
.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px 4px 4px;
}

.chat-quick {
    padding: 8px 14px;
    border-radius: var(--radius-full);
    background: rgba(16, 24, 40, 0.6);
    border: 1px solid rgba(200, 146, 42, 0.3);
    color: var(--gold-400);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.chat-quick:hover {
    background: var(--grad-gold);
    color: var(--navy-900);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(200, 146, 42, 0.35);
}

/* Follow-up chips */
.chat-followups {
    margin-top: 8px;
    margin-bottom: 4px;
}

.chat-followups .chat-quick {
    background: rgba(200, 146, 42, 0.05);
    border-color: rgba(200, 146, 42, 0.15);
    color: var(--gold-400);
    font-size: 0.75rem;
    padding: 6px 12px;
}

/* ── Typing Indicator ── */
.chat-typing-indicator .chat-bubble {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 18px;
    min-width: 65px;
    border-left: 3px solid rgba(255, 255, 255, 0.2);
    /* Muted border while typing */
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-400);
    display: inline-block;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes typing-bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.3;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ── Bot bubble links ── */
.chat-msg.bot .chat-bubble a {
    color: var(--gold-400);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(200, 146, 42, 0.4);
    transition: all var(--t-fast);
    padding-bottom: 1px;
}

.chat-msg.bot .chat-bubble a:hover {
    color: var(--gold-300);
    border-bottom-color: var(--gold-300);
}

.chat-msg.bot .chat-bubble strong {
    color: var(--white);
    font-weight: 700;
}

/* Proactive message highlight */
.chat-proactive {
    background: linear-gradient(135deg, rgba(200, 146, 42, 0.1), rgba(200, 146, 42, 0.02)) !important;
    border-color: rgba(200, 146, 42, 0.3) !important;
}

/* ── Input Area (footer) ── */
.chatbox-input-area {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    /* Dark mode separator */
    background: transparent;
    padding: 10px 0 6px;
}

/* Legacy input fields hidden, keep styling just in case */
.chatbox-input {
    display: none;
}

.chatbox-footer-note {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    padding: 4px var(--space-md) 8px;
}

/* ── Choice Buttons (v4.0 button-driven chatbot) ── */
.chat-quick-replies.chat-followups {
    padding: 6px 12px 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chat-quick-replies.chat-followups .chat-quick {
    font-size: 0.78rem;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    background: rgba(200, 146, 42, 0.06);
    border: 1px solid rgba(200, 146, 42, 0.2);
    color: var(--gold-400);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.chat-quick-replies.chat-followups .chat-quick:hover {
    background: var(--grad-gold);
    color: var(--navy-900);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 146, 42, 0.3);
}

/* ── Trigger Button ── */
.chatbox-trigger {
    position: fixed;
    bottom: 24px;
    right: 32px;
    z-index: var(--z-chat);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: linear-gradient(135deg, rgba(16, 24, 40, 0.95), rgba(10, 15, 28, 0.98));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--gold-400);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(200, 146, 42, 0.25),
        0 0 40px rgba(200, 146, 42, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    letter-spacing: 0.02em;
}

.chatbox-trigger:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(200, 146, 42, 0.4),
        0 0 60px rgba(200, 146, 42, 0.2);
    color: var(--gold-300);
}

.chatbox-trigger-icon {
    display: flex;
    align-items: center;
    color: var(--white);
    transition: transform var(--t-base);
}

.chatbox-trigger:hover .chatbox-trigger-icon {
    transform: scale(1.1) rotate(5deg);
}

.chatbox-trigger-badge {
    background: var(--grad-gold);
    color: var(--navy-900);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    margin-left: 2px;
    box-shadow: 0 2px 8px rgba(200, 146, 42, 0.4);
    letter-spacing: 0.05em;
}

/* Proactive message bubble */
.chat-proactive {
    background: var(--grad-gold);
    color: var(--navy-900);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: var(--radius-md);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(200, 146, 42, 0.3);
    animation: msg-appear 0.3s ease;
}


/* ============================================
   WAVE DECORATION
   ============================================ */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 80px;
}

.wave {
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 300%;
    height: 80px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23F2F6FA' d='M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40 V80 H0 Z'/%3E%3C/svg%3E") repeat-x;
    background-size: 1440px 80px;
    animation: wave-slide 8s linear infinite;
}

@keyframes wave-slide {
    to {
        transform: translateX(1440px);
    }
}


/* ============================================
   RESPONSIVE — COMPONENT OVERRIDES
   ============================================ */

/* ── ≤1024px ── */

/* ── ≤768px ── */

/* ── ≤576px ── */


/* ============================================
   TRUSTED SINCE 2001 label
   ============================================ */
.camel-trusted-since {
    font-family: var(--font-accent);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(168, 184, 200, 0.55);
    margin-top: 4px;
    text-align: center;
}


/* ============================================
   GLOBAL NETWORK MAP SECTION
   ============================================ */
.global-network-section {
    background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-950) 50%, var(--navy-900) 100%);
}

.global-map-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(200, 146, 42, 0.2);
    box-shadow:
        0 0 0 1px rgba(200, 146, 42, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(200, 146, 42, 0.05) inset;
    margin-bottom: var(--space-2xl);
}

.global-map-svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Continent fills */
.gmap-continent {
    fill: rgba(58, 135, 200, 0.18);
    stroke: rgba(58, 135, 200, 0.32);
    stroke-width: 0.7;
    stroke-linejoin: round;
}

/* Route lines */
.gmap-route {
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 8 12;
    animation: gmap-route-dash 16s linear infinite;
}

.gmap-route-gold {
    stroke: rgba(200, 146, 42, 0.8);
    stroke-width: 1.5;
    stroke-dasharray: 10 14;
    animation: gmap-route-dash 12s linear infinite;
}

.gmap-route-blue {
    stroke: rgba(58, 135, 200, 0.7);
    stroke-width: 1.2;
    stroke-dasharray: 7 14;
    animation: gmap-route-dash 18s linear infinite reverse;
}

.gmap-route-silver {
    stroke: rgba(168, 184, 200, 0.5);
    stroke-width: 1;
    stroke-dasharray: 5 16;
    animation: gmap-route-dash 22s linear infinite;
}

.gmap-route-silk {
    stroke: rgba(224, 176, 80, 0.9);
    stroke-width: 2;
    stroke-dasharray: 12 8;
    filter: drop-shadow(0 0 4px rgba(200, 146, 42, 0.7));
    animation: gmap-route-dash 10s linear infinite;
}

@keyframes gmap-route-dash {
    0% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -200;
    }
}

/* City markers */
.gmap-city {
    cursor: default;
}

.gmap-pulse-ring {
    animation: gmap-city-pulse 3s ease-in-out infinite;
    transform-origin: center;
    transform-box: fill-box;
}

.gmap-pulse-ring-2 {
    animation: gmap-city-pulse 3s ease-in-out infinite 0.8s;
    transform-origin: center;
    transform-box: fill-box;
}

@keyframes gmap-city-pulse {

    0%,
    100% {
        r: 7;
        opacity: 0.25;
    }

    50% {
        r: 13;
        opacity: 0.06;
    }
}

/* City labels */
.gmap-city-label {
    font-family: 'Inter', sans-serif;
    font-size: 8px;
    font-weight: 600;
    fill: rgba(168, 184, 200, 0.8);
    letter-spacing: 0.04em;
    pointer-events: none;
}

.gmap-city-label-hq {
    font-size: 9.5px;
    font-weight: 800;
    fill: rgba(224, 176, 80, 0.95);
}

/* Map Legend */
.gmap-legend {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(2, 8, 16, 0.88);
    border: 1px solid rgba(200, 146, 42, 0.2);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    backdrop-filter: blur(12px);
}

.gmap-legend-title {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--gold-400);
    margin-bottom: var(--space-sm);
}

.gmap-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 4px;
}

.gmap-legend-item:last-child {
    margin-bottom: 0;
}

.gmap-legend-line {
    display: inline-block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    flex-shrink: 0;
}

.gmap-legend-gold {
    background: rgba(200, 146, 42, 0.9);
}

.gmap-legend-blue {
    background: rgba(58, 135, 200, 0.9);
}

.gmap-legend-silver {
    background: rgba(168, 184, 200, 0.7);
}

.gmap-legend-silk {
    background: linear-gradient(90deg, #C8922A, #E0B050, #C8922A);
    height: 3px;
    box-shadow: 0 0 6px rgba(200, 146, 42, 0.6);
}

/* Network Stats Row */
.gmap-stats-row {
    display: flex;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.gmap-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-lg) var(--space-2xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(200, 146, 42, 0.18);
    border-radius: var(--radius-lg);
    transition: all var(--t-base);
    min-width: 120px;
}

.gmap-stat:hover {
    background: rgba(200, 146, 42, 0.07);
    border-color: rgba(200, 146, 42, 0.35);
    transform: translateY(-3px);
}

.gmap-stat-num {
    font-family: var(--font-accent);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-200), var(--gold-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.gmap-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-top: 4px;
}

/* Responsive */


/* ============================================
   GPU COMPOSITING HINTS
   Promote frequently-animated elements to their
   own compositor layer for 60fps rendering.
   ============================================ */
.hero-glow,
.hero-glow-2,
.grid-bg,
.hero-camel-watermark,
.camel-ring-1,
.camel-ring-2,
.camel-ring-3,
.hero-logo-img-large,
.hero-logo-halo,
.camel-core,
.nav-cta,
.chatbox {
    will-change: transform;
}

.navbar {
    will-change: transform, background-color;
}


/* ============================================
   LAYOUT CONTAINMENT
   Isolate heavy sections so layout changes
   inside them don't invalidate the entire page.
   ============================================ */
.hero,
.footer,
.section,
.chatbox {
    contain: layout style;
}


/* ============================================
   MOBILE UX/UI OVERHAUL — ≤768px
   Section-by-section modernization for
   premium mobile experience.
   ============================================ */


/* ============================================
   BRANDED DIVIDER STRIP
   Replaces inline-styled divider with proper
   CSS class for maintainability & design quality
   ============================================ */
.branded-divider {
    background: linear-gradient(90deg, var(--navy-950) 0%, #0A1828 30%, #0D1E38 50%, #0A1828 70%, var(--navy-950) 100%);
    border-top: 1px solid rgba(200, 146, 42, 0.12);
    border-bottom: 1px solid rgba(200, 146, 42, 0.15);
    padding: var(--space-md) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    overflow: hidden;
}

.branded-divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 146, 42, 0.3), transparent);
    max-width: 400px;
}

.branded-divider-center {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.branded-divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    box-shadow: 0 0 10px currentColor;
    animation: pulse-dot 2s infinite;
}

.branded-divider-dot--gold {
    background: var(--gold-400);
    color: var(--gold-400);
}

.branded-divider-dot--blue {
    background: var(--blue-400);
    color: var(--blue-400);
    animation-delay: 0.5s;
}

.branded-divider-text {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(200, 146, 42, 0.7);
}


/* ============================================
   ABOUT SECTION TEXT — Extract inline styles
   ============================================ */
.about-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: var(--space-2xl);
}

.about-pills {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-2xl);
}

.section-subtitle-muted {
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
}

.grid-centered {
    gap: var(--space-2xl);
    max-width: 960px;
    margin: 0 auto;
}

.grid-wide-gap {
    align-items: center;
    gap: var(--space-4xl);
}

.section--dark .stats-section-mb {
    margin-bottom: var(--space-3xl);
}


/* smooth-scroll and prefers-reduced-motion are defined in forms.css */


/* ============================================
   MOBILE MENU — Premium Slide Animation
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: calc(var(--z-nav) + 5);
    background: rgba(5, 14, 28, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s 0.35s;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0s 0s;
}

.mobile-menu a {
    display: block;
    padding: 14px 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s ease, transform 0.2s ease;
    border-radius: var(--radius-sm);
    text-align: center;
    width: 100%;
    max-width: 320px;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
    color: var(--gold-400);
    transform: translateX(6px);
    background: rgba(200, 146, 42, 0.06);
}

/* Stagger menu item entrance */
.mobile-menu.active a {
    animation: menuSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.mobile-menu.active a:nth-child(1) { animation-delay: 0.05s; }
.mobile-menu.active a:nth-child(2) { animation-delay: 0.08s; }
.mobile-menu.active a:nth-child(3) { animation-delay: 0.11s; }
.mobile-menu.active a:nth-child(4) { animation-delay: 0.14s; }
.mobile-menu.active a:nth-child(5) { animation-delay: 0.17s; }
.mobile-menu.active a:nth-child(6) { animation-delay: 0.20s; }
.mobile-menu.active a:nth-child(7) { animation-delay: 0.23s; }
.mobile-menu.active a:nth-child(8) { animation-delay: 0.26s; }
.mobile-menu.active a:nth-child(9) { animation-delay: 0.29s; }
.mobile-menu.active a:nth-child(10) { animation-delay: 0.32s; }
.mobile-menu.active a:nth-child(11) { animation-delay: 0.35s; }

@keyframes menuSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   HAMBURGER — Premium X animation
   ============================================ */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: calc(var(--z-nav) + 10);
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ============================================
   GLOBAL NETWORK SECTION — Extract inline styles
   ============================================ */
.global-network-section {
    padding: var(--space-3xl) 0;
    overflow: hidden;
    position: relative;
}

.global-network-section > .grid-bg {
    opacity: 0.025;
}

.global-network-section > .container {
    position: relative;
    z-index: 2;
}

.section-header-mb {
    margin-bottom: var(--space-2xl);
}


/* ============================================
   SERVICES SECTION — Extract inline styles
   ============================================ */
.services-section {
    position: relative;
    overflow: hidden;
}

.services-section > .container {
    position: relative;
    z-index: 2;
}

.section-subtitle-services {
    margin: 0 auto var(--space-3xl);
    color: rgba(255, 255, 255, 0.6);
}


/* ============================================
   CTA LABEL — Centered with bottom margin
   ============================================ */
.cta-label-centered {
    justify-content: center;
    margin-bottom: var(--space-lg);
}


/* ============================================
   FOOTER CERT — Gold-tinted certificate text
   ============================================ */
.footer-cert-text {
    color: rgba(200, 146, 42, 0.85);
    font-size: 0.82rem;
}