/* ==========================================================================
   Men With Brain Marketing Agency — Ultra-Premium 2025 CSS
   Dark-first | Glassmorphism | Animated Gradients | Micro-interactions
   ========================================================================== */

/* ─── Google Fonts Import ─── */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,300;0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;1,14..32,400&family=Poppins:wght@600;700;800;900&display=swap');

/* ─── Design Tokens ─── */
:root {
    /* Core Palette — Dark First */
    --bg-base:      #080810;
    --bg-surface:   #0d0d1a;
    --bg-elevated:  #13132a;
    --bg-card:      rgba(255,255,255,0.04);
    --bg-card-hover: rgba(255,255,255,0.07);

    /* Brand Colors */
    --saffron:        #FF6B1A;
    --saffron-light:  #FF8C42;
    --saffron-dark:   #C94E0E;
    --gold:           #F5A623;
    --gold-light:     #FFD166;
    --rust:           #C0392B;
    --emerald:        #10B981;

    /* Gradient Definitions */
    --grad-saffron:   linear-gradient(135deg, #FF6B1A 0%, #F5A623 50%, #FF3C58 100%);
    --grad-dark:      linear-gradient(135deg, #0d0d1a 0%, #1a0a2e 100%);
    --grad-glass:     linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    --grad-glow:      radial-gradient(ellipse at center, rgba(255,107,26,0.15) 0%, transparent 70%);

    /* Typography */
    --font-body:   'Inter', sans-serif;
    --font-head:   'Poppins', sans-serif;
    --font-hindi:  'Poppins', sans-serif;

    /* Text */
    --text-primary:   #F0F0FF;
    --text-secondary: #A0A0C0;
    --text-muted:     #606080;
    --text-accent:    #FF6B1A;

    /* Borders */
    --border:       rgba(255,255,255,0.08);
    --border-glow:  rgba(255,107,26,0.35);
    --border-gold:  rgba(245,166,35,0.3);

    /* Shadows */
    --shadow-sm:  0 4px 16px rgba(0,0,0,0.3);
    --shadow-md:  0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg:  0 20px 60px rgba(0,0,0,0.5);
    --shadow-glow:0 0 40px rgba(255,107,26,0.2);
    --shadow-card:0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);

    /* Radius */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --r-2xl:40px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --t-fast:  all 0.18s var(--ease);
    --t-base:  all 0.3s  var(--ease);
    --t-slow:  all 0.6s  var(--ease);

    /* Glass */
    --glass-bg:     rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.1);
    --glass-blur:   blur(20px);
}

/* Light Mode Override */
[data-theme="light"] {
    --bg-base:      #FAFAF8;
    --bg-surface:   #F5F3EE;
    --bg-elevated:  #FFFFFF;
    --bg-card:      rgba(0,0,0,0.03);
    --bg-card-hover:rgba(0,0,0,0.05);
    --text-primary:   #111120;
    --text-secondary: #444466;
    --text-muted:     #888899;
    --border:       rgba(0,0,0,0.08);
    --glass-bg:     rgba(255,255,255,0.7);
    --glass-border: rgba(255,107,26,0.15);
    --shadow-card:0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
    --grad-dark:      linear-gradient(135deg, #FAFAF8 0%, #FFF3E8 100%);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.65;
    overflow-x: hidden;
    transition: background-color 0.4s var(--ease), color 0.4s var(--ease);
}

/* Animated background mesh */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% -20%, rgba(255,107,26,0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 120%, rgba(245,166,35,0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    color: var(--text-primary);
    line-height: 1.2;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ─── Layout ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

.section-padding { padding: 110px 0; }
.bg-soft { background-color: var(--bg-surface); }

/* ─── Glass Mixin ─── */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
}

/* ─── Section Headers ─── */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 70px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ─── Badge ─── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    background: rgba(255,107,26,0.12);
    color: var(--saffron-light);
    border: 1px solid rgba(255,107,26,0.25);
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.badge-saffron { /* already default */ }

/* ─── Gradient Text ─── */
.gradient-text-saffron {
    background: var(--grad-saffron);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease infinite alternate;
    background-size: 200% 200%;
}

@keyframes shimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    border-radius: var(--r-md);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--t-base);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
    background: var(--grad-saffron);
    color: #fff;
    box-shadow: 0 4px 20px rgba(255,107,26,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,107,26,0.5);
}

