/* ==========================================================================
   MASTERMIND EVENTS — TRADITIONAL CORPORATE EVENT & PRODUCTION DESIGN SYSTEM
   Deep Corporate Navy (#0B1B3D) | Royal Warm Gold (#C59B27) | Pure White (#FFFFFF)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Traditional Corporate Design Tokens & Variables
   -------------------------------------------------------------------------- */
:root {
  /* Corporate Colors */
  --corporate-navy: #0B1B3D;         /* Deep authoritative corporate navy */
  --corporate-navy-dark: #071228;    /* Deepest footer navy */
  --corporate-navy-light: #132B5C;   /* Rich corporate header / hero navy */
  --corporate-navy-subtle: #1C3870;  /* Card hover accent */

  /* Corporate Gold Accents */
  --accent-gold: #C59B27;            /* Established Indian corporate gold */
  --accent-gold-hover: #AF851A;      /* Darker rich gold hover */
  --accent-gold-bright: #D4AF37;     /* Bright gold for badges & icons */
  --accent-gold-light: #FFF8E7;      /* Subtle gold tint background */
  --accent-gold-soft: rgba(197, 155, 39, 0.12);
  --accent-gold-border: rgba(197, 155, 39, 0.35);
  --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #AA7C11 100%);

  /* Traditional Corporate Surfaces */
  --bg-body: #F4F6F9;                /* Clean corporate light gray */
  --bg-surface: #FFFFFF;             /* Pure white container & card surface */
  --bg-subtle: #EBF0F6;              /* Soft neutral corporate contrast */
  --bg-subtle-hover: #DFE7F1;
  --bg-dark: #0B1B3D;                /* Solid navy for dark sections */
  --bg-dark-surface: #10244C;        /* Navy surface for contrast cards */
  --bg-footer: #071228;              /* Ultra-solid corporate footer */

  /* Text Colors */
  --text-primary: #1E293B;           /* Crisp slate dark charcoal */
  --text-secondary: #475569;         /* Professional corporate gray */
  --text-muted: #64748B;             /* Metadata and subtle tags */
  --text-inverse: #FFFFFF;           /* Pure white on navy */
  --text-inverse-muted: #94A3B8;     /* Muted white/slate on navy */

  /* Status Colors */
  --accent-whatsapp: #25D366;
  --accent-live-green: #10B981;

  /* Traditional Corporate Borders */
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-dark: rgba(255, 255, 255, 0.15);
  --border-dark-light: rgba(255, 255, 255, 0.25);

  /* Corporate Shadows */
  --shadow-sm: 0 1px 3px rgba(11, 27, 61, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 27, 61, 0.08);
  --shadow-lg: 0 10px 30px rgba(11, 27, 61, 0.12);
  --shadow-xl: 0 20px 45px rgba(11, 27, 61, 0.16);
  --shadow-dark: 0 20px 45px rgba(0, 0, 0, 0.45);

  /* Typography: Traditional Corporate Poppins + Inter */
  --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-editorial: 'Poppins', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Layout Spacing */
  --section-padding-y: clamp(3.5rem, 5vw, 5.5rem);
  --section-padding-y-sm: clamp(2.5rem, 3.5vw, 3.75rem);
  --container-max: 1240px;
  --container-wide: 1400px;
  --container-narrow: 920px;
  --container-padding: clamp(1.25rem, 3.5vw, 2.5rem);

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --z-sticky: 500;
  --z-modal: 1000;
}

/* --------------------------------------------------------------------------
   2. Reset & Core Setup
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-primary);
  background-color: var(--bg-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

::selection {
  background-color: var(--accent-gold);
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   3. Architectural Typography (UI/UX Friendly & Proportional)
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--corporate-navy);
  line-height: 1.2;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  letter-spacing: -0.02em;
  line-height: 1.28;
}

h3 {
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.35;
}

h4 {
  font-size: clamp(0.95rem, 1.1vw, 1.125rem);
  font-weight: 600;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead-text {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.68;
  color: var(--text-secondary);
  font-weight: 400;
}

.text-gold {
  color: var(--accent-gold);
}

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

.text-white {
  color: #FFFFFF !important;
}

/* Bespoke Eyebrow Badge */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  margin-bottom: 0.85rem;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 1.25rem;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.eyebrow-dark {
  color: var(--accent-gold-bright);
}

