/* -------------------------------
   TABLE OF CONTENTS
   1. CSS Reset & Base Variables
   2. Typography & Global Styles
   3. Preloader & Animations
   4. Navigation
   5. Hero Section
   6. Highlights Cards
   7. Investment & Lease
   8. Why Us Section
   9. Gallery Grid
   10. Contact Form & Footer
   11. Responsive Design
-------------------------------- */

/* 1. CSS Reset & Base Variables */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --surface-dark: #111111;
  --surface-card: #161616;
  --gold-primary: #C6A43F;
  --gold-light: #E4C16E;
  --gold-dark: #8E6E2C;
  --text-white: #FFFFFF;
  --text-offwhite: #E0E0E0;
  --text-muted: #A0A0A0;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', sans-serif;
  --transition-smooth: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-elegant: 0 15px 35px rgba(0,0,0,0.3);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-offwhite);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

.section-padding {
  padding: 100px 0;
}

/* 2. Typography & Global Styles */
h1, h2, h3, h4, .logo-text, .hero-title, .section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  color: var(--text-white);
}

.gold-text {
  color: var(--gold-primary);
  font-weight: 700;
}

.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold-primary);
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

.title-divider {
  width: 70px;
  height: 2px;
  background: var(--gold-primary);
  margin: 20px auto;
}

.text-center {
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--gold-primary);
  color: var(--bg-dark);
  border: 1px solid var(--gold-primary);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(198, 164, 63, 0.2);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
}

.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* 3. Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-darker);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.preloader-content {
  text-align: center;
}

.preloader-text {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 6px;
  color: var(--gold-primary);
}

.preloader-line {
  width: 60px;
  height: 2px;
  background: var(--gold-primary);
  margin: 20px auto 0;
  animation: pulseWidth 1.2s infinite;
}

@keyframes pulseWidth {
  0% { width: 30px; opacity: 0.3; }
  50% { width: 100px; opacity: 1; }
  100% { width: 30px; opacity: 0.3; }
}

/* 4. Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  border-bottom: 1px solid rgba(198, 164, 63, 0.2);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 2px;
}

.logo-light {
  font-weight: 300;
  color: var(--gold-primary);
}

.logo-icon {
  margin-right: 8px;
  color: var(--gold-primary);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-link {
  color: var(--text-offwhite);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-primary);
  transition: width 0.3s;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--gold-primary);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--gold-primary);
}

/* 5. Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 800px;
}

.pre-tag {
  font-size: 0.9rem;
  letter-spacing: 4px;
  background: rgba(198, 164, 63, 0.15);
  display: inline-block;
  padding: 8px 18px;
  backdrop-filter: blur(4px);
  border-left: 3px solid var(--gold-primary);
  margin-bottom: 25px;
}

.hero-title {
  font-size: 5.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #c6a43f;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-offwhite);
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--gold-primary);
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.7rem;
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,100%{ transform: translateX(-50%) translateY(0); }
  50%{ transform: translateX(-50%) translateY(8px); }
}

/* 6. Highlights Cards */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.highlight-card {
  background: var(--surface-card);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-smooth);
  border-bottom: 2px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-10px);
  border-bottom-color: var(--gold-primary);
  background: #1a1a1a;
}

.card-icon {
  font-size: 2.8rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text-white);
}

/* 7. Investment & Lease */
.investment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.investment-card {
  background: var(--surface-card);
  padding: 40px 20px;
  text-align: center;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.investment-card:hover {
  background: var(--surface-dark);
  box-shadow: var(--shadow-elegant);
}

.investment-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
}

.sqft {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--gold-light);
  margin: 15px 0;
}

.lease-assurance {
  background: rgba(198, 164, 63, 0.08);
  padding: 25px;
  text-align: center;
  border: 1px solid rgba(198, 164, 63, 0.3);
  font-size: 1.1rem;
}

/* 8. Why Us Section */
.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-list div {
  margin-bottom: 20px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 15px;
}

.why-list i {
  color: var(--gold-primary);
  width: 25px;
}

.download-brochure {
  margin-top: 40px;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 12px 28px;
}

.btn-secondary:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

.why-image {
  height: 500px;
  background-size: cover;
  background-position: center;
  filter: grayscale(20%);
  transition: 0.5s;
}

.why-image:hover {
  filter: grayscale(0%);
  transform: scale(0.98);
}

/* 9. Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  height: 280px;
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  transition: 0.4s;
}

.gallery-item:hover::after {
  background: rgba(198, 164, 63, 0.2);
}

.gallery-item:hover {
  transform: scale(1.02);
}

/* 10. Contact & Footer */
.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--surface-card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.contact-left, .contact-right {
  padding: 50px;
}

.contact-left {
  background: var(--surface-dark);
}

