/* ===== Google Font Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS Custom Properties — Gold/Black Theme ===== */
:root {
    --primary: #050505;
    --primary-light: #0f0f0f;
    --accent: #c9a84c;
    --accent-light: #e6c55a;
    --accent-dark: #a08030;
    --accent-glow: #d4af37;
    --gold-1: #c9a84c;
    --gold-2: #d4af37;
    --gold-3: #e6c55a;
    --gold-4: #b8860b;
    --gold-5: #f0d060;
    --charcoal: #1a1a1a;
    --dark-slate: #2a2a2a;
    --gradient-gold: linear-gradient(135deg, #b8860b, #d4af37, #e6c55a, #d4af37);
    --gradient-gold-subtle: linear-gradient(135deg, #c9a84c, #e6c55a);
    --gradient-dark: linear-gradient(135deg, #050505 0%, #1a1a1a 50%, #050505 100%);
    --glass-bg: rgba(201, 168, 76, 0.04);
    --glass-border: rgba(201, 168, 76, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ===== Base Resets ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: var(--primary);
    transition: background-color 0.5s ease, color 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* ===== 3D Particle Canvas (Landing Page) ===== */
#particle-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* ===== Animated Background ===== */
.hero-bg {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(184, 134, 11, 0.03) 0%, transparent 50%);
    animation: bgShift 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes bgShift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ===== Floating Orbs (Gold) ===== */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    z-index: 0;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gold-2);
    top: -100px;
    right: -100px;
    animation: orbFloat1 8s ease-in-out infinite;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--gold-4);
    bottom: -80px;
    left: -80px;
    animation: orbFloat2 10s ease-in-out infinite;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--gold-3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.25; }
    50% { transform: translate(-60px, 60px); opacity: 0.4; }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.2; }
    50% { transform: translate(40px, -40px); opacity: 0.35; }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.15; }
    50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.25; }
}

/* ===== Gradient Text (Gold) ===== */
.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-alt {
    background: var(--gradient-gold-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Glassmorphism Card (Gold/Black) ===== */
.glass-card {
    background: rgba(201, 168, 76, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-6px);
    background: rgba(201, 168, 76, 0.06);
    border-color: rgba(201, 168, 76, 0.35);
    box-shadow:
        0 20px 60px rgba(201, 168, 76, 0.1),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(201, 168, 76, 0.1);
}

/* Make text brighter on card hover */
.glass-card:hover h3,
.glass-card:hover h4 {
    color: #fff !important;
}
.glass-card:hover p {
    color: rgba(255, 255, 255, 0.55) !important;
}

/* ===== Premium Buttons (Gold) ===== */
.btn-primary {
    background: var(--gradient-gold);
    color: #050505;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e6c55a, #f0d060, #c9a84c);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.35);
    color: #050505;
}

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

.btn-outline {
    color: var(--gold-3);
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    background: transparent;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(201, 168, 76, 0.08);
    border-color: rgba(201, 168, 76, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.12);
    color: var(--gold-5);
}

/* ===== Navbar (Gold/Black) ===== */
.navbar {
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(201, 168, 76, 0.15);
}

.nav-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-3);
    background: rgba(201, 168, 76, 0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* ===== Navbar Logo Image ===== */
.nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(201, 168, 76, 0.3);
    transition: all 0.3s ease;
}

.nav-logo-img:hover {
    border-color: var(--gold-2);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}

/* ===== Scroll-triggered Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== Landing Page Hero Animations ===== */
.hero-title {
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.hero-subtitle {
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

.hero-buttons {
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

.hero-badge {
    animation: heroSlideUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0s both;
}

.hero-logo {
    animation: logoReveal 1.5s cubic-bezier(0.4, 0, 0.2, 1) 0s both;
}

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

@keyframes logoReveal {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-20deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* ===== Logo Float Animation ===== */
.logo-float {
    animation: logoFloat 6s ease-in-out infinite;
}

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

/* ===== Logo Glow Pulse ===== */
.logo-glow {
    position: relative;
}

.logo-glow::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.2) 0%, transparent 70%);
    animation: logoPulseGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes logoPulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

/* ===== Particle Grid ===== */
.particle-grid {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(201, 168, 76, 0.06) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 0;
    animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* ===== Glowing Line (Gold) ===== */
.glow-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin: 0 auto;
    position: relative;
}

.glow-line::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-gold);
    border-radius: 4px;
    filter: blur(8px);
    opacity: 0.5;
}

/* ===== Service Icon Container ===== */
.icon-container {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(184, 134, 11, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: all 0.4s ease;
}

.glass-card:hover .icon-container {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(184, 134, 11, 0.2));
    transform: scale(1.1);
}

/* ===== Team Member Avatar (Gold) ===== */
.avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #050505;
    transition: all 0.4s ease;
    position: relative;
}

.avatar-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-gold);
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.4s ease;
}

.glass-card:hover .avatar-circle::before {
    opacity: 0.6;
}

.avatar-circle.avatar-photo {
    background: none !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 2.5px solid rgba(201, 168, 76, 0.45);
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.15), 0 4px 20px rgba(201, 168, 76, 0.18);
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    box-sizing: border-box;
    aspect-ratio: 1 / 1;
    border-radius: 50% !important;
    clip-path: circle(50% at 50% 50%);
    -webkit-clip-path: circle(50% at 50% 50%);
    isolation: isolate;
    will-change: transform;
}

.avatar-circle.avatar-photo::before {
    background: radial-gradient(circle, rgba(201,168,76,0.5), transparent 70%);
}

.avatar-circle.avatar-photo > img,
img.avatar-img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    object-fit: cover !important;
    object-position: center 25% !important;
    border-radius: 50% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    filter: brightness(1.04) contrast(1.06) saturate(1.08);
    image-rendering: high-quality;
    transition: filter 0.4s ease, transform 0.4s ease;
}

.glass-card:hover .avatar-img {
    filter: brightness(1.08) contrast(1.08) saturate(1.12);
    transform: scale(1.04);
}

/* ===== Section Styles ===== */
.section-dark {
    background: var(--primary);
    color: white;
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(201, 168, 76, 0.03) 0%, transparent 60%),
                radial-gradient(ellipse at bottom left, rgba(184, 134, 11, 0.03) 0%, transparent 60%);
    z-index: 0;
}

/* ===== Footer — Premium Redesign ===== */
.footer {
    background: linear-gradient(180deg, rgba(8,8,8,1) 0%, rgba(3,3,3,1) 100%);
    border-top: 1px solid rgba(201, 168, 76, 0.08);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-1) 20%, var(--gold-4) 50%, var(--gold-1) 80%, transparent 100%);
    animation: footer-glow 4s ease-in-out infinite alternate;
}

@keyframes footer-glow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Footer decorative orbs */
.footer::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

/* Footer CTA Banner */
.footer-cta {
    background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(184,134,11,0.03) 100%);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
}

