/* ==========================================================================
   Dr. Ankit Singh - Neuro Specialist & Dr. U.P. Singh Memorial Clinic
   Exact Lumora Design Re-creation
   ========================================================================== */

:root {
  /* Colors */
  --navy-950: #061320;
  --navy-900: #0B1E32;
  --navy-850: #0F2942;
  --navy-800: #15385B;
  --navy-700: #1E4E7C;
  
  --teal-600: #0E7490;
  --teal-500: #0284C7;
  --teal-400: #38BDF8;
  --teal-300: #7DD3FC;
  --teal-100: #E0F2FE;
  --teal-50: #F0F9FF;
  
  --emerald-600: #059669;
  --emerald-500: #10B981;

  --amber-500: #F59E0B;
  --amber-100: #FEF3C7;
  
  --slate-900: #0F172A;
  --slate-800: #1E293B;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;

  /* Theme Tokens */
  --bg-body: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-subtle: #F1F5F9;
  --bg-navy: #0B1E32;
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-inverse: #FFFFFF;
  
  --accent-primary: #0284C7;
  --accent-hover: #0369A1;
  
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;
  
  /* Typography */
  --font-body: 'Plus Jakarta Sans', 'Sora', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Sora', 'Plus Jakarta Sans', sans-serif;
  
  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.1);
  --shadow-xl: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 8px 24px rgba(2, 132, 199, 0.25);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-pill: 9999px;
  
  /* Container */
  --max-width: 1240px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 2.8vw + 0.4rem, 2.5rem); }
h3 { font-size: clamp(1.3rem, 1.8vw + 0.2rem, 1.7rem); }
h4 { font-size: 1.2rem; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

.section {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.25rem;
}

.badge-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background-color: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-600);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 0.75rem;
}

/* --------------------------------------------------------------------------
   Lumora Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--navy-900);
  color: var(--white);
  border: 1px solid var(--navy-900);
  box-shadow: 0 4px 14px rgba(11, 30, 50, 0.18);
}

.btn-primary:hover {
  background-color: var(--teal-500);
  border-color: var(--teal-500);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-white {
  background-color: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--white);
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background-color: var(--slate-100);
  color: var(--teal-600);
  transform: translateY(-2px);
}

.btn-accent {
  background-color: var(--teal-500);
  color: var(--white);
  border: 1px solid var(--teal-500);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
  background-color: var(--slate-100);
  border-color: var(--slate-300);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--navy-900);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.btn-primary .btn-icon-circle {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn:hover .btn-icon-circle {
  transform: translateX(3px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Lumora Transparent Floating Header / Navbar
   -------------------------------------------------------------------------- */
.navbar-lumora {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  transition: all 0.3s ease;
}

.navbar-lumora.scrolled {
  position: fixed;
  background: rgba(6, 31, 26, 0.95);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Standard solid navbar for inner pages */
.navbar-solid {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-light);
}

.navbar-solid.scrolled {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: -0.01em;
}

.navbar-solid .brand-logo-text {
  color: var(--navy-900);
}

.logo-teal-drop {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 12px 12px 12px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
}

/* 5 Tabs Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.2rem;
  position: relative;
  transition: color 0.2s ease;
}

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

.nav-link.active {
  color: var(--white);
  font-weight: 700;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* Solid navbar link styling */
.navbar-solid .nav-link {
  color: var(--slate-700);
}

.navbar-solid .nav-link:hover {
  color: var(--teal-500);
}

.navbar-solid .nav-link.active {
  color: var(--navy-900);
}

.navbar-solid .nav-link.active::after {
  background: var(--navy-900);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  padding: 8px;
}

.hamburger-line {
  height: 2px;
  width: 100%;
  background-color: var(--white);
  border-radius: 2px;
}

.navbar-solid .hamburger-btn {
  border-color: var(--border-light);
  background: var(--white);
}

.navbar-solid .hamburger-line {
  background-color: var(--navy-900);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(11, 30, 50, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: var(--white);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-nav-drawer.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  background: var(--slate-50);
}

.mobile-link:hover, .mobile-link.active {
  background: var(--teal-50);
  color: var(--teal-600);
}

/* --------------------------------------------------------------------------
   EXACT LUMORA HERO SECTION (Surgical Green Palette, 3-Image Slideshow)
   -------------------------------------------------------------------------- */
.hero-lumora-cinematic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #061F1A;
  color: var(--white);
  overflow: hidden;
}

