/* =========================================================
   1. VARIABLES & GLOBAL RESET
========================================================= */
:root {
  --green: #145712;   /* ✅ Updated Primary Color */
  --accent: #5fb100;  /* ✅ Updated Accent Color */
  --dark: #2b2b2b;
  --light: #f4f4f4;
  --text: #636363;
  
  /* Z-INDEX HIERARCHY (Strict Layering) */
  --z-back: 0;
  --z-content: 10;
  --z-header: 1000;       
  --z-mobile-menu: 999;  
  --z-floating-cta: 9990;
  --z-scroll-btn: 9995;
  --z-zoho-bot: 9999; 
  --z-popup: 10000;
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: 'Lato', sans-serif; 
}

body { 
  background: #fff; 
  color: var(--text); 
  overflow-x: visible; 
}

img { 
  max-width: 100%; 
  display: block; 
}

a { 
  text-decoration: none; 
  transition: 0.3s ease; 
}

ul { 
  list-style: none; 
}

.container { 
  width: 92%; 
  max-width: 1200px; 
  margin: auto; 
}

.section { 
  padding: 20px 0; 
}

/* ============================
   FINAL CENTERED H2 + SHIMMER
============================ */
.section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--green);  /* ✅ Now uses #1560BD */
  margin-bottom: 50px;
  
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 12px;
}

/* Reveal Animation */
.section.reveal.visible h2::after {
  width: 100%;
  animation: shimmer 2s ease-in-out 3s forwards;
}

/* =========================================================
   2. STICKY HEADER (FIXED MOBILE VIEW)
========================================================= */

.sticky-header {
  position: fixed !important;
  top: 0; left: 0;
  width: 100%;
  background: var(--green);
  padding: 12px 0;
  z-index: var(--z-header);
  transition: all 0.25s ease-in-out;
  box-shadow: 0 0 0 rgba(0,0,0,0);
}

.sticky-header.scrolled {
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
}

/* Flex Container for Logo/Menu/CTA */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap;
}

.header .logo,
.sticky-header .logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

/* Desktop Menu */
.desktop-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-menu a {
  position: relative;
  padding-bottom: 6px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.desktop-menu a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px rgba(144, 224, 239, 0.8);
}

.desktop-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  transform: translateX(-50%);
  transition: width 0.35s ease;
  border-radius: 2px;
}

.desktop-menu a:hover::after,
.desktop-menu a.active::after {
  width: 100%;
}

/* =========================================================
   Mobile Menu Toggle
========================================================= */

.menu-toggle {
  display: none;
  font-size: 26px !important;
  font-weight: 100 !important;
  color: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle.active {
  transform: rotate(90deg);
  font-size: 45px !important;
  font-weight: 300 !important;
  opacity: 0.9;
}

/* =========================================================
   MOBILE MENU CONTAINER
========================================================= */

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--green);
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100vh - 70px);   /* Full visible area */
  padding: 15px 20px 140px;     /* Bottom padding so CTA doesn't overlap */
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* =========================================================
   MOBILE MENU LINKS
========================================================= */

.mobile-menu a {
  color: #ffffff;
  font-size: 10px;                /* Better readability */
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-menu a i {
  width: 25px;
  text-align: center;
  color: var(--accent);
  font-size: 18px;
  transition: transform 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.mobile-menu a:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(144, 224, 239, 0.6));
}

/* =========================================================
   MOBILE MENU LOGO + GOLD DIVIDER
========================================================= */

.mobile-menu-logo {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: -15px 0 0;   /* No gap below FAQ */
  padding: 0;
  border: none !important;
}

.mobile-menu-logo img {
  height: 90px;
  width: auto;
  display: block;     /* Removes inline-image spacing */
}

.mobile-menu-divider-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0;          /* Remove gap ABOVE AND BELOW */
  padding: 0;
  line-height: 0;     /* Removes invisible whitespace */
}

.mobile-menu-divider {
  width: 100%;
  display: block;
  margin: -90px 0 0;   /* Pull divider upward to touch logo */
  padding: 0;
}


/* =========================================================
   Glass Header CTA Button
========================================================= */

.glass-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border-radius: 50px;
  background: rgba(21, 96, 189, 0.25);
  border: 1.5px solid rgba(144, 224, 239, 0.6);
  backdrop-filter: blur(12px) saturate(180%);
  color: var(--light);
  font-size: 20px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 18px var(--accent);
  animation: floatCapsule 4s ease-in-out infinite;
  transition: 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.glass-cta i {
  font-size: 20px;
  color: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent));
}

.glass-cta::after {
  content: "";
  position: absolute;
  height: 140%;
  width: 60%;
  top: -20%;
  left: -100%;
  background: linear-gradient(120deg, transparent 0%, rgba(144,224,239,0.6) 45%, transparent 100%);
  transform: skewX(-25deg);
}

.glass-cta:hover::after {
  animation: shineMove 2s ease-in-out infinite;
  opacity: 1;
}

.glass-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px var(--accent);
}

/* =========================================================
   MOBILE HEADER FIXES
========================================================= */

