:root {
    --primary-color: #1a1a1a;
    --secondary-color: #0066ff;
    --text-color: #333;
    --light-text: #fff;
    --gray-text: #666;
    --background-color: #fff;
    --section-spacing: 6rem;
    --transition-speed: 0.3s;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
  }
  
  /* Typography */
  h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
  }
  
  .tag {
    font-size: 0.875rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
  }
  
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-speed);
  }
  
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color var(--transition-speed);
  }
  
  .nav-links a:hover {
    color: var(--secondary-color);
  }
  
  /* Hero Section */
  .hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?q=80&w=1920') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: var(--section-spacing);
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  }
  
  .hero-content {
    position: relative;
    max-width: 800px;
    margin-left: 10%;
    color: var(--light-text);
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.5s;
  }
  
  .hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1s;
    max-width: 600px;
  }
  
  .hero-cta {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 1.5s;
  }
  
  /* Buttons */
  .cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed);
  }
  
  .cta-button.primary {
    background: var(--secondary-color);
    color: var(--light-text);
  }
  
  .cta-button.primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
  }
  
  .cta-button.secondary {
    background: transparent;
    border: 2px solid var(--light-text);
    color: var(--light-text);
  }
  
  .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
  }
  
  /* Section Styles */
  .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .section-header p {
    color: var(--gray-text);
    font-size: 1.1rem;
  }
  
  /* Properties Section */
  .properties {
    padding: var(--section-spacing) 5%;
    background: var(--background-color);
  }
  
  .property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
  }
  
  .property-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed);
    position: relative;
  }
  
  .property-card:hover {
    transform: translateY(-10px);
  }
  
  .property-image {
    height: 250px;
    background-size: cover;
    background-position: center;
  }
  
  .price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
  }
  
  .property-details {
    padding: 1.5rem;
  }
  
  .property-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .location {
    color: var(--gray-text);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .property-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: var(--gray-text);
    font-size: 0.9rem;
  }
  
  .property-cta {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed);
  }
  
  .property-cta:hover {
    background: #333;
  }
  
  /* About Section */
  .about {
    padding: var(--section-spacing) 5%;
    background: #f8f9fa;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
  }
  
  .stat-item {
    padding: 2rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .stat-label {
    color: var(--gray-text);
    font-size: 1rem;
  }
  
  .footer {
    color: white;
    padding: 3rem 0 2rem;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }
  
  .footer-about p {
    margin: 1.5rem 0;
    color: #94a3b8;
  }
  
  .social-links {
    display: flex;
    gap: 1rem;
  }
  
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--primary-color);
  }
  
  .social-links svg {
    color: white;
  }
  
  .footer-links h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
  }
  
  .footer-links ul li {
    margin-bottom: 0.75rem;
  }
  
  .footer-links ul li a {
    color: #94a3b8;
    transition: var(--transition);
  }
  
  .footer-links ul li a:hover {
    color: white;
  }
  
  .footer-bottom {
    padding-top: 2rem;
    margin: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1e293b;
    font-size: 1.2rem;
  }
  
  .footer-legal {
    display: flex;
    gap: 1.5rem;
  }
  
  .footer-legal a {
    color: #94a3b8;
  }
  
  .footer-legal a:hover {
    color: white;
  }

  /* Testimonials Section */
  .testimonials {
    padding: var(--section-spacing) 5%;
    background: var(--background-color);
  }
  
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .quote {
    font-size: 4rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #f0f0f0;
    font-family: 'Playfair Display', serif;
  }
  
  .testimonial-card p {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
  
  .testimonial-author span {
    color: var(--gray-text);
    font-size: 0.9rem;
  }
  
  /* Contact Section */
  .contact {
    padding: var(--section-spacing) 5%;
    background: #f8f9fa;
  }
  
  .contact-content {
    max-width: 600px;
    margin: 0 auto;
  }
  
  .contact-form {
    display: grid;
    gap: 1rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    transition: border-color var(--transition-speed);
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
  }
  
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }

  
  /* Animations */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .navbar {
      padding: 1rem 5%;
    }
  
    .nav-links {
      display: none;
    }

    .hero {
        justify-content: center;
    }
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1.1rem;
    }
  
    .hero-cta {
      flex-direction: column;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    

    .button-container {
        display: flex;
        justify-content: center; /* Centers buttons horizontally */
        align-items: center; /* Centers buttons vertically */
        flex-direction: column; /* Stacks buttons vertically */
        gap: 10px; /* Adds space between buttons */
    }
    
    .hero-cta .cta-button  {
        width: 100%; /* Makes buttons full width */
        max-width: 400px; /* Optional: Limits button width */
        text-align: center; /* Ensures text is centered */
    }

    
  
    .section-header h2 {
      font-size: 2rem;
    }
  
    .property-grid,
    .testimonials-grid {
      grid-template-columns: 1fr;
    }
  
    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }