/* Root Variables */
:root {
    --color-bg-main: #FFFFFF;
    --color-bg-secondary: #F8F8F8;
    --color-bg-dark: #0B0F19;
    --color-bg-card: #FFFFFF;
    --color-border-light: #E5E7EB;

    --color-text-main: #333333;
    --color-text-heading: #111111;
    --color-text-muted: #666666;

    --color-gold-primary: #D4AF37;
    --color-gold-light: #F4D675;
    --color-gold-dark: #A58320;
    --color-gold-gradient: linear-gradient(135deg, #F4D675 0%, #D4AF37 50%, #A58320 100%);

    --font-heading: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;

    --transition-medium: 0.4s ease;

    --container-width: 1200px;
    --container-padding: 2rem;
}

/* Text Selection */
::selection {
    background-color: var(--color-gold-primary);
    color: #000000;
}

::-moz-selection {
    background-color: var(--color-gold-primary);
    color: #000000;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold-dark);
    border-radius: 5px;
    border: 2px solid var(--color-bg-main);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold-primary);
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: clip;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-heading);
    margin-bottom: 1rem;
}

/* ==========================================================================
   GLOBAL TYPOGRAPHY SYSTEM (Consistent & Responsive)
   ========================================================================== */

/* H1: Same size across all hero sections, Font Weight: 700, Responsive scaling */
h1,
.hero-title-first,
.inner-hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 3.8rem) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
}

/* H2: Same size across every section title, Same font weight, Same line height */
h2,
.section-title,
.values-header-card h2,
.about-text h2,
.contact-section h2,
.service-category-header h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem) !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.5px !important;
}

/* H3: Same size for all cards and feature titles, Same font weight everywhere */
h3,
.text-title,
.value-3d-card h3,
.service-item-card h3,
.blog-info h3,
.faq-question h3,
.form-container h3 {
    font-size: clamp(1.1rem, 2vw, 1.25rem) !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

/* Preserve custom metric numbers that use heading elements */
.experience-badge h3,
.stat-number h3 {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
}

/* Body Text: Consistent paragraph size, line height, and letter spacing */
p,
.paragraph,
.body-text,
.values-header-card p,
.about-text p,
.value-3d-card p {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    letter-spacing: 0.1px !important;
}

/* Buttons: Consistent text size, font weight */
.btn,
.btn-primary,
.btn-outline {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-gold-primary);
}

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

/* Typography Utilities */
.text-gold {
    color: var(--color-gold-primary);
}

.text-gold-gradient {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    /* Smooth rounded corners globally */
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    gap: 0.5rem;
}

.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--color-gold-gradient);
    color: #111111 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.8rem 2rem;
    /* Better spacing */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFE680 0%, #F4D675 50%, #D4AF37 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

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

.btn-primary:hover {
    color: #111111 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold-primary) !important;
    border: 1px solid var(--color-gold-primary);
}

.btn-outline:hover {
    background: var(--color-gold-gradient);
    color: #111111 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--color-gold-primary);
    color: var(--color-gold-primary);
    transition: all var(--transition-fast);
}

.btn-icon:hover {
    background: var(--color-gold-primary);
    color: #000;
}

/* Marquee */
.top-bar-marquee {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 35px;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1001;
    transition: transform var(--transition-medium);
}

.top-bar-marquee.hidden {
    transform: translateY(-100%);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marqueeScroll 25s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    padding-right: 4rem;
}

.marquee-item i {
    margin-right: 0.5rem;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* Header & Nav */
/* ══════════════════════════════════════════════════════
   HEADER: Full-Width Rounded (Hero) → Capsule (After About)
══════════════════════════════════════════════════════ */

/* ── DEFAULT STATE: Wide rounded floating bar (Hero Section) ── */
.floating-header {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    /* left-right se thoda andar */
    max-width: 1200px;
    /* content se zyada wide na ho */
    z-index: 1000;
    transition:
        top 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        left 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── CAPSULE STATE: Narrow centered pill (About section & beyond) ── */
.floating-header.is-capsule {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 420px;
}

/* ── Inner bar — shared styles ── */
.header-capsule {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    /* Wide-bar look — large rounded pill */
    border-radius: 20px;
    padding: 10px 24px;
    transition:
        border-radius 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        max-width 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Capsule mode — tighter pill */
.floating-header.is-capsule .header-capsule {
    border-radius: 16px;
    padding: 8px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ── Right side group: page-name + hamburger ── */
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Inset Progress Bar — spans full bottom edge */
.header-progress-container {
    position: absolute;
    bottom: -1px;
    left: 24px;
    right: 24px;
    height: 3px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

/* In capsule mode, align with inner padding */
.floating-header.is-capsule .header-progress-container {
    left: 20px;
    right: 20px;
    border-radius: 0 0 16px 16px;
}

.header-scroll-progress {
    width: 0%;
    height: 100%;
    background: var(--color-gold-primary);
    /* Solid brand gold */
    border-radius: 100px;
    transition: width 0.1s ease-out;
}

.header-logo {
    display: flex;
    align-items: center;
    max-width: 170px;
    /* Compact logo container */
}

.header-logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.header-current-page {
    font-size: 15px;
    /* Slightly smaller text */
    font-weight: 600;
    color: #111111;
    font-family: var(--font-body);
}

.header-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 7px;
    /* Even tighter hamburger */
    padding: 0;
}

.header-menu-toggle .bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #111111;
    transition: all 0.3s ease;
}

/* Expandable Navigation Menu below the pill */
.header-nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: auto;
    width: 340px;
    max-width: 95vw;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* In capsule mode — menu stretches full width of capsule */
.floating-header.is-capsule .header-nav-menu {
    right: 0;
    left: 0;
    width: 100%;
}

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

.menu-label {
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    font-weight: 600;
    padding-left: 8px;
    font-family: var(--font-body);
}

.nav-menu-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
    /* Tighter gap */
}

.nav-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Tighter gap */
    padding: 6px 10px;
    /* More compact padding */
    border-radius: 12px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.nav-menu-item:hover {
    background-color: #F8F8F8;
    transform: translateX(4px);
}

.menu-thumb {
    width: 60px;
    /* Compact thumbnail width */
    height: 40px;
    /* Compact thumbnail height */
    border-radius: 8px;
    /* Tighter border radius */
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: block;
}

.menu-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-text {
    font-size: 24px;
    /* Reduced from 32px for a much neater fit */
    font-weight: 700;
    color: #111111;
    font-family: var(--font-body);
    transition: color 0.2s ease;
    line-height: 1.1;
}

.nav-menu-item:hover .menu-text,
.nav-menu-item.active .menu-text {
    color: var(--color-gold-primary);
}

.nav-menu-footer {
    border-top: 1px solid #E5E7EB;
    padding-top: 16px;
}

.btn-menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-gold-gradient);
    color: #111111;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-menu-cta:hover {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Animations for Active Hamburger Toggle (turns into 'X') */
.header-menu-toggle.active {
    height: 12px;
    /* Expand height for 'X' transition */
    justify-content: center;
}

.header-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(1px) rotate(45deg);
}

.header-menu-toggle.active .bar:nth-child(2) {
    transform: translateY(-1px) rotate(-45deg);
}

/* Header Spacer to push page content down */
.header-spacer {
    height: 100px;
}

/* ── Mobile & Tablet: always full-width, no capsule effect ── */
@media (max-width: 992px) {

    .floating-header,
    .floating-header.is-capsule {
        position: fixed;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: 100%;
        transition: none;
    }

    .header-capsule,
    .floating-header.is-capsule .header-capsule {
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-top: none;
        padding: 12px 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    }

    .header-current-page {
        display: none;
    }

    .header-nav-menu {
        top: 100%;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
        width: 100%;
        left: 0;
        right: 0;
        max-width: 100%;
    }

    .menu-thumb {
        display: none;
    }

    .menu-text {
        font-size: 20px;
    }

    .nav-menu-item {
        padding: 8px 12px;
        gap: 0;
    }

    .nav-menu-item:hover {
        transform: none;
    }

    .header-spacer {
        height: 60px;
    }
}

/* Footer */
/* ═══════════════════════════════════════════════════════
   PREMIUM DARK FOOTER
═══════════════════════════════════════════════════════ */
footer.main-footer {
    background: #07111d;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

/* White background for logo in dark footer */
footer.main-footer .logo-wrapper {
    background: #ffffff;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

footer.main-footer .logo-link {
    margin-bottom: 0 !important;
}

/* Subtle radial glow top-left */
footer.main-footer::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

/* Top gold accent line */
footer.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold-primary), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3.5rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 0;
}

