*,
*::before,
*::after { box-sizing: border-box; }

body{
  margin:0;
  font-family:'Poppins', Arial, sans-serif;
  background:#000;
  color:#fff;
  scroll-behavior:smooth;
}

/* Navigation */
.nav{
  position:fixed; top:0; left:0; width:100%;
  z-index:999;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(6px);
  transition:background .3s ease, box-shadow .3s ease;
}
.nav.scrolled{ background:#000; box-shadow:0 2px 8px rgba(0,0,0,.7); }
.nav-inner{
  max-width:1150px; margin:0 auto; padding:10px 20px;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo {
  display: flex;
  align-items: left;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
}
.nav-links{ display:flex; gap:18px; font-size:.9rem; }
.nav-links a{
  text-decoration:none; color:#f4f4f4; position:relative; padding-bottom:4px;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:0;
  width:0; height:2px; background:#C9A646; transition:width .2s ease;
}
.nav-links a:hover::after{ width:100%; }

/* Sections (Luxury) */
.section-dark,
.section-light{ padding:90px 20px; }

.section-dark{ background:#000; color:#fff; }
.section-light{ background:#111; color:#fff; }

.section-inner{ max-width:1150px; margin:0 auto; }

/* Controlled spacing between key media sections */
#video{ padding-bottom:75px; }
#masterplan{ padding-top:85px; padding-bottom:85px; overflow:hidden; }
#gallery{ padding-top:75px; clear:both; }

/* Headings */
h1,h2,h3{ margin:0 0 10px; }
h2{
  font-size:2rem; color:#C9A646;
  text-transform:uppercase; letter-spacing:2px;
}
.section-sub{
  font-size:.95rem; color:#ddd;
  margin-top:5px; margin-bottom:28px;
}
.section-underline{
  width:60px; height:2px; background:#C9A646;
  margin-top:6px; margin-bottom:18px;
}
.section-underline.center{ margin-left:auto; margin-right:auto; }

/* Hero */
.hero{
  position:relative;
  min-height:90vh;
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  padding-top:110px; padding-bottom:75px;
  background:radial-gradient(circle at top, #333, #000);
  overflow:hidden;
}
.hero-overlay{
  position:absolute; inset:0;
  background-image:linear-gradient(135deg, rgba(201,166,70,.15), transparent 60%);
  opacity:.9; pointer-events:none;
}
.hero-content{ position:relative; max-width:800px; padding:0 20px; }
.hero-tagline{
  font-size:.95rem; letter-spacing:3px;
  text-transform:uppercase; color:#C9A646;
}
.hero h1{
  font-size:3.2rem; letter-spacing:6px;
  margin-top:10px; margin-bottom:10px;
}
.gold-line{ width:80px; height:2px; background:#C9A646; margin:6px auto 18px; }
.hero-sub{ font-size:1rem; color:#f0f0f0; }
.hero-cta{ margin-top:24px; display:flex; flex-wrap:wrap; gap:12px; justify-content:center; }

/* Buttons */
.btn{
  display:inline-block;
  padding:10px 26px;
  border-radius:4px;
  font-size:.95rem;
  font-weight:600;
  text-decoration:none;
  cursor:pointer;
  transition:background .2s ease, color .2s ease, transform .1s ease;
}
.btn-gold{ background:#C9A646; color:#000; }
.btn-gold:hover{ background:#e7c972; transform:translateY(-1px); }
.btn-outline{ border:1px solid #C9A646; color:#C9A646; background:transparent; }
.btn-outline:hover{ background:#C9A646; color:#000; }
.full-width{ width:100%; text-align:center; }

/* Layout helpers */
.two-col{
  display:grid;
  grid-template-columns:minmax(0,3fr) minmax(0,2.5fr);
  gap:30px;
  align-items:start;
}
.text-block p{ margin-bottom:12px; font-size:.95rem; color:#ddd; }

.card-highlight{
  background:#000;
  border-radius:10px;
  padding:20px 22px;
  border:1px solid rgba(201,166,70,.5);
  box-shadow:0 0 30px rgba(0,0,0,.5);
}
.card-highlight h3{
  color:#C9A646;
  margin-bottom:10px;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:1rem;
}
.card-highlight ul{ padding-left:18px; margin:0; font-size:.9rem; color:#ddd; }
.card-highlight li{ margin-bottom:6px; }

/* Table */
.table-wrapper{ overflow-x:auto; }
table{ width:100%; border-collapse:collapse; font-size:.9rem; }
thead{ background:#C9A646; color:#000; }
th,td{ padding:10px 8px; border:1px solid #333; }
tbody tr:nth-child(odd){ background:#111; }
tbody tr:nth-child(even){ background:#151515; }
.note{ font-size:.85rem; color:#c9c9c9; margin-top:14px; line-height:1.5; }
.payment-cta{ margin-top:20px; }

/* Features */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:18px;
}
.feature-card{
  background:#000;
  border-radius:10px;
  padding:18px 16px;
  border:1px solid rgba(201,166,70,.35);
  box-shadow:0 0 20px rgba(0,0,0,.6);
}
.feature-icon{ font-size:1.6rem; margin-bottom:8px; }
.feature-card h3{ font-size:1rem; color:#C9A646; margin-bottom:8px; }
.feature-card p{ margin:0; font-size:.9rem; color:#e0e0e0; }

/* Parallax-style */
.section-parallax{
  background-image:radial-gradient(circle at top left, #222, #000 60%);
  background-attachment:fixed;
}
.placeholder-card{
  border-radius:12px;
  border:1px dashed rgba(201,166,70,.6);
  padding:40px 20px;
  text-align:center;
  font-size:.95rem;
  color:#f0f0f0;
  background:rgba(0,0,0,.7);
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px, 1fr));
  gap:16px;
}
.gallery-item{
  border-radius:10px;
  height:auto;
  min-height:150px;
  overflow:hidden;
  border:1px solid rgba(201,166,70,.6);
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle at top, #333, #000);
  color:#f6f6f6;
  font-size:.9rem;
  text-transform:uppercase;
  letter-spacing:1px;
}
.gallery-item img{ width:100%; height:auto; display:block; }

/* Master Plan (fit image, never overlap) */
#masterplan .gallery-grid{ grid-template-columns:1fr !important; }
#masterplan .masterplan-item{ display:block; border-radius:14px; overflow:hidden; }
#masterplan .masterplan-item img{
  width:100% !important;
  height:auto !important;
  max-height:72vh;
  object-fit:contain;
  display:block;
}

/* Form status */
.form-status{
  font-size:.9rem;
  line-height:1.4;
  padding:8px 10px;
  border-radius:6px;
  border:1px solid rgba(201,166,70,.25);
  background:rgba(0,0,0,.35);
  color:#eaeaea;
  display:none;
}
.form-status.is-error{ display:block; border-color:rgba(255,93,93,.45); }
.form-status.is-success{ display:block; border-color:rgba(80,200,120,.55); }

/* Location */
.location-grid{
  display:grid;
  grid-template-columns:minmax(0,2.2fr) minmax(0,2.8fr);
  gap:24px;
  align-items:stretch;
}
.location-text ul{ padding-left:18px; margin:0; font-size:.95rem; color:#e1e1e1; }
.location-text li{ margin-bottom:6px; }
.location-map{ min-height:260px; }

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns:minmax(0,2.2fr) minmax(0,2.8fr);
  gap:26px;
  align-items:flex-start;
}
.contact-info p{ font-size:.95rem; color:#ddd; }
.contact-info a{ color:#C9A646; text-decoration:none; }
.contact-info a:hover{ text-decoration:underline; }

.contact-form-wrapper{
  background:#000;
  border-radius:12px;
  padding:20px 18px;
  border:1px solid rgba(201,166,70,.5);
  box-shadow:0 0 25px rgba(0,0,0,.7);
}
.contact-form{ display:grid; gap:10px; }
.form-row{ display:flex; flex-direction:column; font-size:.85rem; }
.form-row label{ margin-bottom:4px; }
.form-row input,
.form-row select,
.form-row textarea{
  border-radius:4px;
  border:1px solid #333;
  padding:8px 10px;
  background:#050505;
  color:#fff;
  font-family:inherit;
  font-size:.9rem;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus{
  outline:none;
  border-color:#C9A646;
}

/* Footer */
.footer{
  padding:30px 20px 40px;
  background:#000;
  border-top:1px solid #222;
}
.footer-inner{
  max-width:1150px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px, 1fr));
  gap:18px;
  font-size:.85rem;
  color:#ccc;
}
.footer a{ color:#C9A646; text-decoration:none; font-size:.85rem; }
.footer a:hover{ text-decoration:underline; }

/* Social section (logos) */
.footer-social{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.08);
  text-align:center;
}
/* ===== Hateem Garden: Premium Footer Social Icons ===== */
.footer-social {
  margin-top: 18px;
}

.social-section {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  min-width: 150px;        /* forces same width */
  min-height: 44px;        /* forces same height */
  border: 1px solid rgba(201,166,70,0.45);
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  background: rgba(0,0,0,0.35);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.social-link img {
  width: 22px;
  height: 22px;
  display: block;
}

.social-link span {
  font-weight: 600;
  letter-spacing: 0.2px;
}

.social-link:hover {
  transform: translateY(-1px);
  border-color: rgba(201,166,70,0.9);
  background: rgba(201,166,70,0.10);
}

/* WhatsApp float */
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:22px;
  background:#25D366;
  color:#000;
  padding:12px 20px;
  border-radius:50px;
  font-weight:700;
  text-decoration:none;
  font-size:.9rem;
  box-shadow:0 0 18px rgba(0,0,0,.8);
  z-index:999;
}

/* Animations */
.fade-up{
  opacity:0;
  transform:translateY(25px);
  animation:fadeUp .9s ease forwards;
}
@keyframes fadeUp{ to{ opacity:1; transform:translateY(0); } }

/* Responsive */
@media (max-width:900px){
  .two-col,
  .location-grid,
  .contact-grid{ grid-template-columns:1fr; }
}
@media (max-width:768px){
  .nav-inner{ flex-direction:column; align-items:flex-start; gap:8px; }
  .nav-links{ flex-wrap:wrap; gap:12px; }
  .hero h1{ font-size:2.4rem; letter-spacing:3px; }
  .section-dark,
  .section-light{ padding-top:70px; padding-bottom:70px; }
  #video, #masterplan, #gallery{ padding-top:70px; padding-bottom:70px; }
}
@media (max-width:480px){
  .hero{ padding-top:110px; }
  .hero-sub{ font-size:.9rem; }
  .btn{ width:100%; text-align:center; }
}
/* ===== Premium Sticky Header ===== */
#top-nav.nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.72);
  border-bottom: 1px solid rgba(201,166,70,0.25);
}

#top-nav.nav.scrolled {
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  background: rgba(0,0,0,0.85);
}

.nav-links a.active {
  color: #C9A646;
}

.nav-links a.active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 6px;
  background: #C9A646;
  border-radius: 2px;
}
/* ===== Disabled / Coming Soon Button ===== */
.btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  border-style: dashed;
}

.btn-disabled::after {
  content: " ⏳";
}
/* ===== Button spacing fix ===== */
.payment-cta .btn {
  margin: 8px 10px 0 0;
}
/* ===== Booking Requirements Box ===== */
.booking-box{
  margin-top: 20px;
  padding: 18px 18px;
  border-radius: 14px;
  border: 1px solid rgba(201,166,70,0.35);
  background: rgba(0,0,0,0.35);
}

.booking-box h3{
  margin: 0 0 12px 0;
  color: #C9A646;
}

.booking-box ul{
  margin: 0;
  padding-left: 18px;
  color: #e9e9e9;
}

.booking-box li{
  margin: 8px 0;
  line-height: 1.5;
}

.booking-cta{
  margin-top: 14px;
}
/* ===== Booking Requirements Text Refinement ===== */
.booking-box li {
  font-weight: 400;
}

.booking-box li strong {
  color: #C9A646;          /* gold label */
  font-weight: 600;        /* not too heavy */
}

.booking-box li span {
  color: #e9e9e9;          /* normal text */
  font-weight: 400;
}
/* ===== Floating Call Button ===== */
.call-float{
  position: fixed;
  right: 18px;
  bottom: 86px;              /* sits above WhatsApp */
  z-index: 9999;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(201,166,70,0.95);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(201,166,70,0.9);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.call-float:hover{
  transform: translateY(-1px);
}
/* ===== Unified Floating Action Buttons ===== */
.whatsapp-float,
.call-float{
  width: 150px;              /* same width */
  height: 48px;              /* same height */
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* WhatsApp specific */
.whatsapp-float{
  right: 18px;
  bottom: 24px;
  background: #25D366;
  color: #000;
}

/* Call Now specific */
.call-float{
  right: 18px;
  bottom: 82px;              /* aligned stack */
  background: rgba(201,166,70,0.95);
  color: #000;
}
@media (max-width: 768px) {
  .nav-inner {
    padding: 10px 14px;
  }

  .nav-logo img {
    height: 38px;
  }
}
/* ===== Hero Center Logo ===== */
.hero-logo {
  display: flex;
  justify-content: center;
  margin: 18px 0 10px;
}

.hero-logo img {
  height: 90px;          /* desktop size */
  width: auto;
}

@media (max-width: 968px) {
  .hero-logo img {
    height: 70px;        /* mobile size */
  }
}
/* ===== Mobile Hero Top Spacing Fix ===== */
@media (max-width: 768px) {
  .hero {
    padding-top: 75px;   /* reduce gap below header */
  }

  .hero-logo {
    margin-top: 8px;     /* tighten logo spacing */
  }
}
/* ===== Subtle Hero Animation ===== */
.hero-content {
  animation: heroFadeUp 0.9s ease-out both;
}

.hero-logo img {
  animation: heroLogoIn 0.9s ease-out both, heroGlow 3.5s ease-in-out 1.2s infinite;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(201,166,70,0)); }
  50%      { filter: drop-shadow(0 0 10px rgba(201,166,70,0.25)); }
}

/* Respect user accessibility setting */
@media (prefers-reduced-motion: reduce) {
  .hero-content,
  .hero-logo img {
    animation: none !important;
  }
}
/* ===== Force Hero Animation (Mobile + Desktop) ===== */
.hero .hero-content,
.hero .hero-tagline,
.hero h1,
.hero .gold-line,
.hero .hero-sub,
.hero .hero-cta,
.hero .hero-logo img {
  opacity: 0;
  transform: translateY(14px);
  animation: heroMobileFadeUp 0.9s ease-out forwards;
}

.hero .hero-logo img { 
  transform: translateY(10px) scale(0.98);
  animation-delay: 0.10s;
  animation-name: heroLogoIn, heroGlow;
  animation-duration: 0.9s, 3.5s;
  animation-timing-function: ease-out, ease-in-out;
  animation-fill-mode: forwards, both;
  animation-iteration-count: 1, infinite;
  animation-delay: 0.10s, 1.2s;
}

.hero .hero-tagline { animation-delay: 0.15s; }
.hero h1            { animation-delay: 0.22s; }
.hero .gold-line    { animation-delay: 0.30s; }
.hero .hero-sub     { animation-delay: 0.38s; }
.hero .hero-cta     { animation-delay: 0.46s; }

@keyframes heroMobileFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroLogoIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroGlow {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(201,166,70,0)); }
  50%      { filter: drop-shadow(0 0 8px rgba(201,166,70,0.18)); }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero .hero-content,
  .hero .hero-tagline,
  .hero h1,
  .hero .gold-line,
  .hero .hero-sub,
  .hero .hero-cta,
  .hero .hero-logo img {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}
/* Footer powered by */
.powered-by {
  width: 100%;
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  color: #c9c9c9;
}

.powered-by a {
  color: #c9a44d;
  text-decoration: none;
}
/* ===== FAQ Section (Premium Black & Gold) ===== */
#faq .section-sub{
  max-width: 820px;
  margin: 0 auto 14px;
  text-align: center;
}

.faq-list{
  max-width: 980px;
  margin: 0 auto;
  padding: 0 10px;
}

.faq-item{
  border: 1px solid rgba(201,166,70,0.28);
  border-radius: 16px;
  padding: 14px 16px;
  margin: 12px 0;
  background: rgba(0,0,0,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.faq-item summary{
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  outline: none;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-item summary::after{
  content: "+";
  color: #C9A646;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
}

.faq-item[open] summary::after{
  content: "–";
}

.faq-item p{
  margin: 10px 0 2px;
  color: #e9e9e9;
  line-height: 1.7;
}

#faq .btn{
  display: inline-flex;
}
.faq-cta{
  margin-top: 16px;
  text-align: center;
}
/* ===== FAQ alignment fix ===== */
#faq {
  padding-top: 60px !important;
}
#faq .section-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
#faq h2,
#faq .section-underline{
  text-align: left;
  margin-left: 0;
}

#faq .section-sub{
  text-align: left;
  margin: 0 0 14px 0;
}
/* ===== FAQ HARD RESET (fix right-side shift) ===== */
#faq{
  position: relative;
  left: 0 !important;
  right: 0 !important;
  transform: none !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#faq .section-inner{
  position: relative;
  left: 0 !important;
  transform: none !important;
  margin: 0 auto !important;
  width: 100% !important;
  max-width: 1200px !important;
  padding: 0 18px !important;
}

#faq .fade-up{
  transform: none !important;
}
/* ===== FAQ: 2-column layout (desktop) ===== */
#faq .faq-list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Single column on mobile */
@media (max-width: 900px){
  #faq .faq-list{
    grid-template-columns: 1fr;
  }
}

/* Make each FAQ card full height in grid */
#faq .faq-item{
  margin: 0;              /* grid handles spacing */
  height: fit-content;
}

/* ===== FAQ: Open state colors ===== */
#faq .faq-item summary{
  transition: color 0.2s ease;
}

/* When opened, question becomes gold */
#faq .faq-item[open] summary{
  color: #C9A646;
}

/* Keep answer white (already white-ish, force it) */
#faq .faq-item p{
  color: #ffffff;
}
/* ===== Premium Button Hover Glow ===== */

/* Base transition for all buttons */
.btn,
.whatsapp-float,
.call-float {
  transition: all 0.25s ease;
}

/* Gold buttons glow */
.btn-gold:hover {
  background-color: #C9A646;
  color: #000000; /* black text for contrast */
  box-shadow:
    0 0 8px rgba(201,166,70,0.6),
    0 0 18px rgba(201,166,70,0.45),
    0 0 30px rgba(201,166,70,0.25);
  transform: translateY(-1px);
}
/* Outline buttons glow (gold outline) */
.btn-outline:hover {
  color: #C9A646;
  border-color: #C9A646;
  box-shadow:
    0 0 6px rgba(201,166,70,0.5),
    0 0 14px rgba(201,166,70,0.35);
  transform: translateY(-1px);
}

/* WhatsApp floating button glow */
.whatsapp-float:hover {
  box-shadow:
    0 0 8px rgba(37,211,102,0.6),
    0 0 18px rgba(37,211,102,0.45),
    0 0 30px rgba(37,211,102,0.25);
  transform: translateY(-1px);
}

/* Call button (gold theme) */
.call-float:hover {
  box-shadow:
    0 0 8px rgba(201,166,70,0.6),
    0 0 18px rgba(201,166,70,0.45),
    0 0 30px rgba(201,166,70,0.25);
  transform: translateY(-1px);
}
/* ===== FORCE gold button hover contrast ===== */
a.btn.btn-gold:hover,
button.btn.btn-gold:hover,
.btn.btn-gold:hover{
  background-color: #C9A646 !important;
  color: #000000 !important;
}
/* ===== Fix outline button hover (e.g., WhatsApp Us in hero) ===== */
.btn.btn-outline:hover,
a.btn.btn-outline:hover{
  background: transparent !important;   /* prevents solid fill */
  color: #C9A646 !important;            /* gold text */
  border-color: #C9A646 !important;     /* gold border */
  box-shadow:
    0 0 6px rgba(201,166,70,0.55),
    0 0 14px rgba(201,166,70,0.35) !important;
}
.site-trust-note{
  margin-top:14px;
  font-size:13px;
  color:#b9b9b9;
  text-align:center;
  opacity:0.85;
}
/* ===== Project Summary (AI + Trust block) ===== */
.project-summary{
  margin-top: 18px;
  padding: 16px 16px;
  border-radius: 16px;
  border: 1px solid rgba(201,166,70,0.28);
  background: rgba(0,0,0,0.25);
}

.project-summary h3{
  margin: 0 0 10px;
  color: #C9A646;
  font-size: 18px;
  letter-spacing: 0.4px;
}

.project-summary ul{
  margin: 0;
  padding-left: 18px;
  color: #eaeaea;
  line-height: 1.7;
}

.project-summary strong{
  color: #ffffff;
}