.btn-saffron {
    background: rgba(255,107,26,0.15);
    color: var(--saffron-light);
    border-color: rgba(255,107,26,0.4);
}

.btn-saffron:hover {
    background: var(--saffron);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,107,26,0.4);
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--text-primary);
    border-color: var(--border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.14);
    border-color: var(--saffron);
    color: var(--saffron-light);
    transform: translateY(-2px);
}

.btn-outline-white {
    border-color: rgba(255,255,255,0.3);
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-block { width: 100%; }

/* ─── Navbar ─── */
.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: var(--t-base);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(8,8,16,0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(250,250,248,0.8);
    border-color: rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.nav-logo-icon {
    width: 50px;
    height: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    box-shadow: none;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo .accent-text { color: var(--saffron-light); }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 7px 14px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: var(--t-fast);
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: rgba(255,107,26,0.1);
    color: var(--saffron-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--t-fast);
    backdrop-filter: blur(10px);
}

.theme-toggle:hover { color: var(--saffron-light); border-color: var(--border-glow); }
.theme-toggle .sun-icon { display: none; }
[data-theme="light"] .theme-toggle .moon-icon { display: none; }
[data-theme="light"] .theme-toggle .sun-icon  { display: block; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--t-base);
}

/* ─── FLOATING WHATSAPP BUTTON ─── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px; height: 58px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4);
    animation: wa-pulse 2.5s infinite;
    transition: transform 0.2s var(--spring);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 32px rgba(37,211,102,0.6);
    animation: none;
}

.whatsapp-float .wa-tooltip {
    position: absolute;
    right: 68px;
    background: #1F2937;
    color: white;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}

.whatsapp-float .wa-tooltip::after {
    content: '';
    position: absolute;
    right: -5px; top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 5px solid #1F2937;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
    70%       { box-shadow: 0 6px 24px rgba(37,211,102,0.5), 0 0 0 14px rgba(37,211,102,0); }
}

/* ─── HERO SECTION ─── */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 100px;
}

/* Animated mesh gradient background */
.hero-bg-gradients {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: drift 12s ease-in-out infinite alternate;
}

.blob-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,107,26,0.18) 0%, transparent 70%);
    top: -200px; right: -100px;
    animation-duration: 14s;
}

.blob-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(245,166,35,0.12) 0%, transparent 70%);
    bottom: -150px; left: -100px;
    animation-duration: 18s;
    animation-direction: alternate-reverse;
}

.blob-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(168,85,247,0.08) 0%, transparent 70%);
    top: 30%; left: 35%;
    animation-duration: 10s;
}

@keyframes drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, 30px) scale(1.08); }
}

/* Grid lines overlay */
.hero-bg-gradients::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* Status badge */
.google-badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.g-stars { color: var(--gold-light); }
.g-rating { font-weight: 700; color: var(--text-primary); }
.g-status { color: var(--emerald); font-weight: 600; display: flex; align-items: center; gap: 5px; }

.dot-blink {
    width: 7px; height: 7px;
    background: var(--emerald);
    border-radius: 50%;
    display: inline-block;
    animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.3; transform: scale(0.85); }
    50%       { opacity: 1;   transform: scale(1.1); box-shadow: 0 0 6px var(--emerald); }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 38px;
    max-width: 560px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-social-trust {
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.hero-social-trust p {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}

.hero-icons {
    display: flex;
    gap: 24px;
    font-size: 1.4rem;
    color: var(--text-muted);
}

.hero-icons i {
    transition: var(--t-base);
    cursor: pointer;
}

.hero-icons i:hover { color: var(--saffron-light); transform: scale(1.15); }

/* Hero visual side */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 440px;
}

