/* =========================================
   CSS VARIABLES & RESET
========================================= */
:root {
  --gold: #C8973A;
  --gold-light: #E8C97A;
  --gold-pale: #FAF3E0;
  --gold-dark: #A67828;
  --white: #FFFFFF;
  --grey-50: #FAFAFA;
  --grey-100: #F4F4F4;
  --grey-200: #E8E8E8;
  --grey-400: #A0A0A0;
  --grey-600: #6B6B6B;
  --grey-800: #2D2D2D;
  --dark: #1A1A1A;
  --green: #2D6A4F;
  --green-light: #52B788;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.13);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--grey-800);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* =========================================
   STICKY HEADER
========================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header-logo {
  display: flex; align-items: center; gap: 10px;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.logo-text { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.25rem; color: var(--dark); line-height: 1.1; }
.logo-text span { font-size: 0.7rem; font-family: 'DM Sans', sans-serif; font-weight: 400; color: var(--grey-600); display: block; letter-spacing: 0.08em; }
.header-cta {
  display: flex; align-items: center; gap: 10px;
}
.btn-call-header {
  display: flex; align-items: center; gap: 7px;
  background: var(--green); color: white;
  padding: 9px 18px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-call-header:hover { background: var(--green-light); transform: scale(1.03); }
.btn-wa-header {
  display: flex; align-items: center; gap: 7px;
  background: #25D366; color: white;
  padding: 9px 18px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-wa-header:hover { background: #1ebe5a; transform: scale(1.03); }
.header-nav { display: flex; align-items: center; gap: 22px; }
.header-nav a { font-size: 0.88rem; font-weight: 500; color: var(--grey-600); transition: color 0.2s; }
.header-nav a:hover { color: var(--gold-dark); }

/* =========================================
   HERO SECTION
========================================= */
.hero {
  margin-top: 68px;
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(26,26,26,0.72) 0%, rgba(26,26,26,0.45) 60%, rgba(200,151,58,0.18) 100%),
    url('../images/banner.jpg') center/cover no-repeat;
  transform: scale(1.03);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-overlay-pattern {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.015) 60px,
    rgba(255,255,255,0.015) 61px
  );
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px 60px;
  display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center;
}
.hero-badges {
  display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,151,58,0.92); color: white;
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}
.badge.green { background: rgba(45,106,79,0.92); }
.badge.urgent { background: rgba(220,50,50,0.88); }
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: white;
  line-height: 1.18;
  margin-bottom: 16px;
  animation: fadeUp 0.7s ease 0.2s both;
}
.hero-headline .gold { color: var(--gold-light); }
.hero-subline {
  font-size: 1.08rem; color: rgba(255,255,255,0.85);
  max-width: 540px; margin-bottom: 32px;
  font-weight: 400; line-height: 1.7;
  animation: fadeUp 0.7s ease 0.3s both;
}
.hero-cta-row {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp 0.7s ease 0.4s both;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(200,151,58,0.45);
  transition: var(--transition); border: none; cursor: pointer;
  white-space: nowrap;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,151,58,0.55); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); color: white;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(8px);
  transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.hero-stats {
  display: flex; gap: 28px; margin-top: 40px;
  animation: fadeUp 0.7s ease 0.5s both;
}
.hero-stat { text-align: left; }
.hero-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold-light); line-height: 1; }
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.75); font-weight: 500; margin-top: 2px; }

