* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fdfbf7;
  color: #1a1a1a;
  line-height: 1.6;
}

.bg-ivory { background: #fdfbf7; }

/* ===== COMMON ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.narrow {
  max-width: 800px;
}

.text-center {
  text-align: center;
}

.section {
  padding: 90px 0;
}

.light {
  background: #ffffff;
}

.white {
  background: #ffffff;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
}

h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.muted {
  color: #777;
  margin-bottom: 40px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  z-index: 100;
  border-bottom: 1px solid #eee;
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.navbar a {
  margin-left: 24px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
}

/* ===== HERO ===== */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c") center/cover no-repeat;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.hero h1 {
  font-size: 56px;
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: #c5a059;
  color: #fff;
  padding: 14px 34px;
  text-decoration: none;
  letter-spacing: 1px;
}

.btn-outline {
  border: 1px solid #c5a059;
  color: #c5a059;
  padding: 14px 34px;
  text-decoration: none;
}

.cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* ===== GRID ===== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.card {
  padding: 30px;
  border: 1px solid #eee;
  text-align: center;
}

.img-box {
  height: 260px;
  background: #ddd;
}

/* ===== AI ASSISTANT ===== */
.ai-assistant {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #c5a059;
  color: #fff;
  padding: 12px 18px;
  font-size: 12px;
  z-index: 99;
}

/* ===== LIST ===== */
.list {
  list-style: none;
}

.list li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #aaa;
  text-align: center;
  padding: 40px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  h2 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 36px;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee;
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.logo-sub {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #c5a059;
}

/* ===== DESKTOP LINKS ===== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #555;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c5a059;
}

/* ===== BUTTON ===== */
.btn-gold {
  background: #c5a059;
  color: #fff !important;
  padding: 12px 22px;
  font-size: 14px;
  letter-spacing: 0.25em;
}

.btn-gold:hover {
  background: #b48e48;
}

/* ===== MOBILE MENU ===== */
#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #c5a059;
}

/* Mobile panel */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fdfbf7;
  padding: 30px 24px;
  flex-direction: column;
  gap: 18px;
  border-top: 1px solid #eee;
}

.mobile-menu a {
  text-decoration: none;
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  color: #222;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

/* Toggle */
#menu-toggle:checked ~ .mobile-menu {
  display: flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

:root {
  --gold: #c9a45c;
  --gold-dark: #b48e48;
  --gray: #666;
  --light-gray: #999;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
}

#about {
  padding: 100px 0;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Image Section */
.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.decor-box {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(201, 164, 92, 0.2);
  z-index: -1;
}

.experience-box {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: var(--gold);
  color: #fff;
  padding: 32px;
  text-align: center;
}

.experience-box .years {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
}

.experience-box .label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Content */
.content .subtitle {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.content h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 32px;
}

.content h2 .italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.content p {
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin: 40px 0;
}

.stats h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.stats span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-gray);
}

/* Button */
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: var(--gold-dark);
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .decor-box,
  .experience-box {
    display: none;
  }

  .content h2 {
    font-size: 38px;
  }
}
:root {
  --gold: #c9a45c;
  --ivory: #f9f7f2;
  --gray: #666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
}

#amenities {
  padding: 100px 0;
  background: var(--ivory);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .subtitle {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  display: block;
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: 48px;
  margin-bottom: 16px;
}

.section-header p {
  color: #888;
  font-weight: 300;
  max-width: 520px;
  margin: auto;
  line-height: 1.7;
}

/* Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.amenity-card {
  background: #fff;
  padding: 40px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.amenity-card:hover {
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  transform: translateY(-6px);
}

.amenity-card .icon {
  font-size: 42px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.amenity-card:hover .icon {
  transform: scale(1.15);
}

.amenity-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.amenity-card:hover h3 {
  color: var(--gold);
}

.amenity-card p {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

:root {
  --gold: #c9a45c;
  --gold-dark: #b48e48;
  --ivory: #f9f7f2;
  --gray: #666;
}

* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.ai-wrapper {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 100;
}

/* Floating Button */
.floating-btn {
  background: var(--gold);
  color: #fff;
  padding: 14px 18px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.floating-btn:hover {
  transform: scale(1.05);
}

.floating-btn .label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Chat Window */
.chat-window {
  width: 360px;
  height: 500px;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  display: none;
  flex-direction: column;
  margin-bottom: 16px;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.chat-header {
  background: var(--gold);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header h3 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.chat-header p {
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.chat-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Body */
.chat-body {
  flex: 1;
  background: var(--ivory);
  padding: 16px;
  overflow-y: auto;
}

.message {
  max-width: 85%;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 12px;
}

.message.assistant {
  background: #fff;
  border: 1px solid #eee;
  color: #333;
}

.message.user {
  background: var(--gold);
  color: #fff;
  margin-left: auto;
}

/* Loader */
.loader {
  display: flex;
  gap: 4px;
}

.loader span {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: bounce 1s infinite;
}

.loader span:nth-child(2) { animation-delay: .2s; }
.loader span:nth-child(3) { animation-delay: .4s; }

@keyframes bounce {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* Footer */
.chat-footer {
  padding: 14px;
  border-top: 1px solid #eee;
  display: flex;
  gap: 8px;
}

.chat-footer input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  font-size: 13px;
  outline: none;
}

.chat-footer input:focus {
  border-color: var(--gold);
}

.chat-footer button {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 0 16px;
  cursor: pointer;
}

.chat-footer button:hover {
  background: var(--gold-dark);
}

:root {
  --gold: #c9a45c;
  --gold-dark: #b48e48;
  --ivory: #f9f7f2;
  --gray: #777;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  color: #111;
}

#floorplans {
  padding: 100px 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* Header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.subtitle {
  color: var(--gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-size: 13px;
}

.section-header h2 {
  font-size: 48px;
  margin: 12px 0;
}

.divider {
  width: 80px;
  height: 4px;
  background: var(--gold);
  margin: 24px auto;
}

/* Grid */
.floorplans-grid {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 48px;
}

/* Navigation */
.fp-nav button {
  width: 100%;
  text-align: left;
  padding: 24px;
  border: none;
  border-left: 3px solid transparent;
  background: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fp-nav button.active {
  border-left-color: var(--gold);
  background: var(--ivory);
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.fp-nav h4 {
  margin: 0 0 6px;
  font-size: 20px;
}

.fp-nav p {
  margin: 0;
  font-size: 14px;
  color: var(--gray);
}

/* Details */
.fp-details {
  background: var(--ivory);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.fp-info h3 {
  font-size: 32px;
  margin-bottom: 32px;
}

.fp-meta div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.fp-meta span {
  color: var(--gray);
}

.gold {
  color: var(--gold);
}

/* Features */
.fp-features {
  margin: 40px 0;
}

.fp-features h4 {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 16px;
}

.fp-features li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 14px;
}

.fp-features li::before {
  content: "✦";
  color: var(--gold);
  margin-right: 10px;
}

/* Button */
.cta-btn {
  width: 50%;
  background: var(--gold);
  color: #fff;
  padding: 16px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
}

.cta-btn:hover {
  background: var(--gold-dark);
}

/* Image */
.fp-image {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fp-image img {
  max-width: 100%;
  opacity: 0.6;
  filter: grayscale(100%);
}

.fp-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay-box {
  background: rgba(255,255,255,0.9);
  padding: 32px;
  text-align: center;
  border: 1px solid rgba(201,164,92,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.overlay-box p {
  font-size: 14px;
  margin-bottom: 16px;
  color: #555;
}

.overlay-box button {
  background: none;
  border: none;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .floorplans-grid {
    grid-template-columns: 1fr;
  }

  .fp-details {
    grid-template-columns: 1fr;
  }
}

:root {
  --gold: #c9a45c;
  --gold-dark: #b48e48;
  --gray: #666;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
}

#location {
  padding: 100px 0;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left content */
.subtitle {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

.location-content h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.location-content .italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.desc {
  color: var(--gray);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 40px;
}

.location-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 48px;
}

.point {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.point span {
  font-size: 14px;
  font-weight: 500;
}

.point strong {
  font-size: 11px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Link button */
.link-btn {
  margin-top: 48px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.link-btn:hover {
  color: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* Map box */
.map-box {
  position: relative;
  background: #eee;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.map-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all 1s ease;
}

.map-box:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Center card */
.map-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-card {
  background: rgba(255,255,255,0.95);
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(201,164,92,0.4);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}

.map-card .pin {
  font-size: 28px;
  margin-bottom: 6px;
  color: var(--gold);
}

.map-card h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0;
}

.map-card p {
  font-size: 10px;
  color: #777;
  margin-top: 4px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

/* Footer overlay */
.map-footer {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  padding: 12px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-align: center;
  color: #777;
}

/* Responsive */
@media (max-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-content h2 {
    font-size: 38px;
  }

  .map-box {
    aspect-ratio: 16 / 9;
  }
}

:root {
  --gold: #c9a45c;
  --gold-dark: #b48e48;
  --ivory: #f9f7f2;
  --gray: #666;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
}

#contact {
  padding: 100px 0;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

/* Left */
.subtitle {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 13px;
  margin-bottom: 10px;
  display: block;
}

.contact-info h2 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.italic {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.info-blocks {
  margin-bottom: 48px;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.info-item .icon {
  background: var(--ivory);
  padding: 14px;
  border-radius: 50%;
  color: var(--gold);
  font-size: 22px;
}

.info-item h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 6px;
}

.info-item p {
  color: var(--gray);
  font-weight: 300;
  line-height: 1.6;
}

/* VIP box */
.vip-box {
  background: var(--ivory);
  padding: 32px;
  border-left: 4px solid var(--gold);
}

.vip-box h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

.vip-box p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 16px;
}

.vip-note {
  color: var(--gold);
  font-weight: 700;
}

/* Form */
.form-box {
  background: var(--ivory);
  padding: 48px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: #777;
  display: block;
  margin-bottom: 8px;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

textarea {
  resize: none;
}

/* Button */
.submit-btn {
  width: 100%;
  background: var(--gold);
  color: #fff;
  padding: 16px;
  margin-top: 16px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(201,164,92,0.4);
}

.submit-btn:hover {
  background: var(--gold-dark);
}

/* Success overlay */
.success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.success-card {
  text-align: center;
}

.success-card .check {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e6f7ec;
  color: #2e7d32;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info h2 {
    font-size: 38px;
  }
}

:root {
  --gold: #c9a45c;
  --gold-dark: #b48e48;
  --dark: #1a1a1a;
  --gray: #999;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

.site-footer {
  background: var(--dark);
  color: #fff;
  padding: 100px 0 50px;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}

/* Brand */
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.footer-brand .brand {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  letter-spacing: 4px;
}

.footer-brand .unit {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold);
  padding-top: 6px;
}

.footer-brand p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

/* Socials */
.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Columns */
.site-footer h4 {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 14px;
}

.site-footer a {
  color: #aaa;
  font-size: 14px;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.site-footer a:hover {
  color: #fff;
}

/* Newsletter */
.newsletter-text {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 20px;
  font-weight: 300;
}

.newsletter {
  display: flex;
}

.newsletter input {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 14px;
  color: #fff;
  outline: none;
}

.newsletter input:focus {
  border-color: var(--gold);
}

.newsletter button {
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 10px 16px;
  cursor: pointer;
}

.newsletter button:hover {
  background: var(--gold-dark);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
}

.disclaimer {
  font-size: 10px;
  color: #777;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.8;
  margin-bottom: 32px;
}

.copyright {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 10px;
  color: #999;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 700;
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  right: 24px;
  bottom: 96px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
  z-index: 50;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .copyright {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 16px;
  max-width: 900px;
}

.hero-tag {
  color: #c9a24d;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 14px;
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  color: #ffffff;
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-italic {
  font-family: "Georgia", serif;
  font-style: italic;
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 300;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 40px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 220px;
  text-align: center;
}

.btn-gold {
  background: #c9a24d;
  color: #ffffff;
}

.btn-gold:hover {
  background: #b48e48;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.btn-outline:hover {
  border-color: #ffffff;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.scroll-indicator span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(201, 162, 77, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    font-size: 16px;
  }
}

.gallery-section {
  padding: 100px 0;
  background: #f8f5ef;
  font-family: Arial, Helvetica, sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}

/* Header */
.gallery-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 24px;
}

.gallery-tag {
  color: #c9a24d;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

.gallery-title {
  font-size: 48px;
  color: #111;
}

/* Filters */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  padding: 10px 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid #c9a24d;
  background: transparent;
  color: #c9a24d;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #c9a24d;
  color: #fff;
}

/* Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay p {
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.gallery-overlay h3 {
  color: #fff;
  font-size: 22px;
  font-family: Georgia, serif;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-title {
    font-size: 36px;
  }
}

.logo img {
  max-width: 160px;   /* adjust size as needed */
  height: auto;
  display: block;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
}

.whatsapp-btn img {
  width: 60px;
  height: 60px;
}

.submit-btn{
  position: relative;
  z-index: 99999;
  pointer-events: auto;
}

.popup-overlay{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 999999;
}

.popup-box{
  background: #fff;
  width: 90%;
  max-width: 400px;
  margin: 80px auto;
  padding: 25px;
  border-radius: 8px;
  position: relative;
}

.close-popup{
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

.popup-box input,
.popup-box button{
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
}

.gallery-item.hide {
  display: none !important;
}



.pd-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  z-index:999999;
}

.pd-modal{
  display:flex;
  max-width:780px;
  width:95%;
  background:#0b0b0b;
  margin:6% auto;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 0 40px rgba(0,0,0,.6);
}

/* Overlay */
.pd-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  z-index:999999;
}

/* Modal */
.pd-modal{
  display:flex;
  max-width:820px;
  width:95%;
  background:#ffffff;
  margin:6% auto;
  border-radius:10px;
  overflow:hidden;
  position:relative;
}

/* Close */
.pd-close{
  position:absolute;
  top:10px;
  right:14px;
  font-size:22px;
  cursor:pointer;
  color:#111;
}

/* LEFT */
.pd-left{
  width:38%;
  background:#f9f7f2;
  padding:30px 20px;
  text-align:center;
  border-right:1px solid #e5e7eb;
}

.pd-left h3{
  color:#c9a24d;
  font-size:20px;
  margin-bottom:30px;
  font-weight:600;
}

.promise-list{
  list-style:none;
  padding:0;
  margin:0;
}

.promise-list li{
  margin-bottom:26px;
}

.promise-list i{
  font-size:38px;
  color:#c9a24d;
  display:block;
  margin-bottom:10px;
}

.promise-list span{
  font-size:14px;
  color:#c9a24d;
  font-weight:500;
}

/* RIGHT FORM */
.pd-right{
  width:62%;
  padding:30px;
  background:#ffffff;
}

.pd-right h3{
  margin:0 0 18px;
  font-size:20px;
  color:#111827;
}

.pd-right h3 span{
  color:#e11d48;
}

.pd-right input{
  width:100%;
  padding:12px;
  margin-bottom:14px;
  border:1px solid #d1d5db;
  border-radius:6px;
  font-size:14px;
}

.pd-right button{
  width:100%;
  padding:13px;
  background:#c9a24d;
  color:#fff;
  border:none;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
}

.pd-right button:hover{
  background:#c9a24d;
}

.pd-consent{
  font-size:11px;
  color:#6b7280;
  margin-top:12px;
}

/* MOBILE */
@media(max-width:768px){
  .pd-left{display:none;}
  .pd-right{width:100%;}
}

@media (max-width: 768px) {

  /* LOCATION / CONNECTIVITY SECTION */
  .location-grid,
  .connectivity-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px;
  }

  .location-item,
  .connectivity-item {
    width: 100% !important;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  /* Minutes text alignment */
  .mins,
  .drive-time {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    color: #b08d57;
  }

  /* Fix text wrapping */
  h4, p {
    word-break: break-word;
    white-space: normal;
  }

  /* WhatsApp icon spacing */
  .whatsapp-float {
    bottom: 80px !important;
    right: 15px !important;
  }

}

.section.white .cta-group{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100%;
}

.section.white .cta-group a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 8px;
}

/* Mobile */
@media (max-width: 768px){
  .section.white .cta-group{
    flex-direction: column !important;
  }