/* Column headings */
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--color-gold-primary);
    border-radius: 999px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.65rem;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: color 0.22s, padding-left 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-col ul a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--color-gold-primary);
    transition: width 0.22s;
    vertical-align: middle;
}

.footer-col ul a:hover {
    color: var(--color-gold-primary);
    padding-left: 0.4rem;
}

.footer-col ul a:hover::before {
    width: 10px;
}

/* About text */
.footer-about-text {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    max-width: 280px;
}

/* Social links */
.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    background: var(--color-gold-primary);
    border-color: var(--color-gold-primary);
    color: #0a0f18;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Contact info */
.contact-info li {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-info li span {
    color: rgba(255, 255, 255, 0.5);
}

.contact-info i {
    color: var(--color-gold-primary);
    margin-top: 0.18rem;
    width: 14px;
    flex-shrink: 0;
}

/* Footer bottom bar */
.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.28);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-crafted {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.28);
}

.footer-crafted a {
    color: var(--color-gold-primary);
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.footer-crafted a:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* ── Footer responsive ── */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-about-text {
        max-width: 100%;
    }
}

/* Service Popover */
.service-popover {
    position: fixed;
    z-index: 1050;
    width: 320px;
    background: rgba(15, 23, 36, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(0.95);
    opacity: 0;
}

.service-popover:not(.hidden) {
    transform: scale(1);
    opacity: 1;
}

.service-popover.hidden {
    pointer-events: none;
}

.popover-content h4 {
    color: var(--color-gold-primary);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.popover-content p {
    color: var(--color-text-main);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.popover-btn {
    display: inline-block;
    color: #111;
    background: var(--color-gold-gradient);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.popover-btn:hover {
    transform: translateX(3px);
}

.interactive-card {
    cursor: pointer;
    position: relative;
}

.footer-col ul a:hover {
    color: var(--color-gold-primary);
}

.contact-info li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: #555555;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--color-gold-primary);
    margin-top: 0.2rem;
}


/* Sections */
.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: var(--color-gold-primary);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

/* Layout Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Error 404 */
.error-404 {
    padding: 10rem 0 6rem;
    text-align: center;
    min-height: 70vh;
}

.error-404 h1 {
    font-size: 6rem;
    color: var(--color-gold-primary);
    margin-bottom: 0.5rem;
}

.error-404 h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-404 p {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 992px) {

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

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

@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-wrapper {
        width: 130px !important;
        height: 54px !important;
    }

    header.main-header.scrolled .logo-wrapper {
        width: 120px !important;
        height: 50px !important;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .main-nav.show {
        display: flex !important;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

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

    .section-padding {
        padding: 4rem 0;
    }

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

/* 3D Values Section Redesign */
.values-section-3d {
    background: #ffffff !important;
    padding: 8rem 0;
    color: #111111;
    overflow: hidden;
    position: relative;
    border-top: 3px solid rgba(212, 175, 55, 0.3);
    border-bottom: 3px solid rgba(212, 175, 55, 0.3);
}

/* Animated SVG Background */
.values-svg-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.values-svg-bg svg {
    width: 100%;
    height: 100%;
    opacity: 0.55;
}

.svg-path {
    fill: none;
    opacity: 0;
}

.dna-strand {
    stroke-dasharray: 2200;
    stroke-dashoffset: 2200;
    filter: drop-shadow(0 0 6px rgba(212, 175, 55, 0.5));
}

.dna-rung {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
}

.dna-dot {
    transform: scale(0);
    transform-origin: center;
    opacity: 0;
}

.values-section-3d.animate .svg-path {
    animation: svg-draw 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: var(--delay, 0s);
}

.values-section-3d.animate .dna-strand {
    animation: dna-strand-draw 2.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: var(--delay, 0s);
}

.values-section-3d.animate .dna-rung {
    animation: dna-rung-draw 0.4s ease-out forwards;
    animation-delay: var(--delay, 0s);
}

.values-section-3d.animate .dna-dot {
    animation: dna-dot-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes dna-strand-draw {
    0% {
        stroke-dashoffset: 2200;
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes dna-rung-draw {
    0% {
        stroke-dashoffset: 300;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 1;
    }
}

@keyframes dna-dot-pop {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    70% {
        transform: scale(1.3);
        opacity: 1;
    }

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

@keyframes svg-draw {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.values-section-3d .container {
    position: relative;
    z-index: 1;
}

.values-3d-wrapper {
    perspective: 1500px;
    perspective-origin: 50% 50%;
    width: 100%;
}

.values-3d-scene {
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.values-header-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    max-width: 820px;
    margin: 0 auto 3rem;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    transform: translateZ(30px);
    transition: all 0.4s ease;
    position: relative;
}

.values-header-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 208, 104, 0.3), transparent);
}

.values-header-card h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.3;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-gold-primary);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.values-header-card p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #444444;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.8;
}

.values-3d-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.value-3d-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    transform-style: preserve-3d;
    min-height: 420px;
}

/* Y-axis tilt per card for dynamic composition */
.value-3d-card:nth-child(1) {
    transform: rotateY(15deg) translateZ(10px);
    transform-origin: left center;
}

.value-3d-card:nth-child(2) {
    transform: rotateY(0deg) translateZ(15px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.value-3d-card:nth-child(3) {
    transform: rotateY(-15deg) translateZ(10px);
    transform-origin: right center;
}

/* Hover — card levels out and glows */
.value-3d-card:hover {
    transform: rotateY(0deg) translateY(-8px) translateZ(30px) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 30px rgba(212, 175, 55, 0.2) !important;
    border-color: rgba(212, 175, 55, 0.5);
}

.value-3d-card .illustration-top {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transform: translateZ(20px);
}

.value-3d-card .illustration-top svg {
    max-height: 100%;
    max-width: 100%;
}

.value-3d-card .illustration-bottom {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    transform: translateZ(20px);
}

.value-3d-card .illustration-bottom svg {
    max-height: 100%;
    max-width: 100%;
}

.value-3d-card .divider-pill {
    width: 32px;
    height: 4px;
    background: var(--color-gold-gradient);
    border-radius: 2px;
    margin-bottom: 1.2rem;
    transform: translateZ(10px);
}

.value-3d-card h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--color-gold-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
    transform: translateZ(15px);
}

.value-3d-card.vision h3 {
    text-transform: none;
    /* Keep Vision capitalized appropriately */
}

.value-3d-card.goal h3 {
    text-transform: none;
}

.value-3d-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.8;
    transform: translateZ(10px);
}

@media (max-width: 992px) {
    .values-section-3d {
        padding: 5rem 0;
    }

    .values-3d-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .values-3d-scene {
        transform: none !important;
    }

    .value-3d-card {
        padding: 2.5rem 2rem;
        min-height: auto;
        transform: none !important;
    }

    .value-3d-card:hover {
        transform: translateY(-5px) !important;
    }
}

.value-3d-card .illustration-top img,
.value-3d-card .illustration-bottom img {
    max-height: 140px;
    max-width: 140px;
    object-fit: contain;
}

.value-3d-card img.invert-icon {
    filter: none;
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.faq-sticky-col {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.faq-sticky-col h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.faq-sticky-col p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.faq-cta-box {
    background: #ffffff;
    border: 1px solid rgba(165, 131, 32, 0.15);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.faq-cta-box h4 {
    font-family: var(--font-heading);
    color: var(--color-gold-dark);
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.faq-cta-box p {
    font-size: 0.92rem;
    color: #555555;
    margin-bottom: 1.5rem;
}

/* Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
}

.faq-item:hover {
    transform: translateY(-2px);
    border-color: rgba(165, 131, 32, 0.35);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-item.active {
    border-color: var(--color-gold-dark);
    background: #ffffff;
    box-shadow: 0 15px 35px rgba(165, 131, 32, 0.06), 0 5px 15px rgba(0, 0, 0, 0.02);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: #111111;
    cursor: pointer;
    gap: 1.5rem;
    outline: none;
}

.faq-trigger h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.45;
    color: #111111;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-trigger h3,
.faq-item.active .faq-trigger h3 {
    color: var(--color-gold-dark);
}

.faq-icon-wrapper {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background: rgba(165, 131, 32, 0.04);
    border: 1px solid rgba(165, 131, 32, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-icon-wrapper {
    background: var(--color-gold-gradient);
    color: #000000;
    border-color: var(--color-gold-primary);
    transform: rotate(180deg);
}

.faq-icon-wrapper i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 2rem 1.6rem;
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.7;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 1.1rem;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .faq-sticky-col {
        position: static;
    }

    .faq-sticky-col h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 4rem 0 !important;
        /* reduce spacing on mobile */
    }

    .faq-sticky-col h2 {
        font-size: 2rem !important;
    }

    .faq-cta-box {
        padding: 1.5rem !important;
        /* compact cta box */
    }

    .faq-trigger {
        padding: 1.2rem 1.25rem !important;
        /* reduce padding so text doesn't wrap too much */
        gap: 1rem !important;
    }

    .faq-trigger h3 {
        font-size: 0.95rem !important;
    }

    .faq-content-inner {
        padding: 0 1.25rem 1.25rem !important;
        font-size: 0.88rem !important;
    }

    .faq-icon-wrapper {
        width: 1.85rem !important;
        height: 1.85rem !important;
        font-size: 0.75rem !important;
    }
}

/* Blog Page Styles */
.blog-section {
    padding: 6rem 0 8rem;
    background: var(--color-bg-main);
    background-image: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.blog-filter-btn {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-filter-btn:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: var(--color-text-main);
}

.blog-filter-btn.active {
    background: var(--color-gold-gradient);
    color: #000;
    border-color: var(--color-gold-primary);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.blog-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    justify-content: center !important;
    gap: 2.5rem;
    align-items: stretch;
}

.blog-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.08);
}

.blog-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.08);
}

.blog-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--color-gold-gradient);
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.blog-meta span i {
    color: var(--color-gold-primary);
    margin-right: 0.4rem;
}

.blog-info h3 {
    font-family: var(--font-body);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-main);
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.64rem;
}

.blog-card:hover .blog-info h3 {
    color: var(--color-gold-light);
}

.blog-info p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-link {
    margin-top: auto;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s ease;
}

.blog-card:hover .blog-link {
    gap: 0.8rem;
    color: var(--color-gold-light);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    .blog-section {
        padding: 4rem 0 6rem;
    }
}

/* ===== GLOBAL INNER-HERO STYLES ===== */
.inner-hero {
    padding: 10rem 0 5rem;
    position: relative;
    text-align: center;
    background: url('../images/home/heroimage.png') center/cover no-repeat !important;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(11, 17, 26, 0.9) 0%, rgba(11, 17, 26, 0.95) 100%);
    z-index: 1;
}

.inner-hero .container {
    position: relative;
    z-index: 2;
}

/* Premium Form Controls (Global) */
.form-group {
    margin-bottom: 1.8rem;
}

.form-control {
    width: 100%;
    padding: 1.1rem 1.2rem;
    background: rgba(11, 17, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-main);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-control::placeholder {
    color: rgba(160, 170, 181, 0.6);
}

.form-control:focus {
    outline: none;
    background: rgba(11, 17, 26, 0.85);
    border-color: var(--color-gold-primary);
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23D4AF37' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.25rem;
    padding-right: 3rem;
    color: var(--color-text-main);
}

select.form-control option {
    background: var(--color-bg-secondary);
    color: var(--color-text-main);
}

textarea.form-control {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
}

/* Lenis smooth scrolling rules */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}



/* === EXTRACTED HOME PAGE STYLES === */
/* Home Page Specific Styles */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    /* Align content to the bottom-left */
    justify-content: flex-start;
    overflow: hidden;
    color: #fff;
    padding-top: clamp(90px, 12vh, 140px);
    padding-bottom: clamp(4rem, 12vh, 8rem);
    /* Match Waabi bottom spacing */
    /* background-color: #bc74097f; */
    /* Dark background to prevent grey screen on reload */
}

