/* =============================================
   ELEGANT HEALTHCARE CENTRE — STYLESHEET
   ============================================= */

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

/* ── CSS Variables ── */
:root {
  --blue-deep: #0a2a4a;
  --blue-mid: #1a5276;
  --blue-soft: #2e86c1;
  --blue-light: #aed6f1;
  --blue-pale: #eaf4fb;
  --aqua: #17a589;
  --aqua-light: #a2d9ce;
  --white: #ffffff;
  --off-white: #f7fbff;
  --grey-light: #ecf0f1;
  --grey-mid: #95a5a6;
  --grey-dark: #5d6d7e;
  --text-dark: #0d1f2d;
  --text-body: #2c3e50;
  --gold: #c9a84c;
  --gold-light: #f5e6b8;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-sm: 0 2px 12px rgba(10,42,74,0.08);
  --shadow-md: 0 8px 32px rgba(10,42,74,0.12);
  --shadow-lg: 0 20px 60px rgba(10,42,74,0.16);
  --radius: 16px;
  --radius-sm: 8px;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Scroll Progress Bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue-soft), var(--aqua), var(--gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(174,214,241,0.3);
  box-shadow: 0 2px 20px rgba(10,42,74,0.06);
  transition: var(--transition);
}
#navbar.scrolled {
  height: 60px;
  background: rgba(255,255,255,0.98);
  box-shadow: var(--shadow-md);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--blue-soft);
  font-family: var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--blue-deep);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.nav-links a:hover {
  background: var(--blue-pale);
  color: var(--blue-soft);
}
.nav-links a.active {
  background: var(--blue-deep);
  color: var(--white);
}
.nav-cta {
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-mid)) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 14px rgba(46,134,193,0.35);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(46,134,193,0.45) !important;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep)) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 1.5rem;
  border-bottom: 1px solid var(--blue-light);
  box-shadow: var(--shadow-md);
  flex-direction: column;
  gap: 0.5rem;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.mobile-nav.open {
  display: flex;
  transform: translateY(0);
}
.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue-deep);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-nav a:hover {
  background: var(--blue-pale);
  color: var(--blue-soft);
}

/* ── Hero Section ── */
#home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(46,134,193,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(23,165,137,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #061520 0%, #0a2a4a 40%, #0d3b6e 80%, #0a2a4a 100%);
}
/* Animated grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(174,214,241,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,214,241,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift {
  0% { transform: translateY(0); }
  100% { transform: translateY(60px); }
}
/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  animation: orbFloat 8s ease-in-out infinite;
}
.orb-1 {
  width: 400px; height: 400px;
  background: var(--blue-soft);
  top: -100px; right: 10%;
  animation-delay: 0s;
}
.orb-2 {
  width: 250px; height: 250px;
  background: var(--aqua);
  bottom: 10%; left: 5%;
  animation-delay: 3s;
}
.orb-3 {
  width: 180px; height: 180px;
  background: var(--gold);
  top: 40%; right: 30%;
  animation-delay: 5s;
  opacity: 0.08;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
/* Cross/Plus medical icons */
.hero-cross {
  position: absolute;
  opacity: 0.06;
  animation: fadeFloat 6s ease-in-out infinite;
}
.hero-cross svg {
  fill: var(--blue-light);
}
.hero-cross:nth-child(1) { top: 15%; left: 8%; width: 60px; animation-delay: 0s; }
.hero-cross:nth-child(2) { top: 60%; left: 15%; width: 40px; animation-delay: 2s; }
.hero-cross:nth-child(3) { top: 20%; right: 25%; width: 80px; animation-delay: 1s; }
.hero-cross:nth-child(4) { bottom: 25%; right: 8%; width: 50px; animation-delay: 3.5s; }
@keyframes fadeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.06; }
  50% { transform: translateY(-15px) rotate(5deg); opacity: 0.1; }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-left {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(174,214,241,0.12);
  border: 1px solid rgba(174,214,241,0.25);
  color: var(--blue-light);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero-title .accent {
  color: var(--blue-light);
  font-weight: 300;
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(174,214,241,0.8);
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.3s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-mid));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(46,134,193,0.4);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(46,134,193,0.5);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  animation: fadeUp 0.8s 0.4s ease both;
}
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(174,214,241,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* Hero visual panel */
.hero-right {
  display: flex;
  justify-content: center;
  animation: fadeIn 1s 0.5s ease both;
}
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(174,214,241,0.15);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.hero-logo-wrap img {
  width: 120px;
  height: auto;
  filter: brightness(1.1) drop-shadow(0 4px 16px rgba(46,134,193,0.4));
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.hero-card-sub {
  font-size: 0.82rem;
  color: rgba(174,214,241,0.6);
  text-align: center;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.opening-badge {
  background: linear-gradient(135deg, var(--gold), #e8c96d);
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
  padding: 0.75rem;
  border-radius: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
}
.hero-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--aqua);
  flex-shrink: 0;
}

/* ── Section Shared ── */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-soft);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--blue-deep);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em {
  color: var(--blue-soft);
  font-style: italic;
  font-weight: 300;
}
.section-desc {
  font-size: 1rem;
  color: var(--grey-dark);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-soft), var(--aqua));
  border-radius: 2px;
  margin: 1.25rem auto 0;
}