/* Footer column headings */
.footer-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-heading::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(201,168,76,0.25), transparent);
    margin-left: 0.5rem;
}

/* Footer links */
.footer-link {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: rgba(255,255,255,0.9);
    transform: translateX(4px);
}

.footer-link .bi-chevron-right {
    color: var(--gold-4);
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.footer-link:hover .bi-chevron-right {
    transform: translateX(2px);
}

/* Social icons — premium style */
.footer-social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--gold-2), var(--gold-4));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-social a:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.2);
    border-color: var(--gold-2);
}

.footer-social a:hover::before {
    opacity: 0.15;
}

.footer-social a i {
    position: relative;
    z-index: 1;
}

/* Contact info items */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(184,134,11,0.08));
    color: var(--gold-4);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
    background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(184,134,11,0.14));
    transform: scale(1.05);
}

/* Map container */
.footer-map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(201,168,76,0.12);
    position: relative;
    height: 150px;
    margin-top: 1.25rem;
}

.footer-map::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Back to top button */
.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-2);
    background: rgba(201,168,76,0.06);
    border: 1px solid rgba(201,168,76,0.12);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top:hover {
    background: rgba(201,168,76,0.12);
    border-color: rgba(201,168,76,0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201,168,76,0.1);
    color: var(--gold-4);
}

/* ===== Form Inputs (Dark/Gold) ===== */
.form-input-dark {
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 14px 18px;
    color: white;
    font-size: 0.95rem;
    width: 100%;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.form-input-dark::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input-dark:focus {
    border-color: var(--gold-2);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
    background: rgba(201, 168, 76, 0.06);
}

/* ===== Counter / Stats (Gold) ===== */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Stagger Delay Utilities ===== */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }
.delay-7 { transition-delay: 0.7s !important; }
.delay-8 { transition-delay: 0.8s !important; }

/* ===== Scroll Progress Bar (Gold) ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu .nav-link {
    font-size: 1.5rem;
    padding: 12px 24px;
}

/* ===== Hamburger ===== */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 2.5px;
    background: var(--gold-2);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
}

/* ===== Pulse Dot (Gold) ===== */
.pulse-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-2);
    display: inline-block;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.5); opacity: 0; }
}

/* ===== Wave Divider ===== */
.wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* ===== Scrollbar Styling (Gold) ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gold-4), var(--gold-2));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--gold-2), var(--gold-3));
}

/* ===== Card Border Glow (Gold) ===== */
.border-glow {
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.border-glow:hover {
    border-color: rgba(201, 168, 76, 0.45) !important;
    box-shadow:
        0 0 0 1px rgba(201, 168, 76, 0.15),
        0 20px 60px rgba(201, 168, 76, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(201, 168, 76, 0.12) !important;
}

/* ===== Gold Separator ===== */
.gold-separator {
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 1rem auto;
    border-radius: 1px;
}

/* ===== Landing Hero Logo ===== */
.hero-logo-container {
    position: relative;
    display: inline-block;
}

.hero-logo-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(201, 168, 76, 0.4);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.15), 0 0 120px rgba(201, 168, 76, 0.05);
    transition: all 0.4s ease;
}

.hero-logo-img:hover {
    border-color: var(--gold-3);
    box-shadow: 0 0 80px rgba(201, 168, 76, 0.25), 0 0 160px rgba(201, 168, 76, 0.1);
}

@media (min-width: 768px) {
    .hero-logo-img {
        width: 220px;
        height: 220px;
    }
}

/* ===== Gold tag pills ===== */
.tag-gold {
    font-size: 0.75rem;
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold-3);
    padding: 4px 12px;
    border-radius: 9999px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    display: inline-block;
}

/* ========================================================== */
/*  DARK / LIGHT MODE TOGGLE BUTTON                           */
/* ========================================================== */
.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    background: rgba(201, 168, 76, 0.06);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gold-2);
    font-size: 1.15rem;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.theme-toggle:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.35);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
    position: absolute;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode (default): show moon, hide sun */
.theme-toggle .icon-moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}
.theme-toggle .icon-sun {
    opacity: 0;
    transform: rotate(-90deg) scale(0.5);
}

/* Light mode: show sun, hide moon */
body.light-mode .theme-toggle .icon-moon {
    opacity: 0;
    transform: rotate(90deg) scale(0.5);
}
body.light-mode .theme-toggle .icon-sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* ========================================================== */
/*  LIGHT MODE — Refined Luxe Theme                           */
/* ========================================================== */
body.light-mode {
    background:
        radial-gradient(ellipse 80% 60% at 15% 0%, rgba(212, 175, 55, 0.09) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 100%, rgba(184, 134, 11, 0.07) 0%, transparent 55%),
        linear-gradient(180deg, #faf8f3 0%, #f5f1e8 50%, #f7f3ea 100%) !important;
    background-attachment: fixed !important;
    color: #1a1816 !important;
}

/* Navbar — frosted glass with gold underline */
body.light-mode .navbar {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15) !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset, 0 8px 32px rgba(92, 72, 24, 0.06) !important;
}
body.light-mode .navbar.scrolled {
    background: rgba(255, 255, 255, 0.88) !important;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 12px 40px rgba(92, 72, 24, 0.1) !important;
    border-bottom-color: rgba(212, 175, 55, 0.22) !important;
}

/* Nav links */
body.light-mode .nav-link {
    color: rgba(30, 25, 15, 0.72) !important;
    font-weight: 600;
    transition: all 0.25s ease !important;
}
body.light-mode .nav-link:hover,
body.light-mode .nav-link.active {
    color: #8b6914 !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.06)) !important;
}

/* Nav logo text */
body.light-mode #nav-logo span {
    color: #1a1816 !important;
}

/* Hamburger */
body.light-mode .hamburger span {
    background: var(--gold-4) !important;
}

/* Section backgrounds */
body.light-mode .section-dark {
    background: transparent !important;
    color: #1a1816 !important;
}
body.light-mode .section-dark::before {
    background:
        radial-gradient(ellipse 50% 40% at 85% 15%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 10% 85%, rgba(184, 134, 11, 0.06) 0%, transparent 60%) !important;
}

/* Glass cards — premium frosted surface with layered depth */
body.light-mode .glass-card {
    background: linear-gradient(145deg, #ffffff 0%, #fdfbf5 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.18) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 1px 3px rgba(92, 72, 24, 0.04),
        0 8px 24px -6px rgba(92, 72, 24, 0.08),
        0 20px 48px -12px rgba(92, 72, 24, 0.06) !important;
    backdrop-filter: none !important;
    position: relative;
    overflow: hidden;
}
body.light-mode .glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    pointer-events: none;
}
body.light-mode .glass-card:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fefcf7 100%) !important;
    border-color: rgba(212, 175, 55, 0.38) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 4px 12px rgba(92, 72, 24, 0.06),
        0 24px 48px -8px rgba(212, 175, 55, 0.18),
        0 32px 64px -16px rgba(92, 72, 24, 0.12) !important;
}

