*,*::before,*::after{
  box-sizing:border-box;
  margin:0;
  padding:0
}

:root{
  --green:#1a6b2f;
  --green2:#238a3c;
  --green-light:#e8f5ec;
  --gold:#c8a84b;
  --dark:#1a1a1a;
  --text:#2d2d2d;
  --muted:#666;
  --light:#f9f7f2;
  --white:#ffffff;
  --border:#e0ddd6;
}

html{scroll-behavior:smooth}

body{
  font-family:'Montserrat',sans-serif;
  color:var(--text);
  background:var(--white);
  overflow-x:hidden
}

/* ───────── NAV ───────── */

nav{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:200;

  display:flex;
  align-items:center;
  justify-content:space-between;

  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(10px);

  padding:0 40px;
  height:68px;

  border-bottom:1px solid var(--border);
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}

/* LOGO */
.nav-logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo-img img{
  height:42px;
  width:auto;
}

/* TEXT */
.logo-text{
  font-family:'Merriweather',serif;
  font-size:1.3rem;
  color:var(--green);
  font-weight:700;
}

.logo-sub{
  font-size:0.6rem;
  color:var(--muted);
}

/* LINKS */
.nav-links{
  display:flex;
  align-items:center;
  gap:0;
}
.logo-partner{
  font-size:0.7rem;
  color:var(--muted);
  font-style:italic;
  line-height:1.2;

  display:flex;
  flex-direction:column;
  justify-content:center;
}
.logo-divider{
  width:1px;
  height:36px;
  background:var(--border);
  display:block;
}

.nav-links a{
  font-size:0.72rem;
  font-weight:600;
  text-transform:uppercase;
  color:var(--dark);
  text-decoration:none;

  padding:0 14px;
  height:68px;

  display:flex;
  align-items:center;

  border-bottom:3px solid transparent;
  transition:0.2s;
}

.nav-links a:hover{
  color:var(--green);
  border-bottom-color:var(--green);
}

/* PHONE BUTTON */
.nav-phone{
  background:var(--green);
  color:#fff;
  font-size:0.82rem;
  font-weight:700;

  padding:0 20px;
  height:68px;

  display:flex;
  align-items:center;
  text-decoration:none;
}

.nav-phone:hover{
  background:var(--green2);
}

/* ───────── HAMBURGER ───────── */

.menu-toggle{
  display:none;
  flex-direction:column;
  cursor:pointer;
  gap:4px;
}

.menu-toggle span{
  width:22px;
  height:2px;
  background:var(--dark);
}

/* ───────── MOBILE ───────── */

@media(max-width:853px){

  nav{
    padding:0 20px;
  }

  .menu-toggle{
    display:flex;
  }

  .nav-links{
    position:absolute;
    top:68px;
    left:0;
    right:0;

    background:#fff;
    flex-direction:column;
    align-items:flex-start;

    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links a{
    width:100%;
    height:auto;
    padding:14px 20px;
    border-bottom:1px solid var(--border);
  }

  .nav-phone{
    display:none;
  }
}

/* SMALL MOBILE */
@media(max-width:540px){

  .logo-img img{
    height:32px;
  }

  .logo-text{
    font-size:1rem;
  }

}
/* ── HERO ── */
.hero{
  min-height:100vh;
  padding-top:68px;
  position:relative;
  display:flex;align-items:stretch;
  background:
    linear-gradient(to right, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.55) 100%),
    url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?w=1600&q=80') center/cover no-repeat;
}
.hero-inner{
  width:100%;max-width:1400px;margin:0 auto;
  display:grid;grid-template-columns:1fr 400px;
  align-items:center;
  padding:60px 56px 60px 56px;
  gap:40px;
}

/* LEFT */
.hero-left{color:var(--white)}
.hero-location{
  display:flex;align-items:center;gap:6px;
  font-size:0.88rem;font-weight:500;letter-spacing:0.3px;
  color:rgba(255,255,255,0.85);margin-bottom:14px;
}
.hero-location svg{color:var(--gold)}
.hero-title{
  font-family:'Merriweather',serif;
  font-size:clamp(2.8rem,5vw,4.4rem);
  font-weight:700;line-height:1.1;
  color:var(--white);margin-bottom:10px;
}
.hero-subtitle{
  font-size:1.05rem;font-weight:500;
  color:rgba(255,255,255,0.9);
  margin-bottom:28px;letter-spacing:0.3px;
}