@media (max-width: 900px) {
  .desktop-menu { display: none; }
  .menu-toggle { display: block; }

  .mobile-menu {
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    padding: 30px;
    z-index: var(--z-mobile-menu);
    overflow-y: auto;
    animation: menuFade 0.35s ease;
    gap: 25px;
  }

  .mobile-menu a {
    color: #000000;
    font-size: 22px;
    font-weight: 700;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0,0,0,0.25);
  }

  .mobile-menu-logo {
    border-bottom: 1px solid rgba(0,0,0,0.25);
  }

  .mobile-menu-gold-divider {
    background: linear-gradient(to right, #d4af37, #f7e3a4, #d4af37);
  }

  @keyframes menuFade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

@media (max-width: 600px) {
  .sticky-header { padding: 5px 0 !important; }
  .logo { height: 34px !important; }
  .glass-cta { padding: 8px 12px; font-size: 15px; gap: 5px; }
  .glass-cta i { font-size: 14px !important; }
  .mobile-menu { top: 50px !important; }

  .header-inner {
    gap: 10px !important;
    align-items: center !important;
    min-height: 50px !important;
  }
}

/* =========================================================
   3. HERO SECTION (Glassmorphism Card)
========================================================= */
.hero { 
  position: relative; 
  width: 100%; 
  height: auto; 
  overflow: hidden; 
  margin-top: 0;
  display: flex;
  flex-direction: column; 
}

.hero-video { 
  width: 100%; 
  height: 90vh; 
  display: block; 
  object-fit: cover; 
}

/* --- RIGHT SIDE: ENQUIRY FORM --- */
.hero-form-box {
  position: absolute; 
  top: 25%; 
  right: 5%; 
  transform: translateY(-50%);
  background: #ffffff; 
  padding: 25px 25px; 
  max-width: 380px; 
  width: 100%;
  border-radius: 14px; 
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  z-index: var(--z-content); 
  border: 2px solid var(--accent); /* ✅ #90E0EF */
  text-align: center;
  overflow: visible;
}

.hero-form-box h3 { 
  font-size: 22px; 
  font-weight: 700; 
  margin-bottom: 15px; 
}

/* --- LEFT SIDE: GLASS OFFER CARD --- */
.hero-offer-card {
  position: absolute;
  top:60%;
  left: 5%; 
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid var(--accent); /* ✅ Accent tint */
  box-shadow: 0 8px 32px 0 rgba(21, 96, 189, 0.25); /* ✅ Primary shadow */
  padding: 25px;
  max-width: 360px; 
  width: 100%;
  border-radius: 20px;
  z-index: var(--z-content);
  text-align: center;
  animation: glassFloat 6s ease-in-out infinite;
}

/* Floating Animation */
@keyframes glassFloat {
  0% { transform: translateY(-50%); box-shadow: 0 8px 32px 0 rgba(21, 96, 189, 0.25); }
  50% { transform: translateY(calc(-50% - 12px)); box-shadow: 0 20px 40px 0 rgba(21, 96, 189, 0.45); }
  100% { transform: translateY(-50%); box-shadow: 0 8px 32px 0 rgba(21, 96, 189, 0.25); }
}

/* Card Typography */
.card-tag { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #444; margin-bottom: 5px; font-weight: 700; }
.card-title { font-size: 24px; font-weight: 900; color: #222; margin-bottom: 2px; text-transform: uppercase; line-height: 1.2; text-shadow: 0 2px 10px rgba(255,255,255,0.8); }
.card-sub { font-size: 15px; color: #333; margin-bottom: 2px; font-weight: 600; }
.card-loc { font-size: 14px; color: #555; margin-bottom: 15px; }

/* Offer Box */
.offer-box-outer {
  background: var(--green); /* ✅ #1560BD */
  padding: 5px; 
  border-radius: 8px;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(21,96,189,0.35);
}

.offer-box-inner {
  border: 1.5px dashed rgba(144,224,239,0.85); /* ✅ Accent dash */
  border-radius: 6px;
  padding: 10px;
  color: #fff;
}

.offer-box-inner h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.offer-box-inner p { font-size: 13px; margin: 0; color: #eaf7fb; }
.small-note { font-size: 11px !important; opacity: 0.9; margin-top: 3px !important; display: block; }

/* Bullet Points */
.offer-bullets { list-style: none; padding: 0; margin: 0; }
.offer-bullets li { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.offer-bullets li:last-child { margin-bottom: 0; }

/* Price Section */
.card-price-sec { margin-top: 15px; margin-bottom: 15px; }
.card-price-sec p { font-size: 13px; color: #444; margin-bottom: 2px; font-weight: 600; }
.card-price-sec h2 { font-size: 26px; font-weight: 900; color: #111; }
.card-price-sec span { font-size: 14px; font-weight: 400; color: #555; }

/* Button */
.offer-btn {
  background: var(--green); /* ✅ #1560BD */
  color: #fff; 
  width: 100%; 
  padding: 12px;
  border-radius: 50px; 
  border: none; 
  font-size: 16px; 
  font-weight: 700;
  cursor: pointer; 
  transition: 0.3s; 
  box-shadow: 0 5px 15px rgba(21,96,189,0.45);
}

.offer-btn:hover { 
  background: var(--accent); /* ✅ #90E0EF */
  color: #000; 
  transform: scale(1.05); 
}

/* =========================================================
   ✅ HERO MOBILE RESPONSIVE FIX
========================================================= */

@media (max-width: 768px) {

  .hero {
    flex-direction: column;
  }

  .hero-video {
    height: 100vh;            /* ✅ Prevents full-screen takeover */
  }

  /* ✅ OFFER CARD MOBILE */
  .hero-offer-card {
    position: relative;
    top: 50px;
    left: unset;
    transform: none;

    margin: -60px auto 20px; /* ✅ Overlap effect without breaking */
    max-width: 92%;
    width: 100%;
    padding: 20px;
    animation: none;        /* ✅ Disable floating on mobile */
    margin-bottom: 25px;
  }

  /* ✅ FORM CARD MOBILE */
  .hero-form-box {
    position: relative;
    top: unset;
    right: unset;
    transform: none;

    margin: 0 auto 20px;
    max-width: 92%;
    width: 100%;
    padding: 22px;
  }

  /* ✅ TYPOGRAPHY SCALE DOWN */
  .card-title { font-size: 22px; }
  .card-sub { font-size: 14px; }
  .card-loc { font-size: 13px; }
  .card-price-sec h2 { font-size: 22px; }

  .offer-bullets li { font-size: 13px; }

  .hero-form-box h3 {
    font-size: 20px;
  }

  .offer-btn {
    font-size: 15px;
    padding: 11px;
  }
}

/* =========================================================
   📱 HERO MOBILE RESPONSIVE — MAX 600PX
========================================================= */
@media (max-width: 600px) {

  /* Reduce video height slightly */
  .hero-video {
    height: 150vh;
  }

  /* Offer Card */
  .hero-offer-card {
    max-width: 94%;
    padding: 18px;
    margin: -90px auto 20px;
    border-radius: 16px;
  }

  /* Form Box */
  .hero-form-box {
    max-width: 94%;
    padding: 20px;
    border-radius: 14px;
  }

  /* Typography */
  .card-title { font-size: 20px; }
  .card-sub { font-size: 13px; }
  .card-loc { font-size: 12px; }

  .offer-bullets li {
    font-size: 12.5px;
  }

  .card-price-sec h2 {
    font-size: 20px;
  }

  /* Button size adjust */
  .offer-btn {
    font-size: 14px;
    padding: 10px;
  }
}

/* ✅ EXTRA SMALL DEVICES (PHONES < 480px) */
@media (max-width: 480px) {

  .hero-video {
    height: 70vh;
  }

  .hero-offer-card {
    padding: 18px;
    margin-bottom: 35px;
  }

  .hero-form-box {
    padding: 18px;
  }

  .card-title {
    font-size: 20px;
  }

  .card-price-sec h2 {
    font-size: 20px;
  }

  .offer-btn {
    font-size: 14px;
    padding: 10px;
  }
}

/* =========================================================
   4. FORM INPUTS & BUTTONS
========================================================= */
.hero-form-box form input[type="text"], 
.hero-form-box form input[type="email"], 
.popup-input, 
#heroMobile, 
#popupMobile {
  width: 100%; 
  padding: 13px 14px; 
  font-size: 15px; 
  margin: 8px 0;
  border-radius: 10px; 
  border: 1.8px solid #d8d8d8; 
  outline: none; 
  transition: 0.25s ease;
}

input:not(.error-field):focus {
  border-color: #90E0EF !important; /* ✅ Accent */
  background: rgba(144, 224, 239, 0.18) !important; /* ✅ Accent tint */
  box-shadow: 0 0 10px rgba(144, 224, 239, 0.55); /* ✅ Accent glow */
}

.hero-form-box button, 
.popup-btn {
  width: 100%; 
  background: var(--green); /* ✅ #1560BD */
  color: #ffffff; 
  border: none; 
  padding: 14px;
  font-size: 16px; 
  font-weight: 800; 
  border-radius: 12px; 
  cursor: pointer;
  margin-top: 12px; 
  transition: 0.3s ease;
}

.hero-form-box button:hover, 
.popup-btn:hover { 
  background: var(--accent); /* ✅ #90E0EF */
  color: #000000; 
}

/* Error States — UNTOUCHED (kept red for UX clarity) */
.error-field {
  border: 2px solid #e63946 !important; 
  background: rgba(255, 229, 229, 0.45) !important;
  backdrop-filter: blur(3px); 
  border-radius: 10px !important;
  animation: errorPulse 0.4s ease-out;
}

.custom-input-error {
  font-size: 13px; 
  font-weight: 700; 
  margin-top: 6px; 
  color: #e63946;
  text-shadow: 0 0 2px rgba(0,0,0,0.12); 
  animation: fadeInError 0.3s ease-in-out;
}

/* =========================================================
   5. PHONE INPUT (INTL-TEL-INPUT)
========================================================= */
/* INTL-TEL-INPUT FIXED SPACING */
.iti {
  width: 100%;
  position: static;
  display: block;
  margin: 8px 0;
  overflow: visible !important;
}

.iti__selected-flag {
  background: #fff !important;
  border-radius: 10px 0 0 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding-left: 10px !important;
  padding-right: 8px !important; /* balanced spacing */
  border-right: 1px solid #dcdcdc;

  width: 85px !important;
  z-index: 10;
}

.iti__flag {
  transform: scale(1.25);
  transform-origin: center;
  opacity: 1 !important;
}

.iti__selected-dial-code {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #333 !important;
  margin-left: 10px !important; /* perfect spacing */
}

/* FIX: Reduce input left padding */
#heroMobile,
#popupMobile {
  padding-left: 88px !important; /* <- new correct value */
  margin: 0 !important;
}

/* Desktop Dropdown - FIX: Removed width: 100% which conflicts with global positioning */
.iti__country-list {
  max-width: 330px;
  min-width: 280px;
  border-radius: 0 0 10px 10px; 
  max-height: 220px; 
  overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  background: #fff;
  z-index: 10005;
  margin-top: 4px;
  border: 1px solid #e0e0e0;
}
.iti__country { padding: 10px 12px; font-size: 14px !important; color: #111 !important; border-bottom: 1px solid #f4f4f4; }
.iti__country:hover, .iti__country.iti__highlight { background: #f2f2f2 !important; color: #000 !important; }


.overview-sub { 
  text-align: center; 
  font-size: 18px; 
  font-weight: 500; 
  color: #444; 
  margin-bottom: 35px; 
}

.overview-grid {
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 22px;
  justify-items: center; 
  align-items: center;
  width: 100%; 
  margin-top: 20px;
  margin-bottom: 20px;
}

.overview-card {
  width: 100%; 
  max-width: 260px; 
  position: relative; 
  height: 160px;
  border-radius: 18px; 
  overflow: visible; 
  cursor: pointer;
  background: linear-gradient(180deg, var(--accent), var(--green));
  display: flex; 
  justify-content: center; 
  align-items: center; 
  padding: 20px; 
  transition: 0.45s ease;
}

.overview-card::before {
  content: ""; 
  position: absolute; 
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 75%); 
  z-index: 1;
}

.overview-icon {
  position: absolute; 
  top: 30px; 
  left: 50%; 
  transform: translateX(-50%);
  font-size: 40px; 
  z-index: 3;
  background: linear-gradient(135deg, #90E0EF, #c8f5ff, #1560BD); /* ✅ ACCENT + PRIMARY */
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.5)); 
  transition: 0.35s ease;
}

.overview-card h3 {
  position: absolute; 
  bottom: 22px; 
  left: 50%; 
  transform: translateX(-50%);
  text-align: center; 
  width: 80%; 
  z-index: 3; 
  color: #ffffff; 
  font-size: 18px;
  font-weight: 800; 
  text-shadow: 0 3px 6px rgba(0,0,0,0.6);
}

.overview-card:hover { 
  transform: translateY(-10px) scale(1.06); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.38); 
}

.overview-card:hover .overview-icon { 
  transform: translateX(-50%) translateY(-2px) scale(1.1); 
}

/* =========================================================
   7. AMENITIES (3D Flip)
========================================================= */
.amenities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 20px; }

.amenity-card {
  perspective: 1200px; position: relative; transition: transform 0.3s ease; border-radius: 14px;
  transform-style: preserve-3d; --rx: 0deg; --ry: 0deg; transform: rotateX(var(--rx)) rotateY(var(--ry));
}

.amenity-inner {
  position: relative; width: 100%; height: 170px; text-align: center;
  transition: transform 0.7s; transform-style: preserve-3d; border-radius: 14px;
}

.amenity-card:hover .amenity-inner { transform: rotateY(180deg); }
.amenity-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 15px 35px rgba(0,0,0,0.25); }

.amenity-front, .amenity-back {
  position: absolute; inset: 0; backface-visibility: hidden; border-radius: 14px;
  padding: 22px; display: flex; align-items: center; justify-content: center; flex-direction: column;
}

.amenity-front { background: #fff; border: 1px solid rgba(0,0,0,0.08); }

.amenity-front i { 
  font-size: 32px; 
  color: var(--green);   /* ✅ ONLY THIS CHANGED */
  margin-bottom: 10px; 
  transition: 0.35s ease; 
}

.amenity-back { 
  background: var(--green);  /* ✅ ONLY THIS CHANGED */
  color: #fff; 
  transform: rotateY(180deg); 
  font-size: 16px; 
  line-height: 1.5; 
}

.amenity-card:hover::after { 
  content: ""; 
  position: absolute; 
  inset: -2px; 
  border-radius: 16px; 
  background: linear-gradient(115deg, #fce9a3, #ffffff); 
  opacity: 0; 
  filter: blur(10px); 
  z-index: -1; 
}

/* =========================================================
   8. LOCATION & ACCORDION (With Animated Map Container)
========================================================= */
.location-main-section-new { padding: 70px 0; background: #f8f8f8; }

.location-sub { 
  text-align: center; 
  max-width: 780px; 
  margin: 0 auto 40px; 
  font-size: 18px; 
  color: #555; 
}

.location-highlights { 
  display: flex; 
  gap: 18px; 
  margin: 28px 0 35px; 
  flex-wrap: wrap; 
}

/* ===========================================
   HIGHLIGHT BOXES (Same Styles — Just Rewritten)
=========================================== */
.location-highlights { justify-content: center; }

.highlight-box {
  position: relative;
  padding: 12px 18px 12px 48px;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 700;
  color: #333;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  cursor: pointer;
  overflow: hidden;
  animation: highlightFadeIn 0.6s ease forwards;
}

/* Icon inside highlight box */
.highlight-box i {
  position: absolute;
  left: 15px;
  font-size: 22px;
  background: linear-gradient(135deg, #fff9c8, #ffd978, #e2b24b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Animated premium border */
.highlight-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 14px;

  background: linear-gradient(
    45deg, 
    var(--accent) 25px, 
    var(--green) 25px, 
    var(--accent) 25px, 
    var(--green) 25px
  );

  -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  opacity: 0.55;
  animation: borderGlow 3.2s infinite linear;
}


/* --- GRID ALIGNMENT --- */
.location-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 28px; 
  align-items: stretch; 
}

/* Map Wrapper with animation */
.location-map {
  width: 100%;
  height: auto;
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  display: flex;
  animation: none;
  align-self: stretch;
}

/* Iframe */
.location-main-section-new iframe { 
  width: 100%; 
  height: 100% !important; 
  border: 0; 
  opacity: 0; 
  animation: mapFadeIn 0.6s ease forwards; 
}

/* --- ACCORDION STYLES --- */
.accordion-card { 
  background: #fff; 
  border-radius: 14px; 
  overflow: hidden; 
  box-shadow: 0 4px 18px rgba(0,0,0,0.12); 
  margin-bottom: 10px; 
}

.accordion-header { 
  padding: 18px 20px; 
  font-size: 20px; 
  font-weight: 800; 
  display: flex; 
  justify-content: space-between; 
  cursor: pointer; 
  border-bottom: 1px solid #eee; 
  transition: background 0.3s;
}

.accordion-header:hover { background: #fafafa; }

.accordion-body { 
  max-height: 0; 
  opacity: 0; 
  overflow: hidden; 
  padding: 0 20px; 
  transition: all 0.45s ease; 
}

.accordion-card.active .accordion-body { 
  max-height: 1000vh; 
  opacity: 1; 
  padding: 20px 25px 30px 25px;  
}

.accordion-body:hover {
  box-shadow: inset 0 0 25px rgba(242, 194, 26, 0.15); 
  background: linear-gradient(to bottom, #ffffff, #fffef8); 
}

.accordion-card.active .accordion-header .icon { 
  transform: rotate(180deg); 
}

/* --- LIST ITEMS --- */
.accordion-body ul { 
  list-style: disc; 
  padding-left: 20px; 
  margin: 0; 
}

.accordion-body li { 
  margin-bottom: 10px; 
  font-size: 16px; 
  color: #444; 
  line-height: 1.6; 
  cursor: default; 
  transition: all 0.3s ease; 
}

.accordion-body li:last-child { margin-bottom: 2px; }

.accordion-body li:hover { 
  color: var(--accent);          /* ✅ ONLY THIS CHANGED */
  text-shadow: 0 0 1px rgba(0,0,0,0.3); 
  transform: translateX(5px); 
}

/* --- MOBILE STACKING --- */
@media (max-width: 768px) {
  .location-grid { 
    grid-template-columns: 1fr; 
    align-items: flex-start; 
  }

  .location-map {
    height: 320px; 
    min-height: 320px;
    margin-bottom: 20px;
  }

  .location-highlights { 
    flex-direction: column; 
    gap: 14px; 
  }

  .highlight-box { 
    width: 100%; 
    padding-left: 45px; 
  }
}

/* =========================================================
   9. GALLERY (Masonry Desktop / 3D Cylinder Mobile)
========================================================= */
.gallery-title { 
  text-align: center; 
  font-size: 36px; 
  margin-bottom: 30px; 
  color: var(--green); 
  font-weight: 800; 
}

/* DEFAULT DESKTOP MASONRY */
.premium-gallery { columns: 3; column-gap: 20px; }

.g-item {
  margin-bottom: 20px; 
  border-radius: 14px; 
  overflow: hidden; 
  cursor: pointer;
  break-inside: avoid; 
  box-shadow: 0 6px 25px rgba(0,0,0,0.12); 
  position: relative;
  opacity: 1; 
  transform: translateY(0); 
  transition: 0.6s ease;
  background: #fff;
}

.g-item img { 
  width: 100%; 
  transition: 0.5s ease; 
  display: block; 
}

.g-item:hover img { 
  transform: scale(1.08); 
  filter: brightness(1.1); 
}

/* Hover Text Overlay */
.g-hover-text {
  position: absolute; 
  bottom: -25px; 
  left: 50%; 
  transform: translateX(-50%);
  text-align: center; 
  font-size: 22px; 
  font-weight: 800; 
  opacity: 0;
  background: linear-gradient(90deg, #fff7c8, #ffd86b, #f1b93c);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 6px rgba(255,215,130,0.8)); 
  transition: all 0.45s ease; 
  z-index: 3;
}

.g-item::after { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to bottom, transparent 20%, rgba(0,0,0,0.65) 100%); 
  opacity: 0; 
  transition: 0.45s ease; 
  z-index: 2; 
}

.g-item:hover::after { opacity: 1; }
.g-item:hover .g-hover-text { opacity: 1; bottom: 25px; }

/* Custom Heights for Masonry */
.g-item.wide img { height: 220px; object-fit: cover; }
.g-item.tall img { height: 360px; object-fit: cover; }

.gallery-controls { display: none; }

/* --- MOBILE 3D CYLINDER TRANSFORMATION --- */
@media (max-width: 600px) {

.gallery-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  margin-bottom: 15px;
}

/* Reuse the same arrow style we made for Price/Floor */
.nav-arrow {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  background-clip: padding-box !important;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--green);      /* ✅ ONLY THIS CHANGED */
  background: #fff; 
  color: var(--green);                 /* ✅ ONLY THIS CHANGED */
  font-size: 18px; 
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.nav-arrow:hover, 
.nav-arrow:active { 
  background: var(--green);            /* ✅ ONLY THIS CHANGED */
  color: #fff; 
  transform: scale(1.1); 
}

/* Reset Columns for Flex Layout */
.premium-gallery { 
  columns: auto; 
  display: flex; 
  overflow-x: auto; 
  scroll-snap-type: x mandatory; 
  gap: 0; 
  padding: 40px 50vw 40px 50vw; 
  scroll-behavior: smooth;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}

.premium-gallery::-webkit-scrollbar { display: none; }

/* 3D Card Base Style */
.g-item {
  min-width: 250px; 
  width: 250px;
  height: 350px; 
  flex: 0 0 auto;
  scroll-snap-align: center;
  margin: 0 -20px; 
  opacity: 0.5; 
  filter: grayscale(80%);
  transform: scale(0.85) rotateY(0deg); 
  transition: all 0.65s cubic-bezier(0.22, 0.8, 0.2, 1);
  will-change: transform, opacity;
  z-index: 1;
  background: #fff;
}

/* Force images to fill the card */
.g-item img { 
  height: 100% !important; 
  object-fit: cover; 
}

/* Active Center Card */
.g-item.active-card {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08) translateZ(20px) rotateY(0deg); 
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0,0,0,0.28);
  border: 2px solid var(--green);      /* ✅ ONLY THIS CHANGED */
}

/* Always show text on active mobile card */
.g-item.active-card .g-hover-text { opacity: 1; bottom: 25px; }
.g-item.active-card::after { opacity: 1; }

/* Rotated Side Cards */
.g-item.prev-card { transform: scale(0.85) rotateY(25deg) translateX(-20px); z-index: 5; }
.g-item.next-card { transform: scale(0.85) rotateY(-25deg) translateX(20px); z-index: 5; }

}

/* =========================================================
   10. POPUP, FOOTER & LISTS
========================================================= */
.popup-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.55); backdrop-filter: blur(4px);
  display: none; justify-content: center; align-items: center; z-index: var(--z-popup); padding: 20px;
  overflow: visible !important;
}

.popup-box {
  width: 45%; max-width: 500px; 
  background: 
    linear-gradient(rgba(0,0,0,0.75), rgba(0, 0, 0, 0.75)),
    url("../assets/images/Front\ Elevation\ \(Penthouse\).jpg");  /* ✅ ADD YOUR IMAGE PATH HERE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(18px) saturate(160%); padding: 36px 34px; border-radius: 20px;
  border: 3px solid var(--green);                 /* ✅ ONLY THIS CHANGED */
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  position: relative; color: #fff; animation: popupFade 0.35s ease-out;
  overflow: hidden;
}

.popup-box::before { 
  content: ""; 
  position: absolute; 
  inset: 0; 
  border-radius: 20px; 
  background: linear-gradient(145deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05)); 
  pointer-events: none; 
}

.popup-close { 
  position: absolute; 
  top: 12px; 
  right: 16px; 
  color: #fff; 
  font-size: 32px; 
  cursor: pointer; 
}

/* Ensure country list inside popup scrolls and looks standard */
.popup-box .iti__country-list {
  max-height: calc(100% - 120px);
  overflow-y: auto;
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  background: #fff;
  color: #111;
}

/* ================= FOOTER ================= */

.pl-footer { 
  background: var(--green);
  color: #fff; 
  padding: 60px 20px; 
  text-align: center; 
  border-top: 5px solid var(--accent);
}

/* TWO LOGOS IN ONE ROW */
.footer-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 5px 0 5px;
}

/* Footer logos */
.footer-logo { 
  width: 160px; 
  height: auto;
  margin: 0;
}

.footer-dev-divider {
  width: 01px;
  height: 70px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.footer-section-divider {
  width: 50%;
  height: 1.5px;
  margin: 15px auto 20px;
  background: rgba(255, 255, 255, 0.3); /* light gold/white line */
  border-radius: 50px;
}

/* Marketing logo */
.hk-logo { 
  width: 220px; 
  height: auto;
  margin: 15px auto 10px; 
}

/* Footer link styling */
.footer-link { 
  color: #a5a5a5; 
  transition: 0.3s; 
}

.footer-link:hover { 
  color: var(--accent);
  text-decoration: underline; 
}

/* ================= MOBILE FIXES ================= */
@media (max-width: 600px) {

  .footer-logo-row {
    gap: 18px;
    flex-wrap: nowrap;            /* keep in single line */
  }

  .footer-logo {
    width: 38% !important;        /* both logos fit within screen */
  }

  .footer-divider {
    height: 45px;
  }

  .hk-logo {
    width: 150px;
  }

  .footer-dev-divider {
    width: 1px;
    height: 45px;
  }
}


/* ================= PREMIUM LIST ================= */

.premium-list li { 
  position: relative; 
  padding-left: 45px; 
  margin-bottom: 26px; 
  font-size: 20px; 
  color: #333; 
  opacity: 0; 
  transform: translateY(15px); 
  transition: 0.6s ease; 
}

.premium-list li::before { 
  content: "●"; 
  position: absolute; 
  left: 0; 
  top: 4px; 
  font-size: 18px; 
  background: linear-gradient(90deg, var(--green), var(--accent)); /* ✅ ONLY THIS CHANGED */
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  font-weight: 900; 
}

.premium-list.visible li { 
  opacity: 1; 
  transform: translateY(0); 
}

/* ================= REVEAL ================= */

.reveal { 
  opacity: 1; 
  transform: translateY(70px); 
  transition: 1.5s ease-out; 
}

.reveal.visible { 
  opacity: 1; 
  transform: translateY(0); 
}

/* =========================================================
   11. FLOATING ELEMENTS
========================================================= */
.floating-cta {
  position: fixed; 
  bottom: 15px; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 90%; 
  max-width: 420px;
  background: rgba(255, 255, 255, 0.22); 
  backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.28); 
  padding: 14px 20px; 
  border-radius: 50px;
  display: flex; 
  justify-content: center; 
  align-items: center; 
  gap: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.437); 
  z-index: var(--z-floating-cta); 
  transition: 0.3s ease;
}

.cta-btn {
  padding: 8px 16px; 
  border-radius: 40px; 
  display: flex; 
  align-items: center; 
  gap: 6px;
  font-size: 15px; 
  font-weight: 700; 
  background: #ffffff; 
  color: #222;
  border: 1px solid rgba(255,255,255,0.3); 
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  cursor: pointer;
}

.cta-btn:hover { 
  transform: translateY(-3px) scale(1.04); 
  box-shadow: 0 0 14px rgba(255,255,255,0.55); 
}

.wa-icon { 
  width: 20px; 
  height: 20px; 
  animation: waPulse 2s ease-in-out infinite; 
}

.glass-scroll-top {
  position: fixed; 
  right: 22px; 
  bottom: 25px; 
  width: 40px; 
  height: 40px;
  background: rgba(255,255,255,0.18); 
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.35); 
  border-radius: 18px;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  cursor: pointer;
  opacity: 0; 
  visibility: hidden; 
  transition: 0.35s ease; 
  z-index: var(--z-scroll-btn);
  animation: pulseGlow 2.6s ease-in-out infinite; 
  user-select: none;
}

.glass-scroll-top.show { 
  opacity: 0.5; 
  visibility: visible; 
}

.glass-scroll-top:hover { 
  opacity: 1 !important; 
  transform: translateY(-6px); 
}

.glass-scroll-top span { 
  font-size: 50px; 
  font-weight: 900; 
  color: var(--accent);   /* ✅ ONLY THIS CHANGED */
  transform: translateY(8px); 
}

/* =========================================
   SCROLL TO TOP — CLEAN TOOLTIP (Compatible)
========================================= */

.glass-scroll-top {
  position: fixed;
}

/* Tooltip */
.glass-scroll-top::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  background: #000000e6;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 99999;
}

