/*
Theme Name: Mediversity
Template: astra
Author: Mediversity
Description: Custom child theme for Mediversity Medical Clinic
Version: 2.0.0
Text Domain: mediversity
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ========================================
   DESIGN TOKENS
   ======================================== */
:root {
  --gold:        #b8973a;
  --gold-dark:   #9e7d2d;
  --gold-light:  #f5eed8;
  --navy:        #1a2535;
  --navy-dark:   #111b29;
  --text:        #2c3e50;
  --muted:       #6b7684;
  --light-bg:    #eef1f5;
  --white:       #ffffff;
  --border:      #e5e9ee;
  --shadow-sm:   0 2px 8px rgba(26,37,53,0.07);
  --shadow-md:   0 8px 24px rgba(26,37,53,0.10);
  --shadow-lg:   0 16px 48px rgba(26,37,53,0.13);
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --font-head:   'Poppins', 'Manrope', sans-serif;
  --font-body:   'Manrope', system-ui, -apple-system, sans-serif;
  --container:   1200px;
  --header-h:    76px;
  --ease:        0.25s ease;
}

/* ========================================
   RESET / BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, button { font-family: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-head); font-weight: 500; }

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

/* ========================================
   HEADER
   ======================================== */
.mv-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.mv-header--scrolled {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.mv-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.mv-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 500;
  color: #000;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.mv-logo span { color: #000; }

/* Nav */
.mv-nav {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
}
.mv-nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 100%;
  height: 100%;
}
.mv-nav-list > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.mv-nav-list > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  height: 100%;
  padding: 0 14px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
  white-space: nowrap;
}
.mv-nav-list > li > a:hover { color: var(--gold); background: var(--gold-light); }
.mv-nav-list .bi-chevron-down { font-size: 11px; transition: transform var(--ease); }
.mv-has-dropdown:hover .bi-chevron-down { transform: rotate(180deg); }

/* Dropdown */
.mv-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease), visibility var(--ease);
}
.mv-has-dropdown:hover .mv-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.mv-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background var(--ease), color var(--ease);
}
.mv-dropdown li a:hover { background: var(--gold-light); color: var(--gold-dark); }

/* Header CTA */
.mv-header-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mv-btn-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-dark);
  transition: all var(--ease);
  white-space: nowrap;
}
.mv-btn-phone:hover { background: var(--gold-light); }
.mv-btn-book {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: background var(--ease), transform var(--ease);
  white-space: nowrap;
}
.mv-btn-book:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-1px); }

/* Hamburger */
.mv-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.mv-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mv-hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.mv-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mv-hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mv-mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 998;
}
.mv-mobile-overlay.mv-overlay--open { display: block; }

/* ========================================
   HERO
   ======================================== */
.mv-hero {
  margin-top: var(--header-h);
  background: linear-gradient(140deg, #e9edf3 0%, #dde3ec 60%, #d5dce8 100%);
  height: calc(100vh - var(--header-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: visible;
  padding-bottom: 0;
}
.mv-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(184,151,58,0.07) 0%, transparent 68%);
  pointer-events: none;
}
.mv-hero-content {
  max-width: var(--container);
  margin: 0 auto;
  padding: 32px 24px 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  flex: 1;
  width: 100%;
}
.mv-hero-text { display: flex; flex-direction: column; gap: 18px; }

.mv-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.mv-eyebrow-line {
  flex: 1;
  max-width: 44px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.mv-hero-heading {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.08;
}
.mv-rotating-text {
  color: var(--gold);
  font-weight: 600;
  display: inline-block;
  min-width: 140px;
  position: relative;
  padding-bottom: 8px;
  transition: all 0.5s ease-in-out;
}
.mv-rotating-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--gold);
  animation: slideInLine 0.8s ease-out 0.2s both;
}
@keyframes slideInLine {
  from {
    width: 0;
    transform: translateX(100%);
  }
  to {
    width: 100%;
    transform: translateX(0);
  }
}
.mv-hero-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}
.mv-golden { color: var(--gold); font-weight: 600; }
.mv-hero-btns { display: flex; flex-wrap: wrap; gap: 14px; }

