/* ===== ROOT VARIABLES ===== */
:root {
  --green-dark: #1a3c2e;
  --green-mid: #2d6a4f;
  --green-light: #52b788;
  --gold: #c9a84c;
  --gold-light: #f0c96e;
  --white: #ffffff;
  --off-white: #f8f6f0;
  --text-dark: #1a1a1a;
  --text-gray: #555;
  --border: #e0ddd5;
  --shadow: rgba(0,0,0,0.15);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::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-dark); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 3px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}
.top-bar a { color: var(--gold-light); transition: var(--transition); }
.top-bar a:hover { color: var(--white); }
.top-bar-right { display: flex; gap: 20px; align-items: center; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px var(--shadow);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 70px;
  max-width: 1400px;
  margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 50px;
  height: 50px;
   background: var(--green-dark); 
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.4rem;
}
.logo-text { line-height: 1.1; }
.logo-text .brand { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--green-dark); }
.logo-text .sub { font-size: 0.7rem; color: var(--text-gray); letter-spacing: 2px; text-transform: uppercase; }
.logo-text .location { font-size: 0.7rem; color: var(--gold); font-weight: 600; }

/* NAV */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav a:hover, .nav a.active { background: var(--green-dark); color: var(--white); }

/* HEADER CTA */
.header-cta { display: flex; align-items: center; gap: 10px; }
.btn-price {
  background: var(--green-dark);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-price:hover { background: var(--green-mid); }
.btn-call {
  background: var(--gold);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.btn-call:hover { background: var(--gold-light); color: var(--text-dark); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--green-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SLIDER ===== */
.hero { position: relative; height: 92vh; min-height: 520px; overflow: hidden; }
.slider { width: 100%; height: 100%; position: relative; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
  background-image: url('../savaliyasky_bg_1.png');
  background-repeat: no-repeat;
  background-position: 100%;
  
}
.slide2{
  background-image: url('../savaliyasky_bg2.png');
  background-repeat: no-repeat;
  background-position: 100%;
}

.slide3{
  background-image: url('../savaliyasky_bg.png');
  background-repeat: no-repeat;
  background-position: 100%;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

/* HERO CONTENT CARD */
.hero-card {
  position: absolute;
  left: 30px;
  top: 45%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 28px 26px;
  width: 355px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  border-top: 4px solid var(--gold);
  animation: slideInLeft 0.8s ease forwards;
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateY(-50%) translateX(-30px); }
  to   { opacity: 1; transform: translateY(-50%) translateX(0); }
}
.booking-badge {
  background: var(--green-dark);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
}
.hero-card h1 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--green-dark);
  margin-bottom: 6px;
}
.hero-card .by {
  font-size: 0.8rem;
  color: var(--text-gray);
  margin-bottom: 12px;
}
.hero-card .by strong { color: var(--green-dark); }
.rating { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.stars { color: #f4c430; font-size: 0.9rem; }
.rating-text { font-size: 0.78rem; color: var(--text-gray); }
.specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.spec-item { }
.spec-label { font-size: 0.68rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 0.5px; }
.spec-value { font-size: 0.88rem; font-weight: 700; color: var(--green-dark); }
.offers-box {
  border: 1.5px dashed var(--green-mid);
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 18px;
  background: #f0faf4;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.8;
  color: var(--green-dark);
}
.offers-box strong { display: block; color: var(--green-mid); }
.price-display { text-align: center; margin-bottom: 18px; }
.price-label { font-size: 0.75rem; color: var(--text-gray); }
.price-value { font-size: 1.6rem; font-weight: 800; color: var(--green-dark); font-family: var(--font-heading); }
.price-suffix { font-size: 0.8rem; color: var(--text-gray); }
.btn-brochure {
  width: 100%;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-brochure:hover { background: var(--green-mid); transform: translateY(-2px); }

/* SLIDER CONTROLS */
.slider-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid rgba(255,255,255,0.8);
}
.dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.3); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--gold); border-color: var(--gold); }
.arrow-prev { left: 20px; }
.arrow-next { right: 20px; }