/* ── Invitation Section ── */
#invitation {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0d3b6e 50%, #0a2a4a 100%);
  position: relative;
  overflow: hidden;
}
#invitation::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(174,214,241,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(174,214,241,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.invitation-wrap {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section-header.light .section-label { color: var(--aqua-light); }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-desc { color: rgba(174,214,241,0.7); }
.section-header.light .section-divider {
  background: linear-gradient(90deg, var(--aqua), var(--gold));
}

.invite-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 28px;
  padding: 3rem;
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 30px 80px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.invite-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.invite-corner {
  position: absolute;
  width: 80px; height: 80px;
  border: 2px solid rgba(201,168,76,0.2);
  border-radius: 8px;
}
.invite-corner.tl { top: 16px; left: 16px; border-right: none; border-bottom: none; }
.invite-corner.tr { top: 16px; right: 16px; border-left: none; border-bottom: none; }
.invite-corner.bl { bottom: 16px; left: 16px; border-right: none; border-top: none; }
.invite-corner.br { bottom: 16px; right: 16px; border-left: none; border-top: none; }
.invite-header {
  text-align: center;
  margin-bottom: 2rem;
}
.invite-greeting {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.invite-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.invite-subtitle {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.invite-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
  margin: 2rem 0;
}
.invite-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.invite-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(174,214,241,0.1);
  border-radius: 14px;
  padding: 1rem 1.25rem;
}
.invite-detail-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(46,134,193,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.invite-detail-icon svg { width: 20px; height: 20px; color: var(--blue-light); }
.invite-detail-text { flex: 1; }
.invite-detail-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(174,214,241,0.5);
  margin-bottom: 0.2rem;
}
.invite-detail-value {
  font-size: 0.92rem;
  color: var(--white);
  font-weight: 500;
  line-height: 1.3;
}
.invite-venue {
  grid-column: 1 / -1;
}
.invite-offer {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.06));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}
.offer-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.offer-label svg { width: 16px; height: 16px; }
.offer-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.offer-text strong { color: var(--gold); }
.invite-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.invite-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.invite-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
.invite-cta svg { width: 18px; height: 18px; }
.invite-seeyou {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-style: italic;
}

/* ── Services Section ── */
#services {
  padding: 6rem 2rem;
  background: var(--off-white);
  position: relative;
}
#services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid rgba(174,214,241,0.25);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--blue-soft), var(--aqua));
  transition: height 0.4s ease;
  border-radius: 0 0 4px 4px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(46,134,193,0.3);
}
.service-card:hover::before { height: 100%; }
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-mid));
}
.service-icon-wrap svg {
  width: 26px; height: 26px;
  color: var(--blue-soft);
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap svg { color: var(--white); }
.service-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.82rem;
  color: var(--grey-dark);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  flex: 1;
}
.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--blue-soft);
  line-height: 1;
}
.service-price .currency {
  font-size: 0.9rem;
  font-weight: 400;
  vertical-align: super;
  margin-right: 2px;
  color: var(--grey-mid);
}
.service-book-btn {
  background: var(--blue-pale);
  color: var(--blue-soft);
  border: none;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
}
.service-book-btn:hover, .service-card:hover .service-book-btn {
  background: var(--blue-soft);
  color: var(--white);
}
#services {
  padding: 60px 20px;
  background: #f7f9fc;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.services-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.services-tab {
  padding: 10px 16px;
  border: none;
  background: #e3edf7;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.services-tab.active {
  background: #2e86c1;
  color: white;
}

/* ✅ FIX: hide inactive panels */
.services-tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s ease;
}

.services-tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

/* Button */
.service-book-btn {
  margin-top: 10px;
  padding: 8px 14px;
  border: none;
  background: #2e86c1;
  color: white;
  border-radius: 6px;
  cursor: pointer;
}

