/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Playfair Display', Georgia, serif;
  color: #333;
  background: #f5f1ea;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(245, 241, 234, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #ddd5c8;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #333;
}

.nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  text-transform: capitalize;
  transition: color 0.3s;
  font-weight: 400;
}

.nav a:hover {
  color: #b8945f;
}

.enquire-btn {
  background: transparent;
  border: 1px solid #b8945f;
  color: #b8945f;
  padding: 10px 22px;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  transition: all 0.3s;
}

.enquire-btn:hover {
  background: #b8945f;
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #333;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(to bottom, #f5f1ea 0%, #faf8f3 100%);
}

.hero-content {
  max-width: 800px;
}

.pre-launch {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: #888;
  margin-bottom: 30px;
  font-weight: 400;
}

.hero h1 {
  font-size: 56px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #2a2a2a;
}

.location {
  font-size: 14px;
  letter-spacing: 1px;
  color: #777;
  margin-bottom: 25px;
  font-weight: 400;
}

.hero-divider {
  width: 70px;
  height: 1px;
  background: #b8945f;
  margin: 25px auto;
}

.tagline {
  font-size: 15px;
  color: #666;
  margin-bottom: 35px;
  line-height: 1.7;
}

.cta-btn {
  background: #b8945f;
  color: #fff;
  border: none;
  padding: 16px 32px;
  font-size: 11px;
  letter-spacing: 2.5px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  transition: all 0.3s;
  font-weight: 500;
}

.cta-btn:hover {
  background: #a07d4d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 148, 95, 0.3);
}

/* Sections */
.section {
  padding: 90px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.section h2 {
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  color: #2a2a2a;
}

.section-divider {
  width: 70px;
  height: 1px;
  background: #b8945f;
  margin: 18px auto 30px;
}

.section-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 50px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.section p {
  font-size: 15px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.section-btn {
  background: #b8945f;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  margin-top: 35px;
  transition: all 0.3s;
  font-weight: 500;
}

.section-btn:hover {
  background: #a07d4d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(184, 148, 95, 0.3);
}

/* About Section */
.about-section {
  background: #fff;
}

/* Amenities Section */
.amenities-section {
  background: #f5f1ea;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin: 50px 0;
  max-width: 1050px;
  margin-left: auto;
  margin-right: auto;
}

.amenity-box {
  background: #fff;
  padding: 45px 20px;
  border: 1px solid #e5dfd5;
  text-align: center;
  transition: all 0.3s;
}

.amenity-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  border-color: #b8945f;
}

.amenity-icon {
  font-size: 32px;
  margin-bottom: 18px;
  color: #b8945f;
}

.amenity-box h3 {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #444;
}

/* Pricing Section */
.pricing-section {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 850px;
  margin: 50px auto;
}

.pricing-card {
  background: #fafafa;
  padding: 38px 30px;
  border: 1px solid #e5dfd5;
  text-align: center;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  border-color: #b8945f;
}

.pricing-label {
  font-size: 11px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 12px;
  font-weight: 400;
}

.pricing-value {
  font-size: 30px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.5px;
}

.pricing-note {
  font-size: 12px;
  color: #888;
  font-style: italic;
  margin-top: 25px;
}

/* Floor Section */
.floor-section {
  background: #f5f1ea;
}

.floor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 950px;
  margin: 50px auto;
}

.floor-card {
  background: #fff;
  padding: 50px 30px;
  border: 1px solid #e5dfd5;
  text-align: center;
  transition: all 0.3s;
}

.floor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
  border-color: #b8945f;
}

.floor-icon {
  font-size: 36px;
  margin-bottom: 20px;
}

.floor-card h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #333;
}

.floor-size {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.floor-desc {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* Gallery Section */
.gallery-section {
  background: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 50px 0;
}

.gallery-grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

/* Location Section */
.location-section {
  background: #f5f1ea;
}

.location-map {
  margin: 40px 0;
  border: 1px solid #e5dfd5;
  overflow: hidden;
}

.location-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.connectivity-box {
  max-width: 650px;
  margin: 40px auto;
  text-align: left;
  background: #fff;
  padding: 35px 40px;
  border: 1px solid #e5dfd5;
}

.connectivity-box h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  text-align: center;
  color: #333;
}

.connectivity-list {
  list-style: none;
  padding: 0;
}

.connectivity-list li {
  padding: 14px 0;
  border-bottom: 1px solid #f0ebe3;
  font-size: 15px;
  color: #555;
  padding-left: 30px;
  position: relative;
}

.connectivity-list li:last-child {
  border-bottom: none;
}

.connectivity-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #b8945f;
  font-size: 18px;
  font-weight: bold;
}

/* Footer */
.footer {
  background: #2c3e50;
  color: #bbb;
  padding: 60px 20px 35px;
  text-align: center;
}

.footer-content {
  max-width: 900px;
  margin: 0 auto;
}

.footer h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 25px;
}

.disclaimer {
  font-size: 11px;
  line-height: 1.9;
  color: #999;
  margin-bottom: 25px;
}

.copyright {
  font-size: 12px;
  color: #777;
  padding-top: 20px;
  border-top: 1px solid #3a4d60;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 110px;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

/* Mobile Bar */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-whatsapp,
.mobile-details {
  flex: 1;
  padding: 16px;
  border: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
}

.mobile-whatsapp {
  background: #25d366;
  color: #fff;
}

.mobile-details {
  background: #b8945f;
  color: #fff;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal-box {
  background: #fff;
  max-width: 520px;
  width: 100%;
  padding: 45px 40px;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 32px;
  cursor: pointer;
  color: #999;
  line-height: 1;
  transition: color 0.3s;
}

.modal-close:hover {
  color: #333;
}

.modal-box h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
  text-align: center;
  color: #333;
}

.modal-desc {
  font-size: 14px;
  color: #777;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form input {
  width: 100%;
  padding: 15px;
  margin-bottom: 16px;
  border: 1px solid #ddd;
  font-size: 14px;
  font-family: 'Playfair Display', serif;
  transition: border-color 0.3s;
}

.contact-form input:focus {
  outline: none;
  border-color: #b8945f;
}

.form-submit {
  width: 100%;
  background: #b8945f;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  margin-top: 10px;
  transition: all 0.3s;
}

.form-submit:hover {
  background: #a07d4d;
}

.form-privacy {
  font-size: 11px;
  color: #999;
  text-align: center;
  margin-top: 15px;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 968px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .floor-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .mobile-bar {
    display: flex;
  }
  
  .whatsapp-float {
    display: none;
  }
  
  .header-container {
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 38px;
  }
  
  .section h2 {
    font-size: 32px;
  }
  
  .section {
    padding: 70px 20px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .amenities-grid,
  .floor-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .gallery-grid img {
    height: 200px;
  }
  
  .connectivity-box {
    padding: 25px 20px;
  }
  
  .modal-box {
    padding: 35px 25px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }
  
  .section h2 {
    font-size: 28px;
  }
  
  .cta-btn,
  .section-btn {
    font-size: 10px;
    padding: 14px 24px;
  }
}