/* Card text — rich, nuanced hierarchy */
body.light-mode .glass-card h3,
body.light-mode .glass-card h4 {
    color: #1a1816 !important;
    letter-spacing: -0.01em;
}
body.light-mode .glass-card p {
    color: rgba(30, 25, 15, 0.7) !important;
}
body.light-mode .glass-card li {
    color: rgba(30, 25, 15, 0.68) !important;
}
body.light-mode .glass-card:hover h3,
body.light-mode .glass-card:hover h4 {
    color: #0a0906 !important;
}
body.light-mode .glass-card:hover p {
    color: rgba(30, 25, 15, 0.78) !important;
}

/* All headings — warm deep charcoal for elegance */
body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6 {
    color: #1a1816 !important;
    letter-spacing: -0.015em;
}

/* Body text — warm charcoal for comfortable reading */
body.light-mode p {
    color: rgba(30, 25, 15, 0.72) !important;
}

/* List items */
body.light-mode li {
    color: rgba(30, 25, 15, 0.68) !important;
}

/* White text overrides — warm charcoal hierarchy */
body.light-mode [class*="text-white/"] {
    color: rgba(30, 25, 15, 0.64) !important;
}
body.light-mode .text-white {
    color: #1a1816 !important;
}
body.light-mode [class*="text-white/9"] {
    color: rgba(30, 25, 15, 0.92) !important;
}
body.light-mode [class*="text-white/8"] {
    color: rgba(30, 25, 15, 0.82) !important;
}
body.light-mode [class*="text-white/7"] {
    color: rgba(30, 25, 15, 0.74) !important;
}
body.light-mode [class*="text-white/6"] {
    color: rgba(30, 25, 15, 0.68) !important;
}
body.light-mode [class*="text-white/5"] {
    color: rgba(30, 25, 15, 0.62) !important;
}
body.light-mode [class*="text-white/4"] {
    color: rgba(30, 25, 15, 0.56) !important;
}
body.light-mode [class*="text-white/3"] {
    color: rgba(30, 25, 15, 0.52) !important;
}
body.light-mode [class*="text-white/2"] {
    color: rgba(30, 25, 15, 0.46) !important;
}
body.light-mode [class*="text-white/1"] {
    color: rgba(30, 25, 15, 0.4) !important;
}

/* Feature list items */
body.light-mode .feature-list li {
    color: rgba(30, 25, 15, 0.68) !important;
}
body.light-mode .feature-list li::before {
    background: linear-gradient(135deg, var(--gold-4), var(--gold-2)) !important;
}

/* Glass card enhanced (about page) — matches premium glass-card */
body.light-mode .glass-card-enhanced {
    background: linear-gradient(145deg, #ffffff 0%, #fdfbf5 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.18) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 1px 3px rgba(92, 72, 24, 0.04),
        0 8px 24px -6px rgba(92, 72, 24, 0.08),
        0 20px 48px -12px rgba(92, 72, 24, 0.06) !important;
    backdrop-filter: none !important;
    position: relative;
    overflow: hidden;
}
body.light-mode .glass-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.45), transparent);
    pointer-events: none;
}
body.light-mode .glass-card-enhanced:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fefcf7 100%) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 4px 12px rgba(92, 72, 24, 0.06),
        0 24px 48px -8px rgba(212, 175, 55, 0.2),
        0 32px 64px -16px rgba(92, 72, 24, 0.12) !important;
}
body.light-mode .glass-card-enhanced h3,
body.light-mode .glass-card-enhanced h4 {
    color: #1a1816 !important;
}
body.light-mode .glass-card-enhanced p {
    color: rgba(30, 25, 15, 0.7) !important;
}
body.light-mode .glass-card-enhanced li {
    color: rgba(30, 25, 15, 0.68) !important;
}

/* Sub-cards inside glass cards — warm cream tinted surface */
body.light-mode .glass-card .rounded-xl,
body.light-mode .glass-card .rounded-lg,
body.light-mode .glass-card-enhanced .rounded-xl,
body.light-mode .glass-card-enhanced .rounded-lg {
    background: linear-gradient(135deg, rgba(250, 245, 230, 0.8), rgba(248, 242, 228, 0.6)) !important;
    border-color: rgba(212, 175, 55, 0.18) !important;
}

/* About page — badge pill, luxe gradient chip */
body.light-mode .badge-pill {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(184, 134, 11, 0.08)) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    color: #8b6914 !important;
    box-shadow: 0 1px 2px rgba(212, 175, 55, 0.1) !important;
}

/* About page — region badges */
body.light-mode .region-badge {
    background: linear-gradient(135deg, #ffffff, #fdfaf0) !important;
    border: 1px solid rgba(212, 175, 55, 0.18) !important;
    box-shadow: 0 2px 8px rgba(92, 72, 24, 0.05) !important;
}
body.light-mode .region-badge:hover {
    border-color: rgba(212, 175, 55, 0.45) !important;
    background: linear-gradient(135deg, #fffdf5, #fdf5dc) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15) !important;
    transform: translateY(-2px);
}

/* About page — service tags */
body.light-mode .service-tag {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(212, 175, 55, 0.22) !important;
    color: rgba(30, 25, 15, 0.7) !important;
    box-shadow: 0 1px 3px rgba(92, 72, 24, 0.04) !important;
}
body.light-mode .service-tag:hover {
    border-color: rgba(212, 175, 55, 0.5) !important;
    color: #8b6914 !important;
    background: linear-gradient(135deg, #fffdf5, #fdf5dc) !important;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.18) !important;
}

/* About page — gold divider */
body.light-mode .gold-divider {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.42), transparent) !important;
    opacity: 0.85 !important;
}

/* About page — stat glow cards (premium hero stats) */
body.light-mode .stat-glow {
    background: linear-gradient(145deg, #ffffff 0%, #fdfaf0 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 1) inset,
        0 4px 14px rgba(92, 72, 24, 0.06),
        0 12px 32px -8px rgba(212, 175, 55, 0.1) !important;
}

/* White bg overrides */
body.light-mode [class*="bg-white/"] {
    background-color: rgba(212, 175, 55, 0.07) !important;
}

/* Buttons — refined gold shine */
body.light-mode .btn-primary {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.4) inset,
        0 4px 14px rgba(212, 175, 55, 0.28),
        0 10px 28px -8px rgba(184, 134, 11, 0.3) !important;
}
body.light-mode .btn-primary:hover {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 6px 20px rgba(212, 175, 55, 0.4),
        0 14px 36px -10px rgba(184, 134, 11, 0.42) !important;
}
body.light-mode .btn-outline {
    color: #8b6914 !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
    background: rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: none !important;
}
body.light-mode .btn-outline:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(184, 134, 11, 0.08)) !important;
    border-color: var(--gold-4) !important;
    color: #8b6914 !important;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.2) !important;
}

