/* Import Google Fonts - Lora for Headings, Plus Jakarta Sans for Body */
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables for Screenshot Aesthetic Theme */
:root {
  --primary: #0D4A3C;          /* Deep rich forest green from screenshot buttons */
  --accent: #c29d38;           /* Gold yellow color from screenshot badge */
  --primary-light: #0E5C4A;    
  --primary-glow: #128067;     
  --primary-soft: #ECF4F1;     
  --bg-cream: #FAF9F5;         /* Exact warm cream background from screenshot */
  --bg-white: #ffffff;
  
  --text-main: #0F2E25;        /* Deep black-green heading color */
  --text-body: #5C6360;        /* Soft gray-green body text */
  --text-light: #8E9895;
  --border-color: #E2E4E1;
  --border-focus: #0D4A3C;
  
  /* Fonts */
  --font-headings: 'Lora', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  /* Layout */
  --header-height: 80px;
  --max-width: 1200px;
  
  /* Shadows & Radius */
  --shadow-sm: 0 4px 12px rgba(13, 74, 60, 0.02);
  --shadow-md: 0 12px 32px rgba(13, 74, 60, 0.05);
  --shadow-lg: 0 24px 48px rgba(13, 74, 60, 0.08);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;          /* Large rounded corners for image frames */
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Base Styles & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Reusable UI Components */
.section {
  padding: 100px 0;
  position: relative;
}

.section-bg-offset {
  background-color: #FAF8F2; /* Soft offset background */
  border-top: 1px solid rgba(13, 74, 60, 0.05);
  border-bottom: 1px solid rgba(13, 74, 60, 0.05);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.section-subtitle {
  color: var(--text-body);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  max-width: 650px;
  margin-bottom: 50px;
}

/* Button System (matching screenshot style) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

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

.btn-primary:hover {
  background-color: #0A392E;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background-color: rgba(13, 74, 60, 0.04);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-call {
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-phone {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--border-color);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  border: none;
}

.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
}

/* Header & Sticky Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
}

header.scrolled {
  background-color: rgba(250, 249, 245, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(13, 74, 60, 0.03);
  height: 70px;
  border-bottom: 1px solid rgba(13, 74, 60, 0.05);
}

.navbar {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-wrapper img {
  height: 40px;
  width: auto;
  transition: var(--transition-smooth);
}

header.scrolled .logo-wrapper img {
  height: 34px;
}

.nav-logo-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-body);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-cta {
  display: flex;
  align-items: center;
}

/* Mobile Navigation Hamburger Menu */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 1010;
}

.burger-menu span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.burger-menu.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger-menu.open span:nth-child(2) {
  opacity: 0;
}

.burger-menu.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 60px;
  background-color: var(--bg-cream);
  position: relative;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  font-family: var(--font-headings);
  font-size: clamp(2.25rem, 4.2vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  font-weight: 700;
  color: var(--text-main);
}

.hero-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-desc p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

/* Stat Grid Inside Hero */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-headings);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-number span {
  font-size: 0.95rem;
  font-weight: 600;
  margin-left: 2px;
  color: var(--text-body);
  font-family: var(--font-body);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
  line-height: 1.3;
}

/* Hero Image Container (Floating Overlay) */
.hero-image-wrapper {
  position: relative;
  width: 100%;
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(13, 74, 60, 0.06);
  width: 100%;
  max-width: 440px;
  height: 550px;
  margin-left: auto;
  border: 1px solid rgba(13, 74, 60, 0.05);
}

.hero-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%; /* Offset vertically to prevent head from cropping */
}

/* Floating Image Overlay Card from Screenshot */
.hero-image-overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(26, 26, 24, 0.85); /* Clean charcoal transparent backdrop */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.overlay-left, .overlay-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.overlay-left i, .overlay-right i {
  font-size: 1.2rem;
  color: #ffffff;
  opacity: 0.9;
}

.overlay-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.overlay-subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 1px;
  text-transform: uppercase;
}

/* Why Choose Us Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(13, 74, 60, 0.15);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background-color: var(--primary-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: 1.3rem;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-desc {
  color: var(--text-body);
  font-size: 0.95rem;
}

/* What I Treat (Services) Section */
.services-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: stretch;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-btn {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-btn-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-btn-icon {
  font-size: 1.2rem;
  color: var(--text-body);
}

.service-btn span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-main);
}

.service-btn-arrow {
  font-size: 0.95rem;
  color: var(--text-light);
  transform: translateX(-5px);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-btn:hover {
  border-color: var(--primary-light);
  transform: translateX(5px);
}

.service-btn:hover .service-btn-arrow {
  opacity: 1;
  transform: translateX(0);
}

.service-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
}

.service-btn.active span,
.service-btn.active .service-btn-icon {
  color: var(--bg-white);
}

.service-btn.active .service-btn-arrow {
  opacity: 1;
  transform: translateX(0);
  color: var(--bg-white);
}

/* Services Display Panel */
.service-display-panel {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 480px;
}

.service-content-wrapper {
  display: none;
  flex-direction: column;
  height: 100%;
  animation: fadeIn 0.4s ease forwards;
}

.service-content-wrapper.active {
  display: flex;
}

