/* ============================================================
   Sai Kriti Girls PG — Core Stylesheet
   Premium pink luxury design system
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Pink color ramps */
  --pink-50:  #fff5f8;
  --pink-100: #ffe6ee;
  --pink-200: #ffc9dc;
  --pink-300: #ffa2c2;
  --pink-400: #ff6fa0;
  --pink-500: #f73e84;
  --pink-600: #e01e6a;
  --pink-700: #b81456;
  --pink-800: #8f1244;
  --pink-900: #6b0f33;

  /* Accent — soft gold */
  --gold-300: #f4d58d;
  --gold-400: #e6c068;
  --gold-500: #d4a843;

  /* Neutrals */
  --ink-900: #2a1320;
  --ink-700: #4a2a3c;
  --ink-500: #7a5868;
  --ink-300: #b89aa6;
  --ink-100: #f3e7ec;
  --white:    #ffffff;
  --cream:    #fffafb;

  /* Semantic */
  --success-500: #2ba579;
  --success-100: #e0f5ec;
  --warning-500: #e0a020;
  --error-500:   #d83a4a;
  --error-100:   #fbe6e8;

  /* Typography */
  --font-head: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing (8px system) */
--space-1: 6px;
--space-2: 12px;
--space-3: 16px;
--space-4: 22px;
--space-5: 28px;
--space-6: 36px;
--space-7: 48px;
--space-8: 56px;
  /* Radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(176, 20, 86, 0.08);
  --shadow-md: 0 12px 30px rgba(176, 20, 86, 0.12);
  --shadow-lg: 0 24px 60px rgba(176, 20, 86, 0.18);
  --shadow-glow: 0 0 0 4px rgba(247, 62, 132, 0.15);

  /* Layout */
  --container: 1200px;
  --header-h: 76px;

  /* Transitions */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.18s var(--ease);
  --t-med: 0.32s var(--ease);
  --t-slow: 0.55s var(--ease);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink-900);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.5px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.3px; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.1rem; }

p  { line-height: 1.7; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section { padding: var(--space-8) 0; }
.section--tight { padding: var(--space-6) 0; }
.section--alt { background: var(--pink-50); }

.center { text-align: center; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--pink-600);
  margin-bottom: var(--space-2);
}

.section-title { margin-bottom: var(--space-2); }
.section-subtitle {
  max-width: 640px;
  margin: 0 auto var(--space-6);
  color: var(--ink-500);
  font-size: 1.05rem;
}
.center .section-subtitle { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: transform var(--t-fast), box-shadow var(--t-med), background var(--t-med);
  will-change: transform;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn--ghost {
  background: transparent;
  color: var(--pink-700);
  border: 2px solid var(--pink-300);
}
.btn--ghost:hover {
  background: var(--pink-100);
  border-color: var(--pink-400);
  transform: translateY(-3px);
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 17px 38px; font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255, 250, 251, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(247, 62, 132, 0.08);
  z-index: 1000;
  transition: background var(--t-med), box-shadow var(--t-med), height var(--t-med);
}
.site-header.scrolled {
  background: rgba(255, 250, 251, 0.96);
  box-shadow: var(--shadow-sm);
  height: 66px;
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-400), var(--pink-600));
  display: grid; place-items: center;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--ink-900);
}
.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--pink-600);
  font-weight: 500;
}
.btn--whatsapp{
  /* width: 140px;
  height: 45px; */

    background: #25D366;
    color: #fff;
    box-shadow: 0 10px 20px rgba(37,211,102,.25);
}