.contact-person, .contact-phone {
  margin: 30px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-phone a {
  color: var(--gold-primary);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
}

.inquiry-form input, .inquiry-form select {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  background: #1e1e1e;
  border: 1px solid #333;
  color: white;
  font-family: var(--font-sans);
}

.full-width {
  width: 100%;
  justify-content: center;
}

.footer {
    background: #000;
    color: #d1d5db;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* LOGO */
.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

/* ADDRESS */
.footer-address {
    font-size: 14px;
    margin-bottom: 25px;
    color: #cbd5e1;
}

/* SOCIAL */
.social-links {
    margin-bottom: 25px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin: 0 6px;
    border-radius: 50%;
    border: 1px solid #c59d32;
    color: #c59d32;
    transition: 0.3s;
}

.social-links a:hover {
    background: #c59d32;
    color: #000;
}

/* COPYRIGHT (MAIN LINE LIKE SCREENSHOT) */
.footer-copyright {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 10px;
}

/* ACP LINE BELOW */
.footer-developer {
    font-size: 13px;
    color: #9ca3af;
}

.footer-developer a {
    display: inline-block;
    margin-left: 8px;
    padding: 6px 14px;
    border-radius: 20px;

    background: #c59d32;  /* GOLD BUTTON */
    color: #000;          /* BLACK TEXT */
    font-weight: 600;

    border: 1px solid #c59d32;
    text-decoration: none;
    transition: 0.3s;
}

.footer-developer a:hover {
    background: transparent;
    color: #c59d32;
}



.social-links {
  margin: 25px 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-links a {
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--gold-primary);
}

/* 11. Fade-Up Animations & Responsive */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.appear {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

@media (max-width: 992px) {
  .hero-title { font-size: 3.5rem; }
  .section-title { font-size: 2.5rem; }
  .why-wrapper, .contact-card { grid-template-columns: 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 20px;
  }
  .nav-links.active { display: flex; }
  .mobile-menu-btn { display: block; }
  .hero-stats { gap: 20px; }
  .investment-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .container { padding: 0 20px; }
  .hero-title { font-size: 2.5rem; }
  .section-padding { padding: 60px 0; }
  .contact-left, .contact-right { padding: 30px; }
}


/* Hero Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* For vertical video - it will cover the hero area beautifully */
.hero .hero-video {
  object-position: center;
}

/* Location Section with Square Maps Video */
.location-section {
  background: var(--surface-dark);
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: var(--surface-card);
  border-radius: 12px;
  overflow: hidden;
}

.location-video {
  position: relative;
  padding-bottom: 100%; /* 1:1 Square aspect ratio for maps video */
  height: 0;
  overflow: hidden;
}

.location-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-content {
  padding: 40px;
}

.location-content h3 {
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--gold-primary);
  margin-bottom: 25px;
}

.location-features div {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
}

.location-features i {
  color: var(--gold-primary);
  width: 24px;
}

.location-note {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(198, 164, 63, 0.3);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Vertical Video Showcase Section */
.video-showcase {
  background: var(--bg-darker);
}

.vertical-video-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.vertical-video-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-elegant);
}

.vertical-showcase {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
}

.video-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 30px 20px 15px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--gold-primary);
}

.video-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.video-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.video-stats div {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.video-stats span {
  display: block;
  font-size: 2rem;
  font-family: var(--font-serif);
  color: var(--gold-primary);
  font-weight: 700;
}

/* Responsive adjustments for videos */
@media (max-width: 992px) {
  .location-wrapper,
  .vertical-video-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .location-video {
    padding-bottom: 80%; /* Slightly taller on mobile for maps video */
    max-height: 400px;
  }
  
  .location-content {
    padding: 30px;
    text-align: center;
  }
  
  .location-features div {
    justify-content: center;
  }
  
  .location-note {
    justify-content: center;
  }
  
  .vertical-showcase {
    max-height: 500px;
  }
  
  .video-stats {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .location-video {
    padding-bottom: 100%;
  }
  
  .vertical-showcase {
    max-height: 400px;
  }
  
  .video-text p {
    font-size: 1rem;
    text-align: center;
  }
  
  .video-stats {
    justify-content: center;
  }
}
/* Logo Image Styles */
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.preloader-logo {
  margin-bottom: 20px;
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--surface-dark) 100%);
}

.pricing-card {
  background: var(--surface-card);
  border: 1px solid rgba(198, 164, 63, 0.3);
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.pricing-item {
  padding: 20px;
}

.pricing-item.highlight {
  background: rgba(198, 164, 63, 0.1);
  border-radius: 12px;
}

.pricing-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pricing-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--text-white);
}

.pricing-value.discount {
  color: #4CAF50;
}

.pricing-value.net {
  color: var(--gold-primary);
  font-size: 2.2rem;
}

.pricing-value .small {
  font-size: 0.9rem;
}

.pricing-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(198, 164, 63, 0.2);
}

.pricing-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.pricing-features .feature i {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: white !important;
}

.whatsapp-btn:hover {
  background: transparent !important;
  color: #25D366 !important;
}

.contact-whatsapp {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-whatsapp a {
  color: #25D366;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-whatsapp i {
  font-size: 1.3rem;
}

/* Chatbot Widget */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background: var(--surface-card);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 1000;
  border: 1px solid rgba(198, 164, 63, 0.3);
  font-family: var(--font-sans);
}

