/* ============================================
   Superfast Ads Agency — Styles
   Dark + gold premium theme
   ============================================ */

:root {
    --background: #0a0807;            /* warm-tinted near-black */
    --background-alt: #14110f;
    --foreground: #f5f5f5;
    --foreground-muted: rgba(245, 245, 245, 0.8);
    --muted-foreground: #a8a4a0;
    --card: #1a1614;
    --card-foreground: #f5f5f5;
    --primary: #e6b94a;                /* brighter gold */
    --primary-glow: #ffd76a;            /* brighter highlight */
    --primary-foreground: #0a0807;
    --ember: #ff7b3d;                   /* fire/copper accent (matches logo) */
    --ember-glow: #ff5023;
    --secondary: #1f1b18;
    --border: rgba(255, 230, 180, 0.12);
    --border-strong: rgba(230, 185, 74, 0.6);
    --gold-grad: linear-gradient(135deg, #b8841a 0%, #e6b94a 35%, #ffd76a 50%, #e6b94a 65%, #b8841a 100%);
    --gold-grad-shimmer: linear-gradient(110deg,
        #b8841a 0%,
        #e6b94a 20%,
        #ffd76a 35%,
        #ffe9a8 50%,
        #ffd76a 65%,
        #e6b94a 80%,
        #b8841a 100%);
    --fire-grad: linear-gradient(135deg, #e6b94a 0%, #ff7b3d 60%, #ff5023 100%);
    --shadow-gold: 0 8px 28px rgba(230, 185, 74, 0.35), 0 0 0 1px rgba(230, 185, 74, 0.15) inset;
    --shadow-gold-strong: 0 12px 40px rgba(230, 185, 74, 0.5), 0 0 60px rgba(255, 123, 61, 0.18);
    --radius: 8px;
    --header-h: 110px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
/* Bumped root font-size — every rem unit on the site scales up ~10% */
html { font-size: 17.5px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background:
        radial-gradient(1200px 600px at 80% -200px, rgba(255, 123, 61, 0.08), transparent 60%),
        radial-gradient(1000px 500px at 0% 30%, rgba(230, 185, 74, 0.06), transparent 60%),
        var(--background);
    color: var(--foreground);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    position: relative;
}
/* Fine grain texture overlay — gives the dark background life without being noisy */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.18 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
#root { position: relative; z-index: 1; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* Layout */
.container-x {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}
.section {
    padding: 5rem 0;
    position: relative;
}
/* Notably-lighter warm panel — the contrast makes each section visibly distinct */
.section-dark {
    background:
        radial-gradient(ellipse 60% 80% at 80% 0%, rgba(255, 123, 61, 0.08), transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 100%, rgba(230, 185, 74, 0.07), transparent 60%),
        linear-gradient(180deg, #15110e 0%, #1f1814 50%, #15110e 100%);
    border-top: 1px solid rgba(230, 185, 74, 0.18);
    border-bottom: 1px solid rgba(230, 185, 74, 0.18);
    box-shadow:
        inset 0 80px 100px -80px rgba(255, 123, 61, 0.05),
        inset 0 -80px 100px -80px rgba(230, 185, 74, 0.04);
}
/* Decorative gold "tab" at the top of every dark panel — clear visual section break */
.section-dark::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary) 35%, var(--primary-glow) 50%, var(--primary) 65%, transparent);
    box-shadow: 0 0 16px rgba(230, 185, 74, 0.4);
}
/* Subtle separator on default sections too — keeps every transition clear */
.section + .section,
.section-dark + .section,
.section + .section-dark {
    /* divider when sections stack of the same kind */
}
.section:not(.section-dark) + .section:not(.section-dark) {
    border-top: 1px solid rgba(230, 185, 74, 0.08);
}
.site-main { padding-top: var(--header-h); }

/* Typography helpers */
.text-gold {
    background: var(--gold-grad-shimmer);
    background-size: 200% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: goldShimmer 6s linear infinite;
    filter: drop-shadow(0 0 24px rgba(230, 185, 74, 0.18));
}
@keyframes goldShimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: -200% 50%; }
}

/* Scroll-reveal — JS toggles .is-visible when element enters viewport */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .text-gold { animation: none; }
}
.eyebrow {
    text-transform: uppercase;
    font-size: 1.00rem;
    letter-spacing: 0.2em;
    color: var(--primary);
    font-weight: 600;
    margin: 0 0 0.75rem;
}
.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}
.section-text {
    color: var(--muted-foreground);
    line-height: 1.7;
    margin: 0 0 1.5rem;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 700;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
}
.btn-lg { padding: 0.75rem 2rem; height: 2.75rem; font-size: 0.9rem; }
.btn-gold {
    position: relative;
    background: var(--gold-grad-shimmer);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: var(--primary-foreground);
    box-shadow: var(--shadow-gold);
    transition: all 0.35s ease, background-position 0.6s ease;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
    background-position: 100% 50%;
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--border-strong);
}
.btn-outline:hover { background: rgba(212, 175, 55, 0.1); }
.icon-arrow { width: 16px; height: 16px; }

