/* ==============================================
   SAYA RAJNAGAR EXTENSION — v4 Premium Design
   Playfair Display + DM Sans · Warm elegance
   ============================================== */

/* ---------- Variables ---------- */
:root {
  --white: #ffffff;
  --cream: #faf8f5;
  --sand: #f0ece4;
  --ivory: #e4ded4;
  --stone: #b8af9f;
  --warm: #887d6d;
  --charcoal: #3a342c;
  --dark: #1c1915;
  --green: #22356c;
  --green-m: #22356c;
  --green-l: #22356c;
  --gold: #c09840;
  --gold-l: #d4b06a;
  --gold-xl: #e6cb94;
  --accent: linear-gradient(135deg, #c09840 0%, #d4b06a 50%, #c09840 100%);
  --gradient-card: linear-gradient(135deg, var(--green) 0%, var(--green-m) 100%);
  --shadow-xs: 0 1px 3px rgba(28, 25, 21, .05);
  --shadow-sm: 0 2px 10px rgba(28, 25, 21, .06);
  --shadow: 0 8px 32px rgba(28, 25, 21, .08);
  --shadow-md: 0 12px 40px rgba(28, 25, 21, .1);
  --shadow-lg: 0 24px 64px rgba(28, 25, 21, .12);
  --shadow-gold: 0 8px 32px rgba(192, 152, 64, .2);
  --r: 16px;
  --r-sm: 10px;
  --r-lg: 24px;
  --r-xl: 32px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ff-h: 'Playfair Display', Georgia, serif;
  --ff: 'DM Sans', 'Segoe UI', sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-alt {
  background: var(--cream);
}

/* ---------- Typography ---------- */
.kicker {
  font-family: var(--ff);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kicker::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.center .kicker {
  justify-content: center;
}

.center .kicker::after {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.heading {
  font-family: var(--ff-h);
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -.5px;
}

.heading span {
  color: var(--green);
}

.section-head {
  margin-bottom: 64px;
}

.section-head.center {
  text-align: center;
}

.section-head p.sub {
  font-size: 1rem;
  color: var(--warm);
  max-width: 540px;
  line-height: 1.8;
  margin-top: 10px;
}

.center p.sub {
  margin-left: auto;
  margin-right: auto;
}

.body-text {
  font-size: .96rem;
  color: var(--warm);
  max-width: 540px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.muted {
  margin-top: 6px;
  margin-bottom: 0;
  color: var(--stone);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff);
  font-weight: 600;
  font-size: .88rem;
  border: none;
  border-radius: 60px;
  padding: 15px 34px;
  transition: .4s var(--ease);
  position: relative;
  overflow: hidden;
  letter-spacing: .2px;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: .4s var(--ease);
}

/* Primary solid */
.btn-hero {
  background: var(--white);
  color: var(--green);
  box-shadow: var(--shadow);
}

.btn-hero:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Outline on dark */
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .35);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .6);
  transform: translateY(-2px);
}

/* Nav CTA */
.btn-nav {
  background: var(--green);
  color: var(--white);
  padding: 10px 24px;
  font-size: .82rem;
  border-radius: 8px;
}

.btn-nav:hover {
  background: var(--green-m);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(21, 51, 42, .2);
}

/* Gold CTA */
.btn-gold {
  background: var(--accent);
  color: var(--dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-gold::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, .25), transparent);
  opacity: 1;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(192, 152, 64, .3);
}

/* Form submit */
.btn-submit {
  width: 100%;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  padding: 16px;
  border-radius: var(--r);
  font-size: .92rem;
}

.btn-submit:hover {
  background: var(--green-m);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(21, 51, 42, .18);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 10px 0;
  background: #ffffff;
  /* border-radius: 0px 0px 45px 45px; */
  transition: .4s var(--ease);
}

.header.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 24px rgba(28, 25, 21, .06);
  padding: 8px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.header:not(.scrolled) .logo {
  color: var(--white);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-card);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(21, 51, 42, .25);
}

.logo-text em {
  font-style: normal;
  font-weight: 400;
  color: var(--warm);
  font-size: .9em;
}

.header:not(.scrolled) .logo-text em {
  color: rgba(255, 255, 255, .55);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  font-weight: 700;
  color: #000;
  position: relative;
  transition: .3s;
}

.header:not(.scrolled) .nav-link {
  color: rgba(0, 0, 0, 0.7);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: .35s var(--ease);
  transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
  color: var(--green);
}

.header:not(.scrolled) .nav-link:hover,
.header:not(.scrolled) .nav-link.active {
  color: #000000;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header:not(.scrolled) .nav-link::after {
  background: var(--white);
}

.header:not(.scrolled) .btn-nav {
  background: var(--green);
  color: var(--white);
  padding: 10px 24px;
  font-size: .82rem;
  border-radius: 8px;

}