/* Hover show */
.glass-scroll-top:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* =========================================================
   12. RESPONSIVE & MOBILE FIXES (The Critical Part)
========================================================= */

/* General Tablet/Mobile */
@media (max-width: 1024px) {
  .overview-grid { grid-template-columns: repeat(3, 1fr); }
  .premium-gallery { columns: 2; }
}

@media (max-width: 900px) {
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero { flex-direction: column; height: auto; padding-bottom: 20px; overflow: visible !important; }
  
  /* Form box positioning */
  .hero-form-box { position: relative; width: 90%; margin: 20px auto 0; right: 0; top: 0; transform: none; }
  
  .overview-grid { grid-template-columns: repeat(2, 1fr); }
  .overview-card { height: 140px !important; }
  .overview-icon { font-size: 32px !important; top: 18px !important; }
  .overview-card h3 { font-size: 16px !important; bottom: 18px !important; }
  
  .location-grid { grid-template-columns: 1fr; }
  .location-highlights { flex-direction: column; gap: 14px; }
  .highlight-box { width: 100%; padding-left: 45px; }
  .location-main-section-new iframe { height: 300px; }

  /* Mobile Bottom Elements Hierarchy */
  .floating-cta { padding: 10px 14px; gap: 6px; max-width: 360px; bottom: 15px; display: flex; }
  .cta-btn { display: flex; align-items: center; justify-content: center; padding: 9px 0; font-size: 11px; font-weight: 700; border-radius: 30px; white-space: nowrap; gap: 8px; flex: 0.9;}
  .wa-icon { width: 15px; height: 15px; animation: waPulse 1.8s ease-in-out infinite;}
  .cta-btn.call-btn,.cta-btn.enquire-btn {
    flex: 0.6;
    font-size: 10px;          /* Bigger text */
    font-weight: 1000;
    cursor: pointer;
  }

  /* Increase CALL icon size */
  .cta-btn.call-btn i,.cta-btn.enquire-btn i {
    font-size: 15px;          /* Bigger phone icon */
    cursor: pointer;
  }


  
  /* Scroll Top Above CTA */
  .glass-scroll-top { 
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    background-clip: padding-box !important;
    bottom: 85px !important; 
  }
  
  /* Zoho Chatbot ABOVE CTA */
  #zsiq_float, #zsiqcontainer, #zsiq_chat {
    bottom: 78px !important; right: 16px !important; z-index: var(--z-zoho-bot) !important;
  }
}