/* Bug Fix 2 + Improvement 1 — Animated Grid Overlay */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
    background-size: 65px 65px;
    animation: hero-grid-drift 25s linear infinite;
    pointer-events: none;
}

@keyframes hero-grid-drift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 65px 65px;
    }
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* background-color: #05080f; */
    /* Dark background inside video player */
}

/* ────────────────────────────────────────────────
   HERO — stronger overlay for text readability
──────────────────────────────────────────────── */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 10, 18, 0.78) 0%,
            rgba(5, 10, 18, 0.45) 50%,
            rgba(5, 10, 18, 0.65) 100%);
    z-index: 2;
}

/* ────────────────────────────────────────────────
   HERO SLIDER WRAPPER
──────────────────────────────────────────────── */
.hero-slider-wrapper {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    /* vertically centered */
    justify-content: flex-start;
    pointer-events: none;
}

/* ────────────────────────────────────────────────
   INDIVIDUAL SLIDE
──────────────────────────────────────────────── */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    /* Top/bottom padding, NO left/right — handled by inner container */
    padding-top: clamp(7rem, 14vh, 11rem);
    padding-bottom: clamp(4rem, 8vh, 7rem);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    /* Full width so inner container can center itself */
    width: 100%;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 2;
}

.hero-slide.exit {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    pointer-events: none;
    z-index: 1;
}

/* ────────────────────────────────────────────────
   SLIDE CONTENT INNER
──────────────────────────────────────────────── */
.hero-slide-inner {
    /* Same container as header: 1200px max, centered, 2rem side padding */
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
}

/* Badge — small uppercase label */
.hero-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    border: 1px solid rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.08);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    backdrop-filter: blur(6px);
}

/* Heading — Cinzel, massive */
.hero-slide-heading {
    font-family: var(--font-heading) !important;
    font-size: clamp(2rem, 4.8vw, 3.8rem) !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin: 0 !important;
}

/* Paragraph — Manrope, readable */
.hero-slide-para {
    font-family: var(--font-body) !important;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem) !important;
    line-height: 1.75 !important;
    letter-spacing: 0.01em !important;
    color: rgba(255, 255, 255, 0.82) !important;
    max-width: 560px;
    margin: 0 !important;
}

/* CTA Button */
.hero-slide-cta {
    margin-top: 0.4rem;
}

.hero-slide:not(.active) .hero-slide-cta {
    pointer-events: none !important;
}

.hero-slide.active .hero-slide-cta {
    pointer-events: auto;
}

/* ────────────────────────────────────────────────
   SLIDER CONTROLS — unified pill bar, bottom centre
──────────────────────────────────────────────── */
.hero-slider-controls {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 8px 14px;
    pointer-events: auto;
}

/* Dot navigation */
.hero-slider-dots {
    display: flex;
    align-items: center;
    gap: 7px;
    padding-right: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: 14px;
}

.hero-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.hero-dot.active {
    background: var(--color-gold-primary);
    border-color: var(--color-gold-primary);
    transform: scale(1.4);
}

.hero-dot:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.25);
}

/* Arrow buttons */
.hero-slider-arrows {
    display: flex;
    gap: 6px;
    align-items: center;
}

.hero-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}

.hero-arrow:hover {
    background: var(--color-gold-primary);
    border-color: var(--color-gold-primary);
    color: #111;
    transform: scale(1.1);
}

/* ────────────────────────────────────────────────
   SLIDE COUNTER — bottom right
──────────────────────────────────────────────── */
.hero-slide-counter {
    position: absolute;
    bottom: 2.8rem;
    right: clamp(1.5rem, 4vw, 4rem);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

#heroCurrentNum {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-gold-primary);
    line-height: 1;
    font-family: var(--font-heading);
}

.hero-counter-sep {
    display: block;
    width: 28px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-counter-total {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .hero-slide {
        padding: 6rem 1.5rem 5rem;
    }

    .hero-slide-inner {
        gap: 1rem;
    }

    .hero-slide-counter {
        display: none;
    }

    .hero-slider-controls {
        bottom: 1.8rem;
        gap: 1.2rem;
    }
}

/* Global Utility for CSS Grid */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}



/* About Section */
.about-section {
    background: #fff;
    color: #000;
    padding: 6rem 0 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    color: #111;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #555;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.03);
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--color-gold-primary);
}

.feature i {
    font-size: 2rem;
    color: var(--color-gold-primary);
}

.feature span {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    line-height: 1.2;
}

.about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: #ffffff;
    color: #111111;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--color-gold-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    z-index: 10;
}

.experience-badge h3 {
    font-size: 3.5rem;
    color: var(--color-gold-primary);
    margin-bottom: 0.1rem;
    line-height: 1.1;
}

.experience-badge p {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555555;
    margin-bottom: 0;
}

/* Premium Services Grid Section (Reverted & Tuned) */
.services-section {
    background: var(--color-bg-main);
    background-image: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.02) 0%, transparent 60%);
    padding: 3rem 0 2rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--color-bg-card);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3rem 1.5rem;
    text-align: center;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2.6rem;
    color: var(--color-gold-primary);
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease;
    display: inline-block;
}

.service-card h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-text-main);
    transition: color 0.3s ease;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(20, 28, 41, 0.95);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.08);
}

.service-card:hover i {
    transform: scale(1.12);
    color: var(--color-gold-light);
}

