/* ==========================================================================
   INFINITY TOWN — PREMIUM LANDING PAGE STYLESHEET
   Developed with Vanilla CSS Custom Properties, Dark/Light theme rhythm,
   glowing ambient states, responsive design, and glassmorphic micro-layouts.
   ========================================================================== */

/* 1. Core Variables & Variables Reset */
:root {
  --bg-dark-base: #030712;
  --bg-dark-surface: #0b1320;
  --bg-light-base: #f8fafc;
  --bg-light-surface: #ffffff;
  
  --primary-emerald: #ef4444; /* Replaced Emerald with Brand Red */
  --primary-teal: #2563eb;    /* Replaced Teal with electric Brand Blue */
  --primary-cyan: #3b82f6;    /* Replaced Cyan with light sapphire Blue */
  --accent-amber: #f87171;    /* Replaced Amber with light Brand Rose/Red */
  --accent-gold: #ef4444;     /* Replaced Gold with Brand Red */
  
  --text-white: #ffffff;
  --text-gray-light: rgba(255, 255, 255, 0.85);
  --text-gray-muted: rgba(255, 255, 255, 0.6);
  --text-dark-main: #0f172a;
  --text-dark-secondary: #475569;
  --text-dark-muted: #64748b;
  
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-bg-hover: rgba(255, 255, 255, 0.09);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.18);
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --shadow-light: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
}

/* 2. Global Resets & Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-dark-base);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

/* 3. Utility Layout Classes */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Scroll Reveal States */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Ambient Radial Glow Gradients */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(140px);
  z-index: 0;
}

.glow-cyan {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  top: -10%;
  left: 10%;
}

.glow-emerald {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.12) 0%, transparent 70%);
  bottom: 10%;
  right: -5%;
}

.glow-cyan-bottom {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  bottom: -20%;
  left: -10%;
}

/* Premium Tags */
.section-tag-glow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary-cyan);
  margin-bottom: 1rem;
}

.section-tag-light {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary-emerald);
  margin-bottom: 1rem;
}

/* Gradient Text Effect */
.gradient-text {
  background: linear-gradient(135deg, var(--accent-amber) 0%, #fbbf24 40%, var(--primary-emerald) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons Styles System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

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

.btn-primary {
  background: var(--text-white);
  color: var(--bg-dark-base);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -5px rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.9);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--glass-border-hover);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   4. Component Sections
   ========================================================================== */

/* Main Header Layout */
.main-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon-wrapper {
  background: #ffffff; /* Crisp white background to make red & blue brand colors pop */
  width: 130px; /* Expanded width for prominent standalone branding */
  height: 52px; /* Prominent height to display the logo details clearly */
  border-radius: 8px; /* Slightly adjusted border radius for wide capsule layout */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px -4px rgba(59, 130, 246, 0.25), 0 4px 10px -2px rgba(239, 68, 68, 0.2); /* Combined premium blue/red shadow */
  overflow: hidden;
  padding: 4px; /* Clean breathing space to keep logo graphics intact */
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Preserves exact aspect ratio and colors of the red & blue logo without cropping */
}

.logo-icon {
  width: 22px;
  height: 22px;
  color: var(--text-white);
}

.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  color: var(--primary-cyan);
  font-weight: 700;
}

.brand-main {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-family: 'Outfit', sans-serif;
  color: var(--text-white);
}

.desktop-nav {
  display: flex;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray-light);
}

.nav-link:hover {
  color: var(--primary-cyan);
}

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

.experience-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

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

@media (max-width: 576px) {
  .experience-badge {
    display: none;
  }
  .header-actions .btn-glass {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* ==========================================================================
   Hero Section Layout
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: linear-gradient(135deg, #7f1d1d 0%, #1e3a8a 100%);
  overflow: hidden;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  pointer-events: none;
}

.hero-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.approval-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  font-size: 0.85rem;
  font-weight: 500;
  color: #fca5a5;
  margin-bottom: 2rem;
}

.icon-emerald {
  width: 18px;
  height: 18px;
  color: var(--primary-emerald);
}

.hero-title {
  font-size: clamp(3.2rem, 8vw, 5.2rem);
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--text-gray-light);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* Stats Layout inside Hero */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  padding: 1.25rem;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
}