.chatbot-header {
  padding: 15px 20px;
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-radius: 16px 16px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.chatbot-header span {
  flex: 1;
}

#chatbotToggle {
  transition: transform 0.3s;
}

.chatbot-body {
  display: flex;
  flex-direction: column;
  height: 400px;
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.message.bot {
  background: var(--surface-dark);
  align-self: flex-start;
  border-left: 3px solid var(--gold-primary);
}

.message.user {
  background: var(--gold-primary);
  color: var(--bg-dark);
  align-self: flex-end;
}

.chat-options {
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.chat-option {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s;
}

.chat-option:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

.chat-input-area {
  display: flex;
  padding: 10px 15px;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.chat-input-area input {
  flex: 1;
  padding: 8px 12px;
  background: var(--surface-dark);
  border: 1px solid #333;
  border-radius: 20px;
  color: white;
  font-size: 0.8rem;
}

.chat-input-area button {
  background: var(--gold-primary);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--bg-dark);
}

@media (max-width: 480px) {
  .chatbot-widget {
    width: 300px;
    right: 10px;
    bottom: 10px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .logo-img {
    height: 40px;
  }
}
/* Logo Image Styles */
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.preloader-logo {
  margin-bottom: 20px;
}

/* Pricing Section */
.pricing-section {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--surface-dark) 100%);
}

.pricing-card {
  background: var(--surface-card);
  border: 1px solid rgba(198, 164, 63, 0.3);
  border-radius: 16px;
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  margin-bottom: 30px;
}

.pricing-item {
  padding: 20px;
}

.pricing-item.highlight {
  background: rgba(198, 164, 63, 0.1);
  border-radius: 12px;
}

.pricing-label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pricing-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--text-white);
}

.pricing-value.discount {
  color: #4CAF50;
}

.pricing-value.net {
  color: var(--gold-primary);
  font-size: 2.2rem;
}

.pricing-value .small {
  font-size: 0.9rem;
}

.pricing-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(198, 164, 63, 0.2);
}

.pricing-features .feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.pricing-features .feature i {
  color: var(--gold-primary);
  font-size: 1.2rem;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: white !important;
}

.whatsapp-btn:hover {
  background: transparent !important;
  color: #25D366 !important;
}

.contact-whatsapp {
  margin: 15px 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-whatsapp a {
  color: #25D366;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-whatsapp i {
  font-size: 1.3rem;
}

/* Chatbot Widget */
.chatbot-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background: var(--surface-card);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  z-index: 1000;
  border: 1px solid rgba(198, 164, 63, 0.3);
  font-family: var(--font-sans);
}

.chatbot-header {
  padding: 15px 20px;
  background: var(--gold-primary);
  color: var(--bg-dark);
  border-radius: 16px 16px 0 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.chatbot-header span {
  flex: 1;
}

#chatbotToggle {
  transition: transform 0.3s;
}

.chatbot-body {
  display: flex;
  flex-direction: column;
  height: 400px;
}

.chat-messages {
  flex: 1;
  padding: 15px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.4;
}

.message.bot {
  background: var(--surface-dark);
  align-self: flex-start;
  border-left: 3px solid var(--gold-primary);
}

.message.user {
  background: var(--gold-primary);
  color: var(--bg-dark);
  align-self: flex-end;
}

.chat-options {
  padding: 10px 15px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.chat-option {
  background: transparent;
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s;
}

.chat-option:hover {
  background: var(--gold-primary);
  color: var(--bg-dark);
}

.chat-input-area {
  display: flex;
  padding: 10px 15px;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.chat-input-area input {
  flex: 1;
  padding: 8px 12px;
  background: var(--surface-dark);
  border: 1px solid #333;
  border-radius: 20px;
  color: white;
  font-size: 0.8rem;
}

.chat-input-area button {
  background: var(--gold-primary);
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--bg-dark);
}

@media (max-width: 480px) {
  .chatbot-widget {
    width: 300px;
    right: 10px;
    bottom: 10px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .logo-img {
    height: 40px;
  }
}
/* Floor Plans Row Styles */
.floorplan-row {
  display: flex;
  flex-direction: row;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.floorplan-col {
  flex: 1;
  min-width: 280px;
  transition: transform 0.4s ease;
}

.floorplan-col:hover {
  transform: translateY(-5px);
}

.floorplan-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-elegant);
  border: 1px solid rgba(198, 164, 63, 0.3);
  transition: all 0.4s ease;
}

.floorplan-col:hover .floorplan-img {
  border-color: var(--gold-primary);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.floorplan-caption {
  text-align: center;
  margin-top: 30px;
  padding: 15px;
  background: rgba(198, 164, 63, 0.05);
  border-radius: 8px;
}

.floorplan-caption p {
  color: var(--gold-primary);
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: 0;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .floorplan-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .floorplan-col {
    min-width: 100%;
  }
}