/* ============== Header ============== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border);
}
.topbar {
    background: rgba(31, 31, 31, 0.5);
    border-bottom: 1px solid var(--border);
    font-size: 0.75rem;
}
.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.25rem;
}
.topbar-left { color: var(--muted-foreground); }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary);
    transition: color 0.2s;
}
.phone-link:hover { color: var(--primary-glow); }
.email-link { color: var(--muted-foreground); transition: color 0.2s; }
.email-link:hover { color: var(--primary); }

/* Compact social row in the topbar (next to the email) */
.topbar-socials {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 0.5rem;
    padding-left: 0.5rem;
    border-left: 1px solid var(--border);
}
.topbar-socials a {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    color: var(--muted-foreground);
    transition: color 0.2s ease, transform 0.2s ease;
    border-radius: 4px;
}
.topbar-socials a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}
.topbar-socials svg { width: 14px; height: 14px; }
.icon-3 { width: 12px; height: 12px; }
.icon-6 { width: 24px; height: 24px; }

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-img {
    height: 56px;
    width: auto;
    filter: drop-shadow(0 0 16px rgba(255, 123, 61, 0.4)) drop-shadow(0 0 32px rgba(255, 80, 35, 0.18));
    transition: filter 0.4s ease, transform 0.4s ease;
}
.logo:hover .logo-img {
    filter: drop-shadow(0 0 22px rgba(255, 123, 61, 0.65)) drop-shadow(0 0 44px rgba(255, 80, 35, 0.3));
    transform: scale(1.05);
}
.logo-title {
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1;
    white-space: nowrap;
    background: var(--gold-grad-shimmer);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 6s linear infinite;
}
.logo-subtitle {
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    color: var(--muted-foreground);
    margin-top: 4px;
}
.main-nav { display: none; align-items: center; gap: 0.15rem; flex-wrap: nowrap; }
.nav-link {
    padding: 0.55rem 0.8rem;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(245, 245, 245, 0.85);
    border-radius: var(--radius);
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.btn-enquire { display: none; height: 38px; padding: 0.5rem 0.9rem; font-size: 0.85rem; white-space: nowrap; }
.mobile-menu-toggle {
    display: inline-flex;
    padding: 0.5rem;
    color: var(--foreground);
}
.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--background);
    border-top: 1px solid var(--border);
    padding: 0.5rem 1.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--foreground);
    font-weight: 600;
    font-size: 1.05rem;
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--primary); }

@media (min-width: 768px) {
    .btn-enquire { display: inline-flex; }
}
@media (min-width: 1024px) {
    .main-nav { display: flex; }
    .mobile-menu-toggle { display: none; }
}

/* ============== Hero ============== */
.hero-section { position: relative; }
.hero-viewport { overflow: hidden; }
.hero-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-slide {
    position: relative;
    flex: 0 0 100%;
    height: 60vh;
    min-height: 480px;
}
@media (min-width: 768px) {
    .hero-slide { height: 80vh; }
}
.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Banner-style slides — designed marketing banners with their own copy.
   Sized to the banner's natural ~3.2:1 aspect so nothing is cropped or stretched. */
.hero-slide-banner {
    height: auto;
    min-height: 0;
}
@media (min-width: 768px) {
    .hero-slide-banner { height: auto; }
}
.hero-slide-banner .hero-img {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 1280 / 400;
    object-fit: cover;
    object-position: center;
    display: block;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background), rgba(10,10,10,0.8) 50%, rgba(10,10,10,0.3));
}
.hero-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.25), transparent 60%);
    opacity: 0.5;
}
.hero-content-wrap {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}
.hero-content {
    max-width: 640px;
    animation: fadeUp 0.7s ease-out;
}
.hero-title {
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 1.25rem;
}
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin: 0 0 2rem;
    max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transition: all 0.3s;
    padding: 0;
}
.hero-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 5px;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============== About ============== */
.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .about-grid { grid-template-columns: 1fr 1fr; }
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.stat-card,
.card-premium,
.feature-card,
.testimonial-card,
.capability-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.stat-card { padding: 1.5rem; text-align: center; }
.stat-card:hover, .feature-card:hover, .testimonial-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(230, 185, 74, 0.18) inset;
}
.stat-number {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.25rem;
    background: var(--gold-grad-shimmer);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 6s linear infinite;
    filter: drop-shadow(0 0 24px rgba(230, 185, 74, 0.25));
}
.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}

/* ============== Capabilities ============== */
.capabilities-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .capabilities-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .capabilities-grid { grid-template-columns: repeat(3, 1fr); } }

.capability-card {
    overflow: hidden;
    display: block;
}
.capability-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55), 0 0 60px rgba(230, 185, 74, 0.12);
}
.capability-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.capability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.15) contrast(1.05);
    transition: transform 0.7s ease, filter 0.4s ease;
}
.capability-card:hover .capability-image img {
    transform: scale(1.1);
    filter: saturate(1.35) contrast(1.1) brightness(1.05);
}
.capability-body { padding: 1.25rem; }
.capability-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    transition: color 0.2s;
}
.capability-card:hover .capability-title { color: var(--primary); }
.capability-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0 0 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.capability-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
}
.capability-card:hover .capability-link svg { transform: translateX(4px); }
.capability-link svg { transition: transform 0.2s; }

/* ============== Features ============== */
.features-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card { padding: 1.75rem; }
.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--gold-grad);
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-gold);
    color: var(--primary-foreground);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.feature-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

/* ============== Testimonials ============== */
.testimonials-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card { padding: 1.75rem; height: 100%; display: flex; flex-direction: column; }
.testimonial-stars {
    color: var(--primary);
    font-size: 1rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}
.testimonial-text {
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.9);
    line-height: 1.7;
    margin: 0 0 1.25rem;
    flex: 1;
}
.testimonial-author {
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}
.testimonial-name { font-weight: 700; }
.testimonial-role {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 2px;
}