/* Solar System — orbiting social icons around the MWB logo */
.solar-system {
    position: relative;
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solar-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,107,26,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.orbit-track {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(255,107,26,0.35);
    pointer-events: none;
}
.orbit-track-1 { width: 34%; height: 34%; }
.orbit-track-2 { width: 51%; height: 51%; }
.orbit-track-3 { width: 68%; height: 68%; }
.orbit-track-4 { width: 85%; height: 85%; }
.orbit-track-5 { width: 100%; height: 100%; }

.solar-sun {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 30%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background: var(--navy-deep, #0c2340);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: var(--shadow-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.solar-sun img {
    width: 82%;
    height: 82%;
    object-fit: contain;
    border-radius: 50%;
    animation: solar-spin 12s linear infinite;
}
@keyframes solar-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.orbit-spin {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.orbit-spin-1 { animation: orbit-1 20s linear infinite; }
.orbit-spin-2 { animation: orbit-2 24s linear infinite; }
.orbit-spin-3 { animation: orbit-3 28s linear infinite; }
.orbit-spin-4 { animation: orbit-4 32s linear infinite; }
.orbit-spin-5 { animation: orbit-5 36s linear infinite; }

@keyframes orbit-1 { from { transform: rotate(0deg) translateY(-17%) rotate(0deg); } to { transform: rotate(360deg) translateY(-17%) rotate(-360deg); } }
@keyframes orbit-2 { from { transform: rotate(72deg) translateY(-25.5%) rotate(-72deg); } to { transform: rotate(432deg) translateY(-25.5%) rotate(-432deg); } }
@keyframes orbit-3 { from { transform: rotate(144deg) translateY(-34%) rotate(-144deg); } to { transform: rotate(504deg) translateY(-34%) rotate(-504deg); } }
@keyframes orbit-4 { from { transform: rotate(216deg) translateY(-42.5%) rotate(-216deg); } to { transform: rotate(576deg) translateY(-42.5%) rotate(-576deg); } }
@keyframes orbit-5 { from { transform: rotate(288deg) translateY(-50%) rotate(-288deg); } to { transform: rotate(648deg) translateY(-50%) rotate(-648deg); } }

.orbit-planet {
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 0.95rem;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.orbit-planet:hover { transform: scale(1.15); }
.planet-youtube   { color: #ff0000; border-color: rgba(255,0,0,0.35); }
.planet-instagram { color: #fd1d8a; border-color: rgba(253,29,138,0.35); }
.planet-x         { color: #ffffff; border-color: rgba(255,255,255,0.35); }
.planet-whatsapp  { color: #25D366; border-color: rgba(37,211,102,0.35); }
.planet-facebook  { color: #1877F2; border-color: rgba(24,119,242,0.35); }
.planet-youtube:hover   { background: #ff0000; color: #fff; box-shadow: 0 0 18px rgba(255,0,0,0.5); }
.planet-instagram:hover { background: linear-gradient(45deg,#833ab4,#fd1d1d,#fcb045); color: #fff; box-shadow: 0 0 18px rgba(253,29,89,0.5); }
.planet-x:hover         { background: #000; color: #fff; box-shadow: 0 0 18px rgba(255,255,255,0.25); }
.planet-whatsapp:hover  { background: #25D366; color: #fff; box-shadow: 0 0 18px rgba(37,211,102,0.5); }
.planet-facebook:hover  { background: #1877F2; color: #fff; box-shadow: 0 0 18px rgba(24,119,242,0.5); }

@media (max-width: 480px) {
    .orbit-planet { width: 30px; height: 30px; font-size: 0.8rem; }
}

.floating-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
    padding: 20px;
    border-radius: var(--r-lg);
    display: flex;
    gap: 14px;
    align-items: center;
    transition: var(--t-base);
    z-index: 10;
    position: absolute;
}

.floating-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.regional-accent-card { border-left: 3px solid var(--saffron); }

.stats-card .card-icon {
    width: 46px; height: 46px;
    background: var(--grad-saffron);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(255,107,26,0.4);
}

.stats-card h4 { font-size: 1.05rem; margin-bottom: 3px; }
.stats-card p  { font-size: 0.75rem; color: var(--text-muted); }

.main-stats    { top: 30px; left: -30px; }
.secondary-stats { bottom: 50px; right: -20px; }

/* Dashboard mockup card */
.main-dashboard-mockup {
    position: absolute;
    width: 310px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-card);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50%       { transform: translate(-50%, -50%) translateY(-12px); }
}

.mockup-header {
    background: rgba(255,255,255,0.04);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--border);
}

.mockup-header .dot { width: 8px; height: 8px; border-radius: 50%; }
.mockup-header .red    { background: #EF4444; }
.mockup-header .yellow { background: #F59E0B; }
.mockup-header .green  { background: #10B981; }
.mockup-url { font-size: 0.68rem; color: var(--text-muted); margin-left: auto; }

.mockup-body { padding: 18px; }

.mockup-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.mockup-chart-header h5 { font-size: 0.82rem; color: var(--text-secondary); }

.success-badge {
    background: rgba(16,185,129,0.15);
    color: var(--emerald);
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 100px;
    font-weight: 700;
}

.regional-mockup-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 110px;
    border: 1px dashed var(--border);
    border-radius: var(--r-md);
    background: rgba(255,107,26,0.05);
    color: var(--saffron-light);
    gap: 8px;
}

.regional-mockup-graphic p {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
}

.landmark-icon {
    font-size: 2rem;
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-7px); }
}

/* ─── SCROLL REVEAL ─── */
.scroll-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ─── SERVICES SECTION ─── */
.services-section { position: relative; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 38px 30px;
    box-shadow: var(--shadow-card);
    transition: var(--t-base);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--grad-saffron);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border-color: var(--border-glow);
    background: var(--bg-card-hover);
}

.service-icon {
    width: 58px; height: 58px;
    background: rgba(255,107,26,0.1);
    color: var(--saffron-light);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 24px;
    border: 1px solid rgba(255,107,26,0.2);
    transition: var(--t-base);
}

.service-card:hover .service-icon {
    background: var(--grad-saffron);
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(255,107,26,0.4);
    transform: scale(1.05) rotate(-3deg);
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 12px; }

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.65;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li i {
    color: var(--saffron-light);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* ─── VIDEO PROMO SECTION ─── */
.video-promo-section {
    position: relative;
    background: var(--bg-surface);
    overflow: hidden;
}

.video-promo-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-glow);
    pointer-events: none;
}

.video-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.video-info-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
}

.video-info-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.7;
}

.video-highlight-box {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--text-secondary);
}

.highlight-item i {
    width: 36px; height: 36px;
    background: rgba(255,107,26,0.1);
    border: 1px solid rgba(255,107,26,0.2);
    color: var(--saffron-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.cta-callout {
    background: linear-gradient(135deg, rgba(255,107,26,0.1), rgba(245,166,35,0.06));
    border: 1px dashed rgba(255,107,26,0.4);
    border-radius: var(--r-lg);
    padding: 20px 24px;
}

.cta-hindi {
    font-family: var(--font-hindi);
    font-weight: 700;
    color: var(--saffron-light);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.cta-phone {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--t-base);
}

.cta-phone:hover { color: var(--saffron-light); }
.cta-phone i { color: var(--saffron-light); }

.video-player-container {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border-glow);
}

.video-frame-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.video-frame-wrapper:hover .video-thumbnail { transform: scale(1.06); }

.video-overlay-play {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transition: var(--t-base);
}

.play-btn-circle {
    width: 76px; height: 76px;
    background: var(--grad-saffron);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: white;
    padding-left: 5px;
    box-shadow: 0 0 0 0 rgba(255,107,26,0.5);
    animation: play-pulse 2s ease infinite;
    transition: var(--t-base);
}

.play-btn-circle:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 0 30px rgba(255,107,26,0.6);
}

@keyframes play-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,26,0.5); }
    70%       { box-shadow: 0 0 0 20px rgba(255,107,26,0); }
}

.play-hint {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.5);
    padding: 5px 14px;
    border-radius: 100px;
    backdrop-filter: blur(6px);
}

.video-banner-footer {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(8px);
    padding: 10px 18px;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.82rem;
    display: flex; align-items: center; gap: 8px;
}

.video-banner-footer i { color: var(--saffron-light); }

/* ─── STUDIO LOCATION MAP CARD ─── */
.map-frame-wrapper {
    background: var(--bg-elevated);
}

.map-embed-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: saturate(0.9) contrast(1.05);
}

/* Dark, glassy globe badge floating over the map — click target for directions */
.map-globe-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    pointer-events: none; /* re-enabled on the orb itself */
}

.globe-orb {
    pointer-events: auto;
    position: relative;
    width: 76px;
    height: 76px;
    background: var(--grad-saffron);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: white;
    box-shadow: 0 0 0 0 rgba(255,107,26,0.5), var(--shadow-lg);
    animation: play-pulse 2s ease infinite;
    transition: var(--t-base);
}

.globe-orb i {
    animation: globe-spin 6s linear infinite;
}

.globe-orb:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 0 0 30px rgba(255,107,26,0.6);
}