@media (max-width: 600px) {
  .overview-grid { grid-template-columns: 1fr; }
  .overview-card { height: 130px !important; }
  .overview-icon { font-size: 28px; top: 15px !important; }
  .overview-card h3 { font-size: 20px !important; bottom: 16px !important; }
}

@media (max-width: 600px) {
  .premium-gallery { columns: 1; }
  .amenities-grid { grid-template-columns: repeat(1, 1fr); }
  .overview-grid { grid-template-columns: 1fr; }
  .amenity-inner { height: 150px; }
  .footer-logo, .hk-logo { width: 250px; height: auto;}
  .popup-box {
  width:92%; max-width: 500px; 
  height: 92%; max-height: 500px;
  }

  .floating-cta { padding: 10px 14px; gap: 5px; max-width: 360px; bottom: 15px; display: center; }
  .cta-btn { flex: 1; display: flex; align-items: center; justify-content: center; padding: 10px 0; font-size: 12px; font-weight: 800; border-radius: 30px; white-space: nowrap; gap: 10px;}
  .cta-btn i { font-size: 14  px; }
  .cta-btn span { font-size: 13px; letter-spacing: 2px;}
  .wa-icon { width: 15px; height: 15px; animation: waPulse 1.8s ease-in-out infinite;}

  /* MOBILE FIX FOR COUNTRY DROPDOWN */
  .iti__country-list {
    position: absolute !important;
    z-index: 2147483647 !important;

    width: 5% !important;
    min-width: 8% !important;
    max-width: 20% !important;

    left: 5px !important;
    right: 5px !important;

    transform: none !important;
  }

  /* Country item styling */
  .iti__country {
    padding: 12px 15px !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    border-bottom: 1px solid #f4f4f4 !important;
  }

  /* Country name styling */
  .iti__country-name {
    font-size: 15px !important;
    color: #333 !important;
    margin-right: 5px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    flex: 1;
  }

  /* Input left padding fix */
  #heroMobile, #popupMobile { 
    padding-left: 94px !important; 
  }
}