.header:not(.scrolled) .btn-nav:hover {
  background: rgba(255, 255, 255, .25);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .35s var(--ease);
}

.header:not(.scrolled) .menu-toggle span {
  background: var(--white);
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s ease, transform 10s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(21, 51, 42, .5) 0%, rgb(28 25 21 / 63%) 35%, rgb(28 25 21 / 87%) 65%, rgba(28, 25, 21, .85) 100%), radial-gradient(ellipse at 30% 20%, rgb(192 152 64 / 28%), transparent 60%);
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-l);
  border: 1px solid rgba(212, 176, 106, .25);
  background: rgba(212, 176, 106, .08);
  padding: 10px 24px;
  border-radius: 40px;
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  animation: fadeDown .7s ease both;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-l);
  box-shadow: 0 0 0 0 rgba(212, 176, 106, .4);
  animation: tagPulse 2.5s infinite;
}

@keyframes tagPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 176, 106, .4)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(212, 176, 106, 0)
  }
}

.hero-title {
  font-family: var(--ff-h);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, .15);
  animation: fadeUp .8s ease .12s both;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold-l), var(--gold-xl));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: clamp(.92rem, 1.5vw, 1.08rem);
  color: rgba(255, 255, 255, .7);
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.85;
  animation: fadeUp .8s ease .25s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .8s ease .38s both;
}

.hero-pills {
  display: inline-flex;
  gap: 2px;
  margin-top: 56px;
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 60px;
  padding: 6px;
  animation: fadeUp .8s ease .5s both;
}

.pill {
  padding: 12px 24px;
  border-radius: 54px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .8);
  transition: .3s var(--ease);
}

.pill:hover {
  background: rgba(255, 255, 255, .08);
}

.pill strong {
  display: block;
  font-family: var(--ff-h);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-l);
  line-height: 1;
  margin-bottom: 2px;
}

/* Slider dots */
.hero-dots {
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.hdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .4);
  background: transparent;
  padding: 0;
  transition: .4s var(--ease);
}

.hdot.active {
  background: var(--white);
  border-color: var(--white);
  width: 28px;
  border-radius: 14px;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  animation: bounce 2.8s infinite;
  transition: .3s;
}

.scroll-cue:hover {
  border-color: rgba(255, 255, 255, .5);
  color: var(--white);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* ---------- HIGHLIGHTS BAR ---------- */
.highlights {
  background: var(--green);
  padding: 0;
  overflow: hidden;
}

.highlights-row {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.hl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  white-space: nowrap;
  letter-spacing: .4px;
  padding: 18px 28px;
  border-right: 1px solid rgba(255, 255, 255, .08);
  transition: .3s var(--ease);
}

.hl:last-child {
  border-right: none;
}

.hl:hover {
  background: rgba(255, 255, 255, .04);
  color: var(--white);
}

.hl svg {
  stroke: var(--gold-l);
  flex-shrink: 0;
  opacity: .8;
}

/* ---------- ABOUT ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.about-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: inherit;
  pointer-events: none;
}

.about-img img {
  width: 100%;
  height: 400px;
  transition: transform .8s var(--ease);
}

.about-img:hover img {
  transform: scale(1.04);
}

.about-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gradient-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(21, 51, 42, .35);
  border: 2px solid rgba(255, 255, 255, .1);
  animation: floatBadge 4s ease-in-out infinite;
}

.ab-num {
  font-family: var(--ff-h);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.ab-txt {
  font-size: .5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  text-align: center;
  line-height: 1.15;
  margin-top: 3px;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0) rotate(0deg)
  }

  50% {
    transform: translateY(-8px) rotate(3deg)
  }
}

/* Removed decorative corner accent — caused overlap issues */

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.feat {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: .4s var(--ease);
}

.feat:hover {
  background: var(--cream);
  border-color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feat-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(21, 51, 42, .15);
}

.feat-icon svg {
  stroke: var(--gold-l);
}

.feat strong {
  font-size: .88rem;
  display: block;
  color: var(--dark);
  margin-bottom: 1px;
}

.feat span {
  font-size: .78rem;
  color: var(--warm);
  line-height: 1.45;
}

/* ---------- AMENITIES ---------- */
.stat-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}

.tile {
  text-align: center;
  padding: 28px 14px;
  background: var(--white);
  border: 1px solid var(--ivory);
  border-radius: var(--r);
  transition: .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.tile::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: .4s var(--ease);
}

.tile:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--stone);
}

.tile:hover::before {
  transform: scaleX(1);
}

