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

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  text-decoration: none;
}

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

.nav-links a {
  text-decoration: none;
  color: #4a5568;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #2b6cb0;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(43, 108, 176, 0.9),
      rgba(45, 55, 72, 0.8)
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><rect fill="%23f7fafc" width="1920" height="1080"/><g fill="%23e2e8f0"><polygon points="0,1080 1920,800 1920,1080"/></g><g fill="%23cbd5e0"><polygon points="0,900 1920,600 1920,900"/></g><g fill="%23a0aec0"><polygon points="0,700 1920,400 1920,700"/></g></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(59, 130, 246, 0.15),
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(139, 92, 246, 0.15),
      transparent 50%
    );
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
}

.hero h1 .brand {
  color: #60a5fa;
  text-shadow: 0 0 20px rgba(96, 165, 250, 0.5);
}

.hero p {
  font-size: 22px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.9s forwards;
}

.btn {
  padding: 16px 32px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
  background: rgba(40, 40, 44, 0.438);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Properties Section */
.properties {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
}

.properties::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a202c;
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.section-title p {
  font-size: 18px;
  color: #4a5568;
  max-width: 700px;
  margin: 20px auto 0;
  line-height: 1.8;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.property-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
}

.property-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.property-image {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
  background-size: cover;
}

.property-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), transparent 70%);
  z-index: 2;
}

.property-image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  z-index: 3;
  opacity: 0.8;
}

.property-info {
  padding: 30px;
}

.property-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #1a202c;
}

.property-desc {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.6;
}

/* Property gradients with modern colors */
.prop-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.prop-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.prop-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
.prop-4 {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}
.prop-5 {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}
.prop-6 {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.view-all-btn {
  text-align: center;
  position: relative;
  z-index: 2;
}

/* Location Section */
.location {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.location::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad"><stop offset="0%" stop-color="%233b82f6" stop-opacity="0.1"/><stop offset="100%" stop-color="%233b82f6" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="300" fill="url(%23grad)"/><circle cx="800" cy="800" r="400" fill="url(%23grad)"/></svg>');
  opacity: 0.6;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.location-info h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
  line-height: 1.3;
}

.location-info p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 18px;
}

.map-container {
  background: rgba(255, 255, 255, 0.1);
  height: 450px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
  padding: 100px 0;
  background: white;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(59, 130, 246, 0.05),
      transparent 50%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(139, 92, 246, 0.05),
      transparent 50%
    );
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-image {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: all 0.4s ease;
  display: block;
}   

.about-image:hover {
  transform: scale(1.05) rotate(2deg);
}

.about-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), transparent 70%);
  z-index: 1;
}

.about-image-1 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.about-image-2 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.about-image-3 {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.about-text p {
  margin-bottom: 24px;
  color: #4a5568;
  line-height: 1.8;
  font-size: 17px;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%233b82f6" opacity="0.1"/></pattern></defs><rect width="1000" height="1000" fill="url(%23dots)"/></svg>');
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.contact-form h3 {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  height: 140px;
}

.contact-info h3 {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
}

.contact-details {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.contact-details p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
}

.contact-details strong {
  color: white;
  font-weight: 600;
}

/* Scroll reveal animations */
.reveal-element {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal-element.revealed {
  opacity: 1;
  transform: translateY(0);
}

.scale-up {
  transform: scale(0.8);
  opacity: 0;
}

.scale-up.revealed {
  transform: scale(1);
  opacity: 1;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .property-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
  }

  .location-content,
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .property-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero {
    padding: 0 20px;
    background-attachment: scroll;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .contact-form,
  .contact-details {
    padding: 30px 25px;
  }

  .about-images {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}

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

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title h2 {
    font-size: 24px;
  }

  .properties,
  .location,
  .about,
  .contact {
    padding: 60px 0;
  }

  .map-container {
    height: 300px;
  }
}

.hero-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-dim-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(30, 41, 59, 0.45);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  /* Add subtle shadow for contrast */
  text-shadow: 0 2px 12px rgba(30,41,59,0.25), 0 1px 0 #fff;
}

.hero-welcome {
  font-size: 25px;
  font-weight: 600;
  color: #f3f4f6;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(30,41,59,0.35), 0 1px 0 #fff;
  /* background: rgba(30,41,59,0.25); */
  border-radius: 8px;
  padding: 2px 18px;
  display: inline-block;
}

.hero-brand {
  font-size: 70px;
  font-weight: 900;
  color: #fff;
  font-family: 'Montserrat', 'Poppins', sans-serif;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 1px;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.3s forwards;
  text-shadow: 0 8px 32px rgba(30,41,59,0.45), 0 1px 0 #fff;
  /* background: rgba(38, 42, 49, 0.12); */
  border-radius: 12px;
  padding: 8px 32px;
  display: inline-block;
}

.hero-brand .brand {
  color: #ffffff;
  background: linear-gradient(90deg, #6366f1 40%, #4f46e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-stroke: 1px #191a4f;
  -webkit-text-stroke: 1px #4d4e7f;
  background-clip: text;
  text-shadow: none;
  font-weight: 900;
}

@media (max-width: 768px) {
  .hero-brand {
    font-size: 38px;
    padding: 6px 12px;
  }
  .hero-welcome {
    font-size: 15px;
    padding: 2px 10px;
  }
}