/* --------------------------------------------------------------------------
   4. Containers & Surface Sections
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-wide {
  max-width: var(--container-wide);
}

.container-narrow {
  max-width: var(--container-narrow);
}

.section {
  padding-top: var(--section-padding-y);
  padding-bottom: var(--section-padding-y);
  position: relative;
}

.section-sm {
  padding-top: var(--section-padding-y-sm);
  padding-bottom: var(--section-padding-y-sm);
}

.surface-light {
  background-color: var(--bg-body);
}

.surface-white {
  background-color: var(--bg-surface);
}

.surface-subtle {
  background-color: var(--bg-subtle);
}

/* Dark Contrast Section (15% of website) */
.surface-dark {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.surface-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 350px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, rgba(8, 10, 15, 0) 70%);
  pointer-events: none;
}

.surface-dark h1,
.surface-dark h2,
.surface-dark h3,
.surface-dark h4 {
  color: var(--text-inverse);
}

.surface-dark p {
  color: var(--text-inverse-muted);
}

.section-header {
  margin-bottom: clamp(2.75rem, 5vw, 4.25rem);
}

.section-header.text-center {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.section-header.text-center .eyebrow {
  justify-content: center;
}

.section-header.text-center .eyebrow::after {
  content: '';
  display: inline-block;
  width: 1.75rem;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.45rem, 2.2vw, 2.05rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 0.65rem;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   5. Buttons & Kinetic CTAs (Clean, UI/UX Balanced)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.65rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-smooth);
  white-space: nowrap;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--bg-dark);
  color: #FFFFFF;
  border-color: var(--bg-dark);
}

.btn-primary:hover {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 160, 89, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border-color: var(--border-medium);
}

.btn-secondary:hover {
  background-color: #FFFFFF;
  border-color: var(--accent-gold);
  color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #080A0F;
  border: none;
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  filter: brightness(1.06);
}

.btn-outline-white {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-gold-bright);
  color: var(--accent-gold-bright);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.85rem 1.85rem;
  font-size: 0.9375rem;
}

.btn-icon {
  width: 1.125rem;
  height: 1.125rem;
  transition: transform var(--transition-fast);
}

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

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

/* --------------------------------------------------------------------------
   6. Bespoke Top Command Bar & Floating Glass Navbar
   -------------------------------------------------------------------------- */
.top-command-bar {
  background-color: var(--bg-dark);
  color: var(--text-inverse-muted);
  font-size: 0.8125rem;
  font-family: var(--font-heading);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-dark);
}

.top-command-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.live-ist-clock {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #FFFFFF;
  font-weight: 600;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-live-green);
  box-shadow: 0 0 10px var(--accent-live-green);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.top-command-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-command-link {
  color: #CBD5E1;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.top-command-link:hover {
  color: var(--accent-gold-bright);
}

/* Traditional Corporate Solid Header */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  background-color: #FFFFFF;
  border-bottom: 2px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(11, 27, 61, 0.06);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(11, 27, 61, 0.1);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--transition-smooth);
}

.site-header.scrolled .header-container {
  height: 70px;
}

/* Brand Emblem */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-symbol {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--corporate-navy);
  color: var(--accent-gold-bright);
  border-radius: var(--radius-xs);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--accent-gold);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--corporate-navy);
  line-height: 1.1;
}

.brand-tagline {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--corporate-navy);
  position: relative;
  padding: 0.5rem 0;
  letter-spacing: -0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--accent-gold);
  transition: width var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-smooth), opacity var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background-color: #FFFFFF;
  z-index: var(--z-modal);
  box-shadow: -15px 0 50px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 5.5rem 2rem 2.5rem;
  transition: right var(--transition-smooth);
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(8, 10, 15, 0.6);
  backdrop-filter: blur(6px);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.mobile-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 2.5rem;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   7. Full-Bleed Grand Corporate Hero Slider (Video & Stage Image Backgrounds)
   -------------------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background-color: var(--corporate-navy-dark);
}

/* Full-Bleed Background Slides Track */
.hero-bg-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-bg-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-bg-slide.active .hero-bg-media {
  transform: scale(1);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 18, 40, 0.90) 0%,
    rgba(11, 27, 61, 0.82) 45%,
    rgba(7, 18, 40, 0.92) 100%
  );
  z-index: 2;
}

/* Foreground Content Floating on Top */
.hero-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: clamp(5.5rem, 9vw, 8rem);
  padding-bottom: clamp(6.5rem, 10vw, 8.5rem);
  display: flex;
  align-items: center;
  flex: 1;
}

.hero-inner-box {
  max-width: 880px;
}