/* HERO FORM CARD */
.hero-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  animation: fadeLeft 0.8s ease 0.3s both;
}
@keyframes fadeLeft { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 700; color: var(--dark); margin-bottom: 4px;
}
.form-sub { font-size: 0.85rem; color: var(--grey-600); margin-bottom: 20px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--grey-600); margin-bottom: 5px; letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input,
.form-group select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: 10px; font-size: 0.92rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark); background: var(--grey-50);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,151,58,0.12);
}
.form-cta-row { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.btn-form-primary {
  width: 100%; padding: 13px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; border: none; border-radius: 10px;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.btn-form-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-form-wa {
  width: 100%; padding: 13px;
  background: #25D366; color: white;
  border: none; border-radius: 10px;
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'DM Sans', sans-serif;
}
.btn-form-wa:hover { background: #1ebe5a; transform: translateY(-1px); }
.form-privacy { font-size: 0.75rem; color: var(--grey-400); text-align: center; margin-top: 10px; }

/* =========================================
   TRUST BAR
========================================= */
.trust-bar {
  background: var(--gold-pale);
  border-top: 1.5px solid rgba(200,151,58,0.18);
  border-bottom: 1.5px solid rgba(200,151,58,0.18);
  padding: 18px 24px;
}
.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 600; color: var(--grey-800); }
.trust-item .icon { font-size: 1.1rem; }

/* =========================================
   SECTIONS GENERAL
========================================= */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--gold-dark);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.section-label::before, .section-label::after {
  content: ''; height: 1.5px; background: var(--gold-light); flex: 0 0 30px;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--dark);
  line-height: 1.2; margin-bottom: 14px;
}
.section-sub { font-size: 1rem; color: var(--grey-600); max-width: 540px; margin: 0 auto 50px; }

/* =========================================
   PROPERTY CARDS
========================================= */
.properties { background: var(--grey-50); }
.properties-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 22px;
}
.prop-card {
  background: white; border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--grey-200);
  display: flex; flex-direction: column;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.prop-img { position: relative; overflow: hidden; height: 175px; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.prop-card:hover .prop-img img { transform: scale(1.06); }
.prop-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: white;
  font-size: 0.72rem; font-weight: 700;
  padding: 3px 10px; border-radius: 50px;
  letter-spacing: 0.04em;
}
.prop-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.prop-type { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--grey-400); margin-bottom: 4px; }
.prop-name { font-family: 'Cormorant Garamond', serif; font-size: 1.22rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; line-height: 1.2; }
.prop-price { font-size: 1.05rem; font-weight: 700; color: var(--gold-dark); margin-bottom: 12px; }
.prop-feats { list-style: none; margin-bottom: 16px; flex: 1; }
.prop-feats li { font-size: 0.8rem; color: var(--grey-600); display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.prop-feats li::before { content: '✓'; color: var(--green-light); font-weight: 700; }
.btn-enquire {
  display: block; width: 100%; text-align: center;
  padding: 10px; background: var(--dark); color: white;
  border-radius: 8px; font-weight: 600; font-size: 0.85rem;
  transition: var(--transition); border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}
.btn-enquire:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* =========================================
   GALLERY
========================================= */
.gallery { background: white; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: 12px; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item::after {
  content: '🔍'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  background: rgba(200,151,58,0.18); color: white;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

/* =========================================
   AMENITIES
========================================= */
.amenities { background: var(--grey-50); }
.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.amenity-card {
  background: white; border-radius: var(--radius);
  padding: 22px 16px; text-align: center;
  border: 1.5px solid var(--grey-200);
  transition: var(--transition);
  cursor: default;
}
.amenity-card:hover {
  border-color: var(--gold); background: var(--gold-pale);
  transform: translateY(-4px); box-shadow: var(--shadow-sm);
}
.amenity-icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.amenity-name { font-size: 0.82rem; font-weight: 600; color: var(--grey-800); line-height: 1.3; }

/* =========================================
   LOCATION
========================================= */
.location { background: white; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.location-points { list-style: none; }
.location-point {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--grey-200);
}
.location-point:last-child { border-bottom: none; }
.loc-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--gold-pale); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.loc-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--dark); margin-bottom: 2px; }
.loc-text span { font-size: 0.82rem; color: var(--grey-600); }
.map-embed {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 400px;
  border: 2px solid var(--grey-200);
}
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* =========================================
   PRICING
