:root {
  --primary: #0f766e;
  --primary-dark: #0d3d38;
  --accent: #fbbf24;
  --accent-dark: #f59e0b;
  --bg-light: #f5f7fa;
  --bg-white: #ffffff;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --danger: #ef4444;
  --success: #10b981;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100vw;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 !important;
  transition: all 0.4s ease;
  background: transparent !important;
  min-height: 0 !important;
  overflow-x: hidden;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.navbar > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 0 !important;
  margin: 0 !important;
}
.navbar-brand .brand-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.navbar-brand .brand-icon svg {
  width: 18px; height: 18px;
  color: white;
}
.navbar-brand .brand-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  transition: color 0.3s;
}
.navbar:not(.scrolled) .brand-text { color: white; }
.navbar.scrolled .brand-text { color: #111827; }
@media (max-width: 400px) {
  .navbar-brand .brand-text { font-size: 1rem; }
  .navbar-brand .brand-icon { width: 32px; height: 32px; }
  .navbar-brand .brand-icon svg { width: 15px; height: 15px; }
}

.navbar .navbar-nav {
  align-items: center;
  gap: 2px;
}
.navbar .nav-link {
  padding: 8px 14px !important;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.2s;
}
.navbar:not(.scrolled) .nav-link {
  color: rgba(255,255,255,0.85) !important;
}
.navbar:not(.scrolled) .nav-link:hover {
  color: white !important;
  background: rgba(255,255,255,0.1);
}
.navbar.scrolled .nav-link {
  color: #4b5563 !important;
}
.navbar.scrolled .nav-link:hover {
  color: var(--primary) !important;
  background: rgba(15,118,110,0.06);
}

.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.navbar:not(.scrolled) .btn-book-now {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.navbar:not(.scrolled) .btn-book-now:hover {
  background: rgba(255,255,255,0.2);
}
.navbar.scrolled .btn-book-now {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled .btn-book-now:hover {
  background: var(--primary-dark);
}

/* Mobile hamburger */
.navbar-toggler {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: none !important;
  background: none !important;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar:not(.scrolled) .navbar-toggler { color: white; }
.navbar:not(.scrolled) .navbar-toggler:hover { background: rgba(255,255,255,0.1) !important; }
.navbar.scrolled .navbar-toggler { color: #374151; }
.navbar.scrolled .navbar-toggler:hover { background: rgba(0,0,0,0.05) !important; }
.navbar-toggler svg { width: 22px; height: 22px; display: block; }
.navbar-toggler-icon { display: none !important; }

/* Mobile collapse menu */
@media (max-width: 991.98px) {
  .navbar > .container {
    min-height: 56px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 16px 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 1000;
  }
  .navbar .navbar-nav {
    gap: 0;
  }
  .navbar .nav-link {
    padding: 12px 16px !important;
    border-radius: 10px;
    color: #4b5563 !important;
    font-size: 0.95rem;
  }
  .navbar .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(15,118,110,0.06) !important;
  }
  .navbar .btn-book-now {
    display: flex;
    justify-content: center;
    margin-top: 8px;
    margin-left: 0 !important;
    width: 100%;
  }
}

/* ─── Section Styles ─── */
section {
  padding: 100px 0;
}
@media (max-width: 767px) {
  section { padding: 60px 0; }
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(15,118,110,0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}

/* ─── Hero Section ─── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0d3d38 0%, #0f766e 40%, #0ea5e9 100%);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 120px 0 60px;
}
.hero-section canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(245,158,11,0.1) 0%, transparent 50%);
  z-index: 0;
}
.hero-section .container {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
}
.hero-section .row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}
.hero-text { flex: 1 1 500px; }
.hero-visual { flex: 1 1 400px; display: flex; justify-content: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge i { color: var(--accent); }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-title .highlight {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats-card {
  width: 100%;
  max-width: 480px;
  background: rgba(255,255,255,0.06);
  border-radius: 32px;
  padding: 32px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
}
.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat-item {
  background: rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 24px 16px;
  text-align: center;
}
.hero-stat-item:first-child {
  grid-column: 1 / -1;
}
.hero-stat-item i {
  color: var(--accent);
  margin-bottom: 8px;
}
.hero-stat-item:first-child i { font-size: 32px; }
.hero-stat-item:not(:first-child) i { font-size: 24px; }
.hero-stat-value {
  font-weight: 800;
  color: white;
}
.hero-stat-item:first-child .hero-stat-value { font-size: 36px; }
.hero-stat-item:not(:first-child) .hero-stat-value { font-size: 28px; }
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 2px;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  cursor: pointer;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
}

@media (max-width: 768px) {
  .hero-section { min-height: auto; padding: 100px 0 50px; }
  .hero-text { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  line-height: 1.4;
}
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #1a1a1a;
  box-shadow: 0 4px 15px rgba(251,191,36,0.3);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(251,191,36,0.4);
}
.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15,118,110,0.3);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
  color: white;
}

/* ─── Card ─── */
.card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

/* ─── Stats Section ─── */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d3d38 0%, #0f766e 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(245,158,11,0.08) 0%, transparent 50%);
}
.stats-section .container {
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat-icon-box {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.stat-icon-box i {
  font-size: 26px;
  color: var(--accent);
}
.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
}
.stat-label {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  margin-top: 4px;
}

/* ─── About Section ─── */
.about-feat-item {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.about-feat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.about-feat-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(15,118,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feat-icon i { color: var(--primary); font-size: 18px; }
.about-feat-title { font-weight: 700; font-size: 0.93rem; color: var(--text-dark); }
.about-feat-desc { color: var(--text-muted); font-size: 0.82rem; line-height: 1.5; }

/* ─── Services Section ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  padding: 36px;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card-bg {
  position: absolute;
  top: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
}
.service-icon-box {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon-box i { font-size: 22px; }
.service-title { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.service-desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ─── Facilities Section ─── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.facility-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  position: relative;
  height: 300px;
  transition: transform 0.4s;
}
.facility-card:hover {
  transform: translateY(-8px);
}
.facility-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.facility-card:hover img {
  transform: scale(1.1);
}
.facility-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,61,56,0.85));
  padding: 40px 24px 20px;
}
.facility-card-overlay h4 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

/* ─── Gallery Section ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  background: #f0f2f5;
  aspect-ratio: 4 / 3;
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}
.gallery-item-overlay h5 {
  color: white;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4 / 3; }
  .gallery-item-overlay { opacity: 1; padding: 14px; }
  .gallery-item-overlay h5 { font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ─── Contact Section ─── */
.contact-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}
.contact-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.contact-item-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(15,118,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i { color: var(--primary); font-size: 18px; }
.contact-item-label { font-size: 0.82rem; font-weight: 600; color: var(--text-light); margin-bottom: 4px; }
.contact-item-value { font-size: 0.93rem; font-weight: 600; color: var(--text-dark); white-space: pre-line; }

.whatsapp-float {
  position: fixed;
  bottom: 120px;
  right: 30px;
  z-index: 1000;
}
.whatsapp-float a {
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  animation: pulse 2s infinite;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 25px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ─── Footer ─── */
.footer {
  background: linear-gradient(135deg, #0d3d38 0%, #061c19 100%);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand i { color: var(--accent); font-size: 28px; }
.footer-brand span { font-size: 1.35rem; font-weight: 800; color: white; }
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-license { font-size: 0.82rem; opacity: 0.7; }

.footer h4 { color: white; font-size: 1.05rem; font-weight: 700; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.3s;
}
.footer-links a:hover { color: var(--accent); padding-left: 6px; }
.footer-links a i { font-size: 10px; margin-right: 8px; }
.footer-links .book-link { color: var(--accent); font-weight: 600; }

.contact-row { display: flex; gap: 10px; font-size: 0.88rem; margin-bottom: 10px; }
.contact-row i { color: var(--accent); flex-shrink: 0; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  opacity: 0.6;
}
@media (max-width: 480px) {
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ─── Scroll Animations ─── */
.anim-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.anim-hidden.anim-left { transform: translateX(-40px); }
.anim-hidden.anim-right { transform: translateX(40px); }
.anim-hidden.anim-scale { transform: scale(0.9); }
.anim-hidden.anim-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ─── Responsive: Tablet (768–991px) ─── */
@media (max-width: 991px) {
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .facilities-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 14px !important; }
  .facility-card { height: 220px !important; }

  .about-wrapper > div { flex: 1 1 100% !important; }
  .about-img { height: 380px !important; }
  .about-wrapper { gap: 40px !important; }

  .director-img { width: 260px !important; height: 260px !important; }
  .container div[style*="64px"][style*="bottom: 10px"] { width: 54px !important; height: 54px !important; }
  .container div[style*="64px"][style*="bottom: 10px"] i { font-size: 22px !important; }

  #contact iframe { height: 350px !important; }
  .footer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 30px !important; }
  .whatsapp-float { bottom: 100px; right: 20px; }
  .whatsapp-float a { width: 52px; height: 52px; font-size: 24px; }
}

/* ─── Responsive: Mobile (480–767px) ─── */
@media (max-width: 767px) {
  .hero-visual { display: none; }
  .hero-section { min-height: auto; padding: 100px 0 50px; }
  .hero-text { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }

  .services-grid { grid-template-columns: 1fr !important; gap: 14px !important; }
  .service-card { padding: 24px !important; }
  .service-title { font-size: 1.1rem !important; }
  .service-desc { font-size: 0.82rem !important; }
  .service-icon-box { width: 46px !important; height: 46px !important; }
  .service-icon-box i { font-size: 18px !important; }

  .facilities-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .facility-card { height: 180px !important; }
  .facility-card-overlay h4 { font-size: 0.85rem !important; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .gallery-item.wide { grid-column: span 2 !important; }
  .gallery-item.tall { grid-row: span 1 !important; aspect-ratio: 4 / 3 !important; }
  .gallery-item-overlay { opacity: 1 !important; padding: 12px !important; }
  .gallery-item-overlay h5 { font-size: 0.8rem !important; }

  .about-img { height: 260px !important; }
  .about-wrapper { gap: 24px !important; }
  .about-wrapper div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 10px !important; }
  .about-feat-item { padding: 12px !important; gap: 10px !important; }
  .about-feat-title { font-size: 0.82rem !important; }
  .about-feat-desc { font-size: 0.72rem !important; }
  .about-feat-icon { width: 36px !important; height: 36px !important; }
  .about-feat-icon i { font-size: 14px !important; }

  .director-img { width: 200px !important; height: 200px !important; }
  .container div[style*="64px"][style*="bottom: 10px"] { width: 44px !important; height: 44px !important; }
  .container div[style*="64px"][style*="bottom: 10px"] i { font-size: 18px !important; }

  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 20px !important; }
  .stat-icon-box { width: 50px !important; height: 50px !important; }
  .stat-icon-box i { font-size: 20px !important; }
  .section-label { font-size: 0.75rem !important; padding: 4px 12px !important; }

  .contact-item { padding: 14px !important; gap: 12px !important; }
  .contact-item-value { font-size: 0.85rem !important; }
  .contact-item-icon { width: 40px !important; height: 40px !important; }
  .contact-item-icon i { font-size: 15px !important; }
  #contact iframe { height: 280px !important; }

  blockquote p { font-size: 0.95rem !important; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .btn { padding: 12px 22px !important; font-size: 0.85rem !important; }
  section { padding: 60px 0 !important; }

  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem) !important; }
  .hero-desc { font-size: 0.95rem !important; }
  .hero-badge { font-size: 0.78rem !important; padding: 6px 14px !important; }
  .hero-actions .btn { padding: 12px 22px !important; font-size: 0.85rem !important; }
  .section-title { font-size: clamp(1.5rem, 6vw, 1.8rem) !important; }
  .section-subtitle { font-size: 0.9rem !important; }
  .stat-number { font-size: clamp(1.6rem, 6vw, 2rem) !important; }
  .stat-label { font-size: 13px !important; }

  .whatsapp-float { bottom: 80px; right: 14px; }
  .whatsapp-float a { width: 48px; height: 48px; font-size: 22px; }
  .lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 16px; }
}

/* ─── Responsive: Small Mobile (360–479px) ─── */
@media (max-width: 479px) {
  .container { padding: 0 14px !important; }
  .hero-section { padding: 80px 0 40px !important; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2rem) !important; }
  .hero-desc { font-size: 0.88rem !important; }
  .hero-actions { flex-direction: column !important; align-items: center !important; }
  .hero-actions .btn { width: 100% !important; justify-content: center !important; }
  .section-title { font-size: clamp(1.3rem, 5vw, 1.5rem) !important; }

  .facilities-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  .facility-card { height: 150px !important; }
  .facility-card-overlay h4 { font-size: 0.78rem !important; }

  .gallery-grid { gap: 6px !important; }

  .about-img { height: 200px !important; }
  .about-wrapper { gap: 16px !important; }
  .about-feat-item { padding: 10px !important; }
  .about-feat-title { font-size: 0.78rem !important; }
  .about-feat-desc { font-size: 0.68rem !important; }

  .director-img { width: 160px !important; height: 160px !important; border-width: 4px !important; }
  .container div[style*="64px"][style*="bottom: 10px"] { width: 36px !important; height: 36px !important; border-width: 2px !important; }
  .container div[style*="64px"][style*="bottom: 10px"] i { font-size: 14px !important; }

  #contact iframe { height: 220px !important; }

  .stats-grid { gap: 12px !important; }
  .stat-icon-box { width: 44px !important; height: 44px !important; }
  .stat-icon-box i { font-size: 17px !important; }
  .stat-number { font-size: clamp(1.3rem, 5vw, 1.6rem) !important; }
  .stat-label { font-size: 11px !important; }

  .footer-grid { gap: 20px !important; }
  .footer { padding: 50px 0 0 !important; }
  .footer-bottom { flex-direction: column !important; gap: 6px !important; font-size: 0.78rem !important; }

  section { padding: 40px 0 !important; }
  .hero-actions .btn { width: 100% !important; justify-content: center !important; }
}

/* ─── Booking Page Responsive ─── */
@media (max-width: 767px) {
  .booking-card { padding: 24px !important; }
  .booking-card h2 { font-size: 1.3rem !important; }
  .booking-card .form-control,
  .booking-card .form-select { padding: 12px 14px !important; font-size: 0.88rem !important; }
  .booking-section { padding: 90px 0 50px !important; }
}

/* ─── Utilities ─── */
.me-2 { margin-right: 8px; }
.ms-2 { margin-left: 8px; }
.bg-light { background: var(--bg-light) !important; }