.hero-points{display:flex;flex-direction:column;gap:10px;margin-bottom:36px}
.hero-point{display:flex;align-items:center;gap:10px;font-size:0.9rem;font-weight:500}
.hero-point.highlight{color:var(--gold);font-weight:700}
.hero-point:not(.highlight){color:rgba(255,255,255,0.88)}
.arrow-icon{color:var(--gold);font-size:1rem;flex-shrink:0}

.hero-btns{display:flex;gap:14px;flex-wrap:wrap}
.btn-primary{
  background:var(--green);color:var(--white);
  font-family:'Montserrat',sans-serif;font-size:0.82rem;font-weight:700;
  letter-spacing:1px;text-transform:uppercase;
  padding:14px 28px;border:none;border-radius:2px;
  cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;gap:8px;
  transition:background 0.2s,transform 0.15s;
}
.btn-primary:hover{background:var(--green2);transform:translateY(-2px)}
.btn-outline{
  background:transparent;color:var(--white);
  font-family:'Montserrat',sans-serif;font-size:0.82rem;font-weight:700;
  letter-spacing:1px;text-transform:uppercase;
  padding:14px 28px;border:2px solid rgba(255,255,255,0.6);border-radius:2px;
  cursor:pointer;text-decoration:none;display:inline-flex;align-items:center;gap:8px;
  transition:border-color 0.2s,background 0.2s;
}
.btn-outline:hover{border-color:var(--white);background:rgba(255,255,255,0.08)}

/* NEW LAUNCH STAMP */
.stamp-wrap{position:absolute;bottom:100px;left:50%;transform:translateX(-60%)}
.stamp{
  width:110px;height:110px;border-radius:50%;
  /* background:rgba(180,30,30,0.92); */
  border:3px solid rgba(255,255,255,0.5);
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  text-align:center;color:var(--white);
  font-size:0.58rem;font-weight:800;letter-spacing:1.5px;text-transform:uppercase;
  box-shadow:0 4px 20px rgba(0,0,0,0.4);
  animation:rotate 12s linear infinite;
}
@keyframes rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}
.stamp-inner{animation:rotate-reverse 12s linear infinite;display:flex;flex-direction:column;align-items:center}
@keyframes rotate-reverse{from{transform:rotate(0deg)}to{transform:rotate(-360deg)}}
.stamp-big{font-size:1rem;font-weight:900;letter-spacing:2px;line-height:1.1;margin:3px 0}

