/* ==========================================================================
   AAROHI WOMEN'S CARE CLINIC - ULTRAPREMIUM LUXURY CLINIC STYLING
   ========================================================================== */

/* ===== 1. DESIGN SYSTEM & VARIABLES ===== */
:root {
  /* Colors - High-End Luxury Medical & Editorial Palette */
  --primary: #E91E63;          /* Vibrant Petal Pink */
  --primary-hover: #C2185B;    /* Deep Rose */
  --primary-light: #FFF0F5;    /* Luxurious Lavender Blush */
  --primary-glow: rgba(233, 30, 99, 0.06);
  
  --secondary: #1E293B;        /* Obsidian Slate Blue */
  --secondary-light: #334155;  /* Soft Slate Blue */
  
  --gold: #D4AF37;             /* Muted Champagne Gold */
  --gold-light: #FDFBF7;       /* Warm Ivory Mist */
  --gold-glow: rgba(212, 175, 55, 0.12);
  
  --text-dark: #2C3E50;        /* Deep Charcoal for elegant reading contrast */
  --text-light: #64748B;       /* Elegant Muted Steel */
  
  --bg-white: #FFFFFF;
  --bg-light: #FFF8FA;         /* Creamy Rose White */
  --bg-gradient: linear-gradient(180deg, #FFF5F7 0%, #FFFFFF 100%);
  --bg-dark: #0F172A;          /* Luxurious Deep Navy */
  --border-color: #F1F5F9;
  --border-luxury: rgba(197, 168, 128, 0.15);
  --success: #10B981;
  --whatsapp: #25D366;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  /* Offsets & Layouts */
  --header-height: 90px;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;
  
  /* Ultra Premium Shadows */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.01);
  --shadow-md: 0 20px 40px -10px rgba(15, 23, 42, 0.04), 0 5px 15px -5px rgba(15, 23, 42, 0.01);
  --shadow-lg: 0 40px 80px -15px rgba(15, 23, 42, 0.08), 0 15px 30px -10px rgba(15, 23, 42, 0.02);
  --shadow-primary: 0 15px 30px -8px rgba(233, 30, 99, 0.25);
  --shadow-luxury: 0 30px 60px -20px rgba(15, 23, 42, 0.12);

  /* Smooth Editorial Transition Curve */
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== 2. RESET & BASE STYLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--secondary);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

h1 em, h2 em {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

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

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

ul {
  list-style: none;
}

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

/* ===== 3. LAYOUT UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.section {
  padding: 10rem 0;
  position: relative;
}

/* Subtle background textures for luxury feel */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(233, 30, 99, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  z-index: 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6.5rem auto;
  position: relative;
  z-index: 1;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(233, 30, 99, 0.12);
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.04);
}

.section-title {
  font-size: 3.25rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--secondary);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  font-family: var(--font-sans);
  font-weight: 400;
  letter-spacing: 0.2px;
}

/* ===== 4. BUTTONS & UI ELEMENTS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 1.25rem 2.8rem;
  border-radius: 50px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  gap: 12px;
  white-space: nowrap;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--bg-white);
  box-shadow: var(--shadow-primary);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px -5px rgba(233, 30, 99, 0.45);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--bg-white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
}

.btn-white {
  background-color: var(--bg-white);
  color: var(--secondary);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.btn-white:hover {
  background-color: var(--primary-light);
  color: var(--primary);
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp) 0%, #1ebd54 100%);
  color: var(--bg-white);
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 35px -5px rgba(37, 211, 102, 0.5);
}

.btn-sm {
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1.4rem 3.6rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

/* ===== 5. PRELOADER ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  margin-bottom: 25px;
  animation: pulse 1.8s ease-in-out infinite;
}

.preloader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--primary-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.8s linear infinite;
}

/* ===== 6. HEADER / NAVIGATION ===== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(233, 30, 99, 0.08);
  transition: var(--transition);
}

#header.scrolled {
  box-shadow: var(--shadow-sm);
  background-color: rgba(255, 255, 255, 0.95);
  padding: 5px 0;
}

.navbar {
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1);
  transition: var(--transition);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.08) rotate(5deg);
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(233, 30, 99, 0.2);
}

.preloader-logo-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15);
}

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

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.95rem;
  font-weight: 400;
  color: var(--secondary);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2.5px;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 8px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

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

.nav-cta .btn {
  padding: 0.55rem 1.25rem !important; /* Extremely sleek, compact padding */
  font-size: 0.72rem !important;        /* Crisp, readable small font size */
  gap: 8px !important;                 /* Tight gap for icons */
  letter-spacing: 0.8px !important;     /* Balanced tracking */
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1100;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
  border-radius: 3px;
  position: absolute;
  transition: var(--transition);
}