/* ===== RIGHT QUOTE FORM ===== */
.quote-panel {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.97);
  border-radius: 16px;
  padding: 24px 22px;
  width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.quote-panel h3 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--green-dark);
  margin-bottom: 16px;
}
.btn-instant-call {
  width: 100%;
  background: #e8f5e9;
  border: 2px solid var(--green-mid);
  color: var(--green-dark);
  padding: 10px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-instant-call:hover { background: var(--green-dark); color: var(--white); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 12px; }
.form-input, .form-select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(45,106,79,0.1); }
.phone-row { display: flex; gap: 8px; }
.phone-row .form-select { width: 110px; flex-shrink: 0; }
.phone-row .form-input { flex: 1; }
.btn-submit {
  width: 100%;
  background: var(--green-dark);
  color: var(--white);
  padding: 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,60,46,0.3); }
.btn-submit.loading { pointer-events: none; opacity: 0.8; }
.form-msg { text-align: center; padding: 8px; border-radius: 8px; font-size: 0.82rem; margin-top: 10px; display: none; }
.form-msg.success { background: #e8f5e9; color: #2e7d32; display: block; }
.form-msg.error { background: #ffebee; color: #c62828; display: block; }

/* ===== POPUP MODAL ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  backdrop-filter: blur(4px);
}
.popup-overlay.show { opacity: 1; pointer-events: all; }
.popup-box {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
  max-width: 700px;
  display: flex;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: scale(0.9);
  transition: transform 0.4s ease;
  position: relative;
}
.popup-overlay.show .popup-box { transform: scale(1); }
.popup-left {
  background: var(--green-dark);
  color: var(--white);
  padding: 40px 30px;
  width: 240px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.popup-logo { font-family: var(--font-heading); font-size: 1.2rem; margin-bottom: 6px; color: var(--gold-light); }
.popup-project { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; margin-bottom: 30px; }
.promise-item { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; text-align: left; }
.promise-icon { font-size: 1.4rem; flex-shrink: 0; }
.promise-text { font-size: 0.82rem; line-height: 1.3; }
.popup-phone-bar {
  background: var(--gold);
  color: var(--white);
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: auto;
  border-radius: 10px;
}
.popup-right { flex: 1; padding: 40px 30px; }
.popup-right h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.popup-right p { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 24px; }
.popup-right p span { color: var(--gold); font-weight: 700; }
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.1);
  border: none;
  color: var(--text-dark);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}
.popup-close:hover { background: var(--green-dark); color: var(--white); }

/* ===== CHAT WIDGET ===== */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.chat-bubble {
  background: var(--white);
  border-radius: 14px 14px 0 14px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  max-width: 220px;
  border: 1px solid var(--border);
  animation: bounceIn 0.5s ease 2s both;
}
@keyframes bounceIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-bubble p { font-size: 0.82rem; color: var(--text-gray); }
.chat-bubble strong { color: var(--text-dark); display: block; margin-bottom: 4px; }
.btn-chat {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}
.btn-chat:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(201,168,76,0.5); }
.chat-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-dark);
  border: 3px solid var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold);
  cursor: pointer;
  transition: var(--transition);
}
.chat-avatar:hover { transform: scale(1.1); }

/* ===== FLOATING BOTTOM BAR (mobile) ===== */
.float-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--green-dark);
  padding: 10px 16px;
  z-index: 800;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.float-bar a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.float-bar a.cta { background: var(--gold); }

/* ===== SECTIONS ===== */
.section { padding: 80px 30px; }
.section-alt { background: var(--off-white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-tag {
  display: inline-block;
  background: var(--green-dark);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--green-dark);
  margin-bottom: 12px;
}
.section-sub { font-size: 1rem; color: var(--text-gray); max-width: 600px; margin: 0 auto; }

/* HIGHLIGHTS */
.highlights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.highlight-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.highlight-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); border-color: var(--green-light); }
.highlight-icon { font-size: 3.4rem; margin-bottom: 14px; }
.highlight-value { font-family: var(--font-heading); font-size: 1.8rem; color: var(--green-dark); font-weight: 700; }
.highlight-label { font-size: 0.82rem; color: var(--text-gray); margin-top: 4px; }