/* Orbiting rings around the globe for a "global network" feel */
.globe-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.35);
    pointer-events: none;
}
.globe-ring-1 {
    width: 118px;
    height: 118px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotateX(65deg);
    animation: globe-ring-spin 5s linear infinite;
}
.globe-ring-2 {
    width: 150px;
    height: 150px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) rotateX(65deg) rotateZ(60deg);
    border-color: rgba(245,166,35,0.3);
    animation: globe-ring-spin 8s linear infinite reverse;
}

@keyframes globe-spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes globe-ring-spin {
    from { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(0deg); }
    to   { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg); }
}

@media (max-width: 640px) {
    .globe-orb { width: 60px; height: 60px; font-size: 1.5rem; }
    .globe-ring-1 { width: 92px; height: 92px; }
    .globe-ring-2 { width: 116px; height: 116px; }
}

/* ─── ABOUT SECTION ─── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual { position: relative; }

.about-image {
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 460px;
    object-fit: cover;
    border: 1px solid var(--border);
}

.about-overlay-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    max-width: 240px;
    gap: 12px;
    flex-direction: column;
    text-align: left;
    padding: 18px;
}

.cultural-card { border-left: 3px solid var(--gold); }
.cultural-card i { color: var(--gold); font-size: 1.4rem; }
.cultural-card p { font-size: 0.82rem; color: var(--text-secondary); margin: 0; }

.about-content { }
.about-content h2 { font-size: clamp(1.9rem, 3.5vw, 2.5rem); margin-bottom: 18px; }
.about-content > p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 30px; line-height: 1.75; }

.about-points { display: flex; flex-direction: column; gap: 22px; }

.about-point {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.point-icon {
    width: 48px; height: 48px;
    background: rgba(255,107,26,0.1);
    border: 1px solid rgba(255,107,26,0.2);
    color: var(--saffron-light);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--t-base);
}

.about-point:hover .point-icon {
    background: var(--grad-saffron);
    color: white;
    border-color: transparent;
    transform: scale(1.08);
}

.about-point h4 { font-size: 1rem; margin-bottom: 5px; }
.about-point p  { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { position: relative; }

.google-badge-testimonials {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.google-colored-icon { color: #4285F4; }

.carousel-container {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden;
    padding: 8px 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 12px;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    padding: 36px;
    box-shadow: var(--shadow-card);
    position: relative;
}

.review-card { border-top: 3px solid var(--saffron) !important; }

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.stars-gold { color: var(--gold-light); font-size: 0.9rem; letter-spacing: 1px; }

.verified-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--emerald);
    background: rgba(16,185,129,0.1);
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(16,185,129,0.2);
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 12px;
}

.testimonial-author img {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border: 2px solid var(--border-glow);
}

.testimonial-author h4 { font-size: 0.98rem; margin-bottom: 2px; }
.testimonial-author p  { font-size: 0.8rem; color: var(--text-muted); }

.owner-response-box {
    margin-top: 22px;
    background: rgba(255,107,26,0.05);
    border-radius: var(--r-md);
    padding: 16px 18px;
    border-left: 2px solid var(--saffron);
}

.owner-response-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.77rem;
    font-weight: 700;
    color: var(--saffron-light);
    margin-bottom: 7px;
}

.owner-response-text {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.carousel-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    transition: var(--t-base);
}

.carousel-btn:hover {
    background: var(--grad-saffron);
    color: white;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(255,107,26,0.4);
}

/* ─── CTA BANNER ─── */
.cta-banner-section { position: relative; }