.nav-toggle span:nth-child(1) { top: 3px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 19px; }

.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== 7. HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  background-color: #FCFAF9;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(252,250,249,1) 40%, rgba(252,250,249,0.92) 55%, rgba(252,250,249,0.2) 100%);
  z-index: 2;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-text {
  max-width: 700px;
  margin-bottom: 4rem;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: 4.8rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2.2rem;
  letter-spacing: -1.5px;
  color: var(--secondary);
}

.hero-desc {
  font-size: 1.3rem;
  margin-bottom: 3.5rem;
  color: var(--text-light);
  line-height: 1.85;
}

.hero-buttons {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important; /* Force all three buttons to stay in a single row */
  align-items: center !important;
  gap: 12px !important; /* Perfect spacing between buttons */
  width: 100% !important;
  max-width: 100% !important;
}

.hero-buttons .btn {
  flex: 1 1 0px !important; /* Force equal width and enable shrinking to fit */
  padding: 1rem 0.75rem !important; /* Compact padding to ensure text fits on a single line */
  font-size: 0.75rem !important; /* High-end compact typography for button labels */
  white-space: nowrap !important; /* Prevent text inside buttons from wrapping */
  min-width: 0 !important; /* Allow buttons to shrink down correctly */
  text-align: center !important;
  letter-spacing: 1px !important; /* Elegant compact tracking */
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-wrap: wrap !important; /* Allow wrapping only on mobile/tablet portrait screens */
    gap: 10px !important;
  }
  .hero-buttons .btn {
    flex: 1 1 100% !important; /* Full width stack on smaller mobile viewports for clean usability */
    padding: 1.1rem 1.5rem !important;
    font-size: 0.85rem !important;
  }
}



.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-top: 1px solid rgba(233, 30, 99, 0.1);
  padding-top: 3.5rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(233, 30, 99, 0.05);
  box-shadow: 0 10px 25px -10px rgba(233, 30, 99, 0.08);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 30, 99, 0.15);
  box-shadow: 0 15px 30px -8px rgba(233, 30, 99, 0.12);
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: var(--font-serif);
  color: var(--secondary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary);
  line-height: 1.4;
}


/* ===== 8. ABOUT SECTION ===== */
.about-section {
  background-color: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 15px;
  background: var(--primary-light);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(233, 30, 99, 0.12);
}

.about-img-wrapper img {
  border-radius: 28px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  filter: contrast(1.02);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background-color: var(--secondary);
  color: var(--bg-white);
  padding: 1.4rem 2.2rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(233, 30, 99, 0.2);
}

.about-img-badge i {
  font-size: 2.5rem;
  color: var(--primary);
}

.about-img-badge span {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.about-intro {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.95;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 3rem;
}

.pillar-card {
  background-color: var(--bg-light);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(233, 30, 99, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(233, 30, 99, 0.2);
}

.pillar-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.pillar-content h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-family: var(--font-serif);
  font-weight: 400;
}

.pillar-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.75;
}

.trust-points h3 {
  font-size: 1.45rem;
  margin-bottom: 20px;
  font-family: var(--font-serif);
  font-weight: 400;
}

.trust-points ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.trust-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.trust-points li i {
  color: var(--primary);
  margin-top: 5px;
  font-size: 1.1rem;
}

/* ===== 9. SERVICES SECTION ===== */
.services-section {
  background-color: #FAFAF9; /* Soft Warm Gray */
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 35px;
}