/* ============== Brands marquee ============== */
.brands-section {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.brands-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.marquee {
    overflow: hidden;
    width: 100%;
}
.marquee-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.brand-pill {
    padding: 1rem 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--muted-foreground);
    transition: all 0.2s;
    white-space: nowrap;
}
.brand-pill:hover {
    color: var(--primary);
    border-color: var(--border-strong);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============== Footer ============== */
.site-footer {
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
    border-top: 1px solid var(--border);
}
.footer-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
    padding: 4rem 1.25rem 3rem;
}
@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 2.5rem; }
}
.footer-col-brand .footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 1rem;
}
.footer-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
}
.footer-socials {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}
.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--foreground);
    transition: all 0.2s;
}
.social-icon:hover {
    color: var(--primary);
    border-color: var(--primary);
}
.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 1rem;
}
.footer-list li { margin-bottom: 0.5rem; }
.footer-list a {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    transition: color 0.2s;
}
.footer-list a:hover { color: var(--primary); }
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.contact-list li {
    display: flex;
    gap: 0.625rem;
    align-items: flex-start;
    line-height: 1.5;
}
.contact-icon {
    color: var(--primary);
    margin-top: 0.15rem;
    flex-shrink: 0;
}
.contact-list a {
    color: var(--muted-foreground);
    display: block;
    transition: color 0.2s;
}
.contact-list a:hover { color: var(--primary); }
.contact-email { word-break: break-all; }
.footer-bottom-wrap {
    border-top: 1px solid var(--border);
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    color: var(--muted-foreground);
    font-size: 0.75rem;
    text-align: center;
}
.footer-bottom p { margin: 0; }
@media (min-width: 768px) {
    .footer-bottom { flex-direction: row; text-align: left; }
}

/* ============== Floating Action Buttons ============== */
.fab-stack {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 40;
}
.fab {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease;
}
.fab:hover { transform: scale(1.1); }
.fab-whatsapp {
    background: #25d366;
    animation: glow 2.4s ease-in-out infinite;
}
.fab-call {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-gold);
}
.fab-enquire {
    background: var(--fire-grad);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(255, 80, 35, 0.4);
    border: none;
    cursor: pointer;
}
.fab-toggle {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
    animation: enquirePulse 2.4s ease-in-out infinite;
}
.fab-toggle-icon {
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.fab-stack.open .fab-toggle {
    animation: none;
}
.fab-stack.open .fab-toggle .fab-toggle-icon {
    transform: rotate(135deg);   /* + becomes × */
}

/* Collapsed state: hide the 3 action FABs */
.fab-stack .fab-enquire,
.fab-stack .fab-whatsapp,
.fab-stack .fab-call {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.4) translateY(20px);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0s linear 0.3s;
}
/* Expanded state: reveal with staggered scale-in */
.fab-stack.open .fab-enquire,
.fab-stack.open .fab-whatsapp,
.fab-stack.open .fab-call {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1) translateY(0);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0s linear 0s;
}
.fab-stack.open .fab-call      { transition-delay: 0s, 0s, 0s; }
.fab-stack.open .fab-whatsapp  { transition-delay: 0.06s, 0.06s, 0s; }
.fab-stack.open .fab-enquire   { transition-delay: 0.12s, 0.12s, 0s; }

@keyframes enquirePulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(230, 185, 74, 0.4), 0 0 0 0 rgba(230, 185, 74, 0.5); }
    50%      { box-shadow: 0 8px 28px rgba(230, 185, 74, 0.4), 0 0 0 14px rgba(230, 185, 74, 0); }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    50%      { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================
   Unified Inner-Page Hero (used by all pages
   except home, which has the carousel)
   ============================================ */
.page-hero {
    position: relative;
    padding: 6rem 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    background: var(--background);
}
@media (min-width: 768px) { .page-hero { padding: 8rem 0; } }
.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10, 10, 10, 0.25) 0%,
        rgba(10, 10, 10, 0.55) 55%,
        var(--background) 100%);
    pointer-events: none;
}
.page-hero-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 70% at 50% 55%, rgba(212, 175, 55, 0.22), transparent 70%);
    pointer-events: none;
}
.page-hero-content {
    position: relative;
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}
.page-hero-content .eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
}
.page-hero-title {
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.01em;
    margin: 0 0 1.25rem;
}
.page-hero-subtitle {
    color: var(--muted-foreground);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

/* Story */
.story-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
    .story-grid { grid-template-columns: 1fr 1fr; }
}
.story-image {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}
.story-image img { width: 100%; height: auto; display: block; }

/* Mission / Vision / Values */
.mvv-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .mvv-grid { grid-template-columns: repeat(3, 1fr); } }

.mvv-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
}
.mvv-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}
.mvv-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gold-grad);
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-gold);
    color: var(--primary-foreground);
}
.mvv-icon svg { width: 24px; height: 24px; }
.mvv-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.mvv-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
    line-height: 1.6;
}

/* CTA */
.about-cta {
    text-align: center;
}
.about-cta .section-title { margin-bottom: 1rem; }
.cta-award-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
    margin: 0 auto 1rem;
    display: block;
}
.cta-text {
    max-width: 560px;
    margin: 0 auto 2rem;
}

/* ============================================
   Printing & Branding Page
   ============================================ */

/* Services header */
.services-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.services-title {
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    font-weight: 300;
    font-style: italic;
    margin: 0;
}
.services-title .text-gold {
    font-style: normal;
    font-weight: 400;
}
.services-tagline {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    max-width: 22rem;
    margin: 0;
}

/* Service grid */
.service-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.5s ease;
    cursor: pointer;
}
.service-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(230, 185, 74, 0.15);
}