.btn--whatsapp:hover{
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(37,211,102,.35);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  position: relative;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-700);
  border-radius: var(--r-full);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--pink-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.nav-links a:hover { color: var(--pink-700); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--pink-700); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.9rem;
  color: var(--pink-700);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  position: relative;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--pink-700);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-fast);
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute; left: 0;
}
.nav-toggle span::before { top: -8px; }
.nav-toggle span::after  { top: 8px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.open span::after  { transform: rotate(-45deg) translate(6px, -6px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--space-5)) 0 var(--space-6);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(247, 62, 132, 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(244, 213, 141, 0.16), transparent 60%),
    linear-gradient(160deg, var(--pink-50), var(--cream) 70%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px; top: 10%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 62, 132, 0.14), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  padding: 8px 18px;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem; font-weight: 600;
  color: var(--pink-700);
  margin-bottom: var(--space-3);
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success-500);
  box-shadow: 0 0 0 4px var(--success-100);
}
.hero h1 { margin-bottom: var(--space-3); }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--pink-500), var(--pink-700));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 1.12rem;
  color: var(--ink-500);
  max-width: 520px;
  margin-bottom: var(--space-4);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-5); }
.hero-stats {
  display: flex; gap: var(--space-5);
  border-top: 1px solid rgba(247, 62, 132, 0.15);
  padding-top: var(--space-4);
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 700;
  color: var(--pink-600);
}
.hero-stat .label { font-size: 0.82rem; color: var(--ink-500); letter-spacing: 0.5px; }

.hero-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
}
.hero-img-main {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.hero-img-float {
  position: absolute;
  bottom: -30px; left: -40px;
  width: 200px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.hero-card-float {
  position: absolute;
  top: -22px; right: -20px;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.hero-card-float .icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pink-100);
  display: grid; place-items: center;
  color: var(--pink-600); font-size: 1.2rem;
}
.hero-card-float .txt strong { display: block; color: var(--ink-900); font-size: 0.95rem; }
.hero-card-float .txt span { font-size: 0.75rem; color: var(--ink-500); }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  margin-top: var(--header-h);
  padding: var(--space-6) 0 var(--space-6);
  background:
    radial-gradient(800px 400px at 90% 0%, rgba(247, 62, 132, 0.15), transparent 60%),
    linear-gradient(160deg, var(--pink-50), var(--cream));
  text-align: center;
}
.page-banner h1 { margin-bottom: var(--space-2); }
.breadcrumb {
  display: flex; justify-content: center; gap: 8px;
  font-size: 0.88rem; color: var(--ink-500);
}
.breadcrumb a:hover { color: var(--pink-700); }
.breadcrumb .sep { color: var(--pink-300); }

/* ---------- Feature cards ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(247, 62, 132, 0.06);
  transition: transform var(--t-med), box-shadow var(--t-med);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; left: 0; top: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--pink-400), var(--pink-600));
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-med);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  display: grid; place-items: center;
  color: var(--pink-600);
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}
.card h3 { margin-bottom: var(--space-1); }
.card p { color: var(--ink-500); font-size: 0.96rem; }

/* ---------- Image cards ---------- */
.img-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.img-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.img-card .img-wrap { aspect-ratio: 3 / 2; overflow: hidden; }
.img-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.img-card:hover .img-wrap img { transform: scale(1.06); }
.img-card .body { padding: var(--space-3); }
.img-card .body h3 { margin-bottom: 6px; }
.img-card .body p { color: var(--ink-500); font-size: 0.92rem; }

/* ---------- Room cards ---------- */
.room-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(247, 62, 132, 0.06);
  transition: transform var(--t-med), box-shadow var(--t-med);
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.room-card .img-wrap { aspect-ratio: 16 / 11; overflow: hidden; position: relative; }
.room-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.room-card:hover .img-wrap img { transform: scale(1.07); }
.room-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,0.92);
  padding: 6px 14px;
  border-radius: var(--r-full);
  font-size: 0.75rem; font-weight: 600;
  color: var(--pink-700);
  letter-spacing: 0.4px;
  backdrop-filter: blur(4px);
}
.room-card .body { padding: var(--space-4); display: flex; flex-direction: column; flex: 1; }
.room-card .body h3 { margin-bottom: 6px; }
.room-card .body > p { color: var(--ink-500); margin-bottom: var(--space-2); font-size: 0.95rem; }
.room-features {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: var(--space-3);
}
.room-features li {
  font-size: 0.8rem; font-weight: 500;
  background: var(--pink-50);
  color: var(--pink-700);
  padding: 5px 12px;
  border-radius: var(--r-full);
}
.room-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-2);
  border-top: 1px solid var(--ink-100);
}
.room-price .amt {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 700;
  color: var(--pink-600);
}
.room-price .per { font-size: 0.78rem; color: var(--ink-500); }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