.tile-val {
  font-family: var(--ff-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}

.tile-lbl {
  font-size: .72rem;
  color: var(--warm);
  margin-top: 6px;
  font-weight: 500;
  letter-spacing: .3px;
}

.amenity-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ac {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.ac img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .7s;
}

.ac:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.ac-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(to top, rgba(28, 25, 21, .9) 0%, rgba(28, 25, 21, .35) 55%, transparent 100%);
  transform: translateY(8px);
  opacity: .85;
  transition: .4s var(--ease);
}

.ac:hover .ac-info {
  transform: translateY(0);
  opacity: 1;
}

.ac-info h4 {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.ac-info p {
  font-size: .76rem;
  color: rgba(255, 255, 255, .6);
}

/* ---------- GALLERY ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 230px;
  gap: 12px;
}

.gal-item {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}

.gal-item:hover img {
  transform: scale(1.07);
}

.gal-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21, 51, 42, .6) 0%, transparent 50%);
  opacity: 0;
  transition: .4s var(--ease);
}

.gal-item:hover::after {
  opacity: 1;
}

.gal-tall {
  grid-row: span 2;
}

.gal-wide {
  grid-column: span 2;
}

.gal-label {
  position: absolute;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  font-family: var(--ff-h);
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  transition: .4s var(--ease);
  text-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}

.gal-item:hover .gal-label {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- LOCATION ---------- */
.loc-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lc {
  padding: 32px 24px;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--ivory);
  transition: .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.lc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-card);
  opacity: 0;
  transition: .4s var(--ease);
}

.lc:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--green);
}

.lc:hover::before {
  opacity: 1;
}

.lc-num {
  font-family: var(--ff-h);
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(180deg, var(--ivory) 0%, transparent 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  transition: .4s var(--ease);
}

.lc:hover .lc-num {
  background: var(--accent);
  -webkit-background-clip: text;
  background-clip: text;
}

.lc h4 {
  font-family: var(--ff-h);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.lc p {
  font-size: .84rem;
  color: var(--warm);
  line-height: 1.7;
}

.map-wrap {
  margin-top: 40px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--ivory);
  box-shadow: var(--shadow);
}

/* ---------- PRICING ---------- */
.price-counters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.pc {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--r-lg);
  background: var(--cream);
  border: 1px solid var(--ivory);
  transition: .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.pc::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  border: 2px solid transparent;
  transition: .4s var(--ease);
}

.pc:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.pc:hover::after {
  border-color: var(--gold);
}

.pc.accent {
  background: var(--gradient-card);
  border-color: var(--green);
  box-shadow: 0 12px 40px rgba(21, 51, 42, .2);
}

.pc.accent::after {
  border-color: rgba(255, 255, 255, .1);
}

.pc-val {
  font-family: var(--ff-h);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 6px;
  line-height: 1;
}

.pc.accent .pc-val {
  color: var(--gold-l);
}

.pc-lbl {
  font-size: .82rem;
  color: var(--warm);
  font-weight: 500;
}

.pc.accent .pc-lbl {
  color: rgba(255, 255, 255, .55);
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.pk {
  padding: 32px 28px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--ivory);
  transition: .4s var(--ease);
  position: relative;
}

.pk:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.pk-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(21, 51, 42, .15);
}

.pk-icon svg {
  stroke: var(--gold-l);
}

.pk h4 {
  font-family: var(--ff-h);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.pk p {
  font-size: .86rem;
  color: var(--warm);
  line-height: 1.75;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 51, 42, .92) 0%, rgba(28, 25, 21, .82) 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -.5px;
}

.cta-inner p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 36px;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Decorative dots */
.cta-banner::before,
.cta-banner::after {
  content: '';
  position: absolute;
  z-index: 1;
  width: 120px;
  height: 120px;
  border: 2px dashed rgba(192, 152, 64, .15);
  border-radius: 50%;
}

.cta-banner::before {
  top: 30px;
  left: 5%;
}

.cta-banner::after {
  bottom: 20px;
  right: 8%;
  width: 80px;
  height: 80px;
}

/* ---------- FAQ ---------- */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.faq-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-lg);
}