.service-image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Full-color, slight saturation/contrast boost for vivid product feel */
    filter: saturate(1.15) contrast(1.05);
    transition: transform 1s ease, filter 0.5s ease;
}
.service-card:hover .service-image-wrap img {
    transform: scale(1.1);
    filter: saturate(1.3) contrast(1.1) brightness(1.05);
}
.service-overlay {
    position: absolute;
    inset: 0;
    /* Subtle bottom gradient only — image stays vivid */
    background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.15) 35%, transparent 65%);
    transition: all 0.5s ease;
}
.service-card:hover .service-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.05) 35%, transparent 60%);
}

/* Corner brackets (gold instead of plain foreground) */
.corner {
    position: absolute;
    width: 12px;
    height: 12px;
    border-color: rgba(212, 175, 55, 0.55);
    pointer-events: none;
    transition: border-color 0.3s ease;
}
.service-card:hover .corner { border-color: var(--primary); }
.corner-tl { top: 12px; left: 12px; border-top: 1px solid; border-left: 1px solid; }
.corner-tr { top: 12px; right: 12px; border-top: 1px solid; border-right: 1px solid; }
.corner-bl { bottom: 12px; left: 12px; border-bottom: 1px solid; border-left: 1px solid; }
.corner-br { bottom: 12px; right: 12px; border-bottom: 1px solid; border-right: 1px solid; }

/* № 0X label */
.service-num {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary);
    z-index: 2;
}

/* Arrow icon button (top-right) */
.service-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(245, 245, 245, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--foreground);
    transition: all 0.5s ease;
    z-index: 2;
}
.service-card:hover .service-arrow {
    background: var(--gold-grad);
    border-color: transparent;
    color: var(--primary-foreground);
    transform: rotate(45deg);
    box-shadow: var(--shadow-gold);
}

/* Body */
.service-body {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
}
.service-title {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0;
}
.service-desc {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Enquire Now button at the bottom of each service card */
.service-cta-btn {
    margin-top: 1.25rem;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}
.service-cta-btn svg {
    transition: transform 0.3s ease;
}
.service-cta-btn:hover,
.service-card:hover .service-cta-btn {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}
.service-cta-btn:hover svg,
.service-card:hover .service-cta-btn svg {
    transform: translateX(3px);
}

/* ============================================
   Marketing Services Page
   ============================================ */

/* Category section header */
.ms-cat-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.ms-cat-header .eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
}
.ms-cat-title {
    font-size: clamp(1.875rem, 4.5vw, 3rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    margin: 0;
}
.ms-cat-bold {
    font-style: normal;
    font-weight: 400;
}

/* Category circle row — horizontal scroll strip */
.cat-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-bottom: 4rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1.5rem 0.5rem 1.5rem;
    -webkit-overflow-scrolling: touch;
    /* Soft fade on edges hints there's more to scroll */
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
            mask-image: linear-gradient(to right, transparent 0, black 40px, black calc(100% - 40px), transparent 100%);
    /* Hide scrollbar — auto-scrolls on its own */
    scrollbar-width: none;
    -ms-overflow-style: none;
}
@media (min-width: 768px) { .cat-row { gap: 2rem; padding: 1.5rem 1rem; } }
.cat-row::-webkit-scrollbar { display: none; width: 0; height: 0; }

.cat-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    width: 170px;
    flex-shrink: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}
.cat-ring {
    position: relative;
    width: 132px;
    height: 132px;
    transition: all 0.5s ease;
    opacity: 0.55;
    transform: scale(1);
}
@media (min-width: 768px) { .cat-ring { width: 156px; height: 156px; } }

.cat-btn:hover .cat-ring { opacity: 0.9; transform: scale(1.02); }
.cat-btn.active .cat-ring { opacity: 1; transform: scale(1.05); }

/* Spinning dashed border (only on active) */
.cat-ring-dash {
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px dashed transparent;
    transition: border-color 0.5s ease;
}
.cat-btn.active .cat-ring-dash {
    border-color: rgba(212, 175, 55, 0.6);
    animation: spin-slow 16s linear infinite;
}
@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Outer ring (gradient border via padding) */
.cat-ring-grad {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: var(--border);
    transition: all 0.4s ease;
}
.cat-btn.active .cat-ring-grad {
    background: var(--gold-grad);
    box-shadow: var(--shadow-gold);
}

/* Inner image circle */
.cat-img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: var(--card);
}
.cat-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transform: scale(1);
    transition: transform 0.7s ease, filter 0.7s ease;
}
.cat-btn.active .cat-img-wrap img {
    filter: grayscale(0);
    transform: scale(1.1);
}
.cat-img-tint {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.4);
    transition: background 0.5s ease;
}
.cat-btn.active .cat-img-tint {
    background: linear-gradient(to top, rgba(212, 175, 55, 0.3), transparent 60%);
}

/* Number badge */
.cat-num {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--background);
    background: var(--card);
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    transition: all 0.3s ease;
}
.cat-btn.active .cat-num {
    background: var(--gold-grad);
    color: var(--primary-foreground);
}

/* Label */
.cat-label { text-align: center; }
.cat-name {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.2;
    max-width: 160px;
    margin: 0 auto;
    color: var(--muted-foreground);
    transition: color 0.3s ease;
}
@media (min-width: 768px) { .cat-name { font-size: 1.25rem; } }
.cat-btn.active .cat-name {
    color: var(--foreground);
    font-style: italic;
}
.cat-btn:hover .cat-name { color: var(--foreground); }
.cat-count {
    margin-top: 0.5rem;
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.7);
}