.service-img-wrapper {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-display-badge {
  position: absolute;
  bottom: 16px;
  left: 20px;
  background-color: var(--primary);
  color: var(--bg-white);
  padding: 4px 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  border-radius: 50px;
  z-index: 2;
}

.service-body {
  padding: 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.service-display-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-display-desc {
  color: var(--text-body);
  margin-bottom: 24px;
  font-size: 1rem;
}

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

/* About Therapist Section */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(13, 74, 60, 0.05);
}

.about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-experience-tag {
  position: absolute;
  top: -20px;
  right: -20px;
  background-color: #c29d38; /* Gold yellow color */
  color: var(--bg-white);
  padding: 20px;
  border-radius: 50%;
  width: 105px;
  height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(13, 74, 60, 0.08);
  border: 4px solid #ffffff;
  text-align: center;
  z-index: 10;
  animation: float 6s ease-in-out infinite;
}

.hero-experience-tag .number {
  font-family: var(--font-headings);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.hero-experience-tag .text {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.about-content h3 {
  font-size: 1.35rem;
  margin-bottom: 20px;
  color: var(--text-body);
  font-family: var(--font-body);
  font-weight: 500;
}

.about-bio {
  color: var(--text-body);
  margin-bottom: 28px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
}

.treatments-services-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

.about-services-container {
  background-color: var(--bg-white);
  padding: 44px 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
}

.services-headline {
  font-family: var(--font-headings);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.services-headline i {
  font-size: 1.6rem;
  color: var(--primary);
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 28px;
}

.service-item-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--text-main);
  background-color: var(--bg-cream);
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(13, 74, 60, 0.08);
  transition: var(--transition-fast);
}

.service-item-tag:hover {
  border-color: var(--primary-glow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.service-item-tag i {
  color: var(--primary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.on-field-experience {
  background-color: var(--primary-soft);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 28px;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
}

.on-field-experience strong {
  font-weight: 700;
}

/* How It Works Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border-color) 0, var(--border-color) 6px, transparent 6px, transparent 12px);
  z-index: 1;
}

.process-step {
  position: relative;
  z-index: 2;
  text-align: center;
  background-color: var(--bg-cream);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.process-number {
  width: 70px;
  height: 70px;
  background-color: var(--bg-cream);
  border: 1px solid var(--border-color);
  color: var(--text-body);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.process-step:hover .process-number {
  border-color: var(--primary);
  color: var(--bg-white);
  background-color: var(--primary);
}

.process-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.process-desc {
  color: var(--text-body);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.testimonials-slider {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  width: 100%;
  opacity: 0.3;
  transition: opacity 0.5s ease;
  padding: 0 10px;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
}

.quote-icon {
  font-size: 2.5rem;
  color: var(--primary-soft);
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-family: var(--font-headings);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 2px;
}

.testimonial-condition {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
}

/* Slider Controls */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--border-color);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--primary);
  transform: scale(1.2);
}

/* Contact Section & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--bg-white);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
}

.contact-method-card:hover {
  border-color: var(--primary-light);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background-color: var(--primary-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-method-details h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-body);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-method-details p {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.contact-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
}

.meta-item h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item p {
  font-size: 0.95rem;
  color: var(--text-body);
}

/* Consultation Form Card */
.booking-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.booking-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.booking-card p {
  color: var(--text-body);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.form-control {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-cream);
  color: var(--text-main);
  outline: none;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--bg-white);
}

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

/* Footer styling */
footer {
  background-color: #0c1815;
  color: var(--bg-white);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 40px;
}

.footer-brand h4 {
  color: var(--bg-white);
  font-size: 1.4rem;
  margin-bottom: 16px;
/* Jayanagar Bangalore Map Section */
.map-section {
  padding-top: 40px;
  padding-bottom: 90px;
  background-color: var(--bg-cream);
}

.map-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 36px;
}

.map-card-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
}

.map-location-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  background: rgba(13, 74, 60, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(13, 74, 60, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-location-badge i {
  font-size: 1.25rem;
  color: var(--accent);
}

.map-location-badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.2;
}

.map-location-badge span {
  font-size: 0.75rem;
  opacity: 0.85;
}

.map-responsive-container {
  width: 100%;
  height: 440px;
  display: block;
}

.map-responsive-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: contrast(1.02) saturate(1.05);
}


  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: rgba(255, 255, 255, 0.8);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-2px);
}

.footer-links-col h5 {
  color: var(--primary-soft);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-links-col a:hover {
  color: var(--bg-white);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Floating WhatsApp Widget */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  color: white;
  font-size: 1.8rem;
  z-index: 999;
  transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
  background-color: #128C7E;
  transform: scale(1.08) rotate(5deg);
}

/* Floating Call Widget */
.floating-call {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(13, 74, 60, 0.25);
  color: white;
  font-size: 1.5rem;
  z-index: 999;
  transition: var(--transition-smooth);
}

.floating-call:hover {
  background-color: var(--primary-light);
  transform: scale(1.08) rotate(-5deg);
}

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

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

/* Responsive Media Queries */
@media (max-width: 800px) {
  .hero-grid,
  .about-grid,
  .services-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image-wrapper {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-image-container {
    max-width: 380px;
    height: 480px;
    margin: 0 auto;
  }
  
  .about-image-wrapper {
    max-width: 440px;
    margin: 0 auto;
  }
  
  .process-grid::before {
    display: none;
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .burger-menu {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 40px;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    z-index: 1005;
    border-left: 1px solid rgba(13, 74, 60, 0.05);
  }
  
  .nav-links.open {
    right: 0;
  }
  
  .nav-cta {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-list-grid {
    grid-template-columns: 1fr;
  }
  
  .about-services-container {
    padding: 28px 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  
  .hero-ctas .btn, 
  .hero-ctas .btn-phone {
    justify-content: center;
  }
  
  .booking-card {
    padding: 24px 16px;
  }
  
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .floating-call {
    bottom: 78px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  
  .hero-image-container {
    max-width: 100%;
    height: 400px;
  }

  .hero-image-overlay {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
  }
}