/* Stat numbers keep gradient */
body.light-mode .stat-number {
    -webkit-text-fill-color: transparent;
}

/* Footer — rich warm gradient with gold accent line */
body.light-mode .footer {
    background:
        radial-gradient(ellipse 60% 80% at 50% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #f0ebdd 0%, #e8e2d1 100%) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.22) !important;
    box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.5) inset;
}
body.light-mode .footer::before {
    background: var(--gradient-gold) !important;
    opacity: 0.9;
}
body.light-mode .footer h4 {
    color: #1a1816 !important;
}
body.light-mode .footer a {
    color: rgba(30, 25, 15, 0.6) !important;
}
body.light-mode .footer a:hover {
    color: #8b6914 !important;
}
body.light-mode .footer p {
    color: rgba(30, 25, 15, 0.6) !important;
}
body.light-mode .footer span {
    color: rgba(30, 25, 15, 0.54) !important;
}

/* Social Icons — elegant gold pill */
body.light-mode .footer a[title] {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    color: rgba(30, 25, 15, 0.45) !important;
    box-shadow: 0 2px 6px rgba(92, 72, 24, 0.06) !important;
}
body.light-mode .footer a[title]:hover {
    color: #8b6914 !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(184, 134, 11, 0.1)) !important;
    border-color: rgba(212, 175, 55, 0.4) !important;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.2) !important;
}

/* Orbs */
body.light-mode .orb {
    opacity: 0.12 !important;
}

/* Form inputs — elegant cream with focus ring */
body.light-mode .form-input-dark {
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1px solid rgba(212, 175, 55, 0.28) !important;
    color: #1a1816 !important;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.7) inset,
        0 2px 6px rgba(92, 72, 24, 0.05) !important;
    backdrop-filter: blur(6px) !important;
}
body.light-mode .form-input-dark::placeholder {
    color: rgba(30, 25, 15, 0.4) !important;
}
body.light-mode .form-input-dark:focus {
    background: #ffffff !important;
    border-color: var(--gold-4) !important;
    box-shadow:
        0 0 0 4px rgba(212, 175, 55, 0.14),
        0 4px 14px rgba(212, 175, 55, 0.1) !important;
}

/* Tag pills */
body.light-mode .tag-gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(184, 134, 11, 0.08)) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
    color: #8b6914 !important;
}

/* Feature list dots */
body.light-mode .feature-list li::before {
    color: var(--gold-4) !important;
}

/* Scroll progress */
body.light-mode .scroll-progress {
    opacity: 0.8;
}

/* Scrollbar */
body.light-mode::-webkit-scrollbar-track {
    background: #f0ebdd;
}
body.light-mode::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.5), rgba(184, 134, 11, 0.4)) !important;
    border-radius: 100px;
}
body.light-mode::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.7), rgba(184, 134, 11, 0.6)) !important;
}

/* Border glow */
body.light-mode .border-glow:hover {
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.35),
        0 24px 56px rgba(212, 175, 55, 0.16),
        0 6px 20px rgba(92, 72, 24, 0.08) !important;
}

/* Mobile menu — clean cream with backdrop blur */
body.light-mode .mobile-menu {
    background: rgba(255, 253, 246, 0.96) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border-top: 1px solid rgba(212, 175, 55, 0.18) !important;
}
body.light-mode .mobile-menu .nav-link {
    color: rgba(30, 25, 15, 0.74) !important;
    font-weight: 600;
}
body.light-mode .mobile-menu .nav-link:hover,
body.light-mode .mobile-menu .nav-link.active {
    color: #8b6914 !important;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(184, 134, 11, 0.06)) !important;
}

/* Avatar circles */
body.light-mode .avatar-circle {
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 6px 20px rgba(212, 175, 55, 0.22),
        0 12px 32px -8px rgba(184, 134, 11, 0.18);
}

/* Section dividers */
body.light-mode .section-divider {
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent) !important;
}

/* Gold separator */
body.light-mode .gold-separator {
    opacity: 0.8;
}

/* Pulse dot */
body.light-mode .pulse-dot {
    background: var(--gold-4) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}
body.light-mode .pulse-dot::before {
    background: rgba(184, 134, 11, 0.35) !important;
}

/* Icon containers */
body.light-mode .icon-container {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.12), rgba(184, 134, 11, 0.08)) !important;
    border: 1px solid rgba(212, 175, 55, 0.22) !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1) !important;
}

/* Service number badges */
body.light-mode .service-number {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(184, 134, 11, 0.08)) !important;
    border-color: rgba(212, 175, 55, 0.28) !important;
    color: #8b6914 !important;
}

/* Intro card gold accent */
body.light-mode .intro-card::before {
    background: linear-gradient(to bottom, var(--gold-4), var(--gold-2), transparent) !important;
}

/* Theme toggle in light mode */
body.light-mode .theme-toggle {
    background: rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(212, 175, 55, 0.22) !important;
    color: #8b6914 !important;
    box-shadow: 0 2px 8px rgba(92, 72, 24, 0.06) !important;
}
body.light-mode .theme-toggle:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(184, 134, 11, 0.08)) !important;
    border-color: rgba(212, 175, 55, 0.38) !important;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.2) !important;
}