/* Category panel header */
.cat-panel-header {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
    align-items: end;
}
@media (min-width: 1024px) {
    .cat-panel-header {
        grid-template-columns: 7fr 5fr;
        gap: 1.5rem;
    }
}
.cat-panel-left .eyebrow { margin-bottom: 0.75rem; }
.cat-panel-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0;
}
.cat-panel-italic {
    font-style: italic;
    font-weight: 400;
}
.cat-panel-right {
    text-align: left;
}
@media (min-width: 1024px) {
    .cat-panel-right { text-align: right; }
}
.cat-panel-count {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 0.625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin: 0 0 0.5rem;
}
.cat-panel-help {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    max-width: 28rem;
    margin: 0;
}
@media (min-width: 1024px) {
    .cat-panel-help { margin-left: auto; }
}

/* Fade-in for filtered grid */
.service-grid.is-fading { opacity: 0; transform: translateY(8px); }
.service-grid {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* ============================================
   Gallery Page — Mosaic
   ============================================ */
.gallery-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
    grid-auto-flow: dense;
    grid-auto-rows: 220px;
}
@media (min-width: 640px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
}
@media (min-width: 1280px) {
    .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; }
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--card);
    margin: 0;
    transition: border-color 0.4s ease, transform 0.4s ease;
}
.gallery-tile:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}

/* Featured tiles span 2x2 (only at sm+) */
@media (min-width: 640px) {
    .gallery-feature {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.18) contrast(1.05);
    transition: transform 0.7s ease, filter 0.4s ease;
}
.gallery-tile:hover img { filter: saturate(1.35) contrast(1.1) brightness(1.05); }
.gallery-tile:hover img { transform: scale(1.08); }

.gallery-tint {
    position: absolute;
    inset: 0;
    /* Lighter gradient — only the bottom is darkened for caption legibility */
    background: linear-gradient(to top,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.45) 28%,
        transparent 60%);
    opacity: 0.95;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.gallery-tile:hover .gallery-tint { opacity: 0.8; }

.gallery-tile figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem;
    z-index: 2;
}
.gallery-eyebrow {
    font-family: 'Courier New', ui-monospace, monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin: 0 0 0.25rem;
}
.gallery-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    color: var(--foreground);
}
.gallery-feature .gallery-title {
    font-size: 1.5rem;
    font-weight: 800;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Contact info card (icon left, label/value right) */
.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.contact-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}
.contact-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: var(--gold-grad);
    display: grid;
    place-items: center;
    color: var(--primary-foreground);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}
.contact-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.contact-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted-foreground);
}
.contact-card-value {
    font-weight: 700;
    color: var(--foreground);
    word-break: break-all;
    transition: color 0.2s ease;
}
.contact-card-value:hover { color: var(--primary); }
.contact-card-text {
    font-size: 0.875rem;
    color: var(--foreground);
    line-height: 1.5;
}

/* Map */
.map-wrap {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    height: 18rem;
    margin-top: 0.5rem;
}
.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(100%) contrast(1.05) brightness(0.85);
    transition: filter 0.4s ease;
}
.map-wrap:hover iframe { filter: grayscale(0%); }

/* Form card */
.contact-form-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    align-self: start;
}
.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
}
.contact-form-lead {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0 0 1.5rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-size: 0.875rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.form-input::placeholder { color: var(--muted-foreground); }
.form-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}
.form-textarea {
    resize: vertical;
    min-height: 7rem;
}
.btn-block {
    width: 100%;
    height: 2.75rem;
}
.form-status {
    font-size: 0.85rem;
    margin: 0.25rem 0 0;
    min-height: 1.2rem;
    color: var(--primary);
}
.form-status.error { color: #ef6b6b; }

/* ============================================
   Enquire Modal
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal.open {
    display: flex;
}
.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalFade 0.25s ease;
}
.modal-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow-y: auto;
    padding: 2rem;
    background: linear-gradient(180deg, #161616 0%, #0e0e0e 100%);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.08);
    animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    color: var(--foreground);
    display: grid;
    place-items: center;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
    z-index: 1;
}
.modal-close:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(212, 175, 55, 0.08);
}
.modal-card .eyebrow {
    margin: 0 0 0.75rem;
}
.modal-title {
    font-size: 1.625rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 0.5rem;
}
.modal-lead {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0 0 1.5rem;
}
.enquire-status {
    font-size: 0.85rem;
    margin: 0.5rem 0 0;
    min-height: 1.2rem;
    color: var(--primary);
    text-align: center;
}
.enquire-status.error { color: #ef6b6b; }
@keyframes modalFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================
   About Page — Stats / Timeline / Process / Capabilities
   ============================================ */

/* 4-up stats band (bigger than the home 2-up grid) */
.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (min-width: 1024px) {
    .about-stats-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

/* Process steps */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-card {
    position: relative;
    padding: 2rem 1.75rem 1.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}
.process-card:hover {
    border-color: var(--border-strong);
    transform: translateY(-4px);
}
.process-num {
    position: absolute;
    top: -14px;
    left: 1.5rem;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 0.4rem 0.85rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-gold);
}
.process-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: rgba(212, 175, 55, 0.12);
    color: var(--primary);
    display: grid;
    place-items: center;
    margin: 1rem 0 1rem;
    transition: all 0.3s ease;
}
.process-card:hover .process-icon {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-gold);
}
.process-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.process-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.65;
    margin: 0;
}

/* Capabilities list */
.capability-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}
@media (min-width: 768px) { .capability-list { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .capability-list { grid-template-columns: repeat(3, 1fr); } }

.cap-row {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
}
.cap-row:hover {
    border-color: var(--border-strong);
    transform: translateY(-2px);
}
.cap-row-header {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.cap-row-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    background: var(--gold-grad);
    color: var(--primary-foreground);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}
.cap-row-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}
.cap-row ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}
.cap-row li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 0;
}
.cap-row li::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* ============================================
   Chatbot
   ============================================ */
