/* ================================================
   Meadow Cottage CL — Custom Styles
   ================================================ */

/* --- Custom Properties --- */
:root {
  --green-primary:  #4a7c59;
  --green-dark:     #2c4a37;
  --green-light:    #7aab8a;
  --green-pale:     #e8f0ea;
  --cream:          #faf8f3;
  --cream-dark:     #f0ebe0;
  --gold:           #c9a84c;
  --gold-dark:      #b8943f;
  --text-dark:      #2d2d2d;
  --text-mid:       #5a5a5a;
  --white:          #ffffff;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.11);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.15);
  --transition:     all 0.3s ease;
  --radius:         12px;
}

/* --- Base --- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

/* --- Shared Section Helpers --- */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-primary);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.section-body {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1rem;
}


/* ================================================
   NAVBAR
   ================================================ */
#mainNav {
  padding: 1.25rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
}

#mainNav .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}

.brand-icon {
  color: var(--gold);
  margin-right: 0.4rem;
}

#mainNav .nav-link {
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 0.8rem;
  transition: var(--transition);
}

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

#mainNav .btn-book {
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.45rem 1.25rem !important;
  font-weight: 600;
  transition: var(--transition);
}

#mainNav .btn-book:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(201,168,76,0.4);
}

/* Toggler icon — white version */
#mainNav .navbar-toggler {
  border-color: rgba(255,255,255,0.45);
}

#mainNav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scrolled state */
#mainNav.scrolled {
  background: var(--white);
  padding: 0.7rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.09);
}

#mainNav.scrolled .navbar-brand,
#mainNav.scrolled .nav-link { color: var(--text-dark); }

#mainNav.scrolled .nav-link:hover { color: var(--green-primary); }

#mainNav.scrolled .btn-book { color: var(--white) !important; }

#mainNav.scrolled .navbar-toggler { border-color: rgba(0,0,0,0.18); }

#mainNav.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.65)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobile nav overlay */
@media (max-width: 991.98px) {
  #mainNav:not(.scrolled) .navbar-collapse.show,
  #mainNav:not(.scrolled) .navbar-collapse.collapsing {
    background: rgba(30, 55, 35, 0.97);
    border-radius: 0 0 12px 12px;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
  }
}


/* ================================================
   HERO
   ================================================ */
.hero {
  min-height: 100vh;
  background-image: url('../../images/arialview.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    140deg,
    rgba(25, 50, 30, 0.78) 0%,
    rgba(44, 74, 55, 0.62) 55%,
    rgba(15, 35, 20, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-badge i { color: var(--gold); }

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.28);
}

.hero-accent { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.84);
  margin-bottom: 2.5rem;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-hero-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(201,168,76,0.42);
}

.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  padding: 0.875rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(255,255,255,0.13);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.65);
  font-size: 1.2rem;
  text-decoration: none;
  animation: bounce 2.2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}


/* ================================================
   STATS STRIP
   ================================================ */
.stats-strip {
  background: var(--green-dark);
  padding: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.35rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.09);
  transition: background 0.25s;
}

.stat-item:last-child { border-right: none; }

.stat-item:hover { background: rgba(255,255,255,0.05); }

.stat-item i {
  font-size: 1.45rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
  text-align: center;
}


/* ================================================
   ABOUT
   ================================================ */
.section-about {
  padding: 6rem 0;
  background: var(--cream);
}

.about-img-wrap {
  position: relative;
  display: block;
}

.about-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.25rem;
  background: var(--green-primary);
  color: var(--white);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 4px 18px rgba(74,124,89,0.38);
  border: 3px solid var(--white);
}

.about-badge i {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.about-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.94rem;
  color: var(--text-mid);
}

.about-highlights li i {
  color: var(--green-primary);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.btn-outline-green {
  border: 2px solid var(--green-primary);
  color: var(--green-primary);
  border-radius: 50px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: var(--transition);
}

.btn-outline-green:hover {
  background: var(--green-primary);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(74,124,89,0.3);
}


/* ================================================
   FACILITIES
   ================================================ */
.section-facilities {
  padding: 6rem 0;
  background: var(--white);
}

.facility-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid transparent;
  transition: var(--transition);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale);
}

.facility-icon {
  width: 62px;
  height: 62px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition);
}

.facility-card:hover .facility-icon {
  background: var(--green-primary);
}

.facility-icon i {
  font-size: 1.4rem;
  color: var(--green-primary);
  transition: var(--transition);
}

.facility-card:hover .facility-icon i { color: var(--white); }

.facility-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.facility-desc {
  font-size: 0.84rem;
  color: var(--text-mid);
  margin: 0;
  line-height: 1.55;
}


/* ================================================
   PARALLAX BREAK
   ================================================ */
.parallax-section {
  padding: 6rem 0;
  background-image: url('../../images/view1.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 52, 32, 0.7);
}

.parallax-content {
  position: relative;
  z-index: 2;
}

.parallax-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: italic;
  color: var(--white);
  margin: 0 auto;
  max-width: 720px;
  line-height: 1.55;
  border: none;
}


/* ================================================
   PRICING
   ================================================ */
.section-pricing {
  padding: 6rem 0;
  background: var(--cream);
}

.pricing-card {
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
}

/* Featured / dark card */
.pricing-featured {
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-featured::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -25%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  pointer-events: none;
}

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 0.2rem;
}

.pricing-currency {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold);
  padding-top: 0.55rem;
  line-height: 1;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.pricing-period {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  align-self: flex-end;
  padding-bottom: 0.8rem;
}