/* Animations */
@keyframes floatCapsule { 0% { transform: translateY(0); } 50% { transform: translateY(-6px); } 100% { transform: translateY(0); } }
@keyframes shineMove { from { left: -120%; } to { left: 140%; } }
@keyframes waPulse { 0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(37,211,102,0)); } 50% { transform: scale(1.15); filter: drop-shadow(0 0 6px rgba(37,211,102,0.65)); } 100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(37,211,102,0)); } }
@keyframes popupFade { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes borderGlow { 0% { filter: hue-rotate(0deg); } 100% { filter: hue-rotate(360deg); } }
@keyframes highlightFadeIn { 0% { opacity: 0; transform: translateY(14px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes mapFadeIn { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes fadeInError { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }
@keyframes errorPulse { 0% { transform: scale(1); } 50% { transform: scale(1.02); } 100% { transform: scale(1); } }
@keyframes pulseGlow { 0% { box-shadow: 0 0 12px rgba(255,183,0,0.25); transform: scale(1); } 50% { box-shadow: 0 0 22px rgba(255,200,80,0.55); transform: scale(1.06); } 100% { box-shadow: 0 0 12px rgba(255,183,0,0.25); transform: scale(1); } }
@keyframes chatGlowPulse { 0% { box-shadow: 0 0 0 0 rgb(255, 211, 52); transform: scale(1); } 70% { box-shadow: 0 0 0 15px rgba(255, 225, 0, 0); transform: scale(1.1); } 100% { box-shadow: 0 0 0 0 rgba(255, 191, 0, 0); transform: scale(1); } }
#zsiq_float:active, .zsiq_float:active { animation: chatGlowPulse 1.5s ease-in-out infinite; box-shadow: 0 0 20px var(--green); }

/* =========================================================
   FIX: SCROLL OFFSET FOR ANCHOR LINKS
   Ensures titles aren't hidden behind the sticky header
========================================================= */
html {
  scroll-behavior: smooth; /* Ensures the scroll glides nicely */
}

/* Apply offset to any section that has an ID (About, Overview, etc.) */
section[id] {
  /* Header Height (approx 85px) + Extra Space (25px) */
  scroll-margin-top: 110px; 
}

/* Adjust for mobile if header is thinner */
@media (max-width: 600px) {
  section[id] {
    scroll-margin-top: 90px; 
  }
}

/* =========================================================
   13. UNSURE SECTION (Image Background + Green Overlay)
========================================================= */
.unsure-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;

  /* Root-mapped gradient overlay + image */
  background: 
    linear-gradient(
      135deg, 
      rgba(8, 91, 206, 0.85), 
      rgba(32, 79, 146, 0.95)
    ),
    url('../assets/images/gallery-11.png'); 
    
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; 
}

/* Container Box */
.unsure-box {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Heading */
.unsure-box h2 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Paragraph */
.unsure-box p {
  font-size: 25px;
  color: #f4f9ec !important;
  margin-bottom: 35px;
  line-height: 1.6;
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* Button Styling */
.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 45px;
  font-size: 18px;
  font-weight: 800;
  
  /* Premium gradient preserved */
  background: linear-gradient(135deg, #ffffff, #878dc1, #ffffff);
  background-size: 200% auto;

  color: var(--green); /* ✅ ROOT APPLIED */

  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.4s ease;
}

.primary-btn:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
  color: #000000;
  border-color: #626262;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .unsure-section { 
    padding: 70px 20px; 
    background-attachment: scroll !important; 
  }
  .unsure-box h2 { font-size: 28px; }
  .unsure-box p { font-size: 17px; }
  .primary-btn { font-size: 16px; padding: 14px 35px; }
}

/* =========================================================
   14. FAQ SECTION STYLING (Mobile Optimized)
========================================================= */

/* 1. Grid Container */
.faq-grid {
  max-width: 850px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 2. The Card */
.faq-grid .accordion-card {
  background: #fff;
  border: 1px solid #f0f0f0;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* 3. Hover Effect */
.faq-grid .accordion-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(72, 115, 7, 0.1);
}

/* 4. Active State */
.faq-grid .accordion-card.active {
  border-left-color: var(--accent);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* 5. Header */
.faq-grid .accordion-header {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: #333;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  line-height: 1.4;
}

.faq-grid .accordion-card.active .accordion-header {
  color: var(--green);
}

/* Icon */
.faq-grid .accordion-header i {
  font-size: 16px;
  color: #ccc;
  transition: 0.3s ease;
  margin-left: 15px;
  flex-shrink: 0;
}

.faq-grid .accordion-card.active .accordion-header i {
  color: var(--accent);
  transform: rotate(180deg);
}

/* 6. Body */
.faq-grid .accordion-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 1;
  transition:
    max-height 0.5s ease,
    padding 0.5s ease,
    opacity 0.5s ease;
  background: #fff;
}

.faq-grid .accordion-card.active .accordion-body {
  max-height: 1000px;
  padding: 0 24px 24px 24px;
  opacity: 1;
}

.faq-grid .accordion-body p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
  padding-top: 15px;
  border-top: 1px solid #b9b9b9;
  margin-bottom: 10px;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 600px) {
  .faq-grid {
    gap: 12px;
  }

  .faq-grid .accordion-header {
    padding: 18px 20px;
    font-size: 16px;
  }

  .faq-grid .accordion-body {
    padding: 0 20px;
  }

  .faq-grid .accordion-card.active .accordion-body {
    padding: 0 20px 20px 20px;
  }

  .faq-grid .accordion-body p {
    font-size: 15px;
  }
}

/* =========================================================
   FAQ STAGED REVEAL EXTENSIONS
========================================================= */

.faq-hidden {
  display: none !important;
  opacity: 0;
  transform: translateY(10px);
}

.faq-revealed {
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
  transition: opacity .35s ease, transform .35s ease;
}

.faq-ask-hidden {
  display: none !important;
}

#faqToggleBtn {
  margin-top: 20px;
}

/* =========================================================
   SECTION BUTTON STYLES (.sec-btn)
========================================================= */

.sec-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;          /* ✅ HARD vertical alignment */
  gap: 50px;
  margin: 40px 0;               /* ✅ Clean spacing from both sides */
  flex-wrap: wrap;               
}

.sec-btn {
  display: flex;                /* ✅ FORCE identical line box */
  align-items: center;
  justify-content: center;

  height: 52px;                 /* ✅ LOCK SAME HEIGHT */
  min-width: 240px;

  padding: 0 45px;              /* ✅ Horizontal only */
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;

  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 50px;

  cursor: pointer;
  line-height: 1;               /* ✅ KILLS BASELINE SHIFT */
  vertical-align: middle;      /* ✅ SAFETY LOCK */

  transition: all 0.25s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sec-btn:hover {
  background: var(--green); 
  color: #fff;
  border-color: var(--green);

  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(32, 79, 146, 0.3);
}

.sec-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(72, 115, 7, 0.2);
}

/* ✅ MOBILE OPTIMIZATION */
@media (max-width: 600px) {
  .sec-btn {
    width: 100%;               
    min-width: unset;         
    height: 54px;
    font-size: 15px;
  }
  
  .sec-btn-wrapper {
    margin-top: 25px;
    padding: 0 10px;
    gap: 20px;                /* ✅ Better spacing for mobile */
  }
}


/* =========================================================
   15. ABOUT DEVELOPER SECTION STYLING
========================================================= */

#developer {
  /* Very subtle warm/green tint to differentiate from white sections */
  background-color: #fcfdfa; 
  text-align: center;
  padding-bottom: 60px;
}

/* 1. Logo Styling */
.dev-logo {
  max-width: 240px;
  width: auto;
  height: 70px;
  margin: 0 35px; /* Center and add space below */
  display: block;
  
  /* Subtle shadow to make logo pop */
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.08));
  transition: transform 0.4s ease;
}