.chatbot {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 39;
}
.chatbot-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-gold);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.25s ease;
    position: relative;
}
.chatbot-toggle:hover { transform: scale(1.08); }
.chatbot-toggle .chatbot-toggle-close,
.chatbot.open .chatbot-toggle .chatbot-toggle-open { display: none; }
.chatbot.open .chatbot-toggle .chatbot-toggle-close { display: block; }

/* Notification badge */
.chatbot-toggle-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--ember-glow);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    display: grid;
    place-items: center;
    border: 2px solid var(--background);
    box-shadow: 0 2px 6px rgba(255, 80, 35, 0.5);
    animation: badgePop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.6s both;
}
.chatbot.open .chatbot-toggle-badge,
.chatbot.dismissed .chatbot-toggle-badge { display: none; }
@keyframes badgePop {
    from { opacity: 0; transform: scale(0); }
    to   { opacity: 1; transform: scale(1); }
}

/* Teaser pill bubble */
.chatbot-teaser {
    position: absolute;
    bottom: 14px;
    right: 70px;
    background: linear-gradient(135deg, #1f1b18 0%, #14110f 100%);
    border: 1px solid var(--border-strong);
    color: var(--foreground);
    padding: 0.65rem 0.55rem 0.65rem 1.1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(230, 185, 74, 0.12);
    opacity: 0;
    transform: translateX(15px) scale(0.85);
    transform-origin: right center;
    animation: teaserIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 2s forwards;
    z-index: 1;
}
.chatbot-teaser::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    width: 11px;
    height: 11px;
    background: #14110f;
    border-right: 1px solid var(--border-strong);
    border-top: 1px solid var(--border-strong);
    transform: translateY(-50%) rotate(45deg);
}
.chatbot-teaser-text { flex: 1; }
.chatbot-teaser-close {
    border: none;
    background: transparent;
    color: var(--muted-foreground);
    font-size: 1.1rem;
    line-height: 1;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.chatbot-teaser-close:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
}
.chatbot.open .chatbot-teaser,
.chatbot.dismissed .chatbot-teaser {
    animation: teaserOut 0.25s ease forwards;
    pointer-events: none;
}
@keyframes teaserIn { to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes teaserOut { to { opacity: 0; transform: translateX(15px) scale(0.85); } }
@media (max-width: 540px) { .chatbot-teaser { display: none; } }

.chatbot-toggle-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(230, 185, 74, 0.6);
    animation: chatbotPulse 2.4s ease-in-out infinite;
}
.chatbot.open .chatbot-toggle-pulse { display: none; }
@keyframes chatbotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230, 185, 74, 0.5); }
    50%      { box-shadow: 0 0 0 12px rgba(230, 185, 74, 0); }
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    max-width: calc(100vw - 2.5rem);
    height: 480px;
    max-height: calc(100vh - 110px);
    background: linear-gradient(180deg, #1a1614 0%, #14110f 100%);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(230, 185, 74, 0.12);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0s linear 0.28s;
}
.chatbot.open .chatbot-window {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0s linear 0s;
}

.chatbot-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, rgba(230, 185, 74, 0.18), rgba(255, 123, 61, 0.1));
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}
.chatbot-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.3);
    display: grid;
    place-items: center;
    padding: 3px;
}
.chatbot-avatar img { width: 100%; height: 100%; object-fit: contain; }
.chatbot-title { flex: 1; min-width: 0; }
.chatbot-title h3 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--foreground);
}
.chatbot-title p {
    margin: 0.1rem 0 0;
    font-size: 0.7rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.chatbot-title p::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.25);
}
.chatbot-close {
    border: none;
    background: transparent;
    color: var(--foreground);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: 0 0.5rem;
    border-radius: 4px;
    flex-shrink: 0;
}
.chatbot-close:hover { background: rgba(255, 255, 255, 0.06); color: var(--primary); }

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) transparent;
}
.chatbot-messages::-webkit-scrollbar { width: 5px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: rgba(230, 185, 74, 0.35); border-radius: 3px; }