.service-card:hover h4 {
    color: var(--color-gold-light);
}

/* Popover Close Button */
.popover-close-btn {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.2s ease;
    outline: none;
}

.popover-close-btn:hover {
    color: var(--color-gold-primary);
}

.center-btn {
    text-align: center;
}

/* ===== HOW WE WORK — STICKY CUBE SECTION ===== */
.hww-section {
    position: relative;
    height: 600vh;
    /* Needed for the 6-step scroll animation */
    background: #0a0f18;
}

.hww-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    /* Fallback */
    height: 100dvh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dark cinematic background for the sticky panel */
.hww-bg {
    position: absolute;
    inset: 0;
    background: #0a0f18;
    z-index: 0;
}

/* Section Header badge — above the experience */
.hww-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
    pointer-events: none;
}

.hww-badge-sub {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d4a84b;
    border: 1px solid rgba(212, 168, 75, 0.4);
    padding: 0.3rem 1rem;
    margin-bottom: 0.4rem;
}

.hww-badge-title {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.1em;
}

/* 3D Scene — sphere lives here */
.hww-scene {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    pointer-events: none;
}

#hww-sphere-wrapper {
    position: relative;
    --s: min(55vw, 55vh, 480px);
    width: var(--s);
    height: var(--s);
    display: flex;
    align-items: center;
    justify-content: center;
}

#hww-sphere {
    width: 100%;
    height: 100%;
    position: absolute;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(0deg);
    will-change: transform;
}

/* Static 3D Sphere glossy overlay */
.hww-sphere-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 8;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25) 0%, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.75) 100%);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 168, 75, 0.25);
    border: 1px solid rgba(212, 168, 75, 0.3);
}

.hww-slice {
    position: absolute;
    inset: 0;
    overflow: hidden;
    backface-visibility: hidden;
    border-radius: 50%;
    border: 2px solid rgba(212, 168, 75, 0.25);
    background: #0a0f18;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.8);
    transition: opacity 0.6s ease, border-color 0.6s ease, box-shadow 0.6s ease;
    opacity: 0.15;
}

.hww-slice.active {
    opacity: 1;
    border-color: rgba(212, 168, 75, 0.8);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 168, 75, 0.35);
}

.hww-slice img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.15;
    transition: opacity 0.6s ease;
    filter: grayscale(30%);
}

.hww-slice.active img {
    opacity: 0.75;
    filter: grayscale(0%);
}

/* Positioning the 6 vertical slices */
.hww-slice[data-step="0"] {
    transform: rotateY(0deg);
}

.hww-slice[data-step="1"] {
    transform: rotateY(60deg);
}

.hww-slice[data-step="2"] {
    transform: rotateY(120deg);
}

.hww-slice[data-step="3"] {
    transform: rotateY(180deg);
}

.hww-slice[data-step="4"] {
    transform: rotateY(240deg);
}

.hww-slice[data-step="5"] {
    transform: rotateY(300deg);
}

/* 3D Wireframe Rings */
.hww-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px dashed rgba(212, 168, 75, 0.15);
    pointer-events: none;
    transform-style: preserve-3d;
}

.hww-ring.equator {
    transform: rotateX(90deg);
    border-style: solid;
    border-width: 2px;
    border-color: rgba(212, 168, 75, 0.35);
    box-shadow: 0 0 15px rgba(212, 168, 75, 0.1);
}

.hww-ring.meridian-0 {
    transform: rotateY(0deg);
}

.hww-ring.meridian-90 {
    transform: rotateY(90deg);
}

.hww-ring.meridian-45 {
    transform: rotateY(45deg);
}

.hww-ring.meridian-135 {
    transform: rotateY(135deg);
}

/* Text panels — left and right */
.hww-panels {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
}