/* Logo Hover Effect */
.dev-logo:hover {
  transform: scale(1.05) translateY(-3px);
}

/* ✅ LOGO ROW LAYOUT */
.dev-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 18px 0 30px;
  flex-wrap: nowrap;
}

/* ✅ BIG STRAIGHT DIVIDER */
.dev-divider {
  width: 01px;
  height: 70px;
  background: linear-gradient(to bottom, #111, #555);
  border-radius: 3px;
}

/* 2. Text Container */
.dev-text {
  max-width: 850px;
  margin: 0 auto 40px;
  padding: 0 20px;
  position: relative;
}

/* 3. Paragraph Typography */
.dev-text p {
  font-size: 18px;
  line-height: 1.8; /* Relaxed line height for readability */
  color: #444;
  font-weight: 400;
  text-align: center;
}

/* 4. Decorative Gold Divider (Premium Touch) */
.dev-text::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--accent));
  margin: 35px auto 0; /* Center below text */
  border-radius: 2px;
}

/* Mobile Adjustment */
@media (max-width: 600px) {

  /* Keep in one row, centered */
  .dev-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;                 /* ✅ real spacing */
    flex-wrap: nowrap;
  }

  /* Resize logos so both fit on one line */
  .dev-logo {
    height: 38px !important;
    max-width: 120px;          /* ✅ controlled size */
    margin: 0 !important;      /* ✅ CRITICAL FIX */
  }

  /* Slimmer divider for mobile */
  .dev-divider {
    width: 1px;
    height: 45px;
    background: linear-gradient(to bottom, #111, #555);
    opacity: 0.8;
  }

  /* Text formatting */
  .dev-text p {
    font-size: 16px;
    line-height: 1.6;
    text-align: justify;
  }
}


/* =========================================================
   FLOOR PLAN 3D CYLINDER EFFECT (Mobile)
========================================================= */
.floor-controls { display: none; } /* Hidden on Desktop */

/* DESKTOP DEFAULT GRID */
.floor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.floor-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border: 1px solid #eee;
  position: relative;
  transition: 0.3s ease;
}

.floor-card { will-change: transform, opacity; transition: all 0.65s cubic-bezier(0.22,0.8,0.2,1); }

.floor-badge {
  display: inline-block;
  background: #404894; 
  color: #ffffff;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 4px;
  font-size: 14px;
  position: absolute;
  top: -12px; 
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 2;
}

.floor-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-top: 15px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blur-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: blur(4px);
  transition: 0.3s;
  opacity: 0.8;
}

.floor-card:hover {
  border-color: #404894;
}

.floor-card:hover .blur-img { transform: scale(1.05); }

.view-plan-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff; color: #333;
  border: 1px solid #ddd;
  padding: 10px 25px;
  font-weight: 700; border-radius: 5px;
  cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s; z-index: 3; white-space: nowrap;
}
.view-plan-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }


/* --- MOBILE 3D MODE --- */
@media (max-width: 600px) {
  
  .floor-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
  }

  /* Reuse the same arrow style we made for Price/Floor */
.nav-arrow {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  background-clip: padding-box !important;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid #404894;
  background: #fff; color: #204f92;
  font-size: 18px; cursor: pointer;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}