.mv-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 18px rgba(184,151,58,0.38);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.mv-cta-primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(184,151,58,0.45);
}
.mv-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: all var(--ease);
}
.mv-cta-outline:hover { background: var(--navy); color: var(--white); }

.mv-trust-badges { display: flex; flex-wrap: wrap; gap: 22px; padding-top: 4px; }
.mv-badge { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text); }
.mv-badge i { color: var(--gold); font-size: 16px; }

/* Hero Image / Slider */
.mv-hero-slider-wrap {
  position: relative;
  margin-top: 24px;
}
.mv-hero-slider {
  position: relative;
  width: 100%;
  height: 370px;
  border-radius: 22px;
  overflow: hidden;
}
.mv-slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.mv-slider-slide.mv-slider-active {
  opacity: 1;
  position: relative;
}
.mv-hero-image {
  border-radius: 22px;
  overflow: hidden;
  min-height: 370px;
  max-height: 370px;
  height: 370px;
  position: relative;
}
.mv-hero-img { width: 100%; height: 100%; object-fit: cover; }

.mv-slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  box-sizing: border-box;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}
.mv-slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--navy);
  transition: all var(--ease);
  pointer-events: auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.mv-slider-btn:hover {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.mv-slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.mv-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  transition: all var(--ease);
}
.mv-slider-dot:hover {
  border-color: var(--white);
}
.mv-slider-dot--active {
  background: var(--gold);
  border-color: var(--gold);
}

.mv-hero-services-wrap {
  position: relative;
  width: 100%;
  z-index: 3;
  margin-bottom: 18px;
}
.mv-hero-services {
  margin-top: 12px;
  transform: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.mv-hero-service-card {
  background: var(--white);
  border: 1px solid #e8ebf0;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(26,37,53,0.09);
  text-align: center;
  padding: 20px 16px 14px;
  overflow: visible;
}
.mv-hero-service-icon {
  width: 56px;
  height: 56px;
  margin: -48px auto 14px;
  border-radius: 50%;
  border: 6px solid #eef2f7;
  background: #dfe8f3;
  color: #68809f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.mv-hero-service-card:nth-child(2) .mv-hero-service-icon {
  background: #f2e8d3;
  color: var(--gold-dark);
}
.mv-hero-service-card h3 {
  font-family: var(--font-head);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--navy);
}
.mv-hero-service-card p {
  font-size: 13px;
  color: var(--muted);
  margin: 8px 0 8px;
}

/* ========================================
   SECTION COMMONS
   ======================================== */
.mv-section-header { text-align: center; margin-bottom: 56px; }
.mv-section-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mv-section-title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
}
.mv-section-sub { font-size: 16px; color: var(--muted); max-width: 540px; margin: 0 auto; }

/* ========================================
   SERVICES
   ======================================== */
.mv-services { padding: 96px 0; background: var(--white); }
.mv-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.mv-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.mv-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184,151,58,0.3);
}
.mv-service-icon {
  width: 66px; height: 66px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: background var(--ease);
}
.mv-service-icon i { font-size: 26px; color: var(--gold); transition: color var(--ease); }
.mv-service-card:hover .mv-service-icon { background: var(--gold); }
.mv-service-card:hover .mv-service-icon i { color: var(--white); }
.mv-service-card h3 {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 500;
  color: var(--navy); margin-bottom: 8px;
}
.mv-service-card p { font-size: 13px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.mv-learn-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--gold);
  transition: gap var(--ease), color var(--ease);
}
.mv-learn-more:hover { gap: 10px; color: var(--gold-dark); }

/* ========================================
   BEFORE & AFTER
   ======================================== */