.cta-box {
    border-radius: var(--r-2xl);
    padding: 70px 60px;
    text-align: center;
}

.cta-box-saffron {
    background: linear-gradient(135deg, #7C1F05 0%, #B83408 40%, #FF6B1A 100%) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255,107,26,0.3);
}

.cta-box-saffron::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: white;
    margin-bottom: 14px;
}

.cta-box p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── CONTACT SECTION ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-info-col
.contact-info-col h2 {
    font-family: var(--font-hindi);
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 14px;
}

.contact-info-col > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.contact-methods { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.method-icon {
    width: 44px; height: 44px;
    background: rgba(255,107,26,0.1);
    border: 1px solid rgba(255,107,26,0.2);
    color: var(--saffron-light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--t-base);
}

.contact-method:hover .method-icon {
    background: var(--grad-saffron);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
}

.contact-method h4 { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 4px; font-weight: 600; }
.contact-method a  { font-size: 0.95rem; color: var(--text-primary); transition: var(--t-fast); }
.contact-method a:hover { color: var(--saffron-light); }
.contact-method p  { font-size: 0.92rem; color: var(--text-primary); }

.map-placeholder {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-lg);
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.map-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.map-glow-icon {
    color: var(--saffron-light);
    font-size: 2rem;
    animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(255,107,26,0.5)); transform: scale(1); }
    50%       { filter: drop-shadow(0 0 14px rgba(255,107,26,0.8)); transform: scale(1.1); }
}