.service-card {
  background-color: var(--bg-white);
  padding: 4rem 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(233, 30, 99, 0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(233, 30, 99, 0.2);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 2.5rem;
  transition: var(--transition);
  border: 1px solid rgba(233, 30, 99, 0.15);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--bg-white);
  border-color: var(--primary);
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  color: var(--secondary);
  font-family: var(--font-serif);
  font-weight: 400;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  flex-grow: 1;
  line-height: 1.75;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-link i {
  transition: var(--transition);
  color: var(--primary);
}

.service-card:hover .service-link i {
  transform: translateX(6px);
}

/* ===== 10. DOCTOR SECTION ===== */
.doctor-section {
  background-color: var(--bg-white);
}

.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.20fr;
  gap: 6rem;
  align-items: center;
}

.doctor-image-col {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 15px;
  background: var(--primary-light);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(233, 30, 99, 0.12);
}

.doctor-img-wrapper img {
  border-radius: 28px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.doctor-rating-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--secondary);
  color: var(--bg-white);
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(233, 30, 99, 0.2);
}

.doctor-rating-badge i {
  color: var(--primary);
}

.doctor-name {
  font-size: 3.6rem;
  margin-bottom: 5px;
  letter-spacing: -1.5px;
  font-family: var(--font-serif);
  font-weight: 400;
}

.doctor-degree {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.doctor-role {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--secondary);
  margin-bottom: 2.5rem;
  display: inline-block;
  background-color: var(--primary-light);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(233, 30, 99, 0.15);
}

.doctor-qualifications {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 2.5rem;
}

.qual-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.05rem;
}

.qual-item i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 4px;
}

.expertise-block {
  margin-bottom: 2.5rem;
}

.expertise-block h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-family: var(--font-serif);
  font-weight: 400;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background-color: var(--bg-light);
  color: var(--secondary);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 1px solid rgba(233, 30, 99, 0.12);
  transition: var(--transition);
}

.tag:hover {
  background-color: var(--secondary);
  color: var(--bg-white);
  border-color: var(--secondary);
}

.timings-block {
  background-color: #FCFAF9;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(233, 30, 99, 0.15);
  margin-bottom: 3.5rem;
}

.timings-block h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-weight: 400;
}

.timings-block h3 i {
  color: var(--primary);
}

.timing-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(233, 30, 99, 0.1);
}

.timing-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.timing-day {
  font-weight: 700;
  color: var(--secondary);
}

.timing-time {
  color: var(--text-light);
}

/* ===== 11. WHY CHOOSE US ===== */
.why-section {
  background-color: #FAFAF9;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background-color: var(--bg-white);
  padding: 3.5rem 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(233, 30, 99, 0.08);
  transition: var(--transition);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(233, 30, 99, 0.2);
}

.why-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
  transition: var(--transition);
  border: 1px solid rgba(233, 30, 99, 0.12);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--secondary) 0%, #1E293B 100%);
  color: var(--bg-white);
  border-color: var(--secondary);
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--secondary);
  font-family: var(--font-serif);
  font-weight: 400;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.65;
}

/* ===== 12. TESTIMONIALS SECTION ===== */
.testimonials-section {
  background-color: var(--bg-white);
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.rating-summary .stars i {
  color: var(--primary);
  font-size: 1.25rem;
}

.rating-num {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: var(--font-serif);
}

.rating-count {
  color: var(--text-light);
  font-size: 1rem;
}

.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 20px;
}

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

.testimonial-card {
  flex: 0 0 100%;
  background-color: #FCFAF9;
  border-radius: var(--radius-md);
  padding: 4.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(233, 30, 99, 0.12);
  margin-right: 30px;
  position: relative;
}

.testimonial-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  left: 40px;
  font-family: var(--font-serif);
  font-size: 9rem;
  color: var(--primary);
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
}

.test-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.test-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.45rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(233, 30, 99, 0.15);
}

.test-info {
  display: flex;
  flex-direction: column;
}

.test-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--secondary);
  font-family: var(--font-serif);
}

.test-stars i {
  color: var(--primary);
  font-size: 0.95rem;
}

.google-badge {
  position: absolute;
  right: 0;
  top: 0;
  color: #4285F4;
  font-size: 1.6rem;
}

.test-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.9;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-weight: 400;
}

.test-date {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-top: 3rem;
}

.slider-btn {
  background: var(--bg-white);
  border: 1px solid rgba(233, 30, 99, 0.15);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--secondary);
  color: var(--bg-white);
  border-color: var(--secondary);
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(233, 30, 99, 0.2);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.dot.active {
  background-color: var(--secondary);
  width: 32px;
  border-radius: 6px;
}

