/* =============================================
   M2K OLIVE GREENS — SHARED STYLES
   Aesthetic: Luxury Refined / Dark Olive + Gold
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

:root {
  --olive: #2d4a1e;
  --olive-dark: #1a2d11;
  --olive-mid: #3d5e2a;
  --olive-light: #4e7a35;
  --gold: #c9a84c;
  --gold-light: #e2c26e;
  --gold-pale: #f5e9c8;
  --cream: #faf7f0;
  --white: #ffffff;
  --charcoal: #1c1c1c;
  --grey-text: #3d3d3d;
  --border: rgba(201,168,76,0.25);

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;

  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  font-size: 15px;
}

/* ---- NAVBAR ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,45,17,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.nav-inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
}

.nav-brand-name {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav-brand-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 8px 16px;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold);
  color: var(--olive-dark) !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; color: var(--olive-dark) !important; }

/* ---- HAMBURGER BUTTON ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- MOBILE MENU DRAWER ---- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--olive-dark);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  padding: 0 0 40px;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.mobile-menu-close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-links {
  list-style: none;
  padding: 16px 0;
  flex: 1;
}

.mobile-menu-links li {
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.mobile-menu-links a {
  display: block;
  padding: 16px 24px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-menu-links a:hover {
  color: var(--gold);
  padding-left: 32px;
}

.mobile-menu-cta {
  display: block;
  margin: 0 24px;
  padding: 16px;
  background: var(--gold);
  color: var(--olive-dark);
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s;
}

.mobile-menu-cta:hover {
  background: var(--gold-light);
}

/* ---- PAGE HERO ---- */
.page-hero {
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 60%, var(--olive-mid) 100%);
  min-height: 320px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 40px;
}

.page-hero-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.page-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  max-width: 500px;
}

/* ---- GOLD LINE ---- */
.gold-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0 32px;
}

/* ---- SECTION WRAPPER ---- */
.section {
  padding: 80px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--olive-dark);
  font-weight: 400;
  line-height: 1.2;
}

.section-title em { font-style: italic; color: var(--olive-light); }

/* ---- ENQUIRE BUTTON ---- */
.btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--olive-dark);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-enquire:hover {
  background: var(--olive-dark);
  color: var(--gold);
}

.btn-enquire svg { width: 14px; height: 14px; flex-shrink: 0; }

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--olive-dark);
}

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,35,12,0.85);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 480px;
  margin: 20px;
  position: relative;
  animation: modalIn 0.35s ease;
}

@keyframes modalIn {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.modal-header {
  background: var(--olive-dark);
  padding: 28px 32px;
}

.modal-header h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold);
  font-weight: 400;
}

.modal-header p {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  letter-spacing: 0.05em;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover { background: var(--gold); color: var(--olive-dark); }

.modal-body { padding: 32px; }

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0d9cc;
  background: var(--cream);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-disclaimer {
  font-size: 10px;
  color: var(--grey-text);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #f0ece0;
  padding: 40px;
  text-align: center;
  border-top: 3px solid var(--gold);
}

.site-footer p {
  font-size: 13px;
  color: #3a3a3a;
  max-width: 800px;
  margin: 0 auto 10px;
  line-height: 1.7;
}

.site-footer a {
  color: var(--olive-dark);
  text-decoration: none;
  font-weight: 600;
}

.site-footer a:hover { color: var(--gold); }

.footer-rera {
  font-size: 11px;
  color: #6a6a6a;
  letter-spacing: 0.03em;
}

/* ---- STICKY CTA BAR ---- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a2d11;
  border-top: 3px solid #c9a84c;
  padding: 10px 12px;
  display: none;
  gap: 8px;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .sticky-bar { display: flex; }
  .nav-links { display: none; }
  .nav { padding: 0 20px; }
  .nav-hamburger { display: flex; }
  .page-hero-content { padding: 50px 20px; }
  .section { padding: 60px 20px; }
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  padding: 10px 4px;
  border-radius: 6px;
  transition: opacity 0.2s;
}

.sticky-btn span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sticky-btn:active { opacity: 0.8; }

.sticky-call {
  background: #c9a84c;
  border: none;
  color: #1a2d11;
}

.sticky-whatsapp {
  background: #25D366;
  color: #fff;
}

.sticky-enquire {
  background: #c9a84c;
  color: #1a2d11;
}

/* ---- LOCK CARD (for hidden content) ---- */
.lock-card {
  position: relative;
  border: 1px solid var(--border);
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 100%);
  overflow: hidden;
}

.lock-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,74,30,0.03) 0%, rgba(201,168,76,0.08) 100%);
}

.lock-icon {
  width: 64px;
  height: 64px;
  background: var(--olive-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.lock-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

.lock-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--olive-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.lock-card p {
  font-size: 14px;
  color: var(--grey-text);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.lock-card .btn-enquire { position: relative; z-index: 1; margin-bottom: 16px; }