.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-gold-bright);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold-bright);
  box-shadow: 0 0 10px var(--accent-gold-bright);
  display: inline-block;
  animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-text-slider {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-slider-section .hero-title {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  line-height: 1.15;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-slider-section .hero-description {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.7;
  color: rgba(241, 245, 249, 0.92);
  margin-bottom: 2.25rem;
  max-width: 740px;
}

/* Action CTAs: Handsome single row */
.hero-btn-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-glass-white {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 600;
}

.btn-glass-white:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-glass-whatsapp {
  background: rgba(37, 211, 102, 0.15);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  border: 1px solid rgba(37, 211, 102, 0.45);
  font-weight: 600;
}

.btn-glass-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Minimalist Hero Bottom Controls (Dots, Counter & Round Glass Arrows) */
.hero-slider-controls {
  position: absolute;
  bottom: 1.75rem;
  left: 0;
  right: 0;
  z-index: 4;
  width: 100%;
}

.hero-controls-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-slide-indicators {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-slide-dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: width 0.3s ease, background 0.3s ease;
}

.hero-slide-dot.active {
  width: 54px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-dot-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--accent-gold-bright);
  display: block;
}

.hero-slider-nav-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.hero-slide-counter {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.hero-slide-counter .current-slide {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-gold-bright);
}

.hero-slide-counter .divider {
  color: rgba(255, 255, 255, 0.4);
}

.hero-slide-counter .total-slides {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.hero-nav-arrows {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(11, 27, 61, 0.5);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.hero-nav-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--corporate-navy-dark);
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ==========================================================================
   Corporate Trust Strip (White Executive Trust Grid)
   ========================================================================== */
.corporate-trust-strip {
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 2.75rem 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 4px 24px rgba(11, 27, 61, 0.04);
}

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

.trust-strip-item {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  position: relative;
}

.trust-strip-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #E2E8F0;
}

.trust-strip-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-gold);
}

.trust-strip-text {
  flex: 1;
}

.trust-strip-num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--corporate-navy);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}

.trust-strip-plus {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-left: 0.15rem;
  vertical-align: middle;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-strip-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.trust-strip-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 991px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .trust-strip-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btn-row .btn {
    width: 100%;
  }
  .trust-strip-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .corporate-trust-strip {
    padding: 2rem 0;
  }
}

/* --------------------------------------------------------------------------
   8. Infinite Marquee Strip (Indian Enterprise Sectors)
   -------------------------------------------------------------------------- */
.marquee-strip {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.75rem 0;
  overflow: hidden;
  position: relative;
}

.marquee-strip::before,
.marquee-strip::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-surface) 0%, transparent 100%);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-surface) 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
}

.marquee-item svg {
  color: var(--accent-gold);
  width: 18px;
  height: 18px;
}

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

/* --------------------------------------------------------------------------
   9. Numbers & Pan-India Track Record
   -------------------------------------------------------------------------- */
.stats-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

@media (min-width: 960px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  padding: 1.75rem 1rem;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 0;
  height: 60%;
  width: 1px;
  background-color: var(--border-light);
}

@media (max-width: 959px) {
  .stat-item:nth-child(2)::after {
    display: none;
  }
}

.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4.8vw, 4.2rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 800;
  color: var(--accent-gold);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   10. Closing Luxury Banner
   -------------------------------------------------------------------------- */
.cta-banner {
  background: linear-gradient(135deg, #080A0F 0%, #121724 100%);
  border-radius: var(--radius-xl);
  padding: clamp(3.5rem, 6.5vw, 5.5rem) clamp(2rem, 5vw, 5rem);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-dark);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 740px;
}

.cta-title {
  color: #FFFFFF;
  margin-bottom: 1.35rem;
  line-height: 1.15;
}

.cta-subtitle {
  color: var(--text-inverse-muted);
  font-size: clamp(1.1rem, 1.35vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   11. Footer (Ultra-Deep Luxury Obsidian)
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-footer);
  color: var(--text-inverse-muted);
  border-top: 1px solid var(--border-dark);
  padding-top: clamp(4.5rem, 7.5vw, 6.5rem);
  padding-bottom: 2.75rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 4.5rem;
}

.footer-brand .brand-name {
  color: #FFFFFF;
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-inverse-muted);
  margin-top: 1.35rem;
  margin-bottom: 1.85rem;
  max-width: 380px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-nav-link {
  font-size: 0.9375rem;
  color: var(--text-inverse-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-nav-link:hover {
  color: var(--accent-gold-bright);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-inverse-muted);
}

.footer-contact-icon {
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-copyright {
  color: var(--text-inverse-muted);
}

.footer-legal-links {
  display: flex;
  gap: 1.75rem;
}

/* --------------------------------------------------------------------------
   12. Floating WhatsApp Hotline
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  z-index: var(--z-sticky);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--accent-whatsapp);
  color: #FFFFFF;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-smooth);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
  background-color: #20BA59;
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
}

@media (max-width: 640px) {
  .floating-whatsapp span {
    display: none;
  }
  .floating-whatsapp {
    padding: 0.9rem;
    border-radius: 50%;
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

/* --------------------------------------------------------------------------
   13. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav-menu,
  .header-actions .btn {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .top-command-bar {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