.mv-ba { padding: 80px 0 96px; background: var(--light-bg); }
.mv-ba-inner {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 48px;
  align-items: center;
}
.mv-ba-text h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  color: var(--navy);
  margin: 12px 0 16px;
}
.mv-ba-text p { color: var(--muted); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
.mv-btn-outline-dark {
  display: inline-flex; align-items: center;
  padding: 11px 24px;
  border: 1.5px solid var(--navy);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  transition: all var(--ease);
}
.mv-btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.mv-ba-cards { display: flex; gap: 20px; }
.mv-ba-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  flex: 1;
  min-width: 200px;
}
.mv-ba-split {
  display: flex;
  height: 220px;
  position: relative;
}
.mv-ba-before, .mv-ba-after {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 8px;
  position: relative;
}
.mv-ba-before img,
.mv-ba-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv-ba-before span, .mv-ba-after span {
  position: relative;
  z-index: 2;
  font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.95);
  background: rgba(0,0,0,0.32);
  padding: 2px 8px; border-radius: 3px;
}
.mv-ba-handle {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #8c96a4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  box-shadow: 0 3px 14px rgba(0,0,0,0.16);
  font-size: 10px;
}
.mv-ba-label {
  padding: 12px 16px;
  font-size: 13px; font-weight: 600; color: var(--navy);
  text-align: center; border-top: 1px solid var(--border);
}
.mv-ba-nav { display: flex; flex-direction: column; gap: 12px; }
.mv-ba-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--navy);
  transition: all var(--ease);
}
.mv-ba-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ========================================
   TESTIMONIAL
   ======================================== */
.mv-testimonial { padding: 96px 0; background: var(--white); }
.mv-testimonial-inner { text-align: center; max-width: 720px; }
.mv-quote-icon { font-size: 52px; color: var(--gold); line-height: 1; margin-bottom: 20px; }
.mv-quote-text {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 27px);
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 28px;
}
.mv-stars { color: var(--gold); font-size: 20px; letter-spacing: 3px; margin-bottom: 16px; }
.mv-testimonial-author { font-weight: 700; color: var(--navy); font-size: 16px; margin-bottom: 4px; }
.mv-testimonial-location { color: var(--muted); font-size: 14px; }

/* ========================================
   NEWSLETTER
   ======================================== */
.mv-newsletter { background: var(--gold); padding: 60px 0; }
.mv-newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.mv-newsletter-text h3 { font-family: var(--font-head); font-size: 26px; color: var(--white); margin-bottom: 6px; }
.mv-newsletter-text p { color: rgba(255,255,255,0.85); font-size: 15px; }
.mv-newsletter-form {
  display: flex; border-radius: 50px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  flex: 1; max-width: 460px; min-width: 280px;
}
.mv-newsletter-form input {
  flex: 1; padding: 14px 22px;
  border: none; outline: none;
  font-size: 14px; background: var(--white); color: var(--text);
}
.mv-newsletter-form button {
  padding: 14px 26px; background: var(--navy); color: var(--white);
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--ease); white-space: nowrap;
}
.mv-newsletter-form button:hover { background: var(--navy-dark); }

/* ========================================
   FOOTER
   ======================================== */
.mv-footer { background: var(--navy); color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.mv-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 52px;
}
.mv-footer-logo {
  font-family: var(--font-head); font-size: 22px; font-weight: 500;
  color: var(--white); display: block; margin-bottom: 16px;
}
.mv-footer-logo span { color: var(--gold); }
.mv-footer-col p { font-size: 14px; line-height: 1.8; margin-bottom: 10px; }
.mv-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.mv-footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: rgba(255,255,255,0.65);
  transition: background var(--ease), color var(--ease);
}
.mv-footer-social a:hover { background: var(--gold); color: var(--white); }
.mv-footer-col h4 {
  font-size: 15px; font-weight: 700; color: var(--white);
  margin-bottom: 18px; letter-spacing: 0.02em;
  font-family: var(--font-body);
}
.mv-footer-col ul li { margin-bottom: 10px; }
.mv-footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--ease); }
.mv-footer-col ul a:hover { color: var(--gold); }
.mv-footer-contact p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; line-height: 1.65;
}
.mv-footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.mv-footer-contact a { color: rgba(255,255,255,0.6); }
.mv-footer-contact a:hover { color: var(--gold); }
.mv-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: rgba(255,255,255,0.45);
  gap: 16px; flex-wrap: wrap;
}
.mv-footer-bottom-links { display: flex; gap: 20px; }
.mv-footer-bottom a { color: rgba(255,255,255,0.45); }
.mv-footer-bottom a:hover { color: var(--gold); }