.pricing-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.5rem;
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.pricing-includes li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-includes li:last-child { border-bottom: none; }

.pricing-includes li i {
  color: var(--gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.btn-pricing {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-pricing:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.42);
}

/* Info card */
.pricing-info {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}

.pricing-info-title {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 1.25rem;
}

.pricing-notes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-notes li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.pricing-notes li:last-child { border-bottom: none; }

.pricing-notes li > i {
  color: var(--green-primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.12rem;
  width: 1rem;
  text-align: center;
}

.pricing-notes li > div {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.pricing-notes li strong {
  font-size: 0.88rem;
  color: var(--text-dark);
}

.pricing-notes li span {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.55;
}


/* ================================================
   GALLERY
   ================================================ */
.section-gallery {
  padding: 6rem 0;
  background: var(--white);
}

.carousel-img {
  height: 55vh;
  min-height: 280px;
  max-height: 620px;
  object-fit: cover;
}

.gallery-thumbs { margin-bottom: 0.5rem; }

.gallery-thumb {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-thumb:hover img { transform: scale(1.06); }

.gallery-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 74, 55, 0.52);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  font-size: 1.35rem;
}

.gallery-thumb:hover .gallery-thumb-overlay,
.gallery-thumb:focus .gallery-thumb-overlay { opacity: 1; }


/* ================================================
   LOCAL AREA
   ================================================ */
.section-local {
  padding: 6rem 0;
  background: var(--cream);
}

.local-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: 100%;
  border: 1px solid transparent;
  transition: var(--transition);
}

.local-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-pale);
}

.local-icon {
  width: 48px;
  height: 48px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.local-card:hover .local-icon { background: var(--green-primary); }

.local-icon i {
  color: var(--green-primary);
  font-size: 1.15rem;
  transition: var(--transition);
}

.local-card:hover .local-icon i { color: var(--white); }

.local-distance {
  font-size: 0.78rem;
  color: var(--text-mid);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.local-distance span {
  font-weight: 700;
  color: var(--green-primary);
}

.local-title {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 0.45rem;
}

.local-desc {
  font-size: 0.86rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

.local-extras {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  border: 1px solid var(--cream-dark);
}

.local-extras-title {
  font-size: 1.05rem;
  color: var(--green-dark);
  margin-bottom: 0.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-dark);
}

.extra-item {
  display: flex;
  gap: 0.85rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--cream-dark);
}

.extra-item:last-child { border-bottom: none; }

.extra-item > i {
  color: var(--green-primary);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.18rem;
  width: 1rem;
  text-align: center;
}

.extra-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.extra-item strong { font-size: 0.88rem; color: var(--text-dark); }
.extra-item span   { font-size: 0.83rem; color: var(--text-mid); }


/* ================================================
   FIND US
   ================================================ */
.section-findus {
  padding: 6rem 0;
  background: var(--white);
}

.findus-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.findus-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.findus-icon {
  width: 38px;
  height: 38px;
  background: var(--green-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.findus-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.findus-item strong { font-size: 0.88rem; color: var(--text-dark); font-weight: 600; }
.findus-item span   { font-size: 0.88rem; color: var(--text-mid); line-height: 1.55; }

.findus-item a {
  color: var(--green-primary);
  text-decoration: none;
  font-weight: 500;
}

.findus-item a:hover { text-decoration: underline; }

.findus-note .findus-icon { background: #fef9e7; color: #c49a1a; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe { display: block; }


/* ================================================
   CONTACT
   ================================================ */
.section-contact {
  padding: 6rem 0;
  background: var(--cream);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.contact-icon {
  width: 70px;
  height: 70px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.contact-card:hover .contact-icon { background: var(--green-primary); }

.contact-icon i {
  font-size: 1.6rem;
  color: var(--green-primary);
  transition: var(--transition);
}

.contact-card:hover .contact-icon i { color: var(--white); }

.contact-card h3 {
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 0.65rem;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.btn-contact {
  display: inline-block;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  word-break: break-all;
  transition: var(--transition);
}

.btn-contact:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(74,124,89,0.3);
}

.contact-note {
  font-size: 0.88rem;
  color: var(--text-mid);
}

.contact-note i { color: var(--green-primary); }


/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--green-dark);
  padding: 3rem 0 1.5rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.footer-brand i { color: var(--gold); }

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.87rem;
  transition: color 0.25s;
}

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

.footer-camc {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.25s;
}

.footer-camc:hover { color: var(--gold); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 767.98px) {
  /* Disable fixed parallax on mobile — causes blur/jank on iOS */
  .hero,
  .parallax-section { background-attachment: scroll; }

  .section-about,
  .section-facilities,
  .section-pricing,
  .section-gallery,
  .section-local,
  .section-findus,
  .section-contact { padding: 4rem 0; }

  .parallax-section { padding: 4rem 0; }

  .about-badge {
    right: 0;
    bottom: -0.75rem;
    width: 72px;
    height: 72px;
    font-size: 0.6rem;
  }

  .about-badge i { font-size: 0.9rem; }

  /* Stats — 2 per row on mobile, no right borders */
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.09);
  }

  .stat-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.09); }
  .stat-item:last-child,
  .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.09);
  }
  .stat-item:nth-child(3n) { border-right: none; }
  .stat-item:nth-child(3n+1),
  .stat-item:nth-child(3n+2) { border-right: 1px solid rgba(255,255,255,0.09); }
  .stat-item:nth-last-child(-n+3) { border-bottom: none; }
}
