:root {
  --primary-color: #d4af37; /* Luxury Gold to match logo */
  --secondary-color: #0a0a0a; /* Deep Black for premium feel */
  --accent-color: #b08d26;
  --text-color: #e0e0e0;
  --light-gray: #1a1a1a;
  --white: #ffffff;
  --glass: rgba(0, 0, 0, 0.8);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #050505;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo {
  height: 80px; /* Bigger logo */
  width: auto;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.05);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 40px;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: 0.3s;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-links a:hover {
  color: var(--primary-color);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.menu-toggle .bar {
  width: 28px;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
  transition: 0.3s ease;
}

.menu-toggle.is-active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Sections */
section {
  padding: 120px 0;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: 20px auto 0;
}

/* Benefit Cards */
.benefit-card {
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--text-color);
}

/* Project Cards */
.project-card {
  background: #111;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: #ffffff; /* Bright white for better contrast */
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.project-card:hover {
  border-color: var(--primary-color);
}

.project-info h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.project-info p {
  color: #cccccc; /* Light gray for readability */
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.project-info i {
  color: var(--primary-color);
  margin-right: 8px;
  width: 16px;
}

.short-desc {
  color: #bbbbbb !important;
  margin-top: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-price {
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 15px;
}

/* Modal */
.modal-content {
  background-color: #0a0a0a;
  color: var(--white);
  border: 1px solid var(--primary-color);
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.modal-body h2 {
  color: var(--primary-color);
  font-size: 2.2rem;
}

.modal-body .location {
  color: #aaa;
  font-style: italic;
}

.modal-body p {
  color: #dddddd;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 60px 0;
  }

  /* Hero Mobile */
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }

  .btn-secondary {
    margin-left: 0;
  }

  /* Section Titles */
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  /* Grids */
  .projects-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .types-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 30px 20px;
  }

  /* Contact */
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  /* WhatsApp */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }

  /* Type cards */
  .type-card {
    height: 200px;
  }
}


.close-modal {
  color: var(--primary-color);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
  color: #000;
  border: none;
}

.btn-secondary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

@media (max-width: 968px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.98);
    padding: 20px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 0;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 15px 40px;
    font-size: 1rem;
  }

  .nav-links a:hover {
    background-color: rgba(212, 175, 55, 0.1);
  }

  .nav-logo {
    height: 60px;
  }

  .logo {
    font-size: 1.3rem;
  }
}


/* Hero */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1524231757912-21f4fe3a7200?auto=format&fit=crop&w=1920&q=80') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}

.hero-title {
  font-size: 5rem;
  letter-spacing: 2px;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 300;
  opacity: 0.9;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 30px;
}

.hero-content {
  padding: 0 20px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  margin-left: 20px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Sections */
section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
}

/* Benefits */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  transition: 0.3s;
}

.benefit-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-10px);
  background: var(--white);
  box-shadow: var(--shadow);
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.project-card:hover {
  transform: scale(1.02);
}

.project-image {
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-info {
  padding: 25px;
}

.project-info h3 {
  margin-bottom: 10px;
}

.project-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 15px;
}

/* Property Types */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.type-card {
  height: 300px;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.type-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 20px;
  color: var(--white);
  text-align: center;
}

/* Districts */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.district-card {
  height: 200px;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.district-card .overlay {
  background: rgba(11, 92, 255, 0.6);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.district-card:hover .overlay {
  opacity: 1;
}

.district-card h3 {
  color: var(--white);
}

/* Contact */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  background: var(--light-gray);
  padding: 50px;
  border-radius: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form input, .contact-form textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

/* Footer */
.footer {
  background: var(--secondary-color);
  color: var(--white);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--white);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  color: var(--white);
  font-size: 1.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  backdrop-filter: blur(5px);
}

.modal-content {
  background-color: var(--white);
  margin: 5% auto;
  padding: 40px;
  border-radius: 20px;
  width: 80%;
  max-width: 900px;
  position: relative;
  box-shadow: var(--shadow);
}

.close-modal {
  position: absolute;
  right: 25px;
  top: 15px;
  font-size: 35px;
  font-weight: bold;
  color: var(--secondary-color);
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: var(--primary-color);
}

.modal-body h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.modal-body .location {
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
  font-weight: 500;
}

.modal-body img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 25px;
}

.modal-body p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

.video-container {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .modal-content {
      width: 95%;
      padding: 20px;
      margin: 5% auto;
  }
  .modal-body h2 {
      font-size: 1.5rem;
  }
  .modal-body img {
      height: 200px;
  }
  .video-container iframe {
      height: 220px;
  }
}
/* Contact Form Layout */

.contact-form{
display:flex;
flex-direction:column;
gap:15px;
max-width:500px;
margin:auto;
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:12px;
border-radius:6px;
border:1px solid #ccc;
font-size:14px;
box-sizing:border-box;
}

.contact-form textarea{
min-height:120px;
resize:vertical;
}

.contact-form button{
padding:12px;
background:#f2b544;
color:white;
border:none;
border-radius:25px;
font-weight:600;
cursor:pointer;
}