.stat-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-cyan);
  margin-bottom: 0.75rem;
}

.stat-icon {
  width: 18px;
  height: 18px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-gray-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-value {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
}

/* Glass panel highlighting the brochure visual details */
.hero-graphic {
  position: relative;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-premium), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.panel-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .panel-layout {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.panel-section-title {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-cyan);
  margin-bottom: 1.25rem;
}

.highlights-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlights-list li {
  display: flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-gray-light);
  line-height: 1.5;
}

.list-bullet {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-emerald);
  margin-top: 0.45rem;
}

.panel-image-container {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 100%;
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-image {
  width: 100%;
  height: 100%;
  object-cover: cover;
  object-fit: cover;
}

.image-overlay-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(3, 7, 18, 0.6) 0%, transparent 60%);
}

.panel-footer-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
}

.grid-cell {
  background: rgba(3, 7, 18, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 0.75rem;
  text-align: center;
}

.cell-num {
  font-size: 1.15rem;
  font-weight: 700;
  color: #a7f3d0;
  font-family: 'Outfit', sans-serif;
}

.cell-label {
  font-size: 0.75rem;
  color: var(--text-gray-muted);
  margin-top: 0.15rem;
}

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

/* ==========================================================================
   About & Amenities Section (Light Rhythm Section)
   ========================================================================== */
.about-section {
  background-color: var(--bg-light-base);
  color: var(--text-dark-main);
  padding: 7rem 0;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
}

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

.section-heading-dark {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--text-dark-main);
  margin-bottom: 1.5rem;
}

.section-desc-dark {
  font-size: 1.05rem;
  color: var(--text-dark-secondary);
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

/* Amenities Dynamic Block */
.amenities-container {
  border-top: 1px solid #e2e8f0;
  padding-top: 2.5rem;
}

.amenities-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark-main);
  margin-bottom: 1.5rem;
}

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

.amenity-card {
  background: var(--bg-light-surface);
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.amenity-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -10px rgba(15, 23, 42, 0.1);
  border-color: var(--primary-emerald);
}

.amenity-icon-wrapper {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.08);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-icon-wrapper svg {
  width: 22px;
  height: 22px;
}

.amenity-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark-secondary);
}

/* Why Choose Us & Access Timetable (Dark containers inside light section) */
.about-side {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.why-card {
  background-color: var(--bg-dark-base);
  color: var(--text-white);
  border-radius: var(--border-radius-xl);
  padding: 3rem 2.25rem;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.3);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 576px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-item {
  border-left: 3px solid var(--primary-cyan);
  padding-left: 1rem;
}

.why-item-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.why-item-desc {
  font-size: 0.85rem;
  color: var(--text-gray-light);
  line-height: 1.6;
}

/* Nearby Timber timeline */
.nearby-panel {
  background: var(--bg-light-surface);
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-light);
}

.nearby-timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

.nearby-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  padding: 0.85rem 1.25rem;
  border-radius: 1.25rem;
  transition: var(--transition-fast);
}

.nearby-row:hover {
  background: #f1f5f9;
}

.nearby-place {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nearby-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.08);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nearby-icon-circle svg {
  width: 16px;
  height: 16px;
}

.place-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark-secondary);
}

.travel-time {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-emerald);
}

/* ==========================================================================
   Connectivity & Hubs Section (Premium Dark Style)
   ========================================================================== */
.connectivity-section {
  position: relative;
  background-color: #040c18;
  padding: 8rem 0;
  overflow: hidden;
}

.connectivity-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 4.5rem;
  align-items: center;
}

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

.section-heading-white {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.section-desc-white {
  font-size: 1.05rem;
  color: var(--text-gray-light);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hubs-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hub-category {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
}

.hub-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--primary-cyan);
  margin-bottom: 1rem;
}