/* About page — icon circles, step numbers, particles in light mode */
body.light-mode .icon-circle {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(184, 134, 11, 0.08)) !important;
    border: 1px solid rgba(212, 175, 55, 0.28) !important;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.1) !important;
}
body.light-mode .step-number {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(184, 134, 11, 0.1)) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    color: #8b6914 !important;
}
body.light-mode .particle {
    background: var(--gold-4) !important;
    opacity: 0.45 !important;
}
body.light-mode .hero-mesh {
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184, 134, 11, 0.07) 0%, transparent 70%) !important;
}
body.light-mode .gradient-text {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #8b6914 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Hero home overrides for light mode */
body.light-mode .hero-home::before {
    background:
        radial-gradient(ellipse at 20% 80%, rgba(212,175,55,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(184,134,11,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(230,197,90,0.06) 0%, transparent 40%) !important;
}
body.light-mode .hero-home::after {
    background: linear-gradient(to top, #f7f3ea, transparent) !important;
}

/* Gold line anim in light mode */
body.light-mode .gold-line-anim {
    background: linear-gradient(90deg, transparent, var(--gold-4), transparent) !important;
}

/* Intro card in light mode */
body.light-mode .intro-card::before {
    background: linear-gradient(to bottom, var(--gold-4), var(--gold-2), transparent) !important;
}

/* Section divider in light mode */
body.light-mode .section-divider {
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent) !important;
}

/* Navbar transition for smooth switching */
.navbar {
    transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
}
.glass-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s ease, border-color 0.5s ease;
}
.footer {
    transition: background 0.5s ease, border-color 0.5s ease;
}

/* ========================================================== */
/*  LIGHT MODE — Marquee, Service Cards & Page Components      */
/* ========================================================== */

/* Marquee items — warm cream with dark readable text */
body.light-mode .marquee-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(253,250,240,0.85)) !important;
    border: 1px solid rgba(212,175,55,0.25) !important;
    color: rgba(30,25,15,0.72) !important;
    box-shadow: 0 2px 10px rgba(92,72,24,0.06) !important;
}
body.light-mode .marquee-item:hover {
    color: #8b6914 !important;
    background: linear-gradient(135deg, #fffdf5, #fdf5dc) !important;
    border-color: rgba(212,175,55,0.45) !important;
    box-shadow: 0 6px 18px rgba(212,175,55,0.2) !important;
}
body.light-mode .marquee-item i {
    color: #a07c1e !important;
}

/* Typed tagline — darker gold for readability */
body.light-mode .typed-tag {
    color: #8b6914 !important;
}
body.light-mode .typed-tag::after {
    background: #8b6914 !important;
}

/* Service cards (svc-card-3d) — premium frosted surface */
body.light-mode .svc-card-3d {
    background: linear-gradient(145deg, #ffffff 0%, #fdfbf5 100%) !important;
    border: 1px solid rgba(212,175,55,0.18) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,1) inset,
        0 1px 3px rgba(92,72,24,0.04),
        0 8px 24px -6px rgba(92,72,24,0.08),
        0 20px 48px -12px rgba(92,72,24,0.06) !important;
    backdrop-filter: none !important;
}
body.light-mode .svc-card-3d::before {
    background: linear-gradient(135deg, rgba(212,175,55,0.25), transparent 35%, transparent 65%, rgba(230,197,90,0.2)) !important;
}
body.light-mode .svc-card-3d:hover {
    background: linear-gradient(145deg, #ffffff 0%, #fefcf7 100%) !important;
    border-color: rgba(212,175,55,0.38) !important;
    box-shadow:
        0 1px 0 rgba(255,255,255,1) inset,
        0 4px 12px rgba(92,72,24,0.06),
        0 24px 48px -8px rgba(212,175,55,0.18),
        0 32px 64px -16px rgba(92,72,24,0.12) !important;
}
body.light-mode .svc-card-3d h3 {
    color: #1a1816 !important;
}
body.light-mode .svc-card-3d p {
    color: rgba(30,25,15,0.7) !important;
}
body.light-mode .svc-card-3d li {
    color: rgba(30,25,15,0.68) !important;
}

/* Icon panel inside service cards */
body.light-mode .icon-panel {
    background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(184,134,11,0.08)) !important;
    border: 1px solid rgba(212,175,55,0.22) !important;
}

/* Service number inside svc-card-3d */
body.light-mode .svc-card-3d .service-number {
    background: linear-gradient(135deg, #d4af37, #e6c55a) !important;
    color: #fff !important;
}

/* Sub-cards inside service cards */
body.light-mode .svc-card-3d .rounded-lg {
    background: linear-gradient(135deg, rgba(250,245,230,0.8), rgba(248,242,228,0.6)) !important;
    border-color: rgba(212,175,55,0.18) !important;
}
body.light-mode .svc-card-3d .rounded-lg .text-white\/70 {
    color: rgba(30,25,15,0.78) !important;
}
body.light-mode .svc-card-3d .rounded-lg .text-white\/30 {
    color: rgba(30,25,15,0.52) !important;
}
body.light-mode .svc-card-3d .rounded-lg .text-white\/65 {
    color: rgba(30,25,15,0.72) !important;
}
body.light-mode .svc-card-3d .rounded-lg .text-white\/25 {
    color: rgba(30,25,15,0.46) !important;
}

/* Feature list inside service cards */
body.light-mode .svc-card-3d .feature-list li {
    color: rgba(30,25,15,0.68) !important;
}

/* Gradient text variants for services page */
body.light-mode .gradient-text-svc {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 50%, #8b6914 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

/* Trust pills (contact page) */
body.light-mode .trust-pill {
    background: rgba(255,255,255,0.7) !important;
    border: 1px solid rgba(212,175,55,0.25) !important;
    box-shadow: 0 2px 8px rgba(92,72,24,0.06) !important;
}
body.light-mode .trust-pill span {
    color: rgba(30,25,15,0.68) !important;
}
body.light-mode .trust-pill:hover {
    background: linear-gradient(135deg, #fffdf5, #fdf5dc) !important;
    border-color: rgba(212,175,55,0.45) !important;
}

/* Social 3D icons (contact page) */
body.light-mode .social-3d {
    background: rgba(255,255,255,0.7) !important;
    border: 1px solid rgba(212,175,55,0.22) !important;
    color: rgba(30,25,15,0.5) !important;
    box-shadow: 0 2px 6px rgba(92,72,24,0.06) !important;
}
body.light-mode .social-3d:hover {
    background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(184,134,11,0.1)) !important;
    border-color: rgba(212,175,55,0.45) !important;
    color: #8b6914 !important;
    box-shadow: 0 6px 20px rgba(212,175,55,0.2) !important;
}

/* Hours live indicator (contact page) */
body.light-mode .hours-live {
    background: linear-gradient(135deg, rgba(22,163,74,0.1), rgba(22,163,74,0.05)) !important;
    border: 1px solid rgba(22,163,74,0.3) !important;
    color: #16a34a !important;
}
body.light-mode .hours-live .live-dot {
    background: #16a34a !important;
    box-shadow: 0 0 8px rgba(22,163,74,0.5) !important;
}

/* Map frame (contact page) */
body.light-mode .map-frame {
    background: linear-gradient(135deg, rgba(212,175,55,0.06), rgba(184,134,11,0.03)) !important;
    border: 1px solid rgba(212,175,55,0.22) !important;
}
body.light-mode .map-frame iframe {
    filter: saturate(0.6) brightness(1.0) contrast(1.05) !important;
}

/* Contact icon wrap */
body.light-mode .contact-icon-wrap {
    background: linear-gradient(135deg, rgba(212,175,55,0.14), rgba(184,134,11,0.08)) !important;
}

/* Ring icon wrap borders */
body.light-mode .ring-icon-wrap::before {
    border-color: rgba(212,175,55,0.3) !important;
}
body.light-mode .ring-icon-wrap::after {
    border-color: rgba(212,175,55,0.18) !important;
}

/* Split word text in light mode */
body.light-mode .split-word > span {
    color: #1a1816;
}

/* Aurora beams in light mode (all pages) */
body.light-mode .aurora-beam {
    opacity: 0.65 !important;
    mix-blend-mode: multiply !important;
}

/* Grid floor in light mode (all pages) */
body.light-mode .grid-floor {
    background-image:
        linear-gradient(to right, rgba(184,134,11,0.16) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(184,134,11,0.16) 1px, transparent 1px) !important;
}

/* Particles in light mode */
body.light-mode .c-particle {
    background: #a07c1e !important;
    box-shadow: 0 0 8px rgba(160,124,30,0.5) !important;
}

/* Footer map in light mode */
body.light-mode .footer-map iframe {
    filter: saturate(0.6) brightness(1.0) contrast(1.05) !important;
}

/* Footer CTA section */
body.light-mode .footer-cta {
    background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(184,134,11,0.04)) !important;
    border-color: rgba(212,175,55,0.22) !important;
}

/* Inline style color overrides for elements using style="color: #d4af37" etc. */
body.light-mode [style*="color: #d4af37"],
body.light-mode [style*="color:#d4af37"] {
    color: #a07c1e !important;
}

/* Hero mesh for services page */
body.light-mode .hero-mesh-svc {
    background:
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,175,55,0.1) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(184,134,11,0.07) 0%, transparent 70%) !important;
}