.chat-msg {
    max-width: 85%;
    padding: 0.6rem 0.85rem;
    border-radius: 14px;
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
    animation: msgIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes msgIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.chat-msg-bot {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    color: var(--foreground);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom-left-radius: 4px;
}
.chat-msg-user {
    align-self: flex-end;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    border-bottom-right-radius: 4px;
    font-weight: 600;
}
.chat-msg a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.chat-msg-user a { color: var(--primary-foreground); }

.chatbot-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    padding: 0.4rem 1rem 0.5rem;
    flex-shrink: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.chatbot-quick-replies button {
    background: rgba(230, 185, 74, 0.1);
    border: 1px solid rgba(230, 185, 74, 0.3);
    color: var(--primary);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.chatbot-quick-replies button:hover {
    background: var(--gold-grad);
    color: var(--primary-foreground);
    border-color: transparent;
    transform: translateY(-1px);
}

.chatbot-input-form {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem 1rem;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}
.chatbot-input {
    flex: 1;
    padding: 0.6rem 0.85rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--foreground);
    font-size: 0.85rem;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.chatbot-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.06);
}
.chatbot-input::placeholder { color: var(--muted-foreground); }
.chatbot-send {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: var(--gold-grad);
    color: var(--primary-foreground);
    cursor: pointer;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.chatbot-send:hover { transform: scale(1.08); }

.chat-typing {
    display: inline-flex;
    gap: 4px;
    align-items: center;
}
.chat-typing span {
    width: 6px;
    height: 6px;
    background: var(--muted-foreground);
    border-radius: 50%;
    animation: typingDot 1.3s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.18s; }
.chat-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes typingDot {
    0%, 60%, 100% { opacity: 0.3; transform: scale(0.85); }
    30%           { opacity: 1; transform: scale(1); }
}

/* ============================================
   MOBILE RESPONSIVE REFINEMENTS
   These max-width queries tighten layout, padding
   and type for tablet and phone viewports.
   ============================================ */

/* Tablet & below — hide the dense topbar (too cramped with socials + email + phone) */
@media (max-width: 900px) {
    .topbar { display: none; }
    /* Header is now just the main row */
    :root { --header-h: 80px; }
}

/* Tablet portrait & below — reduce paddings, compact hero */
@media (max-width: 768px) {
    .section { padding: 3.5rem 0; }
    .section-header { margin-bottom: 2rem; }

    .page-hero { padding: 4rem 0; }

    /* Slightly smaller hero subtitle */
    .page-hero-subtitle { font-size: 0.95rem; }

    /* Compact section header spacing */
    .container-x { padding: 0 1rem; }

    /* Stats grid: 4 cards become 2x2 cleanly on tablet */
    .about-stats-grid { grid-template-columns: 1fr 1fr; }

    /* Process / capability / mvv cards full-width */
    .process-grid, .capability-list, .mvv-grid {
        grid-template-columns: 1fr;
    }

    /* Services header stacks */
    .services-header { flex-direction: column; align-items: flex-start; }

    /* Tighten hero carousel min-height */
    .hero-slide { min-height: 280px; }
}

/* Phones */
@media (max-width: 640px) {
    /* Tighter rhythm */
    .section { padding: 2.5rem 0; }
    .page-hero { padding: 3rem 0; }
    .section-header { margin-bottom: 1.5rem; }

    /* Smaller container gutter */
    .container-x { padding: 0 0.875rem; }

    /* Header smaller on phones */
    .header-main { height: 64px; }
    .logo-img { height: 40px; filter: drop-shadow(0 0 12px rgba(255, 123, 61, 0.4)); }
    .logo-title { font-size: 0.95rem; }
    .logo-subtitle { font-size: 0.5rem; letter-spacing: 0.25em; }
    .logo { gap: 0.5rem; }

    /* Hide brand text alongside logo on tiny screens — image alone is enough */
    .logo-text { display: none; }

    /* Heroes: even more compact titles */
    .hero-title, .page-hero-title {
        font-size: clamp(1.875rem, 8vw, 2.5rem);
        line-height: 1.1;
    }
    .hero-subtitle { font-size: 0.95rem; }

    /* Section titles — readable but not oversized */
    .section-title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .services-title { font-size: clamp(1.5rem, 7vw, 2rem); }
    .ms-cat-title  { font-size: clamp(1.375rem, 6.5vw, 1.875rem); }
    .cat-panel-title { font-size: clamp(2rem, 8vw, 2.75rem); }

    /* Stat numbers smaller */
    .stat-number { font-size: 2rem; }
    .stat-label { font-size: 0.65rem; letter-spacing: 0.08em; }
    .stat-card { padding: 1.1rem 0.75rem; }

    /* Service / capability / gallery cards */
    .service-card { border-radius: 12px; }
    .service-num { top: 14px; left: 14px; font-size: 0.55rem; }
    .service-arrow { top: 12px; right: 12px; width: 32px; height: 32px; }
    .service-body { padding: 1.1rem; }
    .service-title { font-size: 1.1rem; }
    .capability-body { padding: 1rem; }
    .gallery-grid { grid-auto-rows: 200px; gap: 0.6rem; }

    /* Footer compact */
    .footer-grid { padding: 2.5rem 1rem 1.5rem; gap: 1.75rem; }
    .footer-col-brand .footer-logo { height: 52px; }

    /* Buttons */
    .btn-lg { height: 2.5rem; padding: 0.6rem 1.25rem; font-size: 0.85rem; }

    /* FAB and chatbot — slightly smaller, closer to corners */
    .fab { width: 50px; height: 50px; }
    .fab svg { width: 22px; height: 22px; }
    .fab-stack { left: 0.75rem; bottom: 0.75rem; gap: 0.6rem; }
    .chatbot { right: 0.75rem; bottom: 0.75rem; }
    .chatbot-toggle { width: 52px; height: 52px; }
    .chatbot-toggle .chatbot-toggle-open { width: 26px; height: 26px; }

    /* Chatbot window: nearly full-width, anchored to right */
    .chatbot-window {
        width: calc(100vw - 1.5rem);
        right: -0.25rem;
        height: calc(100vh - 110px);
        max-height: 75vh;
    }

    /* Modal full-width with small margin */
    .modal { padding: 0.75rem; }
    .modal-card { padding: 1.5rem 1.25rem; }
    .modal-title { font-size: 1.375rem; }
    .form-row-2 { grid-template-columns: 1fr; }

    /* Marketing category circles smaller on phones */
    .cat-row { gap: 1.25rem; padding: 1rem 0.5rem; }
    .cat-ring { width: 100px; height: 100px; }
    .cat-num { width: 28px; height: 28px; font-size: 0.6rem; bottom: -4px; right: -4px; }
    .cat-name { font-size: 0.95rem; }
    .cat-count { font-size: 0.55rem; }
    .cat-btn { width: 130px; gap: 0.85rem; }

    /* Marquee brand pills smaller */
    .brand-pill { font-size: 1rem; padding: 0.7rem 1.25rem; }

    /* Hero carousel banners — keep aspect, ensure min-height */
    .hero-slide-banner { min-height: 180px; }

    /* Contact cards more compact */
    .contact-card { padding: 1rem; gap: 0.75rem; }
    .contact-card-icon { width: 40px; height: 40px; }

    /* Gallery feature tiles don't span 2x2 on phones — already handled by media query at 640px */
    .gallery-feature { grid-column: auto; grid-row: auto; }

    /* Map shorter on phones */
    .map-wrap { height: 14rem; }

    /* Teaser bubble already hidden under 540px — keep that */
}

/* Very small phones (below 380px) — tighten further */
@media (max-width: 380px) {
    html { font-size: 16px; }
    .container-x { padding: 0 0.75rem; }
    .about-stats-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { padding: 2rem 0.75rem 1.25rem; }
    .modal-card { padding: 1.25rem 1rem; }
    .cat-row { gap: 1rem; }
    .cat-ring { width: 88px; height: 88px; }
    .cat-btn { width: 116px; }
    .nav-link { font-size: 1rem; padding: 0.65rem 0; border-bottom: 1px solid var(--border); }
}

/* Improve tap targets on touch devices */
@media (hover: none) and (pointer: coarse) {
    .nav-link, .footer-list a, .contact-list a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    .footer-list li { line-height: 1.6; }
}

/* ============================================
   Welcome Popup — auto-shows on first visit
   ============================================ */
.welcome-popup {
    position: fixed;
    inset: 0;
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.welcome-popup.open { display: flex; }
.welcome-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: welcomeFade 0.3s ease;
}
.welcome-card {
    position: relative;
    width: 100%;
    max-width: 880px;
    max-height: 92vh;
    background: #14110f;
    border: 1px solid var(--border-strong);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(230, 185, 74, 0.18);
    animation: welcomeIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    position: relative;
}

/* Left side — solid dark form panel (no image) */
.welcome-form-side {
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230, 185, 74, 0.14), transparent 60%),
        linear-gradient(180deg, #1a1614 0%, #14110f 100%);
    color: var(--foreground);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.welcome-title {
    font-size: 1.875rem;
    font-weight: 900;
    margin: 0 0 0.5rem;
    letter-spacing: -0.01em;
    background: var(--gold-grad-shimmer);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 6s linear infinite;
    filter: drop-shadow(0 0 16px rgba(230, 185, 74, 0.2));
}
.welcome-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 0 1.5rem;
}
.welcome-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #25c466;
    box-shadow: 0 0 0 3px rgba(37, 196, 102, 0.25);
}
.welcome-form { display: flex; flex-direction: column; gap: 0.85rem; }
.welcome-form-group label {
    display: block;
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}
.welcome-form-group input,
.welcome-form-group select {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--foreground);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: inherit;
    outline: none;
    transition: all 0.2s ease;
}
.welcome-form-group input::placeholder { color: var(--muted-foreground); font-weight: 400; }
.welcome-form-group input:focus,
.welcome-form-group select:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(230, 185, 74, 0.15);
}
.welcome-form-group select option {
    background: #1a1614;
    color: var(--foreground);
}
.welcome-submit {
    margin-top: 0.4rem;
    padding: 0.95rem 1.25rem;
    background: var(--gold-grad-shimmer);
    background-size: 200% 100%;
    background-position: 0% 50%;
    color: var(--primary-foreground);
    border: none;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    box-shadow: var(--shadow-gold);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.5s ease;
}
.welcome-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-strong);
    background-position: 100% 50%;
}
.welcome-secure {
    margin-top: 0.85rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted-foreground);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}