.faq-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.faq-img:hover img {
  transform: scale(1.04);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.faq-item {
  border: 1px solid var(--ivory);
  border-radius: var(--r);
  overflow: hidden;
  transition: .35s var(--ease);
  background: var(--white);
}

.faq-item:hover {
  border-color: var(--stone);
  box-shadow: var(--shadow-xs);
}

.faq-item.active {
  border-color: var(--green);
  box-shadow: 0 4px 20px rgba(21, 51, 42, .06);
  background: var(--cream);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  background: none;
  border: none;
  text-align: left;
  font-size: .93rem;
  font-weight: 600;
  color: var(--dark);
  gap: 14px;
  transition: .3s;
}

.faq-q:hover {
  color: var(--green);
}

.faq-q svg {
  flex-shrink: 0;
  stroke: var(--stone);
  transition: .35s var(--ease);
}

.faq-item.active .faq-q {
  color: var(--green);
}

.faq-item.active .faq-q svg {
  transform: rotate(180deg);
  stroke: var(--green);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.faq-a-in {
  padding: 0 22px 20px;
  font-size: .9rem;
  color: var(--warm);
  line-height: 1.85;
}

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.ci-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 32px;
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.ci-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 14px;
  background: var(--gradient-card);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px rgba(21, 51, 42, .15);
}

.ci-icon svg {
  stroke: var(--gold-l);
}

.ci strong {
  font-size: .88rem;
  color: var(--dark);
  display: block;
  margin-bottom: 2px;
}

.ci span,
.ci a {
  font-size: .84rem;
  color: var(--warm);
  transition: .3s;
}

.ci a:hover {
  color: var(--green);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--ivory);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-card);
}

.contact-form h3 {
  font-family: var(--ff-h);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fg {
  margin-bottom: 16px;
}

.fg label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--warm);
  margin-bottom: 7px;
  letter-spacing: .3px;
}

.fg input,
.fg textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--ivory);
  border-radius: var(--r);
  font-size: .88rem;
  color: var(--dark);
  background: var(--cream);
  transition: .35s var(--ease);
  outline: none;
  font-family: var(--ff);
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--stone);
}

.fg input:focus,
.fg textarea:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(21, 51, 42, .05);
}

.fg textarea {
  resize: vertical;
  min-height: 100px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, .55);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.f-brand .logo {
  margin-bottom: 14px;
  color: var(--white);
}

.f-brand .logo-text em {
  color: rgba(255, 255, 255, .35);
}

.f-brand p {
  font-size: .84rem;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 12px;
  color: rgba(255, 255, 255, .4);
}

.f-col h5 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 16px;
}

.f-col a,
.f-col p {
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, .4);
  transition: .3s;
  margin-bottom: 9px;
  line-height: 1.6;
}

.f-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 22px 0;
  text-align: center;
}

.disclaimer {
  font-size: .66rem;
  color: rgba(255, 255, 255, .22);
  max-width: 820px;
  margin: 0 auto 10px;
  line-height: 1.55;
}

.copy {
  font-size: .76rem;
  color: rgba(255, 255, 255, .3);
}

.copy a {
  color: var(--gold-l);
  transition: .3s;
}

.copy a:hover {
  color: var(--gold);
}

/* ---------- WHATSAPP ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .3);
  transition: .35s var(--ease);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, .2);
  animation: waRing 3s infinite;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .4);
}

@keyframes waRing {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.2);
    opacity: 0
  }
}

/* ---------- ANIMATIONS ---------- */
.anim-up {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .7s ease, transform .7s var(--ease);
}

.anim-up.vis {
  opacity: 1;
  transform: translateY(0);
}

.anim-l {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .7s ease, transform .7s var(--ease);
}

.anim-l.vis {
  opacity: 1;
  transform: translateX(0);
}

.anim-r {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .7s ease, transform .7s var(--ease);
}

.anim-r.vis {
  opacity: 1;
  transform: translateX(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img {
    max-width: 540px;
    margin: 0 auto;
  }

  .stat-tiles {
    grid-template-columns: repeat(3, 1fr);
  }

  .amenity-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .loc-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-img {
    position: static;
    max-width: 540px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media(max-width:768px) {
  .container {
    padding: 0 20px;
  }

  .section {
    padding: 80px 0;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    flex-direction: column;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(20px);
    padding: 100px 36px 40px;
    gap: 20px;
    transition: .4s var(--ease);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .08);
  }

  .nav.open {
    right: 0;
  }

  .nav.open .nav-link {
    color: var(--charcoal);
  }

  .nav.open .btn-nav {
    background: var(--green);
    color: var(--white);
    border: none;
  }

  .hero-title {
    font-size: 2.4rem;
    letter-spacing: -.5px;
  }

  .hero-pills {
    flex-direction: column;
    border-radius: var(--r);
    padding: 8px;
  }

  .pill {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
  }

  .pill strong {
    display: inline;
    font-size: 1rem;
    margin: 0;
  }

  .highlights-row {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .hl {
    flex-shrink: 0;
  }

  .stat-tiles {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-cards {
    grid-template-columns: 1fr;
  }

  .ac img {
    height: 240px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gal-tall,
  .gal-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .loc-cards {
    grid-template-columns: 1fr;
  }

  .price-counters,
  .price-cards {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .cta-banner {
    padding: 70px 0;
  }

  .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-btns .btn {
    justify-content: center;
  }

  .about-img img {
    height: 340px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stat-tiles {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-body {
  top: 90px;
}

.logo img {
  border-radius: 10px;
  width: 120px;
}