/* Contact Form */
.contact-form-col {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form[hidden] { display: none; }

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.03em;
}

.required { color: var(--saffron-light); }

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--text-primary);
    outline: none;
    transition: var(--t-base);
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--saffron);
    background: rgba(255,107,26,0.05);
    box-shadow: 0 0 0 3px rgba(255,107,26,0.12);
}

.form-group select option {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* Submit button */
.btn-submit {
    background: var(--grad-saffron);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-hindi);
    letter-spacing: 0.02em;
    padding: 15px;
    border-radius: var(--r-md);
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(255,107,26,0.35);
    transition: var(--t-base);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(255,107,26,0.5);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fade-in 0.3s ease;
}

@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }

.modal-card {
    background: var(--bg-elevated);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-xl);
    padding: 48px 40px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: slide-up 0.35s var(--spring);
}

@keyframes slide-up {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.modal-icon { font-size: 3rem; margin-bottom: 20px; }
.modal-icon.success { color: var(--emerald); }
.modal-icon.error   { color: #EF4444; }
.modal-card h3 { font-family: var(--font-hindi); margin-bottom: 12px; }
.modal-card p  { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }

/* ─── HINDI TEXT ─── */
.hindi-text {
    font-family: var(--font-hindi);
    font-weight: 600;
}

/* ─── FOOTER ─── */
.footer {
    background: linear-gradient(to bottom, var(--bg-surface), var(--bg-base));
    border-top: 1px solid var(--border);
    padding: 80px 0 32px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.9fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--font-head);
    color: var(--text-primary) !important;
    margin-bottom: 16px;
}

.footer-logo i { color: var(--saffron-light); }

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.footer-desc {
    font-size: 0.86rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.rating-badge-footer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 18px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    color: var(--text-secondary) !important;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    transition: var(--t-base);
}

.social-links a:hover {
    background: var(--grad-saffron);
    color: white !important;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 4px 14px rgba(255,107,26,0.4);
}

.footer-title {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 26px; height: 2px;
    background: var(--grad-saffron);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--t-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover { color: var(--saffron-light); padding-left: 4px; }

.footer-newsletter-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 11px 14px;
    border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--text-primary);
    outline: none;
    font-size: 0.85rem;
    transition: var(--t-base);
    min-width: 0;
}

.newsletter-form input:focus {
    border-color: var(--saffron);
    box-shadow: 0 0 0 3px rgba(255,107,26,0.12);
}

.newsletter-form input::placeholder { color: var(--text-muted); }

.newsletter-form button {
    padding: 11px 18px;
    background: var(--grad-saffron);
    border-radius: var(--r-md);
    color: white;
    border: none;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--t-base);
    white-space: nowrap;
}