.hww-panel {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    max-width: 26rem;
    padding: 2.5rem 2rem;
    background: rgba(10, 15, 24, 0.82);
    border: 1px solid rgba(212, 168, 75, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.hww-panel.left {
    left: 4%;
    border-left: 2px solid #d4a84b;
    transform: translateY(-50%) translateX(-30px);
}

.hww-panel.right {
    right: 4%;
    border-right: 2px solid #d4a84b;
    text-align: right;
    transform: translateY(-50%) translateX(30px);
}

.hww-panel.right .hww-hline {
    margin-left: auto;
}

.hww-panel.active {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
    pointer-events: auto;
}

.hww-panel-tag {
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d4a84b;
    margin-bottom: 0.8rem;
    display: block;
}

.hww-hline {
    width: 3rem;
    height: 1px;
    background: #d4a84b;
    margin-bottom: 1rem;
}

.hww-panel h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    line-height: 1;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hww-panel p {
    font-size: 0.82rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

/* HUD — top right */
.hww-hud {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 20;
    text-align: right;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.hww-hud-pct {
    margin-bottom: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.hww-progress-bar {
    width: 7rem;
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-left: auto;
    position: relative;
    overflow: hidden;
}

.hww-progress-fill {
    position: absolute;
    inset-block: 0;
    left: 0;
    width: 0%;
    background: #d4a84b;
    transition: width 0.1s linear;
}

.hww-scene-label {
    font-size: 0.6rem;
    color: #d4a84b;
    margin-top: 0.4rem;
}

/* Nav dots — left side */
.hww-nav-dots {
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hww-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.3s, scale 0.3s;
    cursor: pointer;
    border: none;
}

.hww-dot.active {
    background: #d4a84b;
    scale: 1.8;
}

/* Bottom caption */
.hww-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    text-align: center;
    pointer-events: none;
}

.hww-caption-num {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    color: #d4a84b;
    text-transform: uppercase;
}

.hww-caption-name {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    letter-spacing: 0.08em;
}

@media (max-width: 768px) {
    .hww-badge {
        top: 6vh !important;
        /* Move badge to the top safely */
    }

    #hww-sphere-wrapper {
        --s: min(70vw, 35vh, 260px);
        /* slightly smaller sphere */
        transform: translateY(-12vh);
        /* move up less aggressively */
    }

    .hww-panel {
        max-width: 92%;
        width: 92%;
        left: 50% !important;
        right: auto !important;
        top: auto !important;
        bottom: 5vh !important;
        /* Push text down to give sphere more room */
        transform: translateX(-50%) translateY(20px) !important;
        text-align: center !important;
        border-left: none !important;
        border-right: none !important;
        border-top: 2px solid #d4a84b !important;
        padding: 1.25rem 1rem !important;
    }

    .hww-panel h3 {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
        margin-bottom: 0.5rem;
    }

    .hww-panel p {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .hww-panel.active {
        transform: translateX(-50%) translateY(0) !important;
    }

    .hww-panel .hww-hline {
        display: none;
    }

    .hww-nav-dots {
        display: none;
    }

    .hww-caption {
        bottom: 2rem;
    }

    .hww-hud {
        top: 4.5rem;
        /* Move below header */
        right: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: #080c14;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
        linear-gradient(to bottom, #0e1420 0%, #080c14 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.testimonials-section .section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.testimonials-section .section-subtitle {
    color: var(--color-gold-light) !important;
}

.testimonials-section .section-header p {
    color: rgba(255, 255, 255, 0.7) !important;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/home/shivanto1.png');
    background-size: cover;
    background-position: center;
    opacity: 0.69;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonials-carousel-wrapper.initialized {
    opacity: 1;
}

.testimonials-carousel {
    position: relative;
    height: 380px;
    width: 100%;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.testimonial-card {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 600px;
    max-width: 90%;
    background: rgba(18, 26, 38, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    will-change: transform, opacity;
    transform: translateX(150%) scale(0.7);
    opacity: 0;
    z-index: 1;
}

.testimonials-carousel .testimonial-card:nth-child(1) {
    transform: translateX(-65%) scale(0.85);
    opacity: 0.35;
    z-index: 2;
}

.testimonials-carousel .testimonial-card:nth-child(2) {
    transform: translateX(0) scale(1);
    opacity: 1;
    z-index: 3;
}

.testimonials-carousel .testimonial-card:nth-child(3) {
    transform: translateX(65%) scale(0.85);
    opacity: 0.35;
    z-index: 2;
}

.testimonial-card.active {
    background: rgba(18, 26, 38, 0.85);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(212, 175, 55, 0.12);
    cursor: grab;
}

.testimonial-card:active,
.testimonial-card.active:active {
    cursor: grabbing;
}

.testimonial-card:not(.active):hover {
    background: rgba(18, 26, 38, 0.75);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: var(--color-gold-primary);
    font-size: 0.85rem;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--color-gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.95rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    flex-shrink: 0;
}

.testimonial-card.active .author-avatar {
    background: var(--color-gold-gradient);
    color: #000;
    border-color: var(--color-gold-primary);
}

.author-info h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--color-gold-light);
}

.author-info span {
    font-size: 0.78rem;
    color: #a0aab5;
    display: block;
    line-height: 1.3;
}

.quote-bg-icon {
    position: absolute;
    right: 1.5rem;
    bottom: 1rem;
    font-size: 6rem;
    color: rgba(212, 175, 55, 0.05);
    pointer-events: none;
    line-height: 1;
    z-index: 1;
    transition: color 0.4s ease;
}

.testimonial-card:hover .quote-bg-icon {
    color: rgba(212, 175, 55, 0.12);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}

.testimonial-arrow {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--color-gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.testimonial-arrow:hover {
    background: var(--color-gold-gradient);
    color: #000;
    border-color: var(--color-gold-primary);
    transform: scale(1.08);
}

.testimonial-dots {
    display: flex;
    gap: 0.8rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    outline: none;
}

.testimonial-dot.active {
    background: var(--color-gold-primary);
    transform: scale(1.3);
}

@media (max-width: 992px) {
    .testimonial-card {
        width: 500px;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        height: 500px;
    }

    .testimonial-card {
        padding: 1.75rem 1.25rem;
        width: 100%;
        max-width: 92%;
    }

    .testimonials-carousel .testimonial-card:nth-child(1) {
        transform: translateX(-130%) scale(0.75);
        opacity: 0;
    }

    .testimonials-carousel .testimonial-card:nth-child(2) {
        transform: translateX(0) scale(1);
        opacity: 1;
    }

    .testimonials-carousel .testimonial-card:nth-child(3) {
        transform: translateX(130%) scale(0.75);
        opacity: 0;
    }

    .testimonial-stars {
        margin-bottom: 0.75rem;
    }

    .testimonial-quote {
        font-size: 0.92rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }

    .testimonial-author {
        gap: 0.8rem;
    }

    .author-avatar {
        width: 2.6rem;
        height: 2.6rem;
        font-size: 0.85rem;
    }

    .author-info h4 {
        font-size: 0.92rem;
        margin-bottom: 0.15rem;
    }

    .author-info span {
        font-size: 0.72rem;
    }

    .quote-bg-icon {
        font-size: 3.5rem;
        right: 1rem;
        bottom: 0.75rem;
        opacity: 0.03;
    }

    .testimonials-section {
        padding: 5rem 0;
    }
}

.blog-section-light {
    background: #ffffff !important;
    color: #111111 !important;
}

.blog-section-light .section-title {
    color: #111111 !important;
}

.blog-section-light .section-subtitle {
    color: var(--color-gold-dark) !important;
}

.blog-section-light .blog-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.blog-section-light .blog-card:hover {
    border-color: var(--color-gold-dark) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06) !important;
}

.blog-section-light .blog-info h3 {
    color: #111111 !important;
    transition: color 0.3s ease;
}

.blog-section-light .blog-card:hover .blog-info h3 {
    color: var(--color-gold-dark) !important;
}

.blog-section-light .blog-meta {
    color: #666666 !important;
}

.blog-section-light .blog-meta span i {
    color: var(--color-gold-dark) !important;
}

.blog-section-light .blog-info p {
    color: #444444 !important;
}

.blog-section-light .blog-link {
    color: var(--color-gold-dark) !important;
}

.blog-section-light .blog-card:hover .blog-link {
    color: var(--color-gold-primary) !important;
}

.blog-section-light .btn-outline {
    border: 1px solid var(--color-gold-dark) !important;
    color: var(--color-gold-dark) !important;
}

.blog-section-light .btn-outline:hover {
    background: rgba(165, 131, 32, 0.05) !important;
    color: var(--color-gold-primary) !important;
    border-color: var(--color-gold-primary) !important;
}

/* Homepage Contact Section Specific Styles */
/* Homepage Contact Section Specific Styles — Compact & Optimized */
.home-contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    color: #111111;
    padding: 5rem 0;
    /* reduced padding */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.home-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(165, 131, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.home-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3.5rem;
    /* tighter gap */
    align-items: flex-start;
}

.home-contact-info-panel h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem !important;
    /* compact heading */
    line-height: 1.25;
    margin-bottom: 1rem !important;
    color: #111111;
}

.home-contact-info-panel p {
    color: #555555;
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 2rem !important;
}

.home-contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.home-contact-info-list .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.home-contact-info-list .info-icon {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 8px;
    background: rgba(165, 131, 32, 0.04);
    border: 1px solid rgba(165, 131, 32, 0.15);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-contact-info-list .info-item:hover .info-icon {
    background: var(--color-gold-gradient);
    color: #000000;
    border-color: var(--color-gold-primary);
    transform: scale(1.05) rotate(-5deg);
}

.home-contact-info-list .info-text h5 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #111111;
}

.home-contact-info-list .info-text p,
.home-contact-info-list .info-text a {
    font-size: 0.88rem;
    color: #555555;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-contact-info-list .info-text a:hover {
    color: var(--color-gold-dark);
}

.home-contact-form-container {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2rem !important;
    /* compact form padding */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.03), 0 0 30px rgba(165, 131, 32, 0.01);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-contact-form-container:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05), 0 0 40px rgba(165, 131, 32, 0.02);
}

.home-contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-gold-gradient);
}

.home-contact-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem !important;
    /* compact heading */
    margin-bottom: 1.5rem !important;
    color: #111111;
    letter-spacing: 0.5px;
}

/* Form row with CSS Grid for side-by-side inputs */
.home-contact-form-container .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.home-contact-form-container .form-group {
    margin-bottom: 0;
    /* spacing handled by grid gap */
}

.home-contact-form-container .form-group-full {
    margin-bottom: 1.25rem;
}

/* Slimmer input fields */
.home-contact-form-container .form-control {
    background: #fcfcfd;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #111111;
    border-radius: 8px;
    padding: 0.75rem 1rem !important;
    /* compact input padding */
    font-size: 0.92rem;
    transition: all 0.3s ease;
}

.home-contact-form-container .form-control::placeholder {
    color: #888888;
}

.home-contact-form-container .form-control:focus {
    background: #ffffff;
    border-color: var(--color-gold-dark);
    box-shadow: 0 0 0 4px rgba(165, 131, 32, 0.06);
}

.home-contact-form-container select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fcfcfd;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23A58320' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center !important;
    background-size: 1.15rem;
    padding-right: 2.5rem !important;
    color: #111111;
}

.home-contact-form-container select.form-control option {
    background: #ffffff;
    color: #111111;
}

/* Submit button styling in contact container */
.home-contact-form-container .btn-primary {
    background: var(--color-gold-gradient);
    color: #000000 !important;
    border: none;
    font-weight: 600;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(165, 131, 32, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 3rem !important;
    /* compact button */
}

.home-contact-form-container .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(165, 131, 32, 0.25);
    filter: brightness(1.05);
}

/* Operations Dashboard Widget Styles */
.operations-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #2ecc71;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-color: #2ecc71;
    animation: pulse 1.8s infinite ease-in-out;
}

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

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

.contact-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    line-height: 1;
}

.contact-stat-item .stat-label {
    font-size: 0.85rem;
    color: #555555;
    font-weight: 500;
}

.contact-hub-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.02);
}

.hub-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.hub-header i {
    font-size: 1.5rem;
    color: var(--color-gold-dark);
    background: rgba(165, 131, 32, 0.06);
    padding: 0.8rem;
    border-radius: 12px;
}

.hub-header h4 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 0.15rem;
}

