@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@300;400;500;600&display=swap');

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --blue:         #1565C0;
  --blue-hover:   #1976D2;
  --blue-dark:    #0D47A1;
  --blue-light:   #42A5F5;
  --red:          #C62828;
  --red-dark:     #B71C1C;
  --dark:         #0D1B2A;
  --dark-mid:     #162232;
  --white:        #FFFFFF;
  --gray-light:   #F5F7FA;
  --gray-mid:     #E2E8F0;
  --text:         #2D3748;
  --text-light:   #718096;
  --border:       #E2E8F0;
  --shadow:       0 2px 8px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  --shadow-lg:    0 12px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --radius:       8px;
  --radius-lg:    14px;
  --transition:   all 0.28s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  line-height: 1.75;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; }

/* =============================================
   CONTAINER
   ============================================= */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 1px 0 var(--border), var(--shadow);
  height: 72px;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

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

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

.nav-logo {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-mid);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.nav-brand-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue-dark);
  line-height: 1.2;
}

.nav-brand-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  font-weight: 400;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: var(--transition);
  letter-spacing: 0.03em;
  position: relative;
}

.nav-link:hover {
  color: var(--blue);
  background: rgba(21, 101, 192, 0.08);
}

.nav-link.active {
  color: var(--blue);
  background: rgba(21, 101, 192, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.03em;
}

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

.btn-primary:hover {
  background: var(--blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.45);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

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

.btn-outline-blue:hover {
  background: var(--blue);
  color: var(--white);
}

/* =============================================
   HERO (home page)
   ============================================= */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-mid) 55%, var(--blue-dark) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 85%, rgba(21, 101, 192, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 15%, rgba(198, 40, 40, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 820px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.hero-logo-wrap {
  margin-bottom: 2rem;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 0 6px rgba(21, 101, 192, 0.2), 0 20px 50px rgba(0,0,0,0.4);
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  background: rgba(21, 101, 192, 0.25);
  border: 1px solid rgba(66, 165, 245, 0.4);
  color: rgba(255,255,255,0.88);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.38rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--blue-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.68);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}

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

/* Animated wave divider — shared by all pages */
.wave-animated {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 110px;
  overflow: hidden;
  z-index: 1;
}

.wave-animated svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(140deg, var(--dark) 0%, var(--dark-mid) 60%, var(--blue-dark) 100%);
  padding: 9rem 0 5rem;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(21, 101, 192, 0.28) 0%, transparent 55%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 0.9rem;
}

.page-hero .lead {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}


/* =============================================
   SECTIONS
   ============================================= */
.section       { padding: 5.5rem 0; }
.section-alt   { background: var(--gray-light); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.85rem;
  letter-spacing: -0.01em;
}

.section-header p {
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.accent-line {
  width: 44px;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--red));
  border-radius: 2px;
  margin: 0.85rem auto 0;
}

/* =============================================
   SCROLL ANIMATION
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   HOME — FACILITY VIDEO
   ============================================= */
.facility-video-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
}

.facility-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* =============================================
   HOME — ABOUT SECTION
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #A0AEC0;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 2rem;
  text-align: center;
}

.placeholder-img svg {
  width: 56px;
  height: 56px;
  opacity: 0.5;
}

.about-text .section-tag { display: block; }

.about-text h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.about-divider {
  width: 44px;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--red));
  border-radius: 2px;
  margin: 1.5rem 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-top: 0.3rem;
  font-weight: 500;
  line-height: 1.4;
}

/* =============================================
   HOME — FEATURE CARDS
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(21, 101, 192, 0.25);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.feature-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* =============================================
   HOME — CTA STRIP
   ============================================= */
.cta-strip {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 4rem 0;
  text-align: center;
  color: var(--white);
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-strip p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* =============================================
   POOL PAGE — SPECS TABLE
   ============================================= */
.specs-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
}

.specs-table thead th {
  background: var(--blue-dark);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 1rem 1.5rem;
  text-align: left;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.specs-table tbody td {
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.specs-table tbody tr:last-child td { border-bottom: none; }

.specs-table tbody tr:nth-child(even) td { background: var(--gray-light); }

.specs-table td:first-child {
  font-weight: 600;
  color: var(--dark);
  width: 45%;
}

.specs-table td:last-child {
  color: var(--blue);
  font-weight: 600;
}

/* =============================================
   POOL PAGE — EQUIPMENT CARDS
   ============================================= */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.equipment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.equipment-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--blue);
}

.equipment-card-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.equipment-card h3 {
  font-size: 0.95rem;
  color: var(--blue-dark);
}

.equipment-list {
  list-style: none;
}

.equipment-list li {
  font-size: 0.875rem;
  color: var(--text);
  padding: 0.45rem 0 0.45rem 1.1rem;
  position: relative;
  border-bottom: 1px solid var(--gray-mid);
  line-height: 1.5;
}

.equipment-list li:last-child { border-bottom: none; }

.equipment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
}

/* Pool image gallery placeholder */
.pool-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 380px;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item.gallery-main {
  grid-row: span 2;
  font-size: 0.8rem;
}

/* =============================================
   PARTNERS PAGE
   ============================================= */
.partner-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto;
  transition: var(--transition);
}

.partner-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}

.partner-logo-box {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  background: var(--gray-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  overflow: hidden;
}

.partner-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}

.partner-placeholder {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  padding: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.partner-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.partner-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(21, 101, 192, 0.1);
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}

.partner-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.partner-info .partner-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}

.partner-info .partner-link:hover {
  color: var(--blue-dark);
  gap: 0.55rem;
}

/* Collaboration section */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.collab-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.collab-item i {
  font-size: 2rem;
  color: var(--blue);
  margin-bottom: 1rem;
}

.collab-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.collab-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ci-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--blue-hover));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(21, 101, 192, 0.28);
}

.ci-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.ci-value {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.ci-value a {
  color: var(--text);
  transition: var(--transition);
}

.ci-value a:hover { color: var(--blue); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.25rem;
}

.hours-table tr { border-bottom: 1px solid var(--gray-mid); }
.hours-table tr:last-child { border-bottom: none; }

.hours-table td {
  padding: 0.38rem 0;
  font-size: 0.875rem;
}

.hours-table td:first-child { color: var(--text-light); width: 55%; }
.hours-table td:last-child   { font-weight: 600; color: var(--blue-dark); }

/* Contact form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.contact-form-card .form-subtext {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

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

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-control::placeholder { color: #A0AEC0; }

.form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.14);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--blue);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-submit:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(21, 101, 192, 0.35);
}

/* Map */
.map-section { padding: 4rem 0; }

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.5rem;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-brand-main {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 0.5rem; }

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

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

.footer-contact-row {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

.footer-contact-row i {
  color: var(--blue-light);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .pool-gallery   { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.gallery-main { grid-row: auto; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .partner-card   { flex-direction: column; align-items: center; text-align: center; }
  .partner-logo-box { width: 110px; height: 110px; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    z-index: 999;
  }

  .nav-links.open { display: flex; }
  .nav-toggle     { display: flex; }

  .form-row       { grid-template-columns: 1fr; }
  .about-stats    { grid-template-columns: repeat(3, 1fr); }
  .footer-grid    { grid-template-columns: 1fr; gap: 2rem; }

  .footer-bottom {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  .hero-actions { flex-direction: column; align-items: center; }
  .pool-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
}