/* ========================================================== */
/*  ✦  COMPREHENSIVE MOBILE RESPONSIVE MEDIA QUERIES  ✦       */
/* ========================================================== */

/* ── SMALL MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

    /* --- Navbar --- */
    .navbar .max-w-7xl {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }
    #nav-logo span {
        font-size: 0.7rem !important;
        max-width: 170px;
        line-height: 1.3;
    }
    .nav-logo-img {
        width: 34px !important;
        height: 34px !important;
    }

    /* --- General Typography --- */
    h1 { font-size: 1.75rem !important; }
    h2 { font-size: 1.35rem !important; }
    h3 { font-size: 1.1rem !important; }

    /* --- Hero Sections --- */
    .hero-home {
        min-height: 75vh !important;
    }

    /* --- Glass Cards --- */
    .glass-card {
        padding: 1rem !important;
        border-radius: 12px !important;
    }
    .glass-card.p-8,
    .glass-card.p-10 {
        padding: 1.25rem !important;
    }

    /* --- Buttons --- */
    .btn-primary,
    .btn-outline {
        padding: 12px 24px !important;
        font-size: 0.875rem !important;
        width: 100%;
        justify-content: center;
    }

    /* --- Stat Numbers --- */
    .stat-number {
        font-size: 1.75rem !important;
    }

    /* --- Avatar Circles --- */
    .avatar-circle {
        width: 85px !important;
        height: 85px !important;
        font-size: 1.4rem !important;
    }
    .glass-card .avatar-circle[style*="width:110px"] {
        width: 90px !important;
        height: 90px !important;
        font-size: 1.5rem !important;
    }
    .glass-card .avatar-circle[style*="width:100px"] {
        width: 85px !important;
        height: 85px !important;
        font-size: 1.4rem !important;
    }

    /* --- Footer --- */
    .footer {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    .footer-cta {
        padding: 1.5rem 1rem !important;
        border-radius: 14px !important;
        margin-bottom: 2rem !important;
    }
    .footer-cta h3 {
        font-size: 1.1rem !important;
    }
    .footer-heading {
        font-size: 0.72rem !important;
        margin-bottom: 1rem !important;
    }
    .footer-social a {
        width: 38px !important;
        height: 38px !important;
    }
    .footer-map {
        height: 120px !important;
        margin-top: 0.75rem !important;
    }
    .footer-bottom {
        gap: 0.75rem !important;
        padding-top: 1rem !important;
    }
    .back-to-top {
        padding: 0.4rem 1rem !important;
        font-size: 0.7rem !important;
    }

    /* --- Form Inputs --- */
    .form-input-dark {
        padding: 12px 14px !important;
        font-size: 0.875rem !important;
        border-radius: 10px !important;
    }

    /* --- Glow Line --- */
    .glow-line {
        width: 60px !important;
    }

    /* --- Icon Containers --- */
    .icon-container {
        width: 52px !important;
        height: 52px !important;
        border-radius: 12px !important;
    }

    /* --- Orbs (reduce on mobile for performance) --- */
    .orb {
        display: none !important;
    }

    /* --- Particle Grid (hide on mobile for performance) --- */
    .particle-grid {
        display: none !important;
    }

    /* --- Section paddings --- */
    section[class*="py-20"] {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    section[class*="py-16"] {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }
    section[class*="py-24"] {
        padding-top: 3.5rem !important;
        padding-bottom: 3.5rem !important;
    }

    /* --- Service Card 3D --- */
    .svc-card-3d {
        padding: 1.25rem !important;
        border-radius: 14px !important;
    }
    .icon-panel {
        width: 60px !important;
        height: 60px !important;
        border-radius: 14px !important;
    }
    .service-number {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.75rem !important;
        border-radius: 8px !important;
    }

    /* --- Contact page specific --- */
    .map-frame {
        padding: 6px !important;
        border-radius: 16px !important;
    }
    .social-3d {
        width: 44px !important;
        height: 44px !important;
    }
    .contact-icon-wrap.ring-icon-wrap {
        width: 48px !important;
        height: 48px !important;
    }

    /* --- Scroll progress (thinner on mobile) --- */
    .scroll-progress {
        height: 2px !important;
    }

    /* --- Tag pills --- */
    .tag-gold {
        font-size: 0.65rem !important;
        padding: 3px 8px !important;
    }
}

/* ── GENERAL MOBILE (≤ 768px) ── */
@media (max-width: 768px) {

    /* --- Navbar --- */
    .navbar .max-w-7xl {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    #nav-logo {
        gap: 0.5rem !important;
    }
    #nav-logo span {
        font-size: 0.78rem;
        max-width: 200px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .nav-logo-img {
        width: 36px;
        height: 36px;
    }

    /* --- Hero home adjustments --- */
    .hero-home {
        min-height: auto !important;
        padding-top: 2rem;
        padding-bottom: 4rem;
    }

    /* --- Section padding adjustments --- */
    section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    section > .max-w-7xl,
    section > .max-w-6xl,
    section > .max-w-5xl,
    section > .max-w-4xl,
    section > .max-w-3xl {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    /* --- Glass card padding --- */
    .glass-card {
        padding: 1.25rem;
    }
    .glass-card.p-8 {
        padding: 1.5rem !important;
    }
    .glass-card.p-10 {
        padding: 1.5rem !important;
    }

    /* --- Glass card hover effects (reduce on touch) --- */
    .glass-card:hover {
        transform: translateY(-3px);
    }

    /* --- Service cards 3D effects (disable tilt on mobile/touch) --- */
    .svc-card-3d:hover {
        transform: translateY(-4px) !important;
    }
    .tilt {
        transform: none !important;
    }
    .tilt:hover {
        transform: none !important;
    }

    /* --- Buttons (stack on mobile) --- */
    .btn-primary,
    .btn-outline {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    /* --- Stat numbers --- */
    .stat-number {
        font-size: 2rem;
    }

    /* --- Footer layout --- */
    .footer-cta {
        padding: 1.75rem 1.25rem;
        margin-bottom: 2.5rem;
    }
    .footer-social {
        justify-content: flex-start;
    }
    .footer-bottom {
        flex-direction: column !important;
        text-align: center;
        gap: 1rem;
    }
    .footer-bottom > div {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* --- Team page cards horizontal layout fix --- */
    .glass-card .flex.items-center.gap-6 {
        gap: 1rem !important;
    }
    .glass-card .flex.items-center.gap-5 {
        gap: 0.75rem !important;
    }

    /* --- Gold line anim --- */
    .gold-line-anim {
        max-width: 80px;
    }

    /* --- Intro card --- */
    .intro-card {
        padding-left: 16px !important;
    }

    /* --- Service card large layout --- */
    .service-card-large {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    /* --- 3-col grid → 1-col for services ADHICS --- */
    .grid-cols-3,
    .grid.grid-cols-3 {
        grid-template-columns: 1fr !important;
    }

    /* --- Contact page map --- */
    .map-frame iframe {
        height: 220px !important;
    }

    /* --- Wave divider --- */
    .wave-divider svg {
        height: 35px !important;
    }

    /* --- Logo in hero sections --- */
    .hero-logo-img {
        width: 140px !important;
        height: 140px !important;
    }

    /* --- Section titles margin --- */
    .glow-line {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }

    /* --- Feature list --- */
    .feature-list li {
        font-size: 0.78rem !important;
    }

    /* --- Services bento grid --- */
    .services-bento {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    /* --- Marquee items --- */
    .marquee-item {
        padding: 8px 14px !important;
        font-size: 12px !important;
    }

    /* --- Badge pill --- */
    .badge-pill {
        padding: 6px 14px !important;
        font-size: 0.75rem !important;
    }

    /* --- Trust pills --- */
    .trust-pill {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }
    .trust-pill span {
        font-size: 0.78rem !important;
    }

    /* --- Contact cards --- */
    .ring-icon-wrap::before,
    .ring-icon-wrap::after {
        display: none !important;
    }

    /* --- Gradient ring (CTA) --- */
    .gradient-ring {
        border-radius: 18px !important;
    }
    .gradient-ring::before {
        border-radius: 20px !important;
    }
    .gradient-ring::after {
        border-radius: 18px !important;
    }

    /* --- Hero title in landing/home (inline styles override) --- */
    [style*="font-size:4rem"],
    [style*="font-size: 4rem"] {
        font-size: 2.2rem !important;
    }
    [style*="font-size:1.8rem"],
    [style*="font-size: 1.8rem"] {
        font-size: 1.15rem !important;
    }

    /* --- Stats bar (landing page) --- */
    .stats-bar {
        gap: 1.5rem !important;
        flex-wrap: wrap;
    }
    .stat-value {
        font-size: 1.4rem !important;
    }
    .stat-label {
        font-size: 9px !important;
    }
    .stat-divider {
        height: 30px !important;
    }

    /* --- Team page grids → single column on very small --- */
    .grid.grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem !important;
    }

    /* --- Disable 3D tilt cursor effects on touch --- */
    .cursor-glow,
    .trail-dot {
        display: none !important;
    }

    /* --- Landing page specific --- */
    .orbit-chip {
        display: none !important;
    }
    .locale-pill,
    .live-status {
        font-size: 9px !important;
        padding: 5px 10px !important;
    }
    .locale-pill {
        top: 12px !important;
        left: 12px !important;
    }
    .live-status {
        top: 12px !important;
        right: 12px !important;
    }
    .bottom-marquee {
        display: none !important;
    }

    /* --- Logo wrapper in landing page --- */
    .logo-orbit-2 {
        display: none !important;
    }

    /* --- Contact page form card --- */
    .glass-card.p-8.md\\:p-10,
    .glass-card.p-10,
    .glass-card[class*="p-12"],
    .glass-card[class*="lg:p-12"] {
        padding: 1.5rem !important;
    }
}

/* ── TABLET PORTRAIT (481px – 768px) ── */
@media (min-width: 481px) and (max-width: 768px) {
    /* Team grids: keep 2-col for tablet */
    .grid.grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Services bento: 1 col for tablet portrait */
    .services-bento {
        grid-template-columns: 1fr !important;
    }

    /* Hero typography fine-tuning */
    h1 {
        font-size: 2.5rem !important;
    }

    /* Stat numbers */
    .stat-number {
        font-size: 2.2rem;
    }
}

/* ── EXTRA SMALL (≤ 360px) ── Very small phones ── */
@media (max-width: 360px) {

    /* --- Navbar ultra-compact --- */
    #nav-logo span {
        font-size: 0.65rem !important;
        max-width: 140px;
    }
    .nav-logo-img {
        width: 30px !important;
        height: 30px !important;
    }

    /* --- Typography --- */
    h1 { font-size: 1.5rem !important; }
    h2 { font-size: 1.2rem !important; }
    h3 { font-size: 1rem !important; }

    /* --- Team 2-col → 1-col on tiny screens --- */
    .grid.grid-cols-2 {
        grid-template-columns: 1fr !important;
    }

    /* --- Buttons full width --- */
    .btn-primary,
    .btn-outline {
        padding: 10px 20px !important;
        font-size: 0.82rem !important;
    }

    /* --- Glass cards ultra compact --- */
    .glass-card {
        padding: 0.875rem !important;
        border-radius: 10px !important;
    }

    /* --- Footer ultra compact --- */
    .footer-cta {
        padding: 1.25rem 0.75rem !important;
    }
    .footer-cta h3 {
        font-size: 1rem !important;
    }

    /* --- Avatars ultra compact --- */
    .avatar-circle {
        width: 75px !important;
        height: 75px !important;
        font-size: 1.25rem !important;
    }
    .glass-card .avatar-circle[style*="width:110px"] {
        width: 80px !important;
        height: 80px !important;
        font-size: 1.3rem !important;
    }
    .glass-card .avatar-circle[style*="width:100px"] {
        width: 75px !important;
        height: 75px !important;
        font-size: 1.25rem !important;
    }

    /* --- Landing page --- */
    .hero-card {
        padding: 1.5rem 1rem !important;
        border-radius: 16px !important;
    }
    .stats-bar {
        gap: 1rem !important;
    }
    .stat-value {
        font-size: 1.2rem !important;
    }
    .locale-pill,
    .live-status {
        display: none !important;
    }
}

/* ── LANDSCAPE MOBILE (max-height ≤ 500px) ── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-home {
        min-height: auto !important;
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
    }
    .content-layer {
        min-height: auto !important;
        padding: 1rem !important;
    }
    .hero-card {
        padding: 1.5rem 2rem !important;
    }
    .logo-img {
        width: 80px !important;
        height: 80px !important;
    }
    .logo-wrapper {
        margin-bottom: 0.75rem !important;
    }
}

/* ── TOUCH DEVICE OPTIMIZATIONS ── */
@media (hover: none) and (pointer: coarse) {
    /* Disable all hover-based transform effects on touch */
    .glass-card:hover {
        transform: none !important;
    }
    .svc-card-3d:hover {
        transform: none !important;
    }
    .tilt:hover {
        transform: none !important;
    }

    /* Keep border/shadow hover effects for active state feel */
    .glass-card:active {
        transform: scale(0.98) !important;
        transition: transform 0.15s ease !important;
    }
    .svc-card-3d:active {
        transform: scale(0.98) !important;
        transition: transform 0.15s ease !important;
    }

    /* Remove cursor-based effects */
    .cursor-glow,
    .trail-dot,
    .click-ripple {
        display: none !important;
    }

    /* Disable tilt spotlight on touch */
    .tilt::before {
        display: none !important;
    }

    /* Reduce blur effects for better performance on mobile */
    .aurora-beam {
        filter: blur(50px) !important;
    }

    /* Reduce particle count effects */
    .orb {
        filter: blur(60px) !important;
        opacity: 0.15 !important;
    }

    /* Buttons: better tap targets */
    .btn-primary,
    .btn-outline,
    .btn-gold,
    .btn-ghost {
        min-height: 48px;
    }

    /* Nav links: better tap targets */
    .mobile-menu .nav-link {
        padding: 14px 28px !important;
        font-size: 1.3rem !important;
    }

    /* Footer links: better tap targets */
    .footer-link {
        padding: 0.5rem 0 !important;
    }

    /* Social icons: ensure good tap size */
    .footer-social a {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ===== TEAM PAGE — Premium Redesign ===== */

/* Hero decorative animated rings */
.team-hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,0.08);
    animation: teamRingSpin 20s linear infinite;
    pointer-events: none;
}
.team-hero-ring:nth-child(1) { width: 300px; height: 300px; top: 10%; left: 5%; animation-duration: 25s; }
.team-hero-ring:nth-child(2) { width: 200px; height: 200px; top: 60%; right: 8%; animation-duration: 18s; animation-direction: reverse; }
.team-hero-ring:nth-child(3) { width: 150px; height: 150px; bottom: 10%; left: 40%; animation-duration: 22s; border-color: rgba(201,168,76,0.05); }

@keyframes teamRingSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Department section headings — premium underline */
.dept-heading {
    position: relative;
    padding-bottom: 12px;
}
.dept-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 3px;
    transition: width 0.4s ease;
}
.dept-heading:hover::after {
    width: 120px;
}

/* ── Leadership Card — Oversized Premium ── */
.leader-card {
    background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(10,10,10,0.95) 50%, rgba(201,168,76,0.04) 100%);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 24px;
    padding: 40px 36px;
    display: flex;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.leader-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: conic-gradient(from var(--card-angle, 0deg), transparent 40%, rgba(201,168,76,0.4) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}
.leader-card:hover::before {
    opacity: 1;
    animation: borderSpin 3s linear infinite;
}
.leader-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201,168,76,0.35);
    box-shadow: 0 20px 60px rgba(201,168,76,0.12), 0 8px 32px rgba(0,0,0,0.5);
}
@property --card-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
@keyframes borderSpin {
    to { --card-angle: 360deg; }
}

/* ── Photo Frame — Animated Gradient Ring ── */
.photo-frame {
    position: relative;
    flex-shrink: 0;
}
.photo-frame-ring {
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, var(--gold-4), var(--gold-3), var(--gold-2), var(--gold-1), var(--gold-4));
    animation: ringRotate 4s linear infinite;
    z-index: 0;
    opacity: 0.7;
    transition: opacity 0.4s ease;
}
.leader-card:hover .photo-frame-ring,
.team-member-card:hover .photo-frame-ring {
    opacity: 1;
}
@keyframes ringRotate {
    to { transform: rotate(360deg); }
}