/* RIGHT – FORM */
.hero-form{
  background:rgba(20,20,20,0.78);
  backdrop-filter:blur(16px);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:4px;
  padding:32px 28px;
  color:var(--white);
}
.form-heading{
  font-size:1rem;font-weight:600;line-height:1.4;
  color:var(--white);margin-bottom:20px;text-align:center;
}
.form-field{
  margin-bottom:12px;
}
.form-field input,
.form-field select,
.form-field textarea{
  width:100%;background:transparent;
  border:none;border-bottom:1px solid rgba(255,255,255,0.3);
  color:var(--white);font-family:'Montserrat',sans-serif;font-size:0.85rem;
  padding:10px 4px;outline:none;
  transition:border-color 0.2s;
  /* -webkit-appearance:none; */
}
.form-field input::placeholder,
.form-field textarea::placeholder{color:rgba(255,255,255,0.45)}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{border-bottom-color:var(--gold)}
.form-field select{cursor:pointer}
.form-field select option{background:#222;color:#fff}
.phone-row{display:grid;grid-template-columns:64px 1fr;gap:0}
.phone-code{
  background:transparent;border:none;border-bottom:1px solid rgba(255,255,255,0.3);
  color:var(--white);font-family:'Montserrat',sans-serif;font-size:0.85rem;
  padding:10px 4px;display:flex;align-items:center;gap:4px;
}
.consent-row{display:flex;align-items:flex-start;gap:8px;margin:14px 0}
.consent-row input[type=checkbox]{accent-color:var(--green);margin-top:2px;flex-shrink:0;cursor:pointer}
.consent-row label{font-size:0.68rem;color:rgba(255,255,255,0.55);line-height:1.5;cursor:pointer}
.btn-submit{
  width:100%;background:var(--green);color:var(--white);
  font-family:'Montserrat',sans-serif;font-size:0.8rem;font-weight:800;
  letter-spacing:1.5px;text-transform:uppercase;
  padding:14px;border:none;border-radius:2px;cursor:pointer;
  transition:background 0.2s;margin-top:4px;
}
.btn-submit:hover{background:var(--green2)}

/* SUCCESS */
.success-state{display:none;flex-direction:column;align-items:center;justify-content:center;gap:12px;text-align:center;padding:20px 0}
.success-state.show{display:flex}
.success-state .s-icon{font-size:2.5rem}
.success-state h3{font-size:1.1rem;font-family:'Merriweather',serif;color:var(--white)}
.success-state p{font-size:0.78rem;color:rgba(255,255,255,0.65);line-height:1.6}
.success-state a{background:var(--green);color:var(--white);font-size:0.75rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;padding:12px 22px;border-radius:2px;text-decoration:none;margin-top:4px}

/* ── STATS BAR ── */
.stats-bar{
  background:var(--white);
  border-bottom:1px solid var(--border);
  box-shadow:0 2px 12px rgba(0,0,0,0.05);
}
.stats-inner{
  max-width:1200px;margin:0 auto;
  display:grid;grid-template-columns:repeat(4,1fr);
}
.stat-item{
  padding:28px 20px;
  text-align:center;
  border-right:1px solid var(--border);
}
.stat-item:last-child{border-right:none}
.stat-top{font-family:'Merriweather',serif;font-size:1rem;font-weight:700;color:var(--dark);line-height:1.2;margin-bottom:4px}
.stat-top span{color:var(--green)}
.stat-bot{font-size:0.72rem;color:var(--muted);line-height:1.4}

/* ── OVERVIEW ── */
.overview{background:var(--white);padding:90px 40px}
.overview-inner{max-width:860px;margin:0 auto;text-align:center}
.section-tag{font-size:0.7rem;font-weight:700;letter-spacing:2.5px;text-transform:uppercase;color:var(--green);margin-bottom:16px}
.section-title{font-family:'Merriweather',serif;font-size:clamp(1.8rem,3.5vw,2.8rem);color:var(--dark);margin-bottom:8px;line-height:1.2}
.section-sub{font-size:0.88rem;color:var(--muted);margin-bottom:28px;font-weight:500}
.overview-text{font-size:0.92rem;color:#444;line-height:1.9;margin-bottom:36px}
.reserve-btn{
  display:inline-block;background:var(--green);color:var(--white);
  font-size:0.82rem;font-weight:700;letter-spacing:1px;text-transform:uppercase;
  padding:16px 40px;border-radius:2px;text-decoration:none;
  transition:background 0.2s,transform 0.15s;
}
.reserve-btn:hover{background:var(--green2);transform:translateY(-2px)}

/* ── HIGHLIGHTS ── */
.highlights{background:var(--light);padding:90px 40px}
.highlights-inner{max-width:1100px;margin:0 auto}
.highlights-inner .section-title{text-align:center;margin-bottom:60px}
.hl-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
.hl-images{display:grid;grid-template-rows:1fr 1fr;gap:10px;height:540px}
.hl-img{width:100%;height:100%;object-fit:cover;border-radius:2px;display:block;background:var(--border)}
.hl-img-placeholder{
  width:100%;height:100%;border-radius:2px;
  background:linear-gradient(135deg,#c8d8c0,#a0b89a);
  display:flex;align-items:center;justify-content:center;
  font-size:2.5rem;
}
.hl-img-placeholder-2{
  width:100%;height:100%;border-radius:2px;
  background:linear-gradient(135deg,#b8c8b0,#8aaa84);
  display:flex;align-items:center;justify-content:center;
  font-size:2.5rem;
}
.hl-list{display:flex;flex-direction:column}
.hl-item{
  display:flex;align-items:center;gap:14px;
  padding:18px 0;border-bottom:1px solid #d8d5cc;
  font-size:0.9rem;color:var(--text);font-weight:500;
  transition:color 0.2s;
}
.hl-item:last-child{border-bottom:none}
.hl-item:hover{color:var(--green)}
.hl-arrow{color:var(--green);font-size:1.1rem;flex-shrink:0}
.hl-cta{margin-top:28px}

/* ── PRICE / PAYMENT ── */
.payment{background:var(--white);padding:90px 40px}
.payment-inner{max-width:1100px;margin:0 auto}
.payment-inner .section-title{text-align:center;margin-bottom:50px}
.payment-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.pay-card{
  border:1px solid var(--border);border-radius:3px;
  padding:32px 28px;text-align:center;
  transition:border-color 0.25s,box-shadow 0.25s,transform 0.25s;
}
.pay-card:hover{border-color:var(--green);box-shadow:0 8px 28px rgba(26,107,47,0.1);transform:translateY(-4px)}
.pay-card.featured{border-color:var(--green);background:var(--green-light)}
.pay-icon{font-size:2.2rem;margin-bottom:16px}
.pay-title{font-family:'Merriweather',serif;font-size:1.05rem;color:var(--dark);margin-bottom:8px;font-weight:700}
.pay-value{font-size:1.6rem;font-weight:800;color:var(--green);margin-bottom:6px}
.pay-desc{font-size:0.78rem;color:var(--muted);line-height:1.6}

/* ── AMENITIES ── */
.amenities{background:var(--light);padding:90px 40px}
.amenities-inner{max-width:1100px;margin:0 auto}
.amenities-inner .section-title{text-align:center;margin-bottom:50px}
.am-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.am-card{
  background:var(--white);border:1px solid var(--border);
  border-radius:3px;padding:28px 20px;text-align:center;
  transition:border-color 0.2s,box-shadow 0.2s;
}
.am-card:hover{border-color:var(--green);box-shadow:0 4px 18px rgba(26,107,47,0.08)}
.am-icon{font-size:1.9rem;margin-bottom:10px}
.am-name{font-size:0.8rem;font-weight:600;color:var(--dark)}

/* ── LOCATION ── */
.location-sec{background:var(--white);padding:90px 40px}
.location-inner{max-width:1100px;margin:0 auto}
.location-inner .section-title{text-align:center;margin-bottom:50px}
.loc-grid{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.map-placeholder{
  width:100%;height:380px;background:linear-gradient(135deg,#c8d8c0,#9ab89a);
  border-radius:3px;display:flex;align-items:center;justify-content:center;
  font-size:3rem;color:var(--white);
  box-shadow:0 4px 20px rgba(0,0,0,0.1);
}
.loc-points{display:flex;flex-direction:column;gap:14px}
.loc-point{
  display:flex;align-items:center;gap:14px;
  padding:14px 16px;background:var(--light);
  border-left:3px solid var(--green);border-radius:0 2px 2px 0;
  font-size:0.85rem;color:var(--text);font-weight:500;
}
.loc-dist{margin-left:auto;font-size:0.75rem;color:var(--green);font-weight:700;white-space:nowrap}





/* Floor Plan Start */


/* ===== FLOOR SECTION START ===== */
.fp-section {
  padding: 60px 20px;
  text-align: center;
  background: #1a6b2f;
}
.fp-logo {
  width: 140px;
  margin-bottom: 10px;
}

/* TITLE */
.fp-title {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  text-shadow: 
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

/* LINE */
.fp-line {
  width: 120px;
  height: 4px;
  margin: 10px auto 40px;
  background: linear-gradient(90deg, transparent, #c59d5f, transparent);
  position: relative;
}

.fp-line::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #c59d5f;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

/* GRID */
.fp-container {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD */
.fp-card {
  width: 320px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.fp-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: blur(5px) brightness(0.8);
}

/* TAG */
.fp-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(90deg, #8b5e34, #c59d5f);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
}

/* BUTTON */
.fp-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0f5132, #198754);
  color: #fff;
  border: none;
  padding: 12px 26px;
  border-radius: 30px;
  cursor: pointer;
  z-index: 1;
}
/* ===== FLOOR SECTION END ===== */


/* ===== POPUP START ===== */
.fp-popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  padding: 15px;
  z-index: 9999;
}

/* POPUP BOX */
.fp-popup-box {
  width: 100%;
  max-width: 360px;
  padding: 25px;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  position: relative;
  z-index: 10000;
}

/* CLOSE */
.fp-close {
  position: absolute;
  right: 10px;
  top: 5px;
  cursor: pointer;
  font-size: 20px;
}

/* DIVIDER */
.fp-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #3b5998, #00c6ff);
  margin: 10px auto 20px;
  border-radius: 5px;
}

/* INPUT */
.fp-input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border: none;
  background: #f1eaea;
  box-sizing: border-box;
}

/* BUTTON */
.fp-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #0f5132, #198754);
  color: white;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}

/* TRUST */
.fp-trust {
  font-size: 12px;
  margin-top: 8px;
  color: #555;
}

/* CALL */
.fp-call {
  margin-top: 15px;
  font-weight: bold;
  color: #222;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .fp-card {
    width: 100%;
    max-width: 400px;
  }
}
/* ===== POPUP END ===== */


/* Floor Plan End  */





/* ===== BUILDER SECTION START ===== */
.builder-section {
  padding: 75px 44px;
  background: #f9f7f2;
}

/* CONTAINER */
.builder-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT CONTENT */
.builder-content {
  flex: 1;
  min-width: 300px;
}

/* TITLE */
.builder-title {
  font-size: 30px;
  font-weight: 600;
  color: #222;
}

/* LINE */
.builder-line {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #c59d5f, transparent);
  margin: 10px 0 20px;
}

/* TEXT */
.builder-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* BUTTON */
.builder-btn {
  padding: 12px 25px;
  border: none;
  background: linear-gradient(135deg, #0f5132, #198754);
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.builder-btn:hover {
  transform: scale(1.05);
}

/* RIGHT IMAGE */
.builder-image {
  flex: 1;
  min-width: 300px;
}

.builder-video {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .builder-container {
    flex-direction: column;
    text-align: center;
  }

  .builder-line {
    margin: 10px auto 20px;
  }
}
/* ===== BUILDER SECTION END ===== */



/* ───────── PREMIUM CTA ───────── */

.bottom-cta{
  background:linear-gradient(135deg,var(--green) 0%,#0e4a1e 100%);
  padding:25px 1px;
}

/* BOX */
.cta-box{
  max-width:850px;
  margin:auto;
  background:#ffffff;
  padding:50px 40px;
  border-radius:12px;
  text-align:center;

  box-shadow:0 20px 60px rgba(0,0,0,0.15); /* 🔥 strong shadow */
   backdrop-filter: blur(6px);
}

/* HEADING */
.cta-box h2{
  font-family:'Merriweather',serif;
  font-size:2rem;
  color:var(--green);
  margin-bottom:10px;
}

/* TEXT */
.cta-box p{
  font-size:1rem;
  color:var(--muted);
  margin-bottom:25px;
}

/* BUTTON GROUP */
.cta-buttons{
  display:flex;
  justify-content:center;
  gap:15px;
  flex-wrap:wrap;
}

/* PRIMARY BUTTON */
.btn-primary{
  background:var(--green);
  color:#fff;
  padding:12px 28px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.btn-primary:hover{
  background:var(--green2);
}

/* OUTLINE BUTTON */
.btn-outline_g{
  border:1px solid var(--green);
  color:var(--green);
  padding:12px 28px;
  border-radius:6px;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.btn-outline_g:hover{
  background:var(--green);
  color:#fff;
}

/* DIVIDER */
.cta-divider{
  width:60px;
  height:2px;
  background:var(--gold);
  margin:30px auto;
}

/* CONTACT */
.cta-contact{
  font-size:0.9rem;
  color:var(--text);
  line-height:1.6;
}

/* ───────── MOBILE ───────── */
@media(max-width:600px){

  .cta-box{
    padding:35px 20px;
  }

  .cta-box h2{
    font-size:1.4rem;
  }

  .cta-box p{
    font-size:0.9rem;
  }

  .btn-primary,
  .btn-outline{
    width:100%;
    text-align:center;
  }

}



/* ===== FAQ SECTION START ===== */
.faq3-section {
  padding: 60px 20px;
  text-align: center;
}

/* TITLE */
.faq3-title {
  font-size: 32px;
  font-weight: 600;
  color: #222;
}

/* LINE */
.faq3-line {
  width: 120px;
  height: 4px;
  margin: 10px auto 40px;
  background: linear-gradient(90deg, transparent, #c59d5f, transparent);
  position: relative;
}

.faq3-line::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #c59d5f;
  border-radius: 50%;
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}

/* CONTAINER */
.faq3-container {
  max-width: 850px;
  margin: auto;
}

/* CARD */
.faq3-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s;
}

.faq3-item:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* QUESTION */
.faq3-question {
  width: 100%;
  padding: 18px 20px;
  text-align: left;
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  color: #333;
}

/* ICON */
.faq3-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #888;
  transition: 0.3s;
}

/* ACTIVE ICON */
.faq3-item.active .faq3-question::after {
  content: "−";
  color: #0f5132;
}

/* ANSWER */
.faq3-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  transition: 0.4s ease;
}

/* OPEN */
.faq3-item.active .faq3-answer {
  max-height: 200px;
  padding: 15px 20px;
}

/* RESPONSIVE */
@media(max-width: 600px){
  .faq3-title {
    font-size: 24px;
  }

  .faq3-question {
    font-size: 14px;
  }
}
/* ===== FAQ SECTION END ===== */




/* ── FOOTER ── */
footer{background:#464646;color:#fff;text-align:center;padding:20px 40px;font-size:0.72rem;line-height:1.6}
footer a{color:rgba(255,255,255,0.4);text-decoration:underline}


/* ===== DISCLAIMER SECTION START ===== */
.disclaimer-section {
  padding: 30px 15px;
  /* background: #f1f3f5; light grey background */
}

/* TEXT BOX */
.disclaimer-box {
  max-width: 900px;
  margin: auto;
  font-size: 13px;
  line-height: 1.7;
  color: #fff;
  text-align: center;
  padding: 0 10px;
}

/* MOBILE RESPONSIVE */
@media(max-width: 600px){
  .disclaimer-box {
    font-size: 12px;
    line-height: 1.6;
  }
}
/* ===== DISCLAIMER SECTION END ===== */


/* ── FLOATING BUTTONS ── */
.float-wa{
  position:fixed;bottom:24px;left:24px;z-index:300;
  background:#25D366;color:var(--white);
  width:52px;height:52px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;box-shadow:0 4px 16px rgba(37,211,102,0.4);
  animation:wpulse 2.5s infinite;
}
@keyframes wpulse{0%,100%{box-shadow:0 4px 16px rgba(37,211,102,0.4)}50%{box-shadow:0 4px 28px rgba(37,211,102,0.7)}}
.float-call{
  position:fixed;bottom:24px;right:24px;z-index:300;
  background:var(--green);color:var(--white);
  width:52px;height:52px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  text-decoration:none;box-shadow:0 4px 16px rgba(26,107,47,0.4);
}
.float-call:hover,.float-wa:hover{transform:scale(1.1)}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr;padding:40px 24px}
  .stats-inner{grid-template-columns:repeat(2,1fr)}
  .stat-item{border-right:none;border-bottom:1px solid var(--border)}
  .hl-grid,.loc-grid{grid-template-columns:1fr}
  .hl-images{height:280px;grid-template-rows:1fr}
  .hl-img-placeholder-2{display:none}
  .am-grid{grid-template-columns:repeat(2,1fr)}
  .payment-grid{grid-template-columns:1fr}
  .stamp-wrap{display:none}
}
@media(max-width:540px){
  nav{padding:0 16px}
  .hero-inner{padding:32px 16px}
  .am-grid{grid-template-columns:repeat(2,1fr)}
  .stats-inner{grid-template-columns:1fr 1fr}
}