.hub-header span {
    font-size: 0.8rem;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hub-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hub-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.hub-detail-item i {
    color: var(--color-gold-dark);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.hub-detail-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444444;
}

.hub-row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 0.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hub-detail-item span {
    font-size: 0.75rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.15rem;
}

.hub-detail-item a {
    color: #111111;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hub-detail-item a:hover {
    color: var(--color-gold-dark);
}

@media (max-width: 992px) {
    .home-contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .home-contact-form-container {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .home-contact-info-panel h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .contact-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .hub-row-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        position: static;
        margin-top: 1.5rem;
        width: 100%;
        padding: 1.5rem;
        box-sizing: border-box;
    }

    .experience-badge h3 {
        font-size: 2rem;
    }

    .experience-badge p {
        font-size: 0.9rem;
        margin-bottom: 0;
    }

    .values-section .container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .grid-2,
    .grid-3 {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
}

/* Services Section - Horizontal Scroll Slider (Exact User Style Match) */
.main {
    width: 100%;
}

.main .scroll {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    height: auto;
    padding: 1rem 0;
    margin: 2.5rem 0 0.5rem;
    cursor: default;
    overflow: scroll hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0px 1.25rem;
    scrollbar-width: none;
}

.main .scroll::-webkit-scrollbar {
    display: none;
}

.main .scroll.active {
    cursor: grab;
    cursor: -webkit-grab;
}

.main .scroll .card {
    width: 16rem;
    height: auto;
    flex: 0 0 auto;
    margin: 0 0.75rem;
    border: none;
    outline: none;
    border-radius: 0.25rem;
    color: #252a32;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Services Popover style — Optimized for GPU performance */
.services-popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    will-change: transform;
    /* Transition transform for smooth gliding when moving between cards */
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s, visibility 0.25s;
}

.services-popover.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Inner contents — handles styling, blur and entry pop animations */
.services-popover .popover-inner {
    width: 280px;
    background: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.08);
    text-align: center;
    position: relative;
    transform: scale(0.92) translateY(5px);
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-popover.active .popover-inner {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Arrow base */
.services-popover .popover-inner::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(11, 15, 25, 0.98);
}

/* Arrow when popover is on the right of card (pointing left) */
.services-popover.pop-right .popover-inner::after {
    left: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-left: 1px solid rgba(212, 175, 55, 0.35);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
}

/* Arrow when popover is on the left of card (pointing right) */
.services-popover.pop-left .popover-inner::after {
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    border-right: 1px solid rgba(212, 175, 55, 0.35);
}

.services-popover .popover-title {
    font-family: var(--font-heading);
    font-size: 1.1rem !important;
    color: var(--color-gold-light) !important;
    margin-bottom: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.services-popover .popover-desc {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.2rem;
    line-height: 1.45;
}

.services-popover .popover-btn {
    padding: 0.5rem 1.25rem !important;
    font-size: 0.78rem !important;
    border-radius: 6px !important;
    background: var(--color-gold-gradient) !important;
    color: #111111 !important;
    text-transform: uppercase;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.services-popover .popover-btn:hover {
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4) !important;
}

/* Close Button — displayed on mobile tap */
.services-popover .popover-close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
    display: none;
    /* Hidden on desktop */
}

.services-popover .popover-close:hover {
    color: var(--color-gold-light);
}

/* Mobile & Tablet responsiveness (Bottom sheet style) */
@media (max-width: 768px) {
    .services-popover {
        position: fixed !important;
        bottom: 2rem !important;
        left: 50% !important;
        top: auto !important;
        transform: translate3d(-50%, 30px, 0) !important;
        width: calc(100% - 2.5rem) !important;
        max-width: 320px !important;
        margin: 0 auto;
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s, visibility 0.3s !important;
    }

    .services-popover.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translate3d(-50%, 0, 0) !important;
    }

    .services-popover .popover-inner {
        width: 100% !important;
        transform: none !important;
        /* Handled by parent wrapper transform on mobile */
        opacity: 1 !important;
    }

    /* Hide tooltip pointer arrow on mobile */
    .services-popover .popover-inner::after {
        display: none !important;
    }

    /* Display close button on mobile touch devices */
    .services-popover .popover-close {
        display: block;
    }
}

.main .scroll .card-image {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    padding-top: 110%;
}

.main .scroll .card-image img.responsive {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main .scroll .card-inner {
    width: 100%;
    height: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.text {
    font-family: inherit;
    font-weight: 700;
    line-height: inherit;
    text-rendering: optimizeLegibility;
}

.text-title {
    font-size: 1.15rem;
    color: var(--color-gold-dark);
}

.text-title a {
    color: var(--color-gold-dark);
    transition: color 0.3s ease;
}

.text-title a:hover {
    color: var(--color-gold-primary);
}

.paragraph {
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    line-height: inherit;
    margin: 0.25rem 0;
    color: #252a32;
    text-transform: unset;
    text-rendering: optimizeLegibility;
}

.truncate {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ==================== HOME GALLERY & SWIPER LIGHTBOX ==================== */
.home-gallery-section {
    background: #ffffff !important;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--color-gold-dark);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 12, 20, 0.45);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--color-gold-primary);
    font-size: 2.2rem;
    transform: scale(0.7);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Lightbox Modal CSS */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 10, 16, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.gallery-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.modal-close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2.8rem;
    cursor: pointer;
    z-index: 10002;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close-btn:hover {
    color: var(--color-gold-primary);
    transform: rotate(90deg);
}

.modal-content {
    width: 90%;
    max-width: 1100px;
    height: 80%;
    max-height: 750px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-swiper {
    width: 100%;
    height: 100%;
}

.gallery-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gallery-swiper .swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.7);
}

/* Custom Swiper Controls inside Lightbox */
.gallery-modal .swiper-button-prev,
.gallery-modal .swiper-button-next {
    color: var(--color-gold-primary);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-modal .swiper-button-prev::after,
.gallery-modal .swiper-button-next::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.gallery-modal .swiper-button-prev:hover,
.gallery-modal .swiper-button-next:hover {
    background: var(--color-gold-gradient);
    color: #000000;
    border-color: var(--color-gold-primary);
    transform: scale(1.08);
}

.gallery-modal .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.gallery-modal .swiper-pagination-bullet-active {
    background: var(--color-gold-primary) !important;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .modal-content {
        height: 70%;
    }
}

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

    .modal-close-btn {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 2.2rem;
    }

    .modal-content {
        width: 95%;
        height: 60%;
    }
}

@media (max-width: 576px) {

    .gallery-modal .swiper-button-prev,
    .gallery-modal .swiper-button-next {
        display: none !important;
    }

    .modal-content {
        height: 50%;
    }
}


/* ═══════════════════════════════════════════════════════
   CTA BOTTOM SECTION
═══════════════════════════════════════════════════════ */
.cta-bottom-section {
    width: 100%;
    background: var(--color-bg-dark);
    position: relative;
    overflow: hidden;
}

/* The two-column grid that spans full width */
.cta-bottom-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    align-items: stretch;
    position: relative;
}

/* ── Left: image column — flush, no padding, fills cell ── */
.cta-bottom-image-col {
    position: relative;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(135deg, #0a111c 0%, #0d1b2a 100%);
    /* No overflow: hidden — intentional per spec */
}

.cta-bottom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    /* subtle scale-up on hover */
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-bottom-image-col:hover .cta-bottom-img {
    transform: scale(1.04);
}

/* Decorative gold vertical accent line at the split */
.cta-bottom-inner::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom,
            transparent,
            rgba(212, 175, 55, 0.5) 30%,
            rgba(212, 175, 55, 0.5) 70%,
            transparent);
    pointer-events: none;
}

/* ── Right: content column ── */
.cta-bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 4rem 4rem 5rem;
    background: linear-gradient(135deg, #0c1724 0%, #081018 100%);
    position: relative;
    z-index: 1;
}

/* Subtle radial glow in top-right corner */
.cta-bottom-content::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 65%);
    pointer-events: none;
}

.cta-bottom-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold-primary);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.cta-bottom-tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-gold-primary);
    border-radius: 50%;
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {

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

    50% {
        opacity: 0.4;
        transform: scale(1.4);
    }
}

.cta-bottom-heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    margin-bottom: 1.25rem;
}

.cta-bottom-heading .text-gold {
    color: var(--color-gold-primary);
}

.cta-bottom-sub {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 2.5rem;
}

.cta-bottom-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cta-bottom-btn {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Outline gold variant */
.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--color-gold-primary);
    border: 1.5px solid rgba(212, 175, 55, 0.45);
    border-radius: 6px;
    background: transparent;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
}

.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-gold-primary);
    color: var(--color-gold-light, #f0d060);
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .cta-bottom-inner {
        grid-template-columns: 1fr;
        grid-template-rows: 300px auto;
    }

    .cta-bottom-inner::after {
        display: none;
    }

    .cta-bottom-image-col {
        height: 300px;
    }

    .cta-bottom-content {
        padding: 3rem 2rem;
    }

    .cta-bottom-sub {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .cta-bottom-inner {
        grid-template-rows: 240px auto;
    }

    .cta-bottom-image-col {
        height: 240px;
    }

    .cta-bottom-content {
        padding: 2.5rem 1.5rem;
    }

    .cta-bottom-heading {
        font-size: 1.85rem;
    }

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

    .cta-bottom-btn,
    .btn-outline-gold {
        width: 100%;
        justify-content: center;
    }
}

/* ═══════════════════════════════════════════════════════
   CUSTOM RIGHT-CLICK CONTEXT MENU
═══════════════════════════════════════════════════════ */
.ctx-menu {
    position: fixed;
    z-index: 99999;
    width: 220px;
    background: rgba(8, 17, 28, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 14px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(212, 175, 55, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92) translateY(-6px);
    transform-origin: top left;
    transition:
        opacity 0.18s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.18s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.18s;
    pointer-events: none;
    user-select: none;
}

.ctx-menu.ctx-visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.ctx-header {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.6rem 0.9rem 0.5rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.12);
    margin-bottom: 4px;
}

.ctx-brand-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-gold-primary, #d4af37);
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.7);
    animation: ctxDotPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes ctxDotPulse {

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

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

.ctx-brand-name {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold-primary, #d4af37);
    font-family: var(--font-body, sans-serif);
}

.ctx-group {
    padding: 2px 0;
}

.ctx-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    width: 100%;
    padding: 0.55rem 0.9rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body, sans-serif);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    text-align: left;
    transition: background 0.15s, color 0.15s, transform 0.12s;
    position: relative;
    overflow: hidden;
}