.photo-frame-inner {
    position: relative;
    z-index: 1;
    border-radius: 50%;
    overflow: hidden;
    background: var(--primary);
    padding: 3px;
}
.photo-frame-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 50%;
    display: block;
    filter: brightness(1.04) contrast(1.06) saturate(1.08);
    transition: filter 0.5s ease, transform 0.5s ease;
}
.leader-card:hover .photo-frame-inner img,
.team-member-card:hover .photo-frame-inner img {
    filter: brightness(1.12) contrast(1.1) saturate(1.15);
    transform: scale(1.06);
}

/* Glow pulse behind photo */
.photo-glow {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.25) 0%, transparent 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: glowPulse 2.5s ease-in-out infinite;
}
.leader-card:hover .photo-glow,
.team-member-card:hover .photo-glow {
    opacity: 1;
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0; }
    50% { transform: scale(1.15); opacity: 0.6; }
}

/* Leader info */
.leader-info .leader-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}
.leader-info .leader-role {
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--gradient-gold-subtle);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}
.leader-info .leader-desc {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    line-height: 1.6;
}
.leader-card:hover .leader-desc {
    color: rgba(255,255,255,0.55);
}

/* ── Team Member Card — Regular Staff ── */
.team-member-card {
    background: rgba(201,168,76,0.03);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 20px;
    padding: 32px 20px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.5s ease;
    border-radius: 0 0 4px 4px;
}
.team-member-card:hover::before {
    width: 80%;
}
.team-member-card:hover {
    transform: translateY(-10px);
    background: rgba(201,168,76,0.07);
    border-color: rgba(201,168,76,0.3);
    box-shadow: 0 20px 50px rgba(201,168,76,0.1), 0 8px 30px rgba(0,0,0,0.4);
}

