/* =========================================================
   ROOT VARIABLES (MERGED & FIXED)
========================================================= */
:root{
  --gold:#c9a24d;
  --gold-soft:#fff6cf;
  --gold-dark:#9f7c2c;
  --primary:#0b4c5f;       /* TEAL */
  --cta:#b8860b;
  --dark:#1f2937;
  --light:#fffdf4;
  --radius:12px;
}

/* =========================================================
   RESET & BASE
========================================================= */


body{
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:linear-gradient(180deg,#fffaf0,#fff4dc);
  color:#222;
}



/* =========================================================
   TOP BAR
========================================================= */
.topbar{
  background:#002844;
  color:#fff;
  font-size:13px;
  padding:6px 10px;
  text-align:center;
}

/* =========================================================
   HEADER & NAVIGATION – PREMIUM UI
========================================================= */

:root{
  --gold1:#d6b56d;
  --gold2:#f3e1a3;
  --dark:#1e1e1e;
  --cta:#b08a2e;
}

header{
  position:fixed;
  top:26px;
  width:100%;
  background:linear-gradient(90deg,#fff6cf,#ffe7a3);
  box-shadow:0 4px 18px rgba(0,0,0,.15);
  z-index:1000;
}


.nav{
 
  margin:auto;
  padding:10px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;

  background:linear-gradient(135deg,#fffdf6,#fff1c7);
 
  border-radius:14px;
  box-shadow:0 10px 35px rgba(0,0,0,.18);
}

/* LOGO */
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  font-weight:800;
  color:#2b2b2b;
}
.logo img{
  width:34px;
  height:34px;
  object-fit:contain;
}

/* MENU */
nav ul{
  list-style:none;
  display:flex;
  gap:18px;
}

nav a{
  position:relative;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  color:#2b2b2b;
  padding:6px 4px;
  transition:.3s ease;
}

/* Underline hover effect */
nav a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:0;
  height:3px;
  background:linear-gradient(135deg,var(--gold1),var(--gold2));
  transition:.3s;
  border-radius:3px;
}

nav a:hover::after,
nav a.active::after{
  width:100%;
}

nav a:hover,
nav a.active{
  color:#000;
}

/* CALL BUTTON */
.call-btn{
  background:linear-gradient(135deg,#b08a2e,#e5c56f);
  color:#fff;
  padding:10px 20px;
  border-radius:40px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 6px 18px rgba(176,138,46,.45);
  transition:.3s ease;
}

.call-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(176,138,46,.6);
}

/* =========================================================
   MOBILE NAV
========================================================= */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}
.menu-toggle span{
  width:26px;
  height:3px;
  background:linear-gradient(135deg,var(--gold1),var(--gold2));
  border-radius:2px;
}

/* MOBILE VIEW */
@media(max-width:900px){

  header{ top:10px }

  nav{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    display:none;
    animation:slideDown .4s ease;
  }



  nav ul{
    flex-direction:column;
    padding:22px;
    gap:14px;
    background:linear-gradient(180deg,#fffdf6,#fff1c7);
    border-radius:0 0 16px 16px;
    box-shadow:0 20px 35px rgba(0,0,0,.18);
  }

  nav a{
    text-align:center;
    padding:14px;
    background:#fff;
    border-radius:10px;
  }

  nav a::after{ display:none }

  .menu-toggle{ display:flex }
  .call-btn{ display:none }
}

/* Animation */
@keyframes slideDown{
  from{ opacity:0; transform:translateY(-10px) }
  to{ opacity:1; transform:translateY(0) }
}
/* =========================================================
   HERO
========================================================= */
.hero{

  background:
    linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.6)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c") center/cover;
  color:#fff;
  padding:90px 20px;
}

.hero-wrap{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:40px;
}

.hero h1{
  font-size:42px;
  line-height:1.2;
  color:#ffffff;
}

.hero-call{
  margin-top:12px;
  font-size:22px;
  font-weight:800;
  color:#dfd700;
}

/* =========================================================
   FORM
========================================================= */


.form h3{
  text-align:center;
  margin-bottom:14px;
}

.form input,
.form select{
  width:100%;
  padding:12px;
  margin-bottom:12px;
  border:1px solid #ccc;
  border-radius:6px;
}

.form button{
  width:100%;
  padding:14px;
  background:var(--primary);
  color:#fff;
  border:none;
  font-size:16px;
  border-radius:6px;
  cursor:pointer;
}