/* ---------- Amenities grid ---------- */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}
.amen-item {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--space-3);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(247, 62, 132, 0.06);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.amen-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.amen-icon {
  width: 64px; height: 64px; margin: 0 auto var(--space-2);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  display: grid; place-items: center;
  color: var(--pink-600);
  font-size: 1.6rem;
}
.amen-item h4 { margin-bottom: 6px; }
.amen-item p { font-size: 0.86rem; color: var(--ink-500); }

/* ---------- Split section ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: center;
}
.split--rev .split-media { order: 2; }
.split-media img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.split-media { position: relative; }
.split-media .badge-circle {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
  color: var(--white);
  display: grid; place-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  font-family: var(--font-head);
  line-height: 1.1;
}
.split-media .badge-circle .big { font-size: 1.6rem; font-weight: 700; }
.split-media .badge-circle .sm  { font-size: 0.72rem; letter-spacing: 1px; }

.check-list { display: grid; gap: 12px; margin: var(--space-3) 0 var(--space-4); }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.98rem;
}
.check-list .tick {
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--success-100);
  color: var(--success-500);
  display: grid; place-items: center;
  font-size: 0.8rem; font-weight: 700;
  margin-top: 2px;
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.testi {
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.testi .quote-mark {
  font-family: var(--font-head);
  font-size: 3rem; line-height: 1;
  color: var(--pink-200);
  position: absolute; top: 16px; right: 20px;
}
.testi .stars { color: var(--gold-400); margin-bottom: var(--space-2); letter-spacing: 2px; }
.testi p { color: var(--ink-700); font-style: italic; margin-bottom: var(--space-3); }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-300), var(--pink-500));
  display: grid; place-items: center;
  color: var(--white); font-weight: 700;
  font-family: var(--font-head);
}
.testi-author strong { display: block; color: var(--ink-900); font-size: 0.95rem; }
.testi-author span { font-size: 0.8rem; color: var(--ink-500); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  margin-bottom: var(--space-2);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(247, 62, 132, 0.06);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink-900);
}
.faq-q .icon {
  flex-shrink: 0;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--pink-100);
  color: var(--pink-600);
  display: grid; place-items: center;
  font-size: 1.1rem;
  transition: transform var(--t-med), background var(--t-med);
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--pink-500); color: var(--white); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}
.faq-a-inner {
  padding: 0 var(--space-4) var(--space-3);
  color: var(--ink-500);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-700));
  border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-5);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-band::before { width: 260px; height: 260px; top: -100px; left: -60px; }
.cta-band::after  { width: 320px; height: 320px; bottom: -140px; right: -80px; }
.cta-band h2 { color: var(--white); margin-bottom: var(--space-2); position: relative; }
.cta-band p { color: rgba(255,255,255,0.9); max-width: 540px; margin: 0 auto var(--space-4); position: relative; }
.cta-band .hero-actions { justify-content: center; position: relative; }
.cta-band .btn--ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.cta-band .btn--ghost:hover { background: rgba(255,255,255,0.22); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-5);
  align-items: start;
}
.contact-info { display: grid; gap: var(--space-2); }
.info-card {
  display: flex; gap: var(--space-2);
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--space-3);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(247, 62, 132, 0.06);
  transition: transform var(--t-fast);
}
.info-card:hover { transform: translateY(-4px); }
.info-card .icon {
  flex-shrink: 0;
  width: 50px; height: 50px; border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--pink-100), var(--pink-200));
  display: grid; place-items: center;
  color: var(--pink-600); font-size: 1.3rem;
}
.info-card h4 { margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--ink-500); font-size: 0.92rem; line-height: 1.5; }
.info-card a:hover { color: var(--pink-700); }

.contact-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(247, 62, 132, 0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2); }
.field { margin-bottom: var(--space-2); }
.field label {
  display: block;
  font-size: 0.85rem; font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--ink-100);
  border-radius: var(--r-sm);
  background: var(--cream);
  color: var(--ink-900);
  transition: border var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--pink-400);
  background: var(--white);
  box-shadow: var(--shadow-glow);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .err { color: var(--error-500); font-size: 0.78rem; margin-top: 4px; display: none; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--error-500); }
.field.invalid .err { display: block; }

.form-alert {
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-size: 0.9rem; font-weight: 500;
  margin-bottom: var(--space-3);
  display: none;
}
.form-alert.show { display: block; }
.form-alert--ok { background: var(--success-100); color: var(--success-500); }
.form-alert--err { background: var(--error-100); color: var(--error-500); }

.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
  margin-top: var(--space-5);
}
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ---------- Stats band ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  background: linear-gradient(135deg, var(--pink-600), var(--pink-800));
  border-radius: var(--r-lg);
  padding: var(--space-5) var(--space-4);
  color: var(--white);
}
.stat-band .stat { text-align: center; }
.stat-band .num {
  font-family: var(--font-head);
  font-size: 2.6rem; font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-band .label { font-size: 0.85rem; letter-spacing: 0.5px; opacity: 0.9; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}
.gallery .tile {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.gallery .tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery .tile:hover img { transform: scale(1.08); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.75);
  padding: var(--space-7) 0 var(--space-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.footer-col h4 {
  color: var(--white);
  margin-bottom: var(--space-2);
  font-size: 1.05rem;
}
.footer-col p, .footer-col a { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--pink-300); }
.footer-links li { margin-bottom: 8px; }
.footer-brand {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: var(--space-2);
}
.footer-brand .brand-name { color: var(--white); font-size: 1.15rem; }
.footer-brand .brand-tag { color: var(--pink-300); }
.footer-social { display: flex; gap: 10px; margin-top: var(--space-2); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  font-size: 1rem;
  transition: background var(--t-fast), transform var(--t-fast);
}
.footer-social a:hover { background: var(--pink-500); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-3);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: var(--pink-300); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utility ---------- */
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mb-0 { margin-bottom: 0; }
.hidden { display: none !important; }
/* Floating Buttons */
.floating-buttons{
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-buttons a{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    transition: all .3s ease;
}

.call-btn{
    background: linear-gradient(135deg,#ff4f9a,#ff7eb3);
}

.whatsapp-btn{
    background:#25D366;
}

.floating-buttons a:hover{
    transform: translateY(-5px) scale(1.08);
}

/* Large Desktop */
@media (min-width:1200px){
    .floating-buttons{
        right:25px;
        bottom:25px;
    }

    .floating-buttons a{
        width:62px;
        height:62px;
        font-size:27px;
    }
}

/* Laptop */
@media (max-width:1199px){
    .floating-buttons{
        right:20px;
        bottom:20px;
    }

    .floating-buttons a{
        width:58px;
        height:58px;
        font-size:25px;
    }
}

/* Tablet */
@media (max-width:991px){
    .floating-buttons{
        right:18px;
        bottom:18px;
        gap:10px;
    }

    .floating-buttons a{
        width:54px;
        height:54px;
        font-size:23px;
    }
}

/* Mobile */
@media (max-width:767px){
    .floating-buttons{
        right:15px;
        bottom:15px;
        gap:10px;
    }

    .floating-buttons a{
        width:50px;
        height:50px;
        font-size:21px;
    }
}

/* Small Mobile */
@media (max-width:480px){
    .floating-buttons{
        right:12px;
        bottom:12px;
        gap:8px;
    }

    .floating-buttons a{
        width:46px;
        height:46px;
        font-size:19px;
    }
}