 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
      background: #FAF9F6;
      color: #2E2E2E;
      overflow-x: hidden;
      line-height: 1.6;
    }

    html, body {
      height: 100%;
    }

    /* Grain texture overlay */
    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 9999;
      opacity: 0.5;
    }

    /* Floating particles */
    .particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .particle {
      position: absolute;
      font-size: 1.5rem;
      opacity: 0.1;
      animation: floatParticle 15s linear infinite;
    }

    @keyframes floatParticle {
      0% {
        transform: translateY(100%) rotate(0deg);
        opacity: 0;
      }
      10% {
        opacity: 0.1;
      }
      90% {
        opacity: 0.1;
      }
      100% {
        transform: translateY(-100%) rotate(360deg);
        opacity: 0;
      }
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      width: 100%;
      padding: 1.5rem 5%;
      background: rgba(250, 249, 246, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(167, 160, 146, 0.1);
      transition: all 0.3s ease;
    }

    nav.scrolled {
      padding: 1rem 5%;
      background: rgba(250, 249, 246, 0.98);
      box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: #2E2E2E;
      letter-spacing: -0.5px;
      cursor: pointer;
    }

    .logo-svg {
      transition: all 0.3s ease;
    }

    .logo:hover .logo-svg {
      transform: scale(1.1);
    }

    #logoPath {
      stroke-dasharray: 300;
      stroke-dashoffset: 300;
      animation: drawLogo 2s ease-in-out forwards;
    }

    @keyframes drawLogo {
      to {
        stroke-dashoffset: 0;
      }
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .nav-link {
      color: #2E2E2E;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
      cursor: pointer;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #D98B6A;
      transition: width 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #D98B6A;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-auth {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .btn-auth {
      padding: 0.6rem 1.5rem;
      background: transparent;
      color: #2E2E2E;
      border: 2px solid #2E2E2E;
      border-radius: 25px;
      font-size: 0.9rem;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-auth:hover {
      background: #2E2E2E;
      color: #FAF9F6;
    }

    .user-menu {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .user-menu span {
      font-weight: 500;
      color: #2E2E2E;
    }

    /* Page container */
    .page {
      display: none;
      min-height: 100%;
    }

    .page.active {
      display: block;
    }

    /* Hero Section */
   /* Hero Section */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #222;
  font-family: 'Inter', sans-serif;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    135deg,
    rgba(234, 221, 200, 0.75) 0%,
    rgba(250, 249, 246, 0.85) 50%,
    rgba(167, 160, 146, 0.75) 100%
  );
  z-index: 1;
}

/* Floating Icons */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.floating-icon {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.8;
  animation: float 8s ease-in-out infinite;
}

.floating-icon:nth-child(1) { top: 20%; left: 15%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.floating-icon:nth-child(3) { top: 40%; left: 50%; animation-delay: 4s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 1; }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 2rem;
  animation: fadeIn 1.2s ease-out;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #111;
}

.hero-content p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Buttons */
.hero-buttons .btn {
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #a79883;
  color: #fff;
}

.btn-primary:hover {
  background: #8f856f;
}

.btn-secondary {
  background: #fff;
  color: #444;
  border: 1px solid #ccc;
}

.btn-secondary:hover {
  background: #f7f6f4;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .floating-icon { font-size: 1.8rem; }
}



    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      font-weight: 700;
      line-height: 1.2;
      color: #2E2E2E;
      animation: fadeInUp 1.2s ease-out 0.2s both;
      text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    }

    .hero p {
      font-size: 1.25rem;
      color: #2E2E2E;
      margin-bottom: 2.5rem;
      opacity: 0.9;
      animation: fadeInUp 1.2s ease-out 0.4s both;
      text-shadow: 0 1px 5px rgba(255, 255, 255, 0.3);
    }

    .hero-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      animation: fadeInUp 1.2s ease-out 0.6s both;
    }

    .btn {
      padding: 1rem 2.5rem;
      font-size: 1rem;
      font-weight: 500;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-primary {
      background: linear-gradient(135deg, #E1B98A 0%, #D98B6A 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(217, 139, 106, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(217, 139, 106, 0.4);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.9);
      color: #2E2E2E;
      border: 2px solid rgba(46, 46, 46, 0.3);
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(46, 46, 46, 0.9);
      color: #FAF9F6;
    }

    /* Floating icons */
    .floating-icons {
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .floating-icon {
      position: absolute;
      font-size: 2rem;
      opacity: 0.15;
      animation: float 6s ease-in-out infinite;
    }

    .floating-icon:nth-child(1) {
      top: 20%;
      left: 10%;
      animation-delay: 0s;
    }

    .floating-icon:nth-child(2) {
      top: 60%;
      right: 15%;
      animation-delay: 2s;
    }

    .floating-icon:nth-child(3) {
      bottom: 20%;
      left: 20%;
      animation-delay: 4s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-20px) rotate(10deg); }
    }

    /* Section styling */
    section {
      padding: 6rem 5%;
      max-width: 1400px;
      margin: 0 auto;
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 3rem;
      color: #2E2E2E;
    }

    /* About Section */
    .about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-image {
      width: 100%;
      height: 500px;
      background: linear-gradient(135deg, rgba(234, 221, 200, 0.3) 0%, rgba(167, 160, 146, 0.3) 100%),
                  url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2053&q=80');
      background-size: cover;
      background-position: center;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .about-image:hover {
      transform: scale(1.02);
    }

    .about-content {
      background: rgba(234, 221, 200, 0.8);
      backdrop-filter: blur(10px);
      padding: 3rem;
      border-radius: 20px;
    }

    .about-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: #2E2E2E;
    }

    .about-content p {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      color: #2E2E2E;
      opacity: 0.9;
    }

    /* Featured Homes */
    .homes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .home-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    .home-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .home-image {
      width: 100%;
      height: 280px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .home-image.home1 {
      background-image: linear-gradient(135deg, rgba(234, 221, 200, 0.2) 0%, rgba(167, 160, 146, 0.2) 100%),
                        url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    }

    .home-image.home2 {
      background-image: linear-gradient(135deg, rgba(234, 221, 200, 0.2) 0%, rgba(167, 160, 146, 0.2) 100%),
                        url('https://i.pinimg.com/736x/6a/4c/1a/6a4c1a3a5981f78bc4f8429b3f37049d.jpg');
    }

    .home-image.home3 {
      background-image: linear-gradient(135deg, rgba(234, 221, 200, 0.2) 0%, rgba(167, 160, 146, 0.2) 100%),
                        url('https://images.unsplash.com/photo-1600566753086-00f18fb6b3ea?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    }

    .home-info {
      padding: 1.5rem;
    }

    .home-info h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: #2E2E2E;
    }

    .home-info p {
      color: #A7A092;
      font-size: 0.95rem;
    }

    .home-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(217, 139, 106, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .home-card:hover .home-overlay {
      opacity: 1;
    }

    .home-overlay .btn {
      padding: 0.8rem 2rem;
    }

    /* Gallery Section */
    .gallery {
      background: linear-gradient(135deg, rgba(234, 221, 200, 0.5) 0%, rgba(167, 160, 146, 0.5) 100%);
      padding: 6rem 0;
      margin: 4rem 0;
      position: relative;
    }

    .gallery-scroll {
      display: flex;
      gap: 2rem;
      overflow-x: auto;
      padding: 2rem 5%;
      scroll-behavior: smooth;
    }

    .gallery-scroll::-webkit-scrollbar {
      height: 8px;
    }

    .gallery-scroll::-webkit-scrollbar-track {
      background: rgba(167, 160, 146, 0.2);
      border-radius: 10px;
    }

    .gallery-scroll::-webkit-scrollbar-thumb {
      background: #D98B6A;
      border-radius: 10px;
    }

    .gallery-item {
      min-width: 400px;
      height: 500px;
      border-radius: 15px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s ease;
      background-size: cover;
      background-position: center;
    }

    .gallery-item:hover {
      transform: scale(1.05);
    }

    .gallery-item.gallery1 {
      background-image: linear-gradient(135deg, rgba(46, 46, 46, 0.3) 0%, rgba(46, 46, 46, 0.1) 100%),
                        url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2053&q=80');
    }

    .gallery-item.gallery2 {
      background-image: linear-gradient(135deg, rgba(46, 46, 46, 0.3) 0%, rgba(46, 46, 46, 0.1) 100%),
                        url('https://images.unsplash.com/photo-1600566753151-384129cf4e3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    }

    .gallery-item.gallery3 {
      background-image: linear-gradient(135deg, rgba(46, 46, 46, 0.3) 0%, rgba(46, 46, 46, 0.1) 100%),
                        url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2053&q=80');
    }

    .gallery-item.gallery4 {
      background-image: linear-gradient(135deg, rgba(46, 46, 46, 0.3) 0%, rgba(46, 46, 46, 0.1) 100%),
                        url('https://images.unsplash.com/photo-1600566752355-35792bedcfea?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    }

    .gallery-item.gallery5 {
      background-image: linear-gradient(135deg, rgba(46, 46, 46, 0.3) 0%, rgba(46, 46, 46, 0.1) 100%),
                        url('https://i.pinimg.com/736x/0e/a0/c6/0ea0c6de81499b4542ac5e2a9abf1eef.jpg');
    }

    .gallery-item::before {
      content: attr(data-label);
      position: absolute;
      bottom: 2rem;
      left: 2rem;
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: white;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    /* Services Section */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .service-card {
      background: white;
      padding: 2.5rem;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(217, 139, 106, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .service-card:hover::before {
      left: 100%;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(217, 139, 106, 0.2);
    }

    .service-icon {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
    }

    .service-card h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: #2E2E2E;
    }

    .service-card p {
      color: #A7A092;
      line-height: 1.6;
    }

    .pricing {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid #EADDC8;
    }

    .price {
      font-family: 'Roboto Mono', monospace;
      font-size: 1.8rem;
      font-weight: 600;
      color: #D98B6A;
      margin-bottom: 0.5rem;
    }

    .price-note {
      font-size: 0.85rem;
      color: #A7A092;
    }

    /* Testimonials */
    .testimonials {
      background: linear-gradient(135deg, rgba(234, 221, 200, 0.5) 0%, rgba(167, 160, 146, 0.5) 100%);
      padding: 6rem 5%;
      margin: 4rem 0;
    }

    .testimonial-carousel {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
    }

    .testimonial {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }

    .testimonial-quote {
      font-size: 1.5rem;
      font-style: italic;
      color: #2E2E2E;
      margin-bottom: 2rem;
      line-height: 1.8;
    }

    .testimonial-quote::before {
      content: '"';
      font-size: 4rem;
      color: #D98B6A;
      opacity: 0.3;
      position: absolute;
      top: 2rem;
      left: 2rem;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #D98B6A 0%, #E1B98A 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
    }

    .author-info h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      color: #2E2E2E;
    }

    .author-info p {
      color: #A7A092;
      font-size: 0.9rem;
    }

    /* About Page Specific */
    .about-page {
      padding-top: 8rem;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .team-member {
      background: white;
      padding: 2rem;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }

    .team-member:hover {
      transform: translateY(-10px);
    }

    .member-photo {
      width: 120px;
      height: 120px;
      border-radius: 50%;
      margin: 0 auto 1.5rem;
      background: linear-gradient(135deg, #EADDC8 0%, #A7A092 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
    }

    .member-name {
      font-family: 'Poppins', sans-serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: #2E2E2E;
      margin-bottom: 0.5rem;
    }

    .member-role {
      color: #D98B6A;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .member-bio {
      color: #A7A092;
      line-height: 1.6;
    }

    /* Projects Page */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
      gap: 3rem;
      margin-top: 3rem;
    }

    .project-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      cursor: pointer;
    }

    .project-card:hover {
      transform: translateY(-15px);
    }

    .project-image {
      width: 100%;
      height: 300px;
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .project-image.project1 {
      background-image: url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2053&q=80');
    }

    .project-image.project2 {
      background-image: url('https://images.unsplash.com/photo-1600566753151-384129cf4e3e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    }

    .project-image.project3 {
      background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2053&q=80');
    }

    .project-image.project4 {
      background-image: url('https://images.unsplash.com/photo-1600566752355-35792bedcfea?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    }

    .project-image.project5 {
      background-image: url('https://i.pinimg.com/736x/93/44/61/934461542e790b70c247f3fc49dfa380.jpg');
    }

    .project-image.project6 {
      background-image: url('https://images.unsplash.com/photo-1600566753190-17f0baa2a6c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    }

    .project-content {
      padding: 2rem;
    }

    .project-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: #2E2E2E;
      margin-bottom: 1rem;
    }

    .project-location {
      color: #D98B6A;
      font-weight: 500;
      margin-bottom: 1rem;
    }

    .project-description {
      color: #A7A092;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    .project-stats {
      display: flex;
      justify-content: space-between;
      padding-top: 1rem;
      border-top: 1px solid #EADDC8;
    }

    .stat {
      text-align: center;
    }

    .stat-number {
      font-family: 'Roboto Mono', monospace;
      font-size: 1.5rem;
      font-weight: 600;
      color: #2E2E2E;
    }

    .stat-label {
      font-size: 0.85rem;
      color: #A7A092;
    }

    /* Contact Page */
    .contact-page {
      padding-top: 8rem;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      margin-top: 3rem;
    }

    .contact-info {
      background: rgba(234, 221, 200, 0.3);
      padding: 3rem;
      border-radius: 20px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      background: #D98B6A;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      color: white;
    }

    .contact-details h4 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.1rem;
      color: #2E2E2E;
      margin-bottom: 0.3rem;
    }

    .contact-details p {
      color: #A7A092;
    }

    .map-placeholder {
      width: 100%;
      height: 300px;
      background: linear-gradient(135deg, #EADDC8 0%, #A7A092 100%);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      color: rgba(46, 46, 46, 0.3);
      margin-top: 2rem;
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .contact-form h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      text-align: center;
      margin-bottom: 2rem;
      color: #2E2E2E;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 500;
      color: #2E2E2E;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 1rem;
      border: 2px solid #EADDC8;
      border-radius: 10px;
      font-family: 'Inter', sans-serif;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: white;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #D98B6A;
      box-shadow: 0 0 0 3px rgba(217, 139, 106, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-submit {
      width: 100%;
      padding: 1.2rem;
      background: linear-gradient(135deg, #E1B98A 0%, #D98B6A 100%);
      color: white;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .form-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(217, 139, 106, 0.4);
    }

    .form-submit:active {
      transform: translateY(0);
    }

    .form-message {
      margin-top: 1rem;
      padding: 1rem;
      border-radius: 10px;
      text-align: center;
      display: none;
    }

    .form-message.success {
      background: rgba(76, 175, 80, 0.1);
      color: #4CAF50;
      border: 1px solid rgba(76, 175, 80, 0.3);
    }

    .form-message.error {
      background: rgba(244, 67, 54, 0.1);
      color: #F44336;
      border: 1px solid rgba(244, 67, 54, 0.3);
    }

    /* Login Modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      z-index: 10000;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(5px);
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      padding: 3rem;
      border-radius: 20px;
      max-width: 450px;
      width: 90%;
      position: relative;
      animation: modalSlideIn 0.3s ease-out;
    }

    @keyframes modalSlideIn {
      from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      width: 40px;
      height: 40px;
      background: #EADDC8;
      border: none;
      border-radius: 50%;
      font-size: 1.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: #D98B6A;
      color: white;
      transform: rotate(90deg);
    }

    .modal-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      color: #2E2E2E;
      text-align: center;
    }

    .auth-tabs {
      display: flex;
      margin-bottom: 2rem;
      border-bottom: 1px solid #EADDC8;
    }

    .auth-tab {
      flex: 1;
      padding: 1rem;
      background: none;
      border: none;
      font-size: 1rem;
      font-weight: 500;
      color: #A7A092;
      cursor: pointer;
      transition: all 0.3s ease;
      border-bottom: 2px solid transparent;
    }

    .auth-tab.active {
      color: #D98B6A;
      border-bottom-color: #D98B6A;
    }

    .auth-form {
      display: none;
    }

    .auth-form.active {
      display: block;
    }

    /* Footer */
    footer {
      background: #EDE8E2;
      padding: 4rem 5% 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
      max-width: 1400px;
      margin: 0 auto 3rem;
    }

    .footer-column h3 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      color: #2E2E2E;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 0.8rem;
    }

    .footer-column a {
      color: #A7A092;
      text-decoration: none;
      transition: color 0.3s ease;
      cursor: pointer;
    }

    .footer-column a:hover {
      color: #D98B6A;
    }

    .footer-column p {
      color: #A7A092;
      line-height: 1.6;
    }

    .social-icons {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .social-icon:hover {
      background: #D98B6A;
      transform: translateY(-5px);
    }

    .newsletter-form {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .newsletter-form input {
      flex: 1;
      padding: 0.8rem;
      border: 2px solid #A7A092;
      border-radius: 25px;
      font-family: 'Inter', sans-serif;
    }

    .newsletter-form button {
      padding: 0.8rem 1.5rem;
      background: #D98B6A;
      color: white;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .newsletter-form button:hover {
      background: #E1B98A;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(167, 160, 146, 0.3);
      color: #A7A092;
    }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin-top: 1rem;
    }

    .footer-links a {
      color: #A7A092;
      text-decoration: none;
      font-size: 0.9rem;
      cursor: pointer;
    }

    .footer-links a:hover {
      color: #D98B6A;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .nav-links {
        gap: 1.5rem;
      }

      .hero h1 {
        font-size: 3rem;
      }

      .about {
        grid-template-columns: 1fr;
      }

      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      .hero p {
        font-size: 1rem;
      }

      .hero-buttons {
        flex-direction: column;
      }

      .section-title {
        font-size: 2rem;
      }

      .homes-grid,
      .services-grid,
      .team-grid,
      .projects-grid {
        grid-template-columns: 1fr;
      }

      .gallery-item {
        min-width: 300px;
      }

      .footer-content {
        grid-template-columns: 1fr;
      }

      section {
        padding: 4rem 5%;
      }
    }

    @media (max-width: 480px) {
      nav {
        padding: 1rem 5%;
      }

      .logo {
        font-size: 1.5rem;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .modal-content {
        padding: 2rem;
      }
    }
    .modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  max-width: 600px;
  margin: auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  color: #444;
  font-family: 'Inter', sans-serif;
  animation: fadeIn 0.4s ease;
}

.modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #111;
}

.modal-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
  transition: color 0.3s ease;
}

.close:hover {
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