/* ── Booking Section ── */
#booking {
  padding: 6rem 2rem;
  background: var(--white);
}
.booking-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.booking-info { padding-top: 1rem; }
.booking-info .section-header { text-align: left; }
.booking-info .section-divider { margin: 1.25rem 0 0; }
.booking-perks {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.booking-perk {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.perk-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perk-icon svg { width: 22px; height: 22px; color: var(--blue-soft); }
.perk-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.2rem;
}
.perk-text p {
  font-size: 0.85rem;
  color: var(--grey-dark);
  line-height: 1.5;
}
.booking-form-card {
  background: var(--off-white);
  border: 1px solid rgba(174,214,241,0.3);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.25rem;
}
.form-sub {
  font-size: 0.85rem;
  color: var(--grey-dark);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.875rem 1.1rem;
  background: var(--white);
  border: 1.5px solid rgba(174,214,241,0.4);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-body);
  outline: none;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--blue-soft);
  box-shadow: 0 0 0 3px rgba(46,134,193,0.12);
}
.form-group input.error,
.form-group select.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}
.form-group .error-msg {
  font-size: 0.78rem;
  color: #e74c3c;
  margin-top: 0.35rem;
  display: none;
}input[type="date"]::-webkit-calendar-picker-indicator {
    background-color: #007bff; /* Your blue color */
    padding: 5px;
    border-radius: 4px; /* Makes it a rounded square */
    cursor: pointer;
    
    /* This filter makes the black icon turn white */
    filter: invert(1); 
}
.form-group.has-error .error-msg { display: block; }
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--grey-dark);
  pointer-events: none;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-mid));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  box-shadow: 0 6px 20px rgba(46,134,193,0.35);
  position: relative;
  overflow: hidden;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(46,134,193,0.45);
}
.submit-btn svg { width: 20px; height: 20px; }

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  animation: fadeIn 0.5s ease;
}
.form-success.show { display: block; }
.success-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(39,174,96,0.35);
  animation: successPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-icon svg { width: 36px; height: 36px; color: white; }
@keyframes successPop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.success-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.5rem;
}
.success-desc {
  font-size: 0.92rem;
  color: var(--grey-dark);
  line-height: 1.6;
}
.success-again {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--blue-soft);
  font-weight: 500;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Contact Section ── */
#contact {
  padding: 6rem 2rem;
  background: var(--off-white);
  position: relative;
}
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--white);
  border: 1px solid rgba(174,214,241,0.3);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; color: var(--blue-soft); }
.contact-text h3 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-deep);
  margin-bottom: 0.3rem;
}
.contact-text p, .contact-text a {
  font-size: 0.9rem;
  color: var(--grey-dark);
  line-height: 1.5;
}
.contact-text a { color: var(--blue-soft); }
.contact-text a:hover { text-decoration: underline; }
.whatsapp-card {
  background: linear-gradient(135deg, #25d366, #128c7e);
  border: none;
  cursor: pointer;
}
.whatsapp-card .contact-icon { background: rgba(255,255,255,0.2); }
.whatsapp-card .contact-icon svg { color: white; }
.whatsapp-card .contact-text h3,
.whatsapp-card .contact-text a { color: white; }
.whatsapp-card .contact-text p { color: rgba(255,255,255,0.75); }
.map-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(174,214,241,0.3);
  height: 100%;
  min-height: 400px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* ── Footer ── */
footer {
  background: var(--blue-deep);
  padding: 3.5rem 2rem 2rem;
  color: rgba(255,255,255,0.6);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(174,214,241,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo img {
  height: 50px;
  filter: brightness(0) invert(1) opacity(0.85);
}
.footer-brand { font-family: var(--font-display); }
.footer-brand-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}
.footer-brand-tagline {
  font-size: 0.78rem;
  color: rgba(174,214,241,0.5);
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--blue-light); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.82rem; }
.footer-copy span { color: var(--blue-light); }
.footer-grand {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  font-style: italic;
}

/* ── Floating WhatsApp ── */
#whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  cursor: pointer;
}
#whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
#whatsapp-fab svg { width: 30px; height: 30px; color: white; }
.fab-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.65s ease;
}
.fade-in.visible { opacity: 1; }

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 6rem; }
  .hero-right { display: none; }
  .booking-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .invite-details { grid-template-columns: 1fr; }
  .invite-venue { grid-column: 1; }
  .invite-footer { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1.5rem; }
  .invite-card { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