.nav-arrow:hover, .nav-arrow:active { 
  background: #404894; 
  color: #fff; 
  transform: scale(1.1); 
}

  /* 3D Grid Setup */
  .floor-grid { 
    display: flex; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    gap: 0; 
    padding: 40px 50vw 40px 50vw; 
    scroll-behavior: smooth;
    scrollbar-width: none; 
    -ms-overflow-style: none;
  }
  .floor-grid::-webkit-scrollbar { display: none; }

  /* Card Base Style */
  .floor-card {
    min-width: 280px; 
    width: 280px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    margin: 0 -20px; 
    opacity: 0.5; 
    filter: grayscale(80%);
    transform: scale(0.85) rotateY(0deg); 
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
    background: #fff;
  }

  /* Active Center Card */
  .floor-card.active-card {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.08) translateZ(20px) rotateY(0deg); 
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border: 2px solid #404894;
  }

  /* Rotated Side Cards */
  .floor-card.prev-card { transform: scale(0.85) rotateY(25deg) translateX(-20px); z-index: 5; }
  .floor-card.next-card { transform: scale(0.85) rotateY(-25deg) translateX(20px); z-index: 5; }
}

/* =========================================================
   PRICE LIST SECTION (Centered Floating Rupee Animation)
========================================================= */
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.price-card {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid #eee;
  position: relative;
  overflow: hidden; 
  z-index: 1;
  will-change: transform, opacity;
  transition: all 0.65s cubic-bezier(0.22,0.8,0.2,1);
}

.price-card > * {
  position: relative;
  z-index: 2;
}

.price-card .sec-btn {
  display: block;
  margin: 25px auto 0;   /* ⬅ Auto centers button */
}

/* 1. The Hidden Rupee Symbol */
.price-card::before {
  content: "₹";
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  transform: translate(-50%, -50%) scale(0.5) rotate(-30deg);
  opacity: 0; 
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 0;
  pointer-events: none;
}

/* 2. Hover State */
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  background: #fff;
  border-color: var(--accent);
}

.price-card:hover::before {
  opacity: 0.25;
  transform: translate(-50%, -50%) scale(1.1) rotate(0deg); 
}

/* --- Badge & Text Styles --- */
.price-badge {
  display: inline-block;
  background: var(--green);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  border: 1px solid #5a5a5a;
}

.price-amount {
  font-size: 32px;
  font-weight: 800;
  color: #333;
  margin-bottom: 25px;
}

.price-details {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted #ccc;
  padding: 8px 0;
  font-size: 15px;
  color: #666;
  margin: 25px;
}

.price-details:not(:first-of-type) {
  border-top: none;
  margin-top: -8px;
}

/* Tablet */
@media (max-width: 900px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =========================================================
   MOBILE PRICE 3D CYLINDER EFFECT & CONTROLS
========================================================= */
.price-controls { display: none; }

@media (max-width: 600px) {
  
  .price-grid { 
    display: flex; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    gap: 0;
    padding: 60px 50vw 60px 50vw; 
    perspective: 1000px; 
    scroll-behavior: smooth;
    scrollbar-width: none; 
    -ms-overflow-style: none;
  }
  .price-grid::-webkit-scrollbar { display: none; }

  .price-card {
    min-width: 280px;
    width: 280px;
    flex: 0 0 auto;
    scroll-snap-align: center;
    margin: 0 -20px;
    opacity: 0.5; 
    filter: blur(2px) grayscale(60%);
    transform: scale(0.85) rotateY(0deg);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1;
    background: #fff;
  }

  .price-card.active-card {
    opacity: 1;
    filter: blur(0) grayscale(0%);
    transform: scale(1.1) translateZ(20px) rotateY(0deg);
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border: 2px solid var(--accent);
  }

  .price-card.prev-card {
    transform: scale(0.85) rotateY(25deg) translateX(-20px);
    z-index: 5;
  }

  .price-card.next-card {
    transform: scale(0.85) rotateY(-25deg) translateX(20px);
    z-index: 5;
  }

  .price-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
  }

  .nav-arrow {
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    background-clip: padding-box !important;
    width: 50px; 
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background: #fff; 
    color: var(--green);
    font-size: 18px; 
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s ease;
    display: flex; 
    align-items: center; 
    justify-content: center;
  }

  .nav-arrow:hover, 
  .nav-arrow:active { 
    background: var(--accent); 
    color: #fff; 
    transform: scale(1.1); 
  }
}

/* ================= SOCIAL PROOF SECTION ================= */

.hk-review-slider {
  padding: 60px 0;
  background: #fafafa;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.hk-review-slider .slider-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--dark);
}

.hk-review-slider .slider-sub {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.55;
}

/* Slider Container */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
}

.slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

/* Review Card */
.slider-card {
  min-width: 100%;
  background: #ffffff;
  padding: 28px 24px;
  border-radius: 14px;
  border: 1px solid #e7e7e7;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  text-align: left;
}

.slider-name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
}

.slider-stars {
  color: #f4b400;
  font-size: 18px;
  margin-bottom: 10px;
}

.slider-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
}

/* Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.slider-dot.active {
  background: var(--dark);
}

/* Improved Review Count Block */
.trust-count {
  margin-top: 35px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark);
  font-weight: 500;
}

.trust-count .review-number {
  display: inline-block;
  font-size: 28px;
  font-weight: 800;
  margin-top: 8px;
  margin-bottom: 6px;
}

.trust-count #reviewCounter {
  font-size: 32px;
  font-weight: 800;
}

.trust-count .review-date {
  font-weight: 700;
  font-size: 18px;
}


/* Buttons */
.trust-buttons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.trust-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

/* YouTube Button */
.youtube-btn {
  background: #ff0000;
}

.youtube-btn:hover {
  background: #cc0000;
}

/* Google Button */
.google-btn {
  background: #4285f4;
}

.google-btn:hover {
  background: #1669c1;
}

.google-g {
  background: #fff;
  color: #4285f4;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 600px) {
  .hk-review-slider {
    padding: 40px 0;
  }

  .slider-title {
    font-size: 22px;
  }

  .slider-card {
    padding: 22px 18px;
  }

  .trust-btn {
    width: 100%;
    justify-content: center;
  }
}


/* ==========================================================
   SOCIAL PROOF — OVERALL RATING BLOCK
========================================================== */

.overall-rating {
  margin-top: 10px;
  text-align: center;
  color: #333;
}

.rating-score {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin-right: 8px;
}

.rating-stars i {
  color: #ffae00;
  font-size: 20px;
  margin-right: 2px;
}

.rating-subtext {
  font-size: 14px;
  color: #555;
  margin-top: 6px;
}

/* Mobile Optimisation */
@media (max-width: 600px) {
  .rating-score {
    font-size: 20px;
  }

  .rating-stars i {
    font-size: 18px;
  }

  .rating-subtext {
    font-size: 13px;
  }
}


/* ==========================================================
   GLOWING STAR ANIMATION
========================================================== */

.rating-stars i {
  color: #ffae00;
  font-size: 22px;
  margin-right: 3px;

  text-shadow: 
      0 0 8px rgba(242, 194, 26, 0.6),
      0 0 12px rgba(255, 170, 0, 0.5),
      0 0 18px rgba(255, 136, 0, 0.3);

  animation: glowPulse 2.2s ease-in-out infinite alternate;
  display: inline-block;
}

@keyframes glowPulse {
  0% {
    transform: scale(1);
    text-shadow:
      0 0 6px rgba(242, 194, 26, 0.4),
      0 0 10px rgba(255, 170, 0, 0.4);
  }
  100% {
    transform: scale(1.07);
    text-shadow:
      0 0 10px rgba(242, 194, 26, 0.9),
      0 0 18px rgba(255, 170, 0, 0.7),
      0 0 24px rgba(255, 136, 0, 0.6);
  }
}

.rating-stars:hover i {
  animation: shimmer 1.2s linear infinite;
}

@media (max-width: 600px) {
  .rating-stars i {
    font-size: 18px;
  }
}


/* =========================================================
   NEW ANIMATIONS ADDED (NO OTHER CSS CHANGED)
========================================================= */

.fade-in-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.slider-stars {
  display: inline-block;
  animation: starGlow 2s ease-in-out infinite alternate;
}

