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

:root {
  --pink: #e91e8c;
  --pink-light: #fce4f3;
  --pink-mid: #f8c8e8;
  --dark: #1a1a2e;
  --text: #2d2d2d;
  --muted: #777;
  --white: #fff;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(233,30,140,0.10);
}

html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(233,30,140,0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.footer-brand .nav-logo {
  display: inline-flex;
  margin-bottom: 12px;
}
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--pink); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700;
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-text strong { display: block; color: var(--pink); font-size: 15px; font-weight: 600; }
.nav-logo-text span { font-size: 11px; color: var(--muted); }

.nav-links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none; color: var(--text);
  font-size: 14px; font-weight: 500;
  position: relative; padding-bottom: 4px;
}
.nav-links a.active, .nav-links a:hover { color: var(--pink); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--pink); border-radius: 2px;
}

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: var(--pink); color: #fff;
  text-decoration: none; padding: 10px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 500;
}

.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
  padding: 80px 5% 60px;
  background: linear-gradient(135deg, #fff5fb 0%, #fff 60%);
  min-height: 90vh;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--pink-light); color: var(--pink);
  padding: 6px 14px; border-radius: 50px;
  font-size: 13px; font-weight: 500; margin-bottom: 20px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.15; color: var(--dark);
  margin-bottom: 16px;
}
.hero h1 span { color: var(--pink); font-style: italic; }

.hero-desc {
  font-size: 16px; color: var(--muted); line-height: 1.7;
  margin-bottom: 32px; max-width: 480px;
}
.hero-desc a { color: var(--pink); text-decoration: none; font-weight: 500; }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--pink); color: #fff;
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none; font-size: 15px; font-weight: 500;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(233,30,140,0.3); }

.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat strong {
  display: block; color: var(--pink);
  font-size: 22px; font-weight: 700;
}
.hero-stat span { font-size: 13px; color: var(--muted); }

.hero-img-wrap {
  position: relative;
}
.hero-img {
  width: 100%; border-radius: 24px;
  aspect-ratio: 4/3; object-fit: cover;
  background: linear-gradient(135deg, #f8c8e8, #fce4f3);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; }
.hero-badge-float {
  position: absolute; bottom: 20px; left: 20px;
  background: #fff; border-radius: 14px; padding: 12px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
}
.hero-badge-float svg { color: var(--pink); }
.hero-badge-float strong { display: block; font-size: 14px; }
.hero-badge-float span { font-size: 12px; color: var(--muted); }

/* ===== FEATURE STRIPS ===== */
.features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  padding: 40px 5% 24px;
}
.feature-item {
  background: #fff;
  border: 1px solid #f0e0ea;
  border-radius: 24px;
  padding: 24px 22px;
  display: flex; align-items: flex-start; gap: 16px;
  box-shadow: 0 12px 28px rgba(233,30,140,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(233,30,140,0.12);
}
.feature-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: linear-gradient(135deg, rgba(233,30,140,0.12), rgba(233,30,140,0.04));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pink);
}
.feature-item h4 {
  font-size: 15px; font-weight: 700; margin-bottom: 6px;
  color: var(--dark);
}
.feature-item p {
  font-size: 14px; color: #5d5d5d; line-height: 1.7;
}

.facility-section {
  padding: 64px 5%;
  background: #fff;
}
.facility-header { text-align: center; margin-bottom: 36px; }
.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.facility-card {
  background: #fff;
  border: 1px solid #f0e0ea;
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.facility-icon {
  width: 46px; height: 46px;
  background: var(--pink-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  font-size: 18px;
  margin-bottom: 16px;
}
.facility-card h3 {
  font-size: 16px; font-weight: 600; margin-bottom: 10px;
}
.facility-card p {
  font-size: 14px; color: var(--muted); line-height: 1.7;
}

/* ===== SECTION HEADER ===== */
.section-label {
  font-size: 12px; font-weight: 600; color: var(--pink);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--dark); line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: 600px; text-align: center; margin: 0 auto; }

/* ===== RESIDENCES ===== */
.residences { padding: 80px 5%; }
.residences-header { text-align: center; margin-bottom: 48px; }
.residences-header .section-sub { margin: 0 auto; }

.pg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pg-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid #f0e0ea;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(233,30,140,0.12);
}