========================================= */
.pricing { background: var(--dark); }
.pricing .section-heading { color: white; }
.pricing .section-label { color: var(--gold-light); }
.pricing .section-label::before, .pricing .section-label::after { background: var(--gold-dark); }
.pricing .section-sub { color: rgba(255,255,255,0.65); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px; margin-bottom: 40px;
}
.price-card {
  background: rgba(255,255,255,0.06); border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 24px 20px;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.price-card:hover { background: rgba(200,151,58,0.1); border-color: var(--gold); transform: translateY(-4px); }
.price-card.featured { background: rgba(200,151,58,0.12); border-color: var(--gold); }
.price-type { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-light); font-weight: 700; margin-bottom: 10px; }
.price-name { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; color: white; margin-bottom: 6px; }
.price-amount { font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.price-note { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.pricing-offers {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 32px;
}
.offer-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,151,58,0.15); border: 1.5px solid rgba(200,151,58,0.35);
  color: var(--gold-light); padding: 9px 18px; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600;
}
.pricing-cta { text-align: center; }
.btn-download {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  box-shadow: 0 4px 24px rgba(200,151,58,0.4);
  transition: var(--transition); cursor: pointer; border: none;
  font-family: 'DM Sans', sans-serif;
}
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(200,151,58,0.55); }

/* =========================================
   TESTIMONIALS
========================================= */
.testimonials { background: var(--grey-50); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.testi-card {
  background: white; border-radius: var(--radius);
  padding: 26px 24px;
  border: 1.5px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 0.92rem; color: var(--grey-600); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--gold-dark);
}
.testi-name strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.testi-name span { font-size: 0.78rem; color: var(--grey-400); }

/* =========================================
   CONTACT SECTION
========================================= */
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info-list { margin-top: 28px; }
.contact-info-item {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--grey-200);
}
.contact-info-item:last-child { border: none; }
.ci-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.ci-text strong { display: block; font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.ci-text a { font-size: 1rem; font-weight: 700; color: var(--gold-dark); transition: color 0.2s; }
.ci-text a:hover { color: var(--dark); }
.contact-form-card {
  background: var(--grey-50); border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1.5px solid var(--grey-200);
}

/* =========================================
   FOOTER CTA BAND
========================================= */
.footer-cta-band {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 48px 24px;
  text-align: center;
}
.footer-cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: white; font-weight: 700; margin-bottom: 10px;
}
.footer-cta-band p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 28px; }
.footer-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--gold-dark);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition);
}
.btn-cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-cta-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.2); color: white;
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.btn-cta-dark:hover { background: rgba(0,0,0,0.35); transform: translateY(-2px); }

/* =========================================
   FOOTER
========================================= */
footer {
  background: var(--dark); color: white;
  padding: 50px 24px 24px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 12px; }
.footer-col h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; color: var(--gold-light); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.25); margin-top: 12px; line-height: 1.6; }

/* =========================================
   FLOATING BUTTONS
========================================= */
.floating-wa {
  position: fixed; bottom: 26px; right: 24px; z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.55);
  transition: var(--transition); cursor: pointer;
  text-decoration: none;
}
.floating-wa:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.65); }
.floating-wa svg { width: 30px; height: 30px; fill: white; }
.floating-call {
  position: fixed; bottom: 96px; right: 24px; z-index: 9999;
  width: 58px; height: 58px;
  background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(45,106,79,0.45);
  transition: var(--transition); cursor: pointer;
  text-decoration: none;
}
.floating-call:hover { transform: scale(1.1); background: var(--green-light); }
.floating-call svg { width: 26px; height: 26px; fill: white; }
.pulse-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse { 0% { opacity: 0.9; transform: scale(1); } 100% { opacity: 0; transform: scale(1.5); } }

/* =========================================
   ANIMATIONS
========================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 460px; }
  .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-nav { display: none; }
}
@media (max-width: 600px) {
  section { padding: 56px 18px; }
  .hero-content { padding: 50px 18px 40px; }
  .hero-stats { gap: 18px; }
  .btn-call-header span { display: none; }
  .btn-wa-header span { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: 1; }
  .gallery-item { height: 200px; }
  .footer-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   MODAL
========================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 30px; max-width: 440px; width: 100%;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9); transition: transform 0.3s;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--grey-100); border: none; border-radius: 50%;
  width: 32px; height: 32px; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--grey-200); }
.modal-box { position: relative; }

/* counter badge */
.counter-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #FFF3CD; border: 1.5px solid #FFD700;
  color: #8B6914; padding: 7px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