/* Card shimmer effect */
.team-member-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.04), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}
.team-member-card:hover::after {
    left: 100%;
}

.team-member-card .member-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 4px;
}
.team-member-card .member-role {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold-2);
    letter-spacing: 0.01em;
}
.team-member-card:hover .member-role {
    color: var(--gold-3);
}

/* ── Avatar Initials (no photo) ── */
.avatar-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(184,134,11,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-2);
    letter-spacing: 0.03em;
}

/* ── Department Separator Line ── */
.dept-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.12), transparent);
    margin: 0 auto;
    max-width: 80%;
}

/* ── Sub-label (Senior/Analyst) ── */
.team-sub-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}
.team-sub-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-2);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

/* ── Team Stats Counter ── */
.team-stats-bar {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.team-stat-item {
    text-align: center;
}
.team-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.team-stat-label {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

/* Mobile adjustments for team cards */
@media (max-width: 767px) {
    .leader-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        gap: 20px;
    }
    .leader-info .leader-name { font-size: 1.2rem; }
    .team-stats-bar { gap: 28px; }
    .team-stat-num { font-size: 1.6rem; }
}

/* ── PRINT STYLES ── */
@media print {
    .navbar, .mobile-menu, .scroll-progress, .orb, .particle-grid,
    .aurora-wrap, .grid-floor, .cursor-glow, .trail-dot {
        display: none !important;
    }
    body {
        background: #fff !important;
        color: #000 !important;
    }
    .glass-card {
        background: #f9f9f9 !important;
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
}