/* ========================================
   FLOATING BUTTONS
   ======================================== */
.mv-floating-btns {
  position: fixed; bottom: 28px; right: 24px;
  z-index: 999; display: flex; flex-direction: column; gap: 12px;
}
.mv-float-whatsapp, .mv-float-phone {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform var(--ease), box-shadow var(--ease);
}
.mv-float-whatsapp:hover, .mv-float-phone:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 26px rgba(0,0,0,0.28);
  color: var(--white);
}
.mv-float-whatsapp { background: #25d366; }
.mv-float-phone { background: var(--gold); }

/* ========================================
   RESPONSIVE — TABLET ≤ 1024px
   ======================================== */
@media (max-width: 1024px) {
  .mv-btn-phone { display: none; }
  .mv-hero-services { transform: none; }
  .mv-services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mv-ba-inner { grid-template-columns: 1fr 1fr; }
  .mv-ba-nav { flex-direction: row; grid-column: 1 / -1; justify-content: flex-start; }
  .mv-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ========================================
   RESPONSIVE — MOBILE ≤ 768px
   ======================================== */
@media (max-width: 768px) {
  :root { --header-h: 64px; }

  .mv-nav {
    position: fixed;
    top: var(--header-h); left: 0;
    width: 285px;
    height: calc(100vh - var(--header-h));
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 12px 0;
  }
  .mv-nav--open { transform: translateX(0); }
  .mv-nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
  .mv-nav-list > li { width: 100%; }
  .mv-nav-list > li > a { padding: 14px 24px; border-radius: 0; justify-content: space-between; }
  .mv-dropdown {
    position: static; transform: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none; border-radius: 0;
    background: #f8f9fb; display: none; padding: 0;
    min-width: auto;
  }
  .mv-has-dropdown.mv-dropdown--open .mv-dropdown { display: block; }
  .mv-dropdown li a { padding: 12px 40px; }
  .mv-hamburger { display: flex; }
  .mv-btn-book { font-size: 13px; padding: 8px 16px; }

  .mv-hero-content { grid-template-columns: 1fr; padding: 48px 20px 56px; gap: 0; }
  .mv-hero-image { display: none; }
  .mv-hero-btns { flex-direction: column; }
  .mv-cta-primary, .mv-cta-outline { justify-content: center; }
  .mv-trust-badges { gap: 14px; }
  .mv-hero-services {
    transform: none;
    margin-top: 18px;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .mv-hero-service-icon { margin-top: -12px; }

  .mv-services { padding: 64px 0; }
  .mv-services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .mv-service-card { padding: 24px 18px; }

  .mv-ba { padding: 70px 0 64px; }
  .mv-ba-inner { grid-template-columns: 1fr; gap: 28px; }
  .mv-ba-cards { flex-wrap: wrap; }
  .mv-ba-nav { flex-direction: row; }

  .mv-testimonial { padding: 64px 0; }

  .mv-newsletter-inner { flex-direction: column; text-align: center; }
  .mv-newsletter-form { min-width: 260px; width: 100%; }

  .mv-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .mv-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .mv-services-grid { grid-template-columns: 1fr; }
  .mv-ba-cards { flex-direction: column; }
  .mv-ba-card { min-width: auto; }
}