/* FLOOR PLANS */
.plans-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 32px; flex-wrap: wrap; }
.plan-tab {
  padding: 10px 24px;
  border-radius: 30px;
  border: 2px solid var(--green-dark);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--green-dark);
  background: var(--white);
}
.plan-tab.active, .plan-tab:hover { background: var(--green-dark); color: var(--white); }
.plan-content { display: none; }
.plan-content.active { display: block; }
.plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.plan-img {
  border-radius: 16px;
  overflow: hidden;
  background: var(--off-white);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--border);
  border: 2px solid var(--border);
}
.plan-details h3 { font-family: var(--font-heading); font-size: 1.6rem; color: var(--green-dark); margin-bottom: 16px; }
.plan-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
.plan-spec { background: var(--off-white); border-radius: 10px; padding: 14px; }
.plan-spec-label { font-size: 0.72rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 0.5px; }
.plan-spec-value { font-size: 1.1rem; font-weight: 700; color: var(--green-dark); margin-top: 4px; }
.plan-price { font-size: 1.4rem; font-weight: 800; color: var(--gold); font-family: var(--font-heading); margin-bottom: 20px; }

/* AMENITIES */
.amenities-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.amenity-card {
  text-align: center;
  padding: 24px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.amenity-card:hover { background: var(--green-dark); color: var(--white); transform: translateY(-4px); }
.amenity-card:hover .amenity-label { color: var(--white); }
.amenity-icon { font-size: 3.5rem; margin-bottom: 10px; }
.amenity-label { font-size: 1rem; color: var(--text-gray); font-weight: 600; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 16px; }
.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--off-white);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--border);
  border: 2px solid var(--border);
  transition: var(--transition);
}
.gallery-item:hover { border-color: var(--green-light); transform: scale(1.02); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }

/* LOCATION */
.location-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.location-map {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--off-white);
}
.location-map iframe { width: 100%; height: 100%; border: none; }
.location-points { display: flex; flex-direction: column; gap: 16px; }
.location-point {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: var(--transition);
}
.location-point:hover { border-color: var(--green-light); box-shadow: 0 4px 15px rgba(0,0,0,0.08); }
.loc-icon { font-size: 1.5rem; width: 44px; height: 44px; background: var(--off-white); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.loc-info .loc-name { font-weight: 700; font-size: 0.9rem; color: var(--green-dark); }
.loc-info .loc-dist { font-size: 0.8rem; color: var(--text-gray); margin-top: 2px; }

/* CONTACT SECTION */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.contact-info h3 { font-family: var(--font-heading); font-size: 1.8rem; color: var(--green-dark); margin-bottom: 20px; }
.contact-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-icon { font-size: 1.3rem; width: 44px; height: 44px; background: var(--off-white); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item h4 { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 2px; }
.contact-item p { font-weight: 700; color: var(--green-dark); font-size: 0.95rem; }
.contact-form-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}
.contact-form-box h3 { font-family: var(--font-heading); font-size: 1.4rem; color: var(--green-dark); margin-bottom: 24px; }

/* FOOTER */
.footer { background: var(--green-dark); color: var(--white); padding: 50px 30px 20px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.85rem; opacity: 0.7; margin: 14px 0; line-height: 1.7; }
.footer h4 { font-size: 0.95rem; font-weight: 700; color: var(--gold-light); margin-bottom: 16px; letter-spacing: 0.5px; }
.footer ul li { margin-bottom: 10px; font-size: 0.85rem; opacity: 0.7; cursor: pointer; transition: var(--transition); }
.footer ul li:hover { opacity: 1; color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; opacity: 0.6; flex-wrap: wrap; gap: 10px; }
.disclaimer { font-size: 0.72rem; opacity: 0.5; margin-top: 20px; line-height: 1.6; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
  .quote-panel { display: none; }
}

@media (max-width: 900px) {
  .nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; border-top: 1px solid var(--border); box-shadow: 0 10px 30px var(--shadow); z-index: 999; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 16px; font-size: 0.95rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .hamburger { display: flex; }
  .btn-price { display: none; }
  .hero { height: 100vh; }
  .hero-card { width: 260px; padding: 22px; }
  .hero-card h1 { font-size: 1.4rem; }
  .plan-grid { grid-template-columns: 1fr; }
  .location-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-card { left: 16px; right: 16px; width: auto; top: auto; bottom: 80px; transform: none; animation: none; }
  .slider-arrow { display: none; }
  .section { padding: 50px 16px; }
  .section-title { font-size: 1.7rem; }
  .highlights-grid { grid-template-columns: 1fr 1fr; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .chat-widget { bottom: 80px; }
  .float-bar { display: flex; }
  .top-bar { display: none; }
  .header-cta .btn-call span { display: none; }
  .popup-box { flex-direction: column; }
  .popup-left { width: 100%; padding: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* shivam code */

/* ===== TICKER / MARQUEE ===== */
.ticker-wrapper {
  background: linear-gradient(90deg, #1a3c2e 0%, #2d6a4f 40%, #1a3c2e 100%);
  overflow: hidden;
  padding: 0;
  border-top: 2px solid #c9a84c;
  border-bottom: 2px solid #c9a84c;
  position: relative;
  z-index: 100;
}

/* Fade edges left & right */
.ticker-wrapper::before,
.ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #1a3c2e, transparent);
}
.ticker-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #1a3c2e, transparent);
}

.ticker-track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 45s linear infinite;
  padding: 10px 0;
}

/* Pause on hover */
.ticker-wrapper:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Items */
.ticker-item {
  display: inline-flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 4px 22px;
  border-radius: 30px;
  margin: 0 6px;
  letter-spacing: 0.3px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.ticker-item strong {
  font-weight: 800;
  margin-left: 4px;
}

/* HOT – Booking Open – pulsing red glow */
.ticker-item.hot {
  background: rgba(220, 38, 38, 0.2);
  color: #ff6b6b;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  animation: pulse-hot 2s ease-in-out infinite;
  border: 1px solid rgba(220, 38, 38, 0.4);
}
@keyframes pulse-hot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.3); }
  50%       { box-shadow: 0 0 10px 4px rgba(220,38,38,0.15); }
}