.hub-icon {
  width: 22px;
  height: 22px;
}

.hub-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-white);
}

.hub-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-left: 0.25rem;
}

.hub-list li {
  position: relative;
  font-size: 0.9rem;
  color: var(--text-gray-light);
  padding-left: 1.25rem;
}

.hub-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-cyan);
}

/* Strategic Location Map Card Visual */
.connectivity-graphic {
  position: relative;
}

.graphic-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-xl);
  padding: 1.25rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-premium);
}

.map-container {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 10s ease;
}

.map-container:hover .map-image {
  transform: scale(1.05);
}

.map-overlay-glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.spec-card {
  background: rgba(3, 7, 18, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 1.25rem;
  padding: 1rem;
  text-align: center;
}

.spec-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.spec-desc {
  font-size: 0.8rem;
  color: var(--text-gray-muted);
}

/* ==========================================================================
   CTA & Contact Lead Forms Section
   ========================================================================== */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, #7f1d1d 0%, #1e3a8a 100%); /* Brand Red & Blue gradient */
  padding: 7rem 0;
  overflow: hidden;
}

.cta-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
  z-index: 1;
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

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

.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.cta-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  padding: 0.85rem;
  flex-shrink: 0;
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.contact-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
}

.contact-val:hover {
  color: var(--accent-amber);
}

/* Glass Enquiry Form Card styling */
.cta-form-card {
  position: relative;
  background: rgba(3, 7, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-xl);
  padding: 3rem 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 40px 80px -25px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-gray-light);
  line-height: 1.5;
  margin-bottom: 2rem;
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-gray-muted);
}

.form-input, .form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 1.15rem;
  font-size: 0.95rem;
  color: var(--text-white);
  font-family: inherit;
  transition: var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-select option {
  background-color: var(--bg-dark-base);
  color: var(--text-white);
}

.form-input:focus, .form-select:focus {
  border-color: var(--primary-cyan);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.15);
}

/* Error States */
.form-group.invalid .form-input {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.05);
}

.error-msg {
  display: none;
  font-size: 0.75rem;
  font-weight: 500;
  color: #f87171;
}

.form-group.invalid .error-msg {
  display: block;
}

/* Form Success Interactive Overlay overlay */
.form-success-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg-dark-base);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  z-index: 10;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-success-overlay.active {
  transform: translateY(0);
}

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 320px;
}

.success-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  color: var(--primary-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px -5px rgba(239, 68, 68, 0.3);
}

.success-icon-circle svg {
  width: 32px;
  height: 32px;
}

.success-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-white);
}

.success-desc {
  font-size: 0.9rem;
  color: var(--text-gray-light);
  line-height: 1.6;
}

.success-close-btn {
  margin-top: 1rem;
}

/* ==========================================================================
   5. Interactive Modals (Brochure / Leads)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.modal-card {
  position: relative;
  background: var(--bg-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-xl);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.8);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

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

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

.modal-body {
  padding: 3.5rem 2.5rem 3rem;
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-gray-light);
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* Modal Success State visual */
.modal-success-state {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.modal-success-state.active {
  display: flex;
}

.modal-overlay .enquiry-form.inactive {
  display: none;
}

/* ==========================================================================
   6. Premium Footers Section
   ========================================================================== */
.main-footer {
  background: var(--bg-dark-base);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-desc {
  color: var(--text-gray-light);
  line-height: 1.6;
}

.footer-developer {
  font-size: 0.75rem;
  color: var(--text-gray-muted);
}

.footer-links-col h4, .footer-legal-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-gray-light);
}

.footer-links a:hover {
  color: var(--primary-cyan);
  padding-left: 4px;
}

.footer-legal-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.legal-badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-gray-light);
}

.legal-text {
  font-size: 0.75rem;
  color: var(--text-gray-muted);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-gray-muted);
  font-size: 0.8rem;
}