.pg-card-img {
  position: relative;
  aspect-ratio: 16/10; overflow: hidden;
  background: var(--pink-light);
}
.pg-card-img img { width: 100%; height: 100%; object-fit: cover; }

.pg-badge {
  position: absolute; top: 12px; left: 12px;
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  padding: 4px 10px; border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--text);
}
.pg-rating {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(4px);
  padding: 4px 10px; border-radius: 50px;
  font-size: 12px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 4px;
}
.star { color: #f59e0b; font-size: 20px; }

.footer-note { font-size: 11px; color: #aaa; }

.pg-card-body { padding: 18px 20px 20px; }
.pg-card-body h3 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.pg-location {
  display: flex; align-items: center; gap: 5px;
  font-size: 13px; color: var(--muted); margin-bottom: 14px;
}

.pg-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  display: flex; align-items: center; gap: 4px;
  background: var(--pink-light); color: var(--pink);
  font-size: 11px; font-weight: 500;
  padding: 4px 10px; border-radius: 50px;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: var(--pink-light);
  padding: 48px 5%; gap: 24px;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; color: var(--pink); margin-bottom: 4px;
}
.stat-item span { font-size: 13px; color: var(--muted); }

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 80px 5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
.about-img {
  border-radius: 24px; overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--pink-light);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-label { margin-bottom: 8px; }
.about-content p { color: var(--muted); line-height: 1.8; font-size: 15px; margin-bottom: 14px; }

/* ===== PG TYPES ===== */
.pg-types { padding: 80px 5%; background: #fef5fb; text-align: center; }
.pg-types-header { margin-bottom: 48px; }
.pg-types-header .section-sub { margin: 0 auto; }
.types-grid { display: grid; grid-template-columns: repeat(2, 0.5fr); gap: 18px;}
.type-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 24px; text-align: left;
  border: 1px solid #f0e0ea;
  transition: transform 0.2s, box-shadow 0.2s;
}
.type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.type-icon {
  width: 44px; height: 44px; background: var(--pink-light);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: var(--pink); margin-bottom: 18px;
}
.type-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.type-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ===== WHY US ===== */
.why-us { padding: 80px 5%; }
.why-us-header { text-align: center; margin-bottom: 48px; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.why-card {
  text-align: center; padding: 28px 20px;
  border-radius: var(--radius); border: 1px solid #f0e0ea;
  transition: box-shadow 0.2s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon {
  width: 52px; height: 52px; background: var(--pink-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--pink); margin: 0 auto 14px;
}
.why-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ===== REVIEWS MARQUEE ===== */
.reviews { padding: 80px 5%; background: #fef5fb; overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 48px; }
.reviews-header .g-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 50px; padding: 6px 16px;
  border: 1px solid #f0e0ea; font-size: 13px; font-weight: 500;
  margin-bottom: 16px;
}
.stars-row { display: flex; gap: 3px; justify-content: center; margin: 8px 0 4px; }
.stars-row .star,
.review-stars { color: #d4af37; }
.rating-text { font-size: 14px; color: var(--muted); }

.marquee-wrap { overflow: hidden; position: relative; }
.marquee-wrap::before, .marquee-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, #fef5fb, transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, #fef5fb, transparent); }

.marquee-track {
  display: flex; gap: 20px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.review-card {
  background: #fff; border-radius: var(--radius);
  padding: 24px; width: 300px; min-width: 300px;
  border: 1px solid #f0e0ea;
  display: flex; flex-direction: column;
}
.review-stars {
  display: flex; gap: 3px; margin-bottom: 12px;
  color: #d4af37;
}
.review-card p {
  font-size: 14px; color: var(--text); line-height: 1.7;
  margin-bottom: 16px;
}
.reviewer { display: flex; align-items: center; gap: 10px; margin-top: auto; }
.reviewer-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--pink-light); color: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.reviewer-name { font-size: 14px; font-weight: 600; }
.reviewer-meta { font-size: 12px; color: var(--muted); }

.review-link {
  display: inline-flex; align-items: center; justify-content: center;
  margin: 16px auto 0; padding: 12px 24px;
  background: var(--pink); color: #fff;
  border-radius: 999px; text-decoration: none;
  font-weight: 600; border: 1px solid transparent;
  box-shadow: 0 18px 40px rgba(233, 30, 140, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.review-link:hover {
  background: #e21c7f;
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(233, 30, 140, 0.16);
}

/* ===== CTA ===== */
.cta {
  margin: 60px 5%;
  background: linear-gradient(135deg, var(--pink-light), #fff);
  border-radius: 24px; padding: 64px 48px;
  text-align: center; border: 1px solid #f0e0ea;
}
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark); margin-bottom: 12px;
}
.cta p { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text);
  padding: 14px 28px; border-radius: 50px;
  text-decoration: none; font-size: 15px; font-weight: 500;
  border: 1.5px solid #ddd;
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--pink); color: var(--pink); }

/* ===== FOOTER ===== */
footer {
  background: var(--pink-light);
  padding: 56px 5% 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-top: 12px; }
.footer-col h5 { font-size: 14px; font-weight: 600; margin-bottom: 14px; color: var(--dark); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  text-decoration: none; color: var(--muted); font-size: 13px;
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a:hover { color: var(--pink); }
.footer-bottom {
  border-top: 1px solid rgba(233,30,140,0.12);
  padding-top: 24px; text-align: center; font-size: 12px; color: var(--muted);
}

/* ===== MOBILE ===== */
@media (max-width: 1200px) {
  .features { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 5%; min-height: unset; }
  .hero-content { order: -1; }
  .hero-img-wrap { order: 0; }
  .hero-stats { flex-wrap: wrap; }
  .facility-grid { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .pg-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .about-img { order: -1; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .facility-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0;
    border-bottom: 1px solid #f0e0ea; padding: 8px 0; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 24px; border-bottom: 1px solid #f0e0ea; }
  .nav-links a.active::after { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero { padding: 36px 4% 40px; gap: 28px; }
  .hero-btns { gap: 10px; }
  .hero-stats { gap: 20px; }
  .facility-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .pg-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 40px 4%; }
  .about-section { padding: 48px 4%; gap: 32px; }
  .pg-types, .why-us, .residences, .reviews { padding: 56px 4%; }
  .types-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta { margin: 40px 4%; padding: 40px 24px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ===== FLOATING CALL BUTTON ===== */
.floating-call-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  z-index: 99;
}

.floating-call-btn:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 32px rgba(233, 30, 140, 0.4);
}

.floating-call-btn svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}

@media (max-width: 600px) {
  .floating-call-btn {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }

  .floating-call-btn svg {
    width: 20px;
    height: 20px;
  }

  .review-link {
    padding: 10px 18px;
    font-size: 14px;
  }

  .hero-badge-float {
    padding: 10px 14px;
    gap: 8px;
  }

  .hero-badge-float strong {
    font-size: 13px;
  }

  .hero-badge-float span {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .floating-call-btn {
    bottom: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .floating-call-btn svg {
    width: 18px;
    height: 18px;
  }

  .review-link {
    padding: 9px 16px;
    font-size: 13px;
  }

  .hero-badge-float {
    padding: 8px 12px;
    gap: 6px;
  }

  .hero-badge-float strong {
    font-size: 12px;
  }

  .hero-badge-float span {
    font-size: 10px;
  }
}