/* PROJECT NAME – gold highlight */
.ticker-item.project {
  background: rgba(201, 168, 76, 0.15);
  color: #f0c96e;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid rgba(201,168,76,0.3);
  letter-spacing: 0.5px;
}

/* PRICE – bright white with gold accent */
.ticker-item.price {
  color: #ffffff;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}
.ticker-item.price::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #c9a84c;
  border-radius: 50%;
  margin-right: 10px;
  flex-shrink: 0;
}

/* OFFER */
.ticker-item.offer {
  color: #a8f0c6;
  background: rgba(82,183,136,0.1);
  border: 1px solid rgba(82,183,136,0.2);
}

/* PHONE – gold & bold */
.ticker-item.phone {
  color: #f0c96e;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  font-size: 0.85rem;
}

/* DEVELOPER */
.ticker-item.dev {
  color: #c8e6c9;
  background: rgba(255,255,255,0.06);
}

/* POSSESSION */
.ticker-item.possession {
  color: #b3e5fc;
  background: rgba(3,169,244,0.08);
  border: 1px solid rgba(3,169,244,0.15);
}

/* RERA */
.ticker-item.rera {
  color: #ffe082;
  background: rgba(255,224,130,0.08);
  border: 1px solid rgba(255,224,130,0.15);
}

/* SEPARATOR */
.ticker-sep {
  color: #c9a84c;
  font-size: 0.75rem;
  margin: 0 8px;
  opacity: 0.6;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ticker-item {
    font-size: 0.78rem;
    padding: 4px 14px;
  }
  .ticker-item.hot,
  .ticker-item.project,
  .ticker-item.phone {
    font-size: 0.78rem;
  }
  .ticker-track {
    animation-duration: 35s;
  }
  .ticker-wrapper::before,
  .ticker-wrapper::after {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .ticker-item {
    font-size: 0.74rem;
    padding: 3px 10px;
    margin: 0 4px;
  }
  .ticker-track {
    animation-duration: 28s;
    padding: 8px 0;
  }
}