/* ===== 13. FAQ SECTION ===== */
.faq-section {
  background-color: #FAFAF9;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(233, 30, 99, 0.08);
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(233, 30, 99, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 2rem 3rem;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--font-serif);
}

.faq-icon {
  font-size: 1rem;
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 3rem;
}

.faq-answer p {
  padding-bottom: 2rem;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.8;
  color: var(--text-light);
}

/* Active FAQ state */
.faq-item.active {
  border-color: rgba(233, 30, 99, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
  color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 350px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* ===== 14. APPOINTMENT SECTION ===== */
.appointment-section {
  background-color: var(--bg-white);
}

.appointment-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(233, 30, 99, 0.15);
  overflow: hidden;
}

.appointment-info {
  background: linear-gradient(135deg, var(--secondary) 0%, #0F172A 100%);
  padding: 5.5rem 4.5rem;
  color: var(--bg-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-right: 1px solid rgba(233, 30, 99, 0.1);
}

.appointment-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(233, 30, 99, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.appointment-info h2 {
  color: var(--bg-white);
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 400;
}

.appointment-info p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 3.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
}

.appt-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.appt-contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--bg-white);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.3rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.appt-contact-item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(8px);
  border-color: var(--primary);
}

.appt-contact-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(233, 30, 99, 0.15);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.appt-contact-icon.wa {
  background-color: rgba(37, 211, 102, 0.15);
  color: var(--whatsapp);
}

.appt-contact-item span {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.appt-contact-item strong {
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  font-family: var(--font-serif);
  font-weight: 400;
}

.appt-hours {
  position: relative;
  z-index: 1;
}

.appt-hours h3 {
  color: var(--bg-white);
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: var(--font-serif);
  font-weight: 400;
}

.appt-hours p {
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
}

.appointment-form {
  padding: 5.5rem 4.5rem;
}

.appointment-form h3 {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-serif);
  font-weight: 400;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1.1rem 1.5rem;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: #FAF9F8;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--bg-white);
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.1);
}

.field-error {
  color: #D32F2F;
  font-size: 0.8rem;
  margin-top: 6px;
  font-weight: 600;
}

.form-success {
  margin-top: 24px;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background-color: #F4EFEA;
  color: var(--secondary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--primary);
  box-shadow: var(--shadow-md);
}

/* ===== 15. CONTACT & LOCATION ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: stretch;
}

.contact-card {
  background-color: var(--bg-white);
  padding: 4rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(233, 30, 99, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid rgba(233, 30, 99, 0.15);
}

.contact-item:hover .contact-icon {
  background: var(--secondary);
  color: var(--bg-white);
  border-color: var(--secondary);
  transform: scale(1.08);
}

.contact-icon.wa-icon {
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--whatsapp);
  border-color: rgba(37, 211, 102, 0.15);
}

.contact-text h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
  color: var(--secondary);
  font-family: var(--font-serif);
  font-weight: 400;
}

.contact-text p, .contact-text a {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-text a:hover {
  color: var(--primary);
}

.contact-card .btn {
  margin-top: 15px;
}

.contact-map-col {
  height: 100%;
}

.map-wrapper {
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(233, 30, 99, 0.15);
  transition: var(--transition);
}

.map-wrapper:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(233, 30, 99, 0.3);
}

/* ===== 16. FOOTER ===== */
.footer {
  background-color: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(233, 30, 99, 0.1);
}

.footer-top {
  padding: 6.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.8rem;
}

.footer-logo-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--bg-white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.footer-logo-sub {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 2px;
  display: block;
  margin-top: 3px;
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.03);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}

.social-link:hover {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(233, 30, 99, 0.25);
}

.footer-col h4 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: var(--primary);
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.fc-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.95rem;
}

.fc-item i {
  color: var(--primary);
  margin-top: 5px;
  flex-shrink: 0;
}

.fc-item a {
  color: rgba(255,255,255,0.55);
}

.fc-item a:hover {
  color: var(--primary);
}

.footer-bottom {
  padding: 2.5rem 0;
  font-size: 0.85rem;
  background-color: #060910;
  color: rgba(255,255,255,0.4);
}

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

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

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