.ctx-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent);
    opacity: 0;
    transition: opacity 0.15s;
    border-radius: 8px;
}

.ctx-item:hover {
    color: #fff;
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(3px);
}

.ctx-item:hover::before {
    opacity: 1;
}

.ctx-item:active {
    transform: translateX(3px) scale(0.97);
}

.ctx-icon {
    width: 14px;
    font-size: 0.8rem;
    color: var(--color-gold-primary, #d4af37);
    flex-shrink: 0;
    text-align: center;
    transition: transform 0.15s;
}

.ctx-item:hover .ctx-icon {
    transform: scale(1.15);
}

.ctx-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    margin: 4px 8px;
}

.ctx-toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(8, 17, 28, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 999px;
    padding: 0.55rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold-primary, #d4af37);
    font-family: var(--font-body, sans-serif);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.ctx-toast.ctx-toast-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ═══════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 4rem;
    right: 2rem;
    z-index: 9999;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow:
        0 6px 24px rgba(37, 211, 102, 0.45),
        0 2px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.25s ease;
    /* Slide up entrance */
    animation: waSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
}

@keyframes waSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.06);
    box-shadow:
        0 12px 36px rgba(37, 211, 102, 0.55),
        0 4px 12px rgba(0, 0, 0, 0.2);
}

/* WhatsApp icon */
.wa-icon {
    font-size: 1.85rem;
    color: #ffffff;
    line-height: 1;
    position: relative;
    z-index: 2;
}

/* Animated pulse ring */
.wa-pulse-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.6);
    animation: waPulse 2.2s ease-out infinite;
    pointer-events: none;
}

@keyframes waPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.55);
        opacity: 0;
    }

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

/* Tooltip label */
.wa-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: #1a1a1a;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: var(--font-body, sans-serif);
    white-space: nowrap;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}

/* Tooltip arrow */
.wa-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a1a1a;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* Mobile — slightly smaller, lower position */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1.5rem;
        right: 1.25rem;
    }

    .wa-icon {
        font-size: 1.6rem;
    }

    .wa-tooltip {
        display: none;
    }
}

/* ==========================================================================
   INNER HERO SECTION TEXT CONTRAST OVERRIDES
   ========================================================================== */
.inner-hero h1,
.inner-hero .section-title,
.post-hero h1 {
    color: #ffffff !important;
}

.inner-hero p,
.post-hero p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.inner-hero .section-subtitle,
.post-hero .blog-badge {
    color: var(--color-gold-light) !important;
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* ===== ECOSYSTEM ORBIT DESIGN ===== */
.orbit-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-ring {
    position: absolute;
    width: 80%;
    height: 80%;
    border: 2px dashed rgba(165, 131, 32, 0.25);
    border-radius: 50%;
    animation: rotateOrbit 120s linear infinite;
}

.orbit-center {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0b0f19 0%, #17223b 100%);
    border: 3px solid var(--color-gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.35);
    z-index: 3;
    transition: all 0.4s ease;
}

.orbit-center img {
    width: 65px;
    height: auto;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}

.orbit-node {
    position: absolute;
    width: 140px;
    background: #ffffff;
    border: 1px solid rgba(165, 131, 32, 0.18);
    border-radius: 12px;
    padding: 0.85rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.orbit-node:hover {
    transform: translateY(-5px) scale(1.05) !important;
    border-color: var(--color-gold-dark);
    box-shadow: 0 12px 28px rgba(165, 131, 32, 0.15);
}

.orbit-node i {
    font-size: 1.3rem;
    color: var(--color-gold-dark);
    margin-bottom: 0.4rem;
    display: block;
}

.orbit-node h4 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
    line-height: 1.3;
}

/* Positioning orbit nodes in circle */
.node-1 {
    top: 2%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* End-to-End Logistics */
.node-2 {
    top: 23%;
    right: -5%;
    transform: translate(0, -50%);
}

/* Customs & Trade Compliance */
.node-3 {
    bottom: 23%;
    right: -5%;
    transform: translate(0, 50%);
}

/* Infrastructure-Backed */
.node-4 {
    bottom: 2%;
    left: 50%;
    transform: translate(-50%, 50%);
}

/* Technology-Driven */
.node-5 {
    bottom: 23%;
    left: -5%;
    transform: translate(0, 50%);
}

/* Client-Centric */
.node-6 {
    top: 23%;
    left: -5%;
    transform: translate(0, -50%);
}

/* Reliable & Transparent */

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 992px) {
    .orbit-wrapper {
        display: none;
        /* Hide circle on tablets and mobiles for better readability */
    }

    .orbit-mobile-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .orbit-mobile-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ===== HONEYCOMB VALUES GRID ===== */
.honeycomb-container {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
    flex-wrap: wrap;
}

.honeycomb-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.honeycomb-col.offset {
    margin-top: 65px;
}

.hexagon-wrapper {
    position: relative;
    width: 140px;
    height: 160px;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.06));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hexagon-wrapper:hover {
    transform: translateY(-5px) scale(1.08);
    filter: drop-shadow(0 10px 25px rgba(165, 131, 32, 0.25));
    z-index: 10;
}

.hexagon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    padding: 2px;
}

.hexagon-inner {
    width: 100%;
    height: 100%;
    background: #ffffff;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #111111;
    padding: 0.75rem;
    text-align: center;
}

.hexagon-inner i {
    color: var(--color-gold-dark);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.hexagon-inner span {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .honeycomb-container {
        gap: 15px;
    }

    .honeycomb-col.offset {
        margin-top: 0;
        /* Align flat on mobile */
    }
}

/* ===== RESPONSIVE ROADMAP TIMELINE (HORIZONTAL COMPACT) ===== */
.missions-horizontal-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    position: relative;
    padding-top: 1rem;
}

.missions-horizontal-row::before {
    content: '';
    position: absolute;
    top: 30px;
    /* middle of 40px badge */
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(to right, var(--color-gold-dark), rgba(165, 131, 32, 0.15));
    z-index: 1;
}

.mission-horizontal-step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.mission-horizontal-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold-primary) 50%, var(--color-gold-dark) 100%);
    border: 2.5px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 10px rgba(165, 131, 32, 0.25);
    transition: all 0.3s ease;
}

.mission-horizontal-step:hover .mission-horizontal-badge {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(165, 131, 32, 0.4);
}

.mission-horizontal-content {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 14px;
    padding: 1.25rem 1rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.015);
    transition: all 0.4s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.mission-horizontal-step:hover .mission-horizontal-content {
    border-color: rgba(165, 131, 32, 0.2);
    box-shadow: 0 10px 25px rgba(165, 131, 32, 0.06);
}

.mission-horizontal-content h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-gold-dark);
    margin-bottom: 0.4rem;
}

.mission-horizontal-content p {
    font-size: 0.78rem;
    color: #555555;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .missions-horizontal-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .missions-horizontal-row::before {
        display: none;
    }

    .mission-horizontal-content {
        min-height: auto;
        text-align: left;
        padding-left: 4.5rem;
        position: relative;
    }

    .mission-horizontal-badge {
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }

    .mission-horizontal-step:hover .mission-horizontal-badge {
        transform: translateY(-50%) scale(1.1);
    }
}

/* ===== CAPABILITY PILLARS DESIGN ===== */
.capability-platform {
    margin-top: -1.5rem;
    background: linear-gradient(135deg, #0b0f19 0%, #111a2e 100%);
    border-top: 4px solid var(--color-gold-primary);
    border-radius: 0 0 24px 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.capability-platform::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.capability-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 3rem 2.25rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--color-gold-dark);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-dark);
    box-shadow: 0 20px 50px rgba(165, 131, 32, 0.08);
}

