:root {
  /* LIGHT MODE (DEFAULT) */
  --primary-orange: #E65100;
  --primary-hover: #BF360C;
  --bg-dark: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-top-bar: #0F172A;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --accent-gold: #D97706;
  --accent-green: #059669;
  --border-color: rgba(15, 23, 42, 0.08);
  --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --header-bg: rgba(255, 255, 255, 0.92);
  --input-bg: #F1F5F9;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --radius-lg: 16px;
  --radius-md: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  /* DARK MODE */
  --primary-orange: #EC894D;
  --primary-hover: #D97538;
  --bg-dark: #0F172A;
  --bg-card: #1E293B;
  --bg-top-bar: #020617;
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --accent-gold: #F59E0B;
  --accent-green: #10B981;
  --border-color: rgba(255, 255, 255, 0.1);
  --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  --header-bg: rgba(15, 23, 42, 0.9);
  --input-bg: #0F172A;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-main);
  scroll-behavior: smooth;
  transition: background-color 0.3s ease, color 0.3s ease;
}

body { line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

.text-center { text-align: center; }

.sub-tag {
  color: var(--primary-orange);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
}

.top-info-bar {
  background: var(--bg-top-bar);
  color: #F8FAFC;
  font-size: 0.8rem;
  padding-block: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  padding-block: 14px;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo .title {
  font-size: 1.3rem;
  font-weight: 900;
  display: block;
  line-height: 1;
}

.brand-logo .subtitle {
  font-size: 0.75rem;
  color: var(--primary-orange);
  letter-spacing: 1px;
  font-weight: 700;
}

.nav-links ul {
  display: flex;
  gap: 24px;
}

.nav-links a {
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--primary-orange); }

.header-action {
  display: flex;
  align-items: center;
  gap: 14px;
}

.theme-toggle-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}

.theme-toggle-btn:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
}

.btn-call {
  background: var(--primary-orange);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-call:hover { background: var(--primary-hover); }

.hero-video-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 60px;
  color: #F8FAFC;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.65) 100%);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-layout-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(236, 137, 77, 0.2);
  border: 1px solid var(--primary-orange);
  color: var(--primary-orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-orange);
}

.hero-main-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.gradient-text {
  background: linear-gradient(90deg, #FF8A65, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1rem;
  color: #CBD5E1;
  margin-bottom: 24px;
}

.hero-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.highlight-card {
  background: rgba(30, 41, 59, 0.55);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #F8FAFC;
}

.highlight-card i { font-size: 24px; color: var(--primary-orange); }
.highlight-card h2 { font-size: 1rem; }
.highlight-card p { font-size: 0.78rem; color: #94A3B8; }

.form-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary { background: var(--primary-orange); color: #fff !important; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-outline { border: 1px solid var(--primary-orange); color: var(--primary-orange); }
.btn-outline:hover { background: var(--primary-orange); color: #fff; }
.full-width { width: 100%; }

.section { padding-block: 80px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.lead-text { font-size: 1.1rem; color: var(--accent-gold); margin-block: 12px; font-weight: 600; }

.specs-mini-list { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.spec-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
}
.spec-item i { color: var(--primary-orange); }

.booking-req-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 30px;
  border-radius: var(--radius-lg);
}

.check-list li { margin-block: 12px; font-size: 0.95rem; }
.check-list i { color: var(--accent-green); margin-right: 8px; }

.status-badge {
  margin-top: 20px;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-green);
  text-align: center;
  padding: 8px;
  border-radius: var(--radius-md);
  font-weight: 700;
}

/* WHY INVEST SECTION */
.why-invest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 24px;
  border-radius: var(--radius-md);
}
.why-card i { font-size: 32px; color: var(--primary-orange); margin-bottom: 12px; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-card p { font-size: 0.9rem; color: var(--text-muted); }

/* CONNECTIVITY TABLE */
.distance-table-box {
  margin-top: 30px;
  overflow-x: auto;
}

.connectivity-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
}

.connectivity-table th, .connectivity-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.connectivity-table th {
  background: var(--input-bg);
  color: var(--primary-orange);
  font-weight: 700;
}

.map-box {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.map-box iframe {
  width: 100%;
  border: 0;
}

/* PLOTS GRID */
.plot-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.plot-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 36px;
  border-radius: var(--radius-lg);
  position: relative;
}

.plot-card.highlighted {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(230, 81, 0, 0.15);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

.card-badge.dark { background: var(--input-bg); color: var(--text-main); }
.card-badge.gold { background: var(--primary-orange); color: #fff; }

.size-text { font-size: 1.2rem; font-weight: 800; color: var(--accent-gold); margin-block: 10px 16px; }
.feature-bullets li { margin-bottom: 10px; font-size: 0.9rem; color: var(--text-muted); }
.feature-bullets i { color: var(--primary-orange); margin-right: 8px; }

/* AMENITIES */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.amenity-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 24px;
  border-radius: var(--radius-md);
  text-align: center;
}

.amenity-box i { font-size: 36px; color: var(--primary-orange); margin-bottom: 12px; }

/* PRICING */
.price-banner-card {
  background: var(--bg-card);
  border: 2px solid var(--primary-orange);
  box-shadow: var(--card-shadow);
  padding: 50px;
  border-radius: var(--radius-lg);
}

.big-price-tag { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; color: var(--primary-orange); }
.big-price-tag .unit { font-size: 1.2rem; color: var(--text-muted); }
.price-sub { color: var(--text-muted); margin-bottom: 24px; }

/* FAQ ACCORDION */
.faq-accordion {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 30px;
}

.faq-item {
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--text-main);
}

.faq-item p {
  margin-top: 10px;
  color: var(--text-muted);
}

/* CONTACT */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sales-contacts { margin-top: 24px; }

.s-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 16px;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.s-card i { font-size: 24px; color: var(--primary-orange); }

/* FORMS */
.glass-form {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  padding: 20px;
  border-radius: var(--radius-lg);
  max-width: 400px;
  margin-inline: auto;
}

.hero-video-section .glass-form {
  background: rgba(30, 41, 59, 0.75);
  backdrop-filter: blur(12px);
  border-color: rgba(255, 255, 255, 0.15);
  color: #F8FAFC;
}

.hero-video-section .glass-form h3 { font-size: 1.15rem; margin-bottom: 4px; }
.form-group { margin-bottom: 10px; }

.honeypot-field {
  display: none !important;
}

.form-input {
  width: 100%;
  padding: 8px 12px;
  background: var(--input-bg);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  border-radius: var(--radius-md);
  outline: none;
  font-family: inherit;
  font-size: 0.88rem;
}

.hero-video-section .form-input {
  background: rgba(15, 23, 42, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
  color: #F8FAFC;
}

.form-input:focus { border-color: var(--primary-orange); }

.form-response-msg {
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.form-response-msg.success { color: var(--accent-green); }
.form-response-msg.error { color: #EF4444; }

/* FOOTER */
.footer {
  background: var(--bg-top-bar);
  padding-block: 30px;
  font-size: 0.85rem;
  color: #94A3B8;
}

/* FLOATING BUTTONS */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  color: #fff !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.float-whatsapp { background: #25D366; }
.float-whatsapp:hover { background: #1EBE5D; transform: scale(1.1); }
.float-call { background: var(--primary-orange); }
.float-call:hover { background: var(--primary-hover); transform: scale(1.1); }

/* RESPONSIVE */
@media (max-width: 992px) {
  .hero-layout-grid, .about-grid, .contact-wrapper { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .glass-form { max-width: 100%; }
}