.newsletter-form button:hover {
    box-shadow: 0 4px 16px rgba(255,107,26,0.4);
    transform: translateY(-1px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 12px;
}

/* ─── LIGHT MODE SPECIFIC OVERRIDES ─── */
[data-theme="light"] body::before {
    background:
        radial-gradient(ellipse 80% 50% at 20% -20%, rgba(255,107,26,0.05) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 120%, rgba(245,166,35,0.04) 0%, transparent 60%);
}

[data-theme="light"] .hero-bg-gradients::after {
    background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}

[data-theme="light"] .service-card {
    background: rgba(255,255,255,0.8);
    border-color: rgba(0,0,0,0.07);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

[data-theme="light"] .service-card:hover {
    box-shadow: 0 12px 40px rgba(255,107,26,0.15);
}

[data-theme="light"] .floating-card,
[data-theme="light"] .testimonial-card,
[data-theme="light"] .contact-form-col {
    background: rgba(255,255,255,0.85);
    border-color: rgba(0,0,0,0.07);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group select,
[data-theme="light"] .form-group textarea {
    background: rgba(0,0,0,0.02);
    border-color: rgba(0,0,0,0.1);
    color: var(--text-primary);
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(250,250,248,0.85);
}

[data-theme="light"] .footer {
    background: linear-gradient(to bottom, #EEEEE8, #F5F5F2);
}

[data-theme="light"] .map-placeholder { background: rgba(0,0,0,0.03); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-container     { grid-template-columns: 1fr; gap: 50px; }
    .hero-visual        { display: none; }
    .about-grid         { grid-template-columns: 1fr; gap: 50px; }
    .contact-grid       { grid-template-columns: 1fr; gap: 50px; }
    .video-grid-layout  { grid-template-columns: 1fr; gap: 50px; }
    .footer-grid        { grid-template-columns: repeat(2, 1fr); gap: 36px; }
}

@media (max-width: 768px) {
    .section-padding { padding: 80px 0; }
    .hero-section { padding: 130px 0 80px; min-height: auto; }
    .hero-title { font-size: 2.2rem; }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100vh;
        background: rgba(8,8,16,0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 14px;
        z-index: 999;
    }

    [data-theme="light"] .nav-menu {
        background: rgba(250,250,248,0.97);
    }

    .nav-menu.active { display: flex; }
    .nav-link { font-size: 1.2rem; padding: 12px 24px; }

    .hamburger { display: flex; }
    .hide-mobile { display: none !important; }

    .cta-box { padding: 50px 28px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .services-grid { grid-template-columns: 1fr; }
    .about-overlay-card { display: none; }
    .newsletter-form { flex-direction: column; }
    .whatsapp-float { width: 52px; height: 52px; font-size: 1.4rem; bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    .contact-form-col { padding: 28px 20px; }
    .modal-card { padding: 36px 24px; }
}

/* ==========================================================================
   Spinning MWB Logo (header, left side)
   Spins the actual uploaded Logo.png as one unit — no recreated artwork.
   ========================================================================== */
.mwb-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.mwb-logo-glow {
    position: absolute;
    inset: -6px;
    background: #FFCB06;
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.25;
    animation: mwbGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes mwbGlowPulse {
    0%, 100% { opacity: 0.18; }
    50%      { opacity: 0.35; }
}

.mwb-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    animation: mwbLogoSpin 25s linear infinite;
}
.mwb-logo-img-static { animation: none; }
@keyframes mwbLogoSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
    .mwb-logo-img, .mwb-logo-glow {
        animation: none !important;
    }
}

/* ==========================================================================
   Brands We've Worked With — auto-scrolling logo strip (below Showreel)
   ========================================================================== */
.brands-section {
    position: relative;
    background: var(--bg-elevated, #0d0d18);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.75rem 0;
    overflow: hidden;
}

.brands-header { text-align: center; margin-bottom: 1.75rem; }
.brands-kicker {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.brands-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.brands-track {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: max-content;
    animation: brandsScroll 32s linear infinite;
}
.brands-marquee:hover .brands-track { animation-play-state: paused; }

.brand-chip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.65rem 1.4rem;
    white-space: nowrap;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.brand-chip:hover {
    border-color: rgba(255,107,26,0.4);
    background: rgba(255,107,26,0.06);
    transform: translateY(-2px);
}

.brand-chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--saffron-light);
    font-size: 0.85rem;
    overflow: hidden;
    flex-shrink: 0;
}
.brand-chip-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.brand-chip-name {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
    letter-spacing: 0.01em;
}

@keyframes brandsScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@media (max-width: 600px) {
    .brand-chip { padding: 0.55rem 1.1rem; }
    .brand-chip-name { font-size: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
    .brands-track { animation: none; }
}

/* ── Lead Form: Dual-mode (Brand / Content Creator) tabs ── */
.lead-mode-tabs {
    display: flex;
    gap: 8px;
    padding: 6px;
    margin-bottom: 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
}
.lead-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.25s ease;
}
.lead-tab.active {
    background: var(--grad-saffron);
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.lead-tab:not(.active):hover { color: var(--text-primary); }

.lead-pill-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media (max-width: 560px) {
    .lead-pill-grid { grid-template-columns: 1fr; }
}
.lead-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    color: var(--text-secondary);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.2s ease;
}
.lead-pill input { display: none; }
.lead-pill:has(input:checked) {
    border-color: var(--saffron);
    background: rgba(255,107,26,0.12);
    color: var(--text-primary);
    font-weight: 700;
}