/* =========================================================
   SECTIONS & LAYOUT
========================================================= */
section{
  padding:80px 20px;
  background:var(--light);
}

section:nth-of-type(even){
  background:var(--gold-soft);
}

.container{
  max-width:1200px;
  margin:auto;
}

h2{
  text-align:center;
  font-size:32px;
  margin-bottom:40px;
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:24px;
}

.card{
  background:#fff;
  padding:22px;
  text-align:center;

  box-shadow:0 6px 20px rgba(0,0,0,.08);
}

/* =========================================================
   PLANS & IMAGES
========================================================= */
.plan-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:20px;
}

.zoom-img{
  width:100%;

  cursor:zoom-in;
  transition:.3s;
}
.zoom-img:hover{
  transform:scale(1.03);
}

/* =========================================================
   IMAGE MODAL
========================================================= */
#imgModal{
  display:none;
  position:fixed;

  background:rgba(0,0,0,.9);
  z-index:9999;
}
#imgModal img{
  max-width:90%;
  max-height:90%;
  margin:5% auto;
  display:block;
}
#imgModal .close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:40px;
  color:#fff;
  cursor:pointer;
}

/* =========================================================
   SLIDER
========================================================= */
.slider{
  max-width:900px;
  margin:auto;
  position:relative;
  overflow:hidden;

}

.slides{
  display:flex;
  transition:transform .6s ease;
}
.slides img{
  width:100%;
  flex-shrink:0;
}

.slider button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,.6);
  color:#fff;
  border:none;
  padding:12px;
  font-size:22px;
  cursor:pointer;
}
.slider .prev{left:10px}
.slider .next{right:10px}

/* =========================================================
   CTA
========================================================= */
.cta{
  background:var(--primary);
  color:#fff;
  text-align:center;
}
.cta span{
  display:block;
  margin-top:10px;
  font-size:24px;
  font-weight:800;
  color:#ffd700;
}