/* ===== 17. FLOATING FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
}

.fab-btn i {
  font-size: 1.4rem;
}

.fab-btn span {
  position: absolute;
  right: 70px;
  background-color: var(--secondary);
  color: var(--bg-white);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
}

.fab-btn:hover span {
  opacity: 1;
  transform: translateX(0);
}

.fab-call { background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%); }
.fab-call:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2); }

.fab-wa { background: linear-gradient(135deg, var(--whatsapp) 0%, #1ebd54 100%); }
.fab-wa:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 12px 25px rgba(37, 211, 102, 0.4); }

.fab-map { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%); }
.fab-map:hover { transform: scale(1.1) translateY(-2px); box-shadow: var(--shadow-primary); }

.fab-top {
  background: var(--secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.fab-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-top:hover {
  background-color: var(--primary);
  transform: scale(1.1);
}

/* ===== 18. RESPONSIVE MEDIA QUERIES ===== */

/* Tablets / Medium Devices (up to 1024px) */
@media (max-width: 1024px) {
  .section {
    padding: 7rem 0;
  }
  
  .section-title {
    font-size: 2.6rem;
  }
  
  /* Header & Navigation */
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 4rem 2rem;
    gap: 2.2rem;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    z-index: 1001;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-link {
    font-size: 1.25rem;
    display: block;
    width: 100%;
    text-align: center;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-cta {
    display: none;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: auto;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 6rem;
  }
  
  .hero-bg-img {
    display: none;
  }
  
  .hero-overlay {
    background: linear-gradient(135deg, rgba(252,250,249,1) 0%, rgba(252,250,249,0.98) 100%);
  }
  
  .hero-text {
    max-width: 100%;
    text-align: center;
    margin-bottom: 3.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding-top: 3rem;
  }
  
  /* About Grid */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-img-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .about-img-badge {
    right: 10px;
    bottom: -15px;
    padding: 1.2rem 1.8rem;
  }
  
  /* Doctor Grid */
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .doctor-image-col {
    max-width: 480px;
    margin: 0 auto;
  }
  
  /* Appointment Wrapper */
  .appointment-wrapper {
    grid-template-columns: 1fr;
  }
  
  .appointment-info {
    padding: 4.5rem 3rem;
  }
  
  .appointment-form {
    padding: 4.5rem 3rem;
  }
  
  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .map-wrapper {
    min-height: 400px;
  }
  
  /* Footer Grid */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

/* Mobile Devices (up to 768px) */
@media (max-width: 768px) {
  :root {
    --header-height: 80px;
  }

  .section {
    padding: 5.5rem 0;
  }

  .section-title {
    font-size: 2.2rem;
  }
  
  .hero-heading {
    font-size: 3rem;
  }
  
  .hero-desc {
    font-size: 1.1rem;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .testimonial-card {
    padding: 3.5rem 2rem;
  }
  
  .test-text {
    font-size: 1.15rem;
    line-height: 1.7;
  }
  
  .faq-question {
    padding: 1.8rem 2rem;
    font-size: 1.1rem;
  }
  
  .faq-answer {
    padding: 0 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-bottom .container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
  
  .floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  
  .fab-btn {
    width: 52px;
    height: 52px;
  }
  
  .fab-btn span {
    display: none;
  }
}

/* Small Mobile Devices (up to 480px) */
@media (max-width: 480px) {
  .hero-heading {
    font-size: 2.5rem;
  }
  
  /* Hero buttons are handled by the 768px/576px media queries */

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  
  .stat-card {
    align-items: center;
  }
  
  .about-img-badge {
    position: static;
    margin-top: 15px;
    border-radius: var(--radius-md);
    justify-content: center;
    width: 100%;
  }
  
  .doctor-name {
    font-size: 2.6rem;
  }
  
  .doctor-degree {
    font-size: 1.3rem;
  }
  
  .timing-row {
    flex-direction: column;
    gap: 5px;
  }
  
  .timing-time {
    text-align: left;
  }
  
  .appointment-info,
  .appointment-form {
    padding: 3rem 1.5rem;
  }
  
  .contact-card {
    padding: 2.5rem 1.5rem;
  }
  
  .map-wrapper {
    min-height: 320px;
  }
}