@keyframes starGlow {
  0% { filter: drop-shadow(0 0 1px rgba(255, 198, 40, 0.6)); }
  100% { filter: drop-shadow(0 0 6px rgba(255, 198, 40, 1)); }
}

/* =========================================================
   DESKTOP (DEFAULT) — FULL WIDTH UNDERLINE
========================================================= */

.section h2 {
  position: relative;
  text-align: center;
  display: block;
  width: 100%;
  margin: 0 auto 40px;
  padding-bottom: 10px;
}

.section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  border-radius: 3px;
  transition: width 1.3s cubic-bezier(0.25, 1, 0.30, 1);
}

.section.reveal.visible h2::after {
  width: 30%;
}

/* ============================================
   HERO FORM TITLE UNDERLINE
============================================ */
.hero-form-box h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.hero-form-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 1.4s cubic-bezier(0.25, 1, 0.30, 1),
              left 0.3s ease;
}

.hero-form-box.reveal.visible h3::after {
  width: 100%;
}


/* ============================================
   POPUP FORM TITLE UNDERLINE
============================================ */
.popup-title {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.popup-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--green));
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 1.4s cubic-bezier(0.25, 1, 0.30, 1),
              left 0.3s ease;
}

.popup-box.active .popup-title::after {
  width: 100%;
}

html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
}


/* ============================
   CONSENT CHECKBOX
============================ */
.consent-wrapper {
  margin-top: 10px;
  margin-bottom: 12px;
  text-align: left !important;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  text-align: left !important;
}

.consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  cursor: pointer;
}

.consent-label span {
  font-size: 13px;
  color: var(--text);
  line-height: 1.45;
  text-align: justify !important;
  display: inline-block;
}

.consent-error {
  color: #e63946;
  font-size: 12px;
  margin-top: 6px;
  display: none;
}

.popup-box .consent-label span {
  color: #ffffff !important;
  opacity: 0.95;
}

.popup-box .consent-error {
  color: #ffb3b3 !important;
}

/* ==========================================================
   POPUP ACTION ROW — 3 BUTTON LAYOUT
========================================================== */

.popup-action-row {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-top: 16px;
}

/* ================================
   BASE BUTTON STYLE
================================ */

.popup-action-btn {
  height: 56px;
  border-radius: 12px;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  user-select: none;

  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.85),
    inset 0 -3px 6px rgba(0,0,0,0.25),
    0 6px 0 rgba(0,0,0,0.25),
    0 10px 18px rgba(0,0,0,0.35);

  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.25s ease;
}

/* Press-in effect */
.popup-action-btn:active {
  transform: scale(0.94) translateY(2px);
  box-shadow:
    inset 0 4px 8px rgba(0,0,0,0.35),
    inset 0 -2px 4px rgba(255,255,255,0.25),
    0 2px 4px rgba(0,0,0,0.25);
}

/* ================================
   CALL BUTTON
================================ */

/* CALL BUTTON */
.popup-action-btn.call-btn {
  width: 56px;
  min-width: 56px;
  background: #838383;
  position: relative;
  overflow: visible;              /* allow halo outside */
}

/* ICON */
.popup-action-btn.call-btn i {
  font-size: 20px;
  color: #ffffff;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

/* SOFT WHITE HALO */
.popup-action-btn.call-btn::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 10px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.85),
    transparent 70%
  );
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.25s ease;
  z-index: 1;
}

/* HOVER */
.popup-action-btn.call-btn:hover::after {
  opacity: 1;
}

.popup-action-btn.call-btn:hover {
  transform: translateY(-1px);
}

/* ================================
   PROCEED BUTTON (CENTER)
================================ */

.popup-action-btn.proceed-btn {
  flex: 1;
  background: var(--green);
  color: #ffffff;

  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
}

.popup-action-btn.proceed-btn:hover {
  background: var(--accent);
  color: #000;
}

/* ================================
   WHATSAPP BUTTON
================================ */

/* WHATSAPP BUTTON */
.popup-action-btn.wa-btn {
  width: 56px;
  min-width: 56px;
  background: #ffffff;
  position: relative;
  overflow: visible;              /* allow halo to glow outside */
}

/* ICON */
.popup-action-btn.wa-btn img {
  width: 35px;
  height: 35px;
  pointer-events: none;
  position: relative;
  z-index: 2;
}

/* SOFT GREEN HALO */
.popup-action-btn.wa-btn::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 10px;
  background: radial-gradient(
    circle,
    rgba(26, 153, 72, 0.65),
    transparent 85%
  );
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.25s ease;
  z-index: 1;
}

/* HOVER */
.popup-action-btn.wa-btn:hover::after {
  opacity: 1;
}

.popup-action-btn.wa-btn:hover {
  transform: translateY(-1px);
}

/* ================================
   MOBILE OPTIMISATION
================================ */

@media (max-width: 600px) {

  .popup-action-row {
    gap: 8px;
  }

  .popup-action-btn {
    height: 48px;
    border-radius: 10px;
  }

  .popup-action-btn.call-btn,
  .popup-action-btn.wa-btn {
    width: 44px;
    min-width: 44px;
  }

  .popup-action-btn.call-btn i {
    font-size: 18px;
  }

  .popup-action-btn.wa-btn img {
    width: 22px;
    height: 22px;
  }

  .popup-action-btn.proceed-btn {
    font-size: 18px;
    letter-spacing: 0;
  }
}


/* ============================================================
   SAFE TOOLTIP FOR ZOHO CHAT BUBBLE
============================================================ */
#zsiqTooltip {
  position: fixed;
  padding: 6px 12px;
  background: #000;
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  z-index: 9999999;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s ease;
  pointer-events: none;
}

#zsiqTooltip.show {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   FORCE INPUTS TO TURN PURE WHITE ON FOCUS
   (HERO + POPUP + MOBILE + INTL INPUT)
============================================ */

.hero-form-box input:focus,
.popup-box input:focus,
.hero-form-box textarea:focus,
.popup-box textarea:focus,
#heroMobile:focus,
#popupMobile:focus,
.popup-input:focus {
  background: #ffffff !important;
  color: #000000 !important;
  border: 2px solid #4cb8ff !important;
  box-shadow: 0 0 14px rgba(76, 184, 255, 0.7) !important;
}

/* ✅ Kill all glass / transparent focus effects */
.hero-form-box input,
.popup-box input,
#heroMobile,
#popupMobile,
.popup-input {
  background-color: #ffffff !important;
}

/* ✅ Placeholder contrast on white */
.hero-form-box input::placeholder,
.popup-box input::placeholder {
  color: #8a8a8a !important;
}

/* ✅ Intl flag area stays white */
.iti__selected-flag {
  background: #ffffff !important;
}

/* ================= ARTICLES ================= */

#articles {
  padding: 70px 0;
  background: #fcfdfa;
  overflow: hidden;
}

.articles-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.articles-header h2 {
  font-size: 2rem;
  color: #1f3d0c;
}

.section-sub-text {
  color: #555;
  margin: 10px 0 15px;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: #487307;
  margin: 0 auto;
}

/* ICON */
.articles-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(72,115,7,0.12);
  border-radius: 16px;
}

.articles-icon i {
  color: #487307;
  font-size: 1.6rem;
}

/* ================= SLIDER ================= */

.articles-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.articles-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.articles-grid::-webkit-scrollbar {
  display: none;
}

/* CARD */
.article-card {
  min-width: 300px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.4s ease;
  opacity: 0.5;
  transform: scale(0.88);
}

.article-card.active-card {
  opacity: 1;
  transform: scale(1.05);
}

.article-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(72,115,7,0.1);
  border-radius: 14px;
}

.article-icon i {
  color: #487307;
  font-size: 1.4rem;
}

.article-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.article-card p {
  font-size: 0.9rem;
  color: #555;
}

.enquire-btn {
  margin-top: 12px;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #487307;
  color: #487307;
  text-decoration: none;
  font-size: 0.85rem;
}

.enquire-btn:hover {
  background: #487307;
  color: #fff;
}

/* NAV */
.nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #487307;
  background: #fff;
  color: #487307;
  cursor: pointer;
}

.nav-arrow:hover {
  background: #487307;
  color: #fff;
}

/* MOBILE */
@media (max-width: 600px) {
  .article-card {
    min-width: 260px;
  }
}