/* =========================================================
   MOBILE CTA
========================================================= */
.mobile-cta{
  display:none;
}
@media(max-width:768px){
  .hero-wrap{grid-template-columns:1fr}
  .mobile-cta{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    display:flex;
    z-index:999;
  }
  .mobile-cta a{
    flex:1;
    padding:14px;
    text-align:center;
    color:#fff;
    font-weight:700;
  }
  .mobile-cta .call{background:#198754}
  .mobile-cta .enquire{background:var(--cta)}
}

/* =========================================================
   FLOATING BUTTONS
========================================================= */
.float{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#25D366;
  color:#fff;
  padding:14px 16px;
  border-radius:50%;
  font-size:20px;
  text-decoration:none;
  z-index:9999;
}
.float.call{
  bottom:80px;
  background:var(--cta);
}

/* =========================================================
   FOOTER
========================================================= */
/* ===== LUXURY FOOTER ===== */
.lux-footer{
  background:#0d0d0d;
  color:#d1d1d1;
  font-size:14px;
  line-height:1.7;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  padding:60px 20px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:40px;
}

.footer-col h4{
  color:#c9a24d;
  font-family:"Playfair Display",serif;
  font-size:18px;
  margin-bottom:12px;
}

.footer-col a{
  color:#f1d77b;
  text-decoration:none;
  font-weight:500;
}

.footer-col a:hover{
  text-decoration:underline;
}

.footer-col .mt{
  margin-top:14px;
}

.agent a{
  font-size:18px;
  font-weight:700;
  color:#ffd700;
}

.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li{
  margin-bottom:6px;
}

.social{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.social a{
  background:linear-gradient(135deg,#c9a24d,#9f7c2c);
  color:#111;
  padding:6px 12px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;
  padding:16px 10px;
  font-size:13px;
  color:#aaa;
}
/* ===== FLOOR PLAN UI ===== */

.plans-section{
  background:linear-gradient(180deg,#fffdf4,#fff6cf);
  text-align:center;
}

.plans-subtitle{
  max-width:850px;
  margin:0 auto 40px;
  color:#555;
}

.plan-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.plan-card{
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 12px 30px rgba(0,0,0,.15);
  position:relative;
  transition:.35s;
}

.plan-card::before{
  content:"";
  position:absolute;
  top:0;left:0;width:100%;height:5px;
  background:linear-gradient(90deg,#c9a24d,#f1d77b);
}

.plan-card.active{
  outline:3px solid #c9a24d;
}

.plan-card:hover{
  transform:translateY(-6px);
}

.plan-card img{
  width:100%;
  border-radius:14px;
  margin-bottom:16px;
  cursor:zoom-in;
}

.plan-card ul{
  list-style:none;
  padding:0;
  margin:0 0 16px;
}

.plan-card li{
  font-size:14px;
  padding:6px 0;
  border-bottom:1px dashed #e5e5e5;
}

.plan-actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.plan-btn{
  background:linear-gradient(135deg,#c9a24d,#9f7c2c);
  color:#fff;
  border:none;
  padding:10px 22px;
  border-radius:30px;
  font-weight:700;
  cursor:pointer;
}

.download-btn{
  border:2px solid #c9a24d;
  color:#9f7c2c;
  padding:9px 20px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
}

/* ===== MODALS ===== */

.modal{
  display:none;
  position:fixed;

  background:rgba(0,0,0,.9);
  z-index:9999;
}

.modal img{
  max-width:90%;
  max-height:90%;
  margin:5% auto;
  display:block;
}

.modal .close{
  position:absolute;
  top:20px;
  right:30px;
  font-size:36px;
  color:#fff;
  cursor:pointer;
}

.lead-modal{
  background:rgba(0,0,0,.7);
}

.lead-box{
  background:#fff;
  max-width:420px;
  margin:10% auto;
  padding:26px;
  border-radius:16px;
  text-align:center;
}

/* =====================
   MASTER PLAN SECTION
===================== */

.masterplan-section{
  background:linear-gradient(180deg,#fffdf4,#fff6cf);
  text-align:center;
}

.master-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:40px;
}

.master-card{
  background:#fff;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,.15);
  padding:18px;
  transition:.35s;
  position:relative;
}

.master-card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(90deg,#c9a24d,#f1d77b);
}

.master-card:hover{
  transform:translateY(-8px);
}

.master-card img{
  width:100%;
  border-radius:14px;
  cursor:zoom-in;
}

.master-card h3{
  margin-top:16px;
  font-size:20px;

}

.master-card.highlight{
  outline:3px solid #c9a24d;
}
/* ===== AMENITIES PHOTO SECTION ===== */

.amenities-section{
  background:linear-gradient(180deg,#fffbe6,#fff2b8);
  padding:90px 20px;
}

.section-title{
  text-align:center;
  font-size:36px;
  font-family:"Playfair Display",serif;
  margin-bottom:10px;
}

.section-subtitle{
  text-align:center;
  max-width:760px;
  margin:0 auto 50px;
  color:#555;
}

.amenities-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:26px;
}

.amenity-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 15px 35px rgba(0,0,0,.2);
  transition:.4s ease;
}

.amenity-card img{
  width:100%;
  height:133px;
  object-fit:cover;
  transition:.5s ease;
}

.amenity-overlay{
  position:absolute;

  background:linear-gradient(
    to top,
    rgba(0,0,0,.7),
    rgba(0,0,0,.2),
    transparent
  );
  display:flex;
  align-items:flex-end;
  padding:22px;
}

.amenity-overlay h4{
  color:#fff;
  font-size:18px;
  font-weight:700;
  letter-spacing:.5px;
  position:relative;
}

.amenity-overlay h4::after{
  content:"";
  display:block;
  width:50px;
  height:3px;
  margin-top:8px;
  background:linear-gradient(90deg,#d4af37,#f3e18f);
}

/* Hover effect */
.amenity-card:hover img{
  transform:scale(1.08);
}

.amenity-card:hover{
  transform:translateY(-6px);
}

/* Highlight (Swimming Pool) */
.amenity-card.highlight{
  outline:4px solid #d4af37;
}

/* Mobile */
@media(max-width:600px){
  .amenity-card img{
    height:220px;
  }
  .section-title{
    font-size:28px;
  }
}

/* ================= LOCATION SECTION ================= */

.location-section{
  background:linear-gradient(180deg,#fffaf0,#fff1c4);
  padding:90px 20px;
}

.location-header{
  max-width:850px;
  margin:0 auto 50px;
}

.location-header h2{
  font-family:"Playfair Display",serif;
  font-size:36px;
  margin-bottom:14px;
}

.location-header p{
  font-size:16px;
  color:#555;
  line-height:1.7;
}

/* GRID */
.location-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}

/* LEFT CARDS */
.location-points{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.location-card{
  background:#fff;
  border-radius:14px;
  padding:18px 22px;
  display:flex;
  align-items:center;
  gap:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
  border-left:5px solid #d4af37;
  transition:.3s ease;
}

.location-card span{
  font-size:24px;
}

.location-card h4{
  font-size:16px;
  font-weight:600;
  margin:0;
  color:#222;
}

.location-card:hover{
  transform:translateX(6px);
  box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* MAP */
.location-map{
  border-radius:18px;
  overflow:hidden;
  border:3px solid #d4af37;
  box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.location-map iframe{
  width:100%;
  height:430px;
  border:0;
}

/* MOBILE */
@media(max-width:900px){
  .location-grid{
    grid-template-columns:1fr;
  }
  .location-map iframe{
    height:320px;
  }
}
/* ===== Scroll Reveal Animation ===== */
.reveal{
  opacity:0;
  transform:translateY(40px);
  transition:all .8s ease;
}
.reveal.active{
  opacity:1;
  transform:none;
}

/* ===== Floating Directions Button ===== */
.direction-float{
  position:fixed;
  bottom:136px;
  right:20px;
  background:linear-gradient(135deg,#c9a24d,#f1d77b);
  color:#1f2937;
  padding:14px 20px;
  border-radius:40px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
  z-index:9999;
  transition:.3s ease;
}

.direction-float:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.35);
}

/* ===== ABOUT DEVELOPER ===== */
.developer-section{
  padding:90px 20px;
  background:linear-gradient(180deg,#fffdf4,#fff6cf);
}

.developer-header{
  text-align:center;
  margin-bottom:50px;
}

.section-badge{
  display:inline-block;
  padding:6px 18px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.5px;
  color:#9f7c2c;
  border:1px solid #d4af37;
  border-radius:30px;
  margin-bottom:12px;
}

.developer-header h2{
  font-size:34px;
  margin-bottom:14px;
}

.gold-divider{
  width:80px;
  height:3px;
  margin:0 auto;
  background:linear-gradient(90deg,#c9a24d,#f1d77b);
  border-radius:4px;
}

.developer-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:40px;
}

.developer-content h3{
  font-size:26px;
  margin-bottom:14px;
  color:#1f2937;
}

.developer-content p{
  font-size:16px;
  line-height:1.7;
  color:#444;
  margin-bottom:16px;
}

.developer-info{
  display:grid;
  gap:18px;
}

.info-card{
  background:#fff;
  padding:22px;
  border-radius:14px;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  border-left:4px solid #d4af37;
}

.info-card h4{
  font-size:17px;
  margin-bottom:8px;
  color:#1f2937;
}

.info-card p{
  font-size:15px;
  color:#555;
  line-height:1.5;
}

.info-card.highlight{
  background:linear-gradient(135deg,#fff6cf,#ffe7a3);
  border-left:4px solid #9f7c2c;
}

/* MOBILE */
@media(max-width:900px){
  .developer-grid{
    grid-template-columns:1fr;
  }
}

/* ===== PROJECT OVERVIEW ===== */
.project-overview{
  padding:90px 20px;
  background:linear-gradient(180deg,#fffaf0,#fff2cc);
}

.overview-header{
  text-align:center;
  margin-bottom:50px;
}

.section-badge{
  display:inline-block;
  padding:6px 18px;
  font-size:13px;
  font-weight:700;
  color:#9f7c2c;
  border:1px solid #d4af37;
  border-radius:30px;
  margin-bottom:10px;
}

.overview-header h2{
  font-size:34px;
  max-width:900px;
  margin:0 auto;
}

.gold-divider{
  width:90px;
  height:3px;
  margin:14px auto 0;
  background:linear-gradient(90deg,#c9a24d,#f1d77b);
  border-radius:4px;
}

/* GRID */
.overview-grid{
  max-width:1150px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:45px;
  align-items:flex-start;
}

/* CONTENT */
.overview-content p{
  font-size:16px;
  line-height:1.75;
  color:#333;
  margin-bottom:18px;
}

.overview-content .lead-text{
  font-size:18px;
  font-weight:600;
  color:#222;
}

/* STATS */
.overview-stats{
  display:grid;
  gap:18px;
}

.stat-card{
  background:#fff;
  padding:20px;
  border-radius:14px;
  border-left:4px solid #d4af37;
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.stat-card h4{
  margin-bottom:6px;
  font-size:16px;
}

.stat-card p{
  font-size:15px;
  color:#444;
}

.stat-card.highlight{
  background:linear-gradient(135deg,#fff6cf,#ffe7a3);
  border-left:4px solid #9f7c2c;
}

.stat-card.gold{
  background:linear-gradient(135deg,#c9a24d,#9f7c2c);
  color:#fff;
  border-left:none;
}

.stat-card.gold p,
.stat-card.gold h4{
  color:#fff;
}



/* MOBILE */
@media(max-width:900px){
  .overview-grid{
    grid-template-columns:1fr;
  }
}

/* ================= BOOK SITE VISIT ================= */
.visit-section{
  position:relative;
  padding:100px 20px;
  background:
    url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c")
    center/cover no-repeat;
}

.visit-overlay{
  position:absolute;

  background:
    linear-gradient(
      110deg,
      rgba(15,15,15,.92),
      rgba(40,30,10,.88)
    );
}

.visit-container{
  position:relative;
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:50px;
  z-index:2;
  color:#fff;
}

/* LEFT CONTENT */
.visit-tag{
  display:inline-block;
  padding:8px 18px;
  font-size:13px;
  font-weight:700;
  letter-spacing:.6px;
  background:#111;
  color:#f1d77b;
  border:1px solid #c9a24d;
  border-radius:30px;
  margin-bottom:16px;
}

.visit-content h2{
  font-size:42px;
  line-height:1.25;
  margin-bottom:16px;
}

.gold-text{
  color:#f5d77a;
  text-shadow:0 1px 2px rgba(0,0,0,.6);
}

.visit-content p{
  font-size:17px;
  line-height:1.7;
  color:#e8e8e8;
  margin-bottom:22px;
}

.visit-points{
  list-style:none;
  padding:0;
  margin-bottom:26px;
}

.visit-points li{
  margin-bottom:10px;
  font-size:15px;
  color:#ffd700;
  font-weight:600;
}

.visit-contact{
  margin-top:20px;
}

.call-box{
  display:inline-block;
  padding:16px 26px;
     background: linear-gradient(135deg, #eeedeb, #eaff00);
    color: #000000;
  border-radius:14px;
  font-weight:800;
  font-size:15px;
}

.call-box span{
  display:block;
  font-size:22px;
  margin-top:4px;
}

/* FORM */
.visit-form-box{
  background:#fff;
  color:#222;
  padding:32px;
  border-radius:18px;
  box-shadow:0 20px 45px rgba(0,0,0,.35);
}

.visit-form-box h3{
  font-size:26px;
  margin-bottom:6px;
}

.visit-form-box p{
  font-size:12px;
  color:#555;
  margin-bottom:18px;
}

.visit-form-box input,
.visit-form-box select{
  width:100%;
  padding:13px;
  margin-bottom:14px;
  border:1px solid #ccc;
  border-radius:8px;
  font-size:14px;
}

.visit-form-box button{
  width:100%;
  padding:14px;
  background:linear-gradient(135deg,#c9a24d,#9f7c2c);
  border:none;
  color:#111;
  font-size:16px;
  font-weight:800;
  border-radius:30px;
  cursor:pointer;
}

.visit-form-box button:hover{
  background:linear-gradient(135deg,#d4af37,#b8963a);
}

.form-note {
    margin-top: 33px;
    font-size: 14px;
    color: #0721f4;
    text-align: center;
}

/* MOBILE */
@media(max-width:900px){
  .visit-container{
    grid-template-columns:1fr;
  }
  .visit-content h2{
    font-size:34px;
  }
}


/* ===== ROBOT CHECK ===== */
.human-check{
  margin:14px 0;
  font-size:14px;
}

.human-check label{
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  font-weight:600;
  color:#444;
}

.human-check input{
  width:18px;
  height:18px;
 
}

.logo a{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:#2b2b2b;
}

/* ==========================
   FAQ SECTION – PREMIUM UI
========================== */
.faq-section{
  padding:80px 20px;
  background:linear-gradient(180deg,#fffaf0,#fff3d6);
}

.faq-container{
  max-width:900px;
  margin:auto;
}

.faq-title{
  text-align:center;
  font-size:36px;
  font-weight:800;
  color:#1a1a1a;
  margin-bottom:50px;
}
.faq-title span{
  display:block;
  font-size:18px;
  font-weight:600;
  color:#c9a24d;
  margin-top:10px;
}

.faq-item{
  background:#ffffff;
  border-radius:14px;
  margin-bottom:18px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  overflow:hidden;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:22px 26px;
  font-size:18px;
  font-weight:700;
  color:#222;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-question:hover{
  background:#fff8e6;
}

.faq-question .icon{
  font-size:26px;
  color:#c9a24d;
  transition:transform 0.3s ease;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease;
  background:#fffdf6;
}

.faq-answer p{
  padding:0 26px 24px;
  font-size:16px;
  color:#555;
  line-height:1.7;
}

.faq-item.active .faq-answer{
  max-height:300px;
}

.faq-item.active .icon{
  transform:rotate(45deg);
}

/* Mobile */
@media(max-width:768px){
  .faq-title{
    font-size:28px;
  }
  .faq-question{
    font-size:16px;
    padding:18px 20px;
  }
}

.lux-footer {
  background: linear-gradient(180deg, #111, #1a1a1a);
  color: #eaeaea;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  color: #f1d77b;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-col p {
  line-height: 1.7;
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #f1d77b;
}

.agent-phone {
  font-size: 20px;
  font-weight: 700;
}

.agent-phone a {
  color: #f1d77b;
  text-decoration: none;
}

.social a {
  display: inline-block;
  margin-right: 12px;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
}

.social a:hover {
  color: #f1d77b;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #ccc;
}

.footer-bottom a {
  color: #f1d77b;
  text-decoration: none;
}

/* AGENT PHONE – STRONG VISUAL CTA */
.agent-phone {
  margin-top: 15px;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.agent-phone i {
  color: #f1d77b;
  margin-right: 8px;
}

.agent-phone a {
  color: #f1d77b;
  text-decoration: none;
}

.agent-phone a:hover {
  text-decoration: underline;
}

.agent-note {
  font-size: 13px;
  color: #bbb;
  margin-top: 6px;
}

/* SOCIAL ICON BAR */
.footer-social-bar {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 25px 0 35px;
}

.footer-social-bar a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f1d77b;
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer-social-bar a:hover {
  background: #f1d77b;
  color: #111;
  transform: translateY(-3px);
}

.highlight-section{
padding:70px 0;
background:#f7f7f7;
}

.section-title{
text-align:center;
font-size:32px;
font-weight:700;
margin-bottom:40px;
color:#222;
}

.highlight-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:25px;
}

.highlight-card{
background:#fff;
padding:25px;
border-radius:6px;
border:1px solid #e6e6e6;
text-align:center;
transition:.3s;
}

.highlight-card:hover{
transform:translateY(-6px);
box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.highlight-card .icon{
font-size:32px;
margin-bottom:12px;
}

.highlight-card h4{
font-size:18px;
margin-bottom:8px;
color:#222;
}

.highlight-card p{
font-size:14px;
color:#666;
line-height:1.6;
}
.highlights-section{
padding:80px 0;
background:#0c0c0c;
color:#fff;
}

.section-title{
text-align:center;
margin-bottom:50px;
}

.section-title h2{
font-size:38px;
font-weight:700;
color:#d4af37;
margin-bottom:10px;
}

.section-title p{
color:#bbb;
font-size:16px;
}

.highlight-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.highlight-card{
background:#e0b63957;
padding:30px 25px;
border-radius:10px;
text-align:center;
border:1px solid rgba(255,255,255,0.05);
transition:all .35s ease;
position:relative;
overflow:hidden;
}

.highlight-card:hover{
transform:translateY(-8px);
border-color:#d4af37;
box-shadow:0 10px 35px rgba(212,175,55,.25);
}

.highlight-icon{
font-size:36px;
margin-bottom:15px;
}

.highlight-card h3{
font-size:20px;
margin-bottom:10px;
color:#181616;
}

.highlight-card p{
font-size:14px;
color:#690000;
line-height:1.6;
}

/* GOLD LINE EFFECT */

.highlight-card:before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:3px;
background:linear-gradient(90deg,#d4af37,#f3d27a);
opacity:0;
transition:.4s;
}

.highlight-card:hover:before{
opacity:1;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 768px){

.hero{
height:auto;
padding:80px 0 40px;
}

.hero-wrap{
flex-direction:column;
align-items:flex-start;
gap:30px;
}

.hero-content{
max-width:100%;
}

.hero h1{
font-size:30px;
}

.hero p{
font-size:16px;
}

.hero-call{
font-size:16px;
padding:8px 14px;
}

.form-card{
width:100%;
max-width:380px;
margin:auto;
padding:20px;
}

.hero-slider img{
height:100%;
object-fit:cover;
}

.badge{
font-size:11px;
padding:5px 10px;
}

}


/* EXTRA SMALL DEVICES */

@media (max-width:480px){

.hero h1{
font-size:26px;
line-height:1.3;
}

.hero p{
font-size:15px;
}

.hero-call{
font-size:15px;
}

.form-card{
padding:18px;
border-radius:8px;
}

.form-card h3{
font-size:18px;
}

.field-wrapper input,
.field-wrapper select{
padding:10px;
font-size:14px;
}

#dummySubmit{
padding:11px;
font-size:15px;
}

}

/* ================= HERO SECTION ================= */

.hero{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
  font-family:Arial, Helvetica, sans-serif;
}

/* ===== SLIDER ===== */

.hero-slider{
  position:absolute;

  z-index:1;
}

.hero-slider img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  animation:slider 36s infinite;
}

.hero-slider img:nth-child(1){animation-delay:0s}
.hero-slider img:nth-child(2){animation-delay:4s}
.hero-slider img:nth-child(3){animation-delay:8s}
.hero-slider img:nth-child(4){animation-delay:12s}
.hero-slider img:nth-child(5){animation-delay:16s}
.hero-slider img:nth-child(6){animation-delay:20s}
.hero-slider img:nth-child(7){animation-delay:24s}
.hero-slider img:nth-child(8){animation-delay:28s}
.hero-slider img:nth-child(9){animation-delay:32s}

@keyframes slider{
  0%{opacity:0}
  5%{opacity:1}
  20%{opacity:1}
  25%{opacity:0}
  100%{opacity:0}
}

/* ===== DARK OVERLAY ===== */

.hero-overlay{
  position:absolute;

  background:linear-gradient(to right,rgba(0,0,0,.75),rgba(0,0,0,.2));
  z-index:2;
}

/* ===== CONTENT WRAPPER ===== */

.hero-wrap{
  position:relative;
  z-index:3;
  max-width:1200px;
  width:90%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:50px;
}

/* ===== TEXT CONTENT ===== */

.hero-content{
  max-width:600px;
}

.badge{
  background:#d4af37;
  color:#000;
  padding:6px 14px;
  font-size:12px;
  letter-spacing:2px;
  display:inline-block;
  margin-bottom:15px;
}

.hero h1{
  font-size:48px;
  line-height:1.2;
  margin-bottom:15px;
}

.hero h1 span{
  color:#d4af37;
}

.hero p{
  font-size:18px;
  margin-bottom:20px;
}

.hero-call{
  font-size:18px;
  background:#fff;
  color:#000;
  padding:10px 18px;
  border-radius:5px;
  display:inline-block;
  font-weight:600;
}

/* ================= FORM ================= */

.form-card{
  width:330px;
  background:rgba(255,255,255,.96);
  color:#000;
  padding:30px;
  border-radius:10px;
  box-shadow:0 20px 40px rgba(0,0,0,.4);
}

.form-card h3{
  text-align:center;
  margin-bottom:20px;
}

/* ===== INPUT FIELDS ===== */

.field-wrapper{
  position:relative;
  margin-bottom:15px;
}

.field-wrapper input,
.field-wrapper select{
  width:100%;
  padding:12px;
  border:1px solid #ddd;
  border-radius:5px;
  font-size:14px;
}

/* SAVE STATUS ICON */

.save-status{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  font-size:16px;
  color:green;
  display:none;
}

/* ===== HUMAN CHECK ===== */

.human-check{
  margin:12px 0;
  font-size:14px;
}

/* ===== SUBMIT BUTTON ===== */

#dummySubmit{
  width:100%;
  padding:12px;
  background:#d4af37;
  border:none;
  border-radius:5px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

#dummySubmit:hover{
  background:#c19b2e;
}

/* ===== MESSAGE ===== */

#form-msg{
  margin-top:10px;
  font-size:14px;
}

/* ================= MOBILE ================= */

@media(max-width:768px){

  .hero{
    height:auto;
    padding:80px 0;
  }

  .hero-wrap{
    flex-direction:column;
    text-align:center;
  }

  .hero h1{
    font-size:30px;
  }

  .hero p{
    font-size:16px;
  }

  .hero-call{
    font-size:16px;
  }

  .form-card{
    width:100%;
    max-width:380px;
    margin:auto;
  }

}