.capability-card i {
    font-size: 2.8rem;
    color: var(--color-gold-dark);
    margin-bottom: 1.5rem;
}

.capability-card h3 {
    font-size: 1.22rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.capability-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.92rem;
    color: #555;
    text-align: left;
}

.capability-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.capability-list li i {
    color: var(--color-gold-dark);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

/* ===== DIRECTOR SECTION ===== */
.director-wrapper-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.director-wrapper-card:hover {
    box-shadow: 0 30px 65px rgba(165, 131, 32, 0.05);
}

.director-profile-header {
    background: linear-gradient(135deg, #FAF8F2 0%, #FFFDF8 100%);
    border: 1px solid rgba(165, 131, 32, 0.15);
    border-radius: 20px;
    padding: 3rem 2.25rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.director-profile-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--color-gold-gradient);
}

.director-avatar-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b0f19 0%, #1c273e 100%);
    border: 2px solid var(--color-gold-primary);
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 6px 18px rgba(165, 131, 32, 0.15);
}

.director-profile-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.25rem;
    color: #111;
}

.director-profile-header .title-badge {
    color: var(--color-gold-dark);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.director-bio-text {
    color: #444;
    line-height: 1.8;
    font-size: 0.96rem;
    margin-top: 1.5rem;
}

.director-extra-box {
    background: #ffffff;
    border: 1px solid rgba(165, 131, 32, 0.12);
    padding: 1.75rem;
    border-radius: 16px;
    margin-top: 2rem;
    text-align: left;
}

.director-extra-box h4 {
    font-size: 1rem;
    color: #111111;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid var(--color-gold-dark);
    padding-left: 0.75rem;
}

.director-extra-box p {
    color: #555555;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.6;
}

.director-details-card {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 2rem;
    border-radius: 18px;
    height: 100%;
}

.director-details-card h4 {
    font-size: 1.05rem;
    color: var(--color-gold-dark);
    margin-bottom: 1.25rem;
    font-family: var(--font-body);
    font-weight: 700;
    border-bottom: 1.5px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 0.6rem;
}

.director-details-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.director-details-card ul li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
}

.director-details-card ul li i {
    color: var(--color-gold-dark);
    margin-top: 0.25rem;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.director-gold-banner {
    background: var(--color-gold-gradient);
    color: #0b0f19;
    padding: 1.75rem 2rem;
    border-radius: 16px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    margin-top: 3.5rem;
}

@media (max-width: 992px) {
    .director-wrapper-card {
        padding: 1.5rem !important;
    }
    .director-profile-header {
        padding: 2rem 1.25rem;
    }
    .director-profile-header h3 {
        font-size: 1.4rem;
        word-wrap: break-word;
    }
    .director-gold-banner {
        padding: 1.25rem 1rem;
        font-size: 1.05rem;
        margin-top: 2rem;
    }
    .director-details-card {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   CAREERS PAGE STYLES
   ========================================================================== */

.careers-content-section {
    background: #ffffff;
    color: #111111;
    padding: 3.5rem 0 4.5rem;
}

.careers-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

/* Openings Cards */
.opening-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.opening-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold-dark);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.opening-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.opening-header h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0;
}

.opening-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #777777;
    margin-bottom: 1.5rem;
}

.opening-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.opening-meta i {
    color: var(--color-gold-dark);
}

.opening-badge {
    background: rgba(165, 131, 32, 0.08);
    color: var(--color-gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 1rem;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opening-desc {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.opening-requirements {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

.opening-requirements li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #444444;
    margin-bottom: 0.5rem;
}

.opening-requirements i {
    color: var(--color-gold-dark);
    font-size: 0.8rem;
}

/* Application Form Container */
.app-form-container {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.app-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(165, 131, 32, 0.25), transparent);
}

.app-form-container h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: #111111;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.app-form-container p {
    color: #666666;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #111111;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #ffffff;
    border-color: var(--color-gold-dark);
    box-shadow: 0 0 10px rgba(165, 131, 32, 0.12);
    outline: none;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23A58320' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.25rem;
}

@media (max-width: 992px) {
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .app-form-container {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-row .form-group {
        margin-bottom: 0;
    }

    .form-row .form-group:last-child {
        margin-bottom: 1rem;
    }
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-section {
    background: #ffffff;
    color: #111111;
    padding: 3.5rem 0 4.5rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: flex-start;
}

.contact-info-panel h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #111111;
}

.contact-info-panel p {
    color: #555555;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-gold-dark);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08), 0 0 20px rgba(165, 131, 32, 0.05);
}

.contact-card-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: rgba(165, 131, 32, 0.03);
    border: 1px solid rgba(165, 131, 32, 0.2);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    background: var(--color-gold-gradient);
    color: #000;
    border-color: var(--color-gold-primary);
    transform: scale(1.08);
}

.contact-card-content h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #111111;
}

.contact-card-content p,
.contact-card-content span {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
}

/* Light Form Styles */
.contact-form-container {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(165, 131, 32, 0.2), transparent);
}

.contact-form-container h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #111111;
    letter-spacing: 1px;
}

/* Local input styling overrides for light theme form */
.contact-form-container .form-control {
    background: #fdfdfd;
    border: 1px solid rgba(0, 0, 0, 0.12);
    color: #111111;
}

.contact-form-container .form-control::placeholder {
    color: #777777;
}

.contact-form-container .form-control:focus {
    background: #ffffff;
    border-color: var(--color-gold-dark);
    box-shadow: 0 0 10px rgba(165, 131, 32, 0.15);
}

.contact-form-container select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fdfdfd;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23A58320' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.25rem;
    color: #111111;
}

.contact-form-container select.form-control option {
    background: #ffffff;
    color: #111111;
}

/* Light Map Section */
.map-section {
    padding: 2rem 0 8rem;
    background: #ffffff;
}

.map-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(10%) contrast(100%);
    /* Clean, standard light map */
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-info-panel h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .contact-form-container .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form-container .form-row .form-group {
        margin-bottom: 0;
    }

    .contact-form-container .form-row .form-group:last-child {
        margin-bottom: 1rem;
    }
}

/* ==========================================================================
   CASE STUDIES PAGE STYLES
   ========================================================================== */

.case-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.case-filter-btn {
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 30px;
    padding: 0.6rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #555555;
    cursor: pointer;
    transition: all 0.3s ease;
}

.case-filter-btn:hover,
.case-filter-btn.active {
    background: var(--color-gold-gradient);
    color: #0b0f19;
    border-color: var(--color-gold-primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.case-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(165, 131, 32, 0.2);
    box-shadow: 0 20px 45px rgba(165, 131, 32, 0.08);
}

.case-card:hover::before {
    opacity: 1;
}

.case-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.case-category-tag {
    background: rgba(165, 131, 32, 0.08);
    color: var(--color-gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.case-client-tag {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 600;
}

.case-card h3 {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.case-card p {
    color: #555555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.case-metrics-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.case-metric-box {
    text-align: left;
}

.case-metric-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.case-metric-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #777777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Glassmorphic Modal Lightbox */
.case-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 17, 26, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.case-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.case-modal-container {
    background: #ffffff;
    border: 1px solid rgba(165, 131, 32, 0.18);
    border-radius: 28px;
    width: 90%;
    max-width: 820px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-modal-overlay.active .case-modal-container {
    transform: scale(1) translateY(0);
}

.case-modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: #fafafa;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111111;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.case-modal-close-btn:hover {
    background: var(--color-gold-gradient);
    color: #0b0f19;
    border-color: var(--color-gold-primary);
}

.case-modal-body {
    padding: 3.5rem;
}

.case-modal-body h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #111111;
    font-family: var(--font-heading);
}

.case-modal-subtitle {
    font-size: 0.95rem;
    color: var(--color-gold-dark);
    font-weight: 700;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.case-modal-block h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-modal-block h4 i {
    color: var(--color-gold-dark);
    font-size: 0.9rem;
}

.case-modal-block p {
    font-size: 0.92rem;
    color: #555555;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-modal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .case-modal-body {
        padding: 2rem;
    }
}

/* Toast Notification System */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.toast {
    background: var(--color-bg-dark);
    color: #fff;
    padding: 1.2rem 1.8rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
    font-weight: 500;
    font-family: var(--font-body);
    font-size: 0.95rem;
    border-left: 4px solid #10b981;
}
.toast.show {
    transform: translateX(0);
    opacity: 1;
}
.toast-success i.toast-icon {
    color: #10b981;
    font-size: 1.4rem;
}
.toast-error {
    border-left: 4px solid #ef4444;
}
.toast-error i.toast-icon {
    color: #ef4444;
    font-size: 1.4rem;
}

/* SEO Utilities */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}