.welcome-secure svg { color: var(--primary); }
.welcome-status {
    margin: 0.5rem 0 0;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    min-height: 1.2rem;
}
.welcome-status.error { color: #ef6b6b; }

/* Right side — full-bleed image with warm overlay on top */
.welcome-cta-side {
    color: #ffffff;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #1a1614;
}
/* Image fills the ENTIRE right panel as a true background */
.welcome-cta-bg {
    position: absolute !important;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: contrast(1.08) saturate(1.18);
}
/* Warm gradient overlay sits above the image, below the content */
.welcome-cta-side::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 80% 18%, rgba(255, 215, 106, 0.25), transparent 55%),
        linear-gradient(135deg, rgba(184, 132, 26, 0.78) 0%, rgba(255, 123, 61, 0.7) 55%, rgba(255, 80, 35, 0.82) 100%);
    pointer-events: none;
}
/* Lift content above image + overlay — but DON'T affect the .welcome-cta-bg img */
.welcome-cta-side > *:not(.welcome-cta-bg) { position: relative; z-index: 2; }
/* Subtle text shadow keeps white copy crisp over the image */
.welcome-cta-title { text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45); }
.welcome-features li { text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4); }
.welcome-trusted {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.22);
    color: #fff;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.welcome-trusted svg { color: #ffd76a; }
.welcome-cta-title {
    font-size: 1.875rem;
    font-weight: 900;
    line-height: 1.18;
    margin: 0 0 1.5rem;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.welcome-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.welcome-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}
.welcome-feature-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #25c466;
    color: #ffffff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.welcome-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    z-index: 3;
    display: grid;
    place-items: center;
    transition: all 0.2s ease;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}
.welcome-close:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: scale(1.08);
}
@keyframes welcomeFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes welcomeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.94); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Mobile: stack columns */
@media (max-width: 768px) {
    .welcome-grid { grid-template-columns: 1fr; min-height: 0; }
    .welcome-cta-side { order: -1; padding: 1.75rem 1.5rem; }
    .welcome-cta-title { font-size: 1.5rem; }
    .welcome-form-side { padding: 1.75rem 1.5rem; }
    .welcome-title { font-size: 1.5rem; }
    .welcome-card { max-height: 95vh; overflow-y: auto; }
}
@media (max-width: 480px) {
    .welcome-features li { font-size: 0.875rem; }
    .welcome-feature-check { width: 22px; height: 22px; }
}