/* Background Slideshow Layers with Surgical Green Overlay */
.hero-slides-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-in-out, transform 5s ease-out;
  pointer-events: none;
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(6, 31, 26, 0.70) 0%,
    rgba(6, 31, 26, 0.48) 38%,
    rgba(6, 31, 26, 0.18) 65%,
    rgba(6, 31, 26, 0.05) 85%,
    rgba(6, 31, 26, 0) 100%
  );
}

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

.hero-lumora-wrapper {
  max-width: 600px;
  position: relative;
  z-index: 10;
}

.hero-lumora-cinematic h1,
.hero-main-title {
  color: #FFFFFF !important;
  font-size: clamp(2.75rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-lumora-cinematic p.hero-main-subtitle,
.hero-main-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

.hero-action-btn-row {
  margin-bottom: 2.5rem;
}

/* Floating "Book a visit" Callback Card (Exact Lumora Replica) */
.lumora-callback-card {
  background: var(--white);
  color: var(--slate-900);
  border-radius: 20px;
  padding: 1.75rem 2rem;
  max-width: 400px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  position: relative;
}

.lumora-callback-head {
  margin-bottom: 1.25rem;
}

.lumora-callback-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 0.2rem;
}

.lumora-callback-sub {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.lumora-callback-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.lumora-callback-input {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--slate-50);
  color: var(--slate-900);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.lumora-callback-input:focus {
  outline: none;
  border-color: #059669;
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.lumora-callback-btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background-color: #061F1A;
  color: var(--white);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  cursor: pointer;
  margin-top: 0.35rem;
}

.lumora-callback-btn:hover {
  background-color: #059669;
  transform: translateY(-2px);
}

.lumora-callback-note {
  font-size: 0.75rem;
  color: var(--slate-400);
  text-align: center;
  margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   Reviews Section & Google Stars
   -------------------------------------------------------------------------- */
.reviews-section {
  background-color: var(--slate-50);
}

.google-rating-banner {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.75rem 1.75rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: 3rem;
}

.star-rating {
  display: flex;
  gap: 2px;
  color: var(--amber-500);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.75rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.reviewer-meta h4 {
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--emerald-600);
  font-weight: 600;
}

.review-text {
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.treated-condition {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-600);
  background: var(--teal-50);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

/* --------------------------------------------------------------------------
   Why Choose Us
   -------------------------------------------------------------------------- */
.why-choose-section {
  background-color: var(--navy-900);
  color: var(--white);
  padding: 5rem 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: transform 0.25s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--teal-400);
}

.why-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(2, 132, 199, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-300);
  margin-bottom: 1.25rem;
}

.why-card h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  color: var(--slate-300);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Services in Short
   -------------------------------------------------------------------------- */
.services-short-section {
  background-color: var(--white);
}

.services-short-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.service-short-card {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2rem;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-short-card:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-400);
}

.service-short-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-600);
  margin-bottom: 1.25rem;
}

.service-short-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-short-card p {
  color: var(--slate-600);
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   Appointment CTA Section
   -------------------------------------------------------------------------- */
.appointment-cta-strip {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-850) 100%);
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
}

/* --------------------------------------------------------------------------
   FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: var(--white);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: var(--teal-400);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-900);
  cursor: pointer;
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--slate-400);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--teal-500);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-950);
  color: var(--slate-400);
  padding-top: 4.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 1rem 0 1.5rem;
  color: var(--slate-300);
}

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

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--slate-300);
  font-size: 0.875rem;
}

.footer-contact-link:hover {
  color: var(--teal-400);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

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

.footer-link {
  color: var(--slate-400);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--teal-400);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.825rem;
}

/* --------------------------------------------------------------------------
   Forms & Controls
   -------------------------------------------------------------------------- */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-700);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background-color: var(--slate-50);
  color: var(--slate-900);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-textarea {
  resize: vertical;
  min-height: 85px;
}

/* --------------------------------------------------------------------------
   Floating Quick Action Buttons & Toasts
   -------------------------------------------------------------------------- */
.floating-actions-bar {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 990;
}

.floating-action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: var(--white);
  transition: transform 0.25s ease;
}

.floating-action-btn.whatsapp { background-color: #25D366; }
.floating-action-btn.phone { background-color: var(--teal-500); }
.floating-action-btn:hover { transform: scale(1.1); }

.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: var(--navy-900);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 300px;
  max-width: 420px;
  border-left: 4px solid var(--teal-500);
  animation: slideInRight 0.3s ease;
  pointer-events: auto;
}

@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-lumora-cinematic {
    background-position: center;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .btn { display: none; }
  .hamburger-btn { display: flex; }
  .section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .hero-lumora-cinematic {
    padding-top: 6.5rem;
    min-height: auto;
    padding-bottom: 3.5rem;
  }
  .lumora-callback-card {
    max-width: 100%;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
