* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #0A1628 0%, #0D1F3C 20%, #0B2B4F 50%, #0A1B3A 80%, #07122A 100%);
  color: #E8EDF2;
  line-height: 1.5;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, .logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(7, 18, 42, 0.88);
  backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(100, 150, 200, 0.2);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
}

.logo-main {
  color: #7DD3FC;
  letter-spacing: 1px;
}

.logo-light {
  color: #94A3B8;
  font-size: 0.9rem;
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #CBD5E1;
  font-weight: 500;
  font-size: 0.85rem;
  transition: 0.3s;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: #7DD3FC;
}

.lang-switch {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  transition: 0.2s;
  color: #94A3B8;
}

.lang-btn.active {
  background: rgba(125, 211, 252, 0.2);
  color: #7DD3FC;
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #94A3B8;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: url('https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 18, 42, 0.7) 0%, rgba(11, 43, 79, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(125, 211, 252, 0.15);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  color: #7DD3FC;
  border: 1px solid rgba(125, 211, 252, 0.3);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 4.5rem;
  color: white;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-accent {
  color: #7DD3FC;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #CBD5E1;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.primary-btn {
  background: #0EA5E9;
  padding: 0.9rem 2rem;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary-btn:hover {
  background: #0284C7;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 0.9rem 2rem;
  border-radius: 40px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.8rem;
  color: #94A3B8;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll i {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
.section {
  padding: 5rem 0;
  border-bottom: 1px solid rgba(100, 150, 200, 0.15);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  color: #F1F5F9;
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.accent-line {
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg, #0EA5E9, #7DD3FC, #38BDF8);
  margin: 0 auto;
  border-radius: 2px;
}

/* Destination Section - Overlapping */
.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.destination-text p {
  color: #CBD5E1;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.destination-features {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94A3B8;
}

.feature i {
  color: #7DD3FC;
  font-size: 1.1rem;
}

.destination-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
}

/* Grids */
.grid-3, .suites-grid, .projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(15, 35, 60, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s;
  border: 1px solid rgba(125, 211, 252, 0.15);
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(125, 211, 252, 0.4);
  box-shadow: 0 25px 35px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #F1F5F9;
}

.card-content p {
  color: #94A3B8;
  font-size: 0.9rem;
}

/* Masterplan Section */
.masterplan-section {
  background: rgba(7, 18, 42, 0.5);
  border-radius: 32px;
  margin: 2rem 0;
  padding: 3rem;
}

.masterplan-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.masterplan-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.3);
}

.masterplan-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

.masterplan-stat {
  display: flex;
  flex-direction: column;
}

.masterplan-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #7DD3FC;
  font-family: 'Cormorant Garamond', serif;
}

.masterplan-stat .stat-label {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* Eco Architecture */
.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.eco-card {
  background: rgba(15, 35, 60, 0.5);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 24px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid rgba(125, 211, 252, 0.15);
}

.eco-card:hover {
  transform: translateY(-5px);
  border-color: rgba(125, 211, 252, 0.4);
}

.eco-card i {
  font-size: 2.5rem;
  color: #7DD3FC;
  margin-bottom: 1rem;
}

.eco-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.eco-card p {
  font-size: 0.85rem;
  color: #94A3B8;
}

/* Testimonials Slider */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: rgba(15, 35, 60, 0.6);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 24px;
  border-left: 4px solid #7DD3FC;
}

.testimonial-text {
  font-style: italic;
  color: #CBD5E1;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: #7DD3FC;
}

.testimonial-project {
  font-size: 0.8rem;
  color: #94A3B8;
}

/* CTA Section */
.luxury-cta {
  background: linear-gradient(135deg, #0B2B4F, #07122A);
  border-radius: 32px;
  padding: 3rem 2rem;
  text-align: center;
  border: 1px solid rgba(125, 211, 252, 0.3);
}

.luxury-cta h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.luxury-cta p {
  color: #94A3B8;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.whatsapp-cta {
  background: #25D366;
}

.whatsapp-cta:hover {
  background: #1DA955;
}

.email-cta {
  background: #0EA5E9;
}

.email-cta:hover {
  background: #0284C7;
}

/* Footer */
.footer {
  background: #07122A;
  padding: 3rem 2rem 1.5rem;
  margin-top: 2rem;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-logo span {
  color: #7DD3FC;
}

.footer-brand p {
  color: #94A3B8;
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-col h4 {
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.footer-col p {
  color: #94A3B8;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: #94A3B8;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #7DD3FC;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(100, 150, 200, 0.15);
  color: #64748B;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    text-align: center;
    padding: 1rem 0;
    gap: 1rem;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .destination-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 2rem;
  }
  .masterplan-section {
    padding: 2rem;
  }
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .container {
    padding: 0 1rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .luxury-cta h3 {
    font-size: 1.4rem;
  }
  .eco-grid {
    gap: 1rem;
  }
}