* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
    color: white;
  }

  .promo-container {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c, #4facfe, #00f2fe);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
  }

  @keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .promo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(255,255,255,0.08) 0%, transparent 50%);
    z-index: 1;
    animation: floatOrbs 20s ease-in-out infinite;
  }

  @keyframes floatOrbs {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
    50% { transform: translateY(-30px) rotate(180deg); opacity: 1; }
  }

  .header {
    padding: 2rem;
    backdrop-filter: blur(30px);
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }

  .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 3s ease-in-out infinite;
  }

  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }

  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
  }

  .hmda-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .hmda-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: rotate 4s linear infinite;
  }

  .hmda-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  }

  .hmda-badge p {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
  }

  .logo-section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.2rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .logo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: logoShine 3s ease-in-out infinite;
  }

  @keyframes logoShine {
    0% { left: -100%; }
    100% { left: 100%; }
  }

  .logo-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  }

  .logo-section p {
    color: white;
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }


  .main-grid {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
    min-height: calc(100vh - 200px);
  }

  .left-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }

  .feature-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .feature-card:hover::before {
    transform: scaleX(1);
  }

  .feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.25);
  }

  .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.3));
    animation: iconFloat 3s ease-in-out infinite;
  }

  @keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
  }

  .feature-card h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
  }

  .feature-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  }


  .main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }

  .title-section {
    margin-bottom: 3rem;
    position: relative;
  }

  .title-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 1; }
  }

  .title-section h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    animation: fadeInUp 1s ease-out;
  }

  .title-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 8px;
    margin-bottom: 1.5rem;
    color: #001390;
    background-clip: text;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
  }

  @keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(255,255,255,0.3)); }
    50% { filter: drop-shadow(0 0 40px rgba(255,255,255,0.6)); }
  }

  .title-section h1::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    border-radius: 2px;
    animation: underlineGlow 2s ease-in-out infinite;
  }

  @keyframes underlineGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(255,255,255,0.3); }
    50% { box-shadow: 0 0 30px rgba(255,255,255,0.8); }
  }

  .title-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.4rem;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out 0.5s both;
  }

  .house-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    margin-top: 2rem;
  }

  .house-container::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -40px;
    right: -40px;
    bottom: -40px;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), rgba(255,255,255,0.1));
    border-radius: 40px;
    backdrop-filter: blur(30px);
    z-index: -1;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    animation: containerFloat 6s ease-in-out infinite;
  }

  @keyframes containerFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
  }

  .house-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: 
      0 40px 80px rgba(0,0,0,0.4),
      0 0 0 3px rgba(255,255,255,0.2),
      inset 0 1px 0 rgba(255,255,255,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: brightness(1.1) contrast(1.1);
  }

  .house-image:hover {
    transform: scale(1.05) rotateY(5deg);       
    box-shadow: 
      0 60px 120px rgba(0,0,0,0.5),
      0 0 0 5px rgba(255,255,255,0.3),
      inset 0 1px 0 rgba(255,255,255,0.2);
    filter: brightness(1.2) contrast(1.2);
  }

  .right-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
  }

  .price-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.15));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    animation: priceShimmer 3s ease-in-out infinite;
  }

  @keyframes priceShimmer {
    0% { background: linear-gradient(90deg, #667eea, #764ba2, #f093fb); }
    50% { background: linear-gradient(90deg, #f093fb, #667eea, #764ba2); }
    100% { background: linear-gradient(90deg, #764ba2, #f093fb, #667eea); }
  }

  .price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.35);
    background: linear-gradient(135deg, rgba(255,255,255,0.35), rgba(255,255,255,0.25));
  }

  .price-card h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
  }

  .price-card .price {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0,0,0,0.4);
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: priceGlow 2s ease-in-out infinite;
  }

  @keyframes priceGlow {
    0%, 100% { filter: drop-shadow(0 0 15px rgba(255,255,255,0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(255,255,255,0.6)); }
  }

  .price-card .per-unit {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
  }

  .bank-loan-section {
    background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
    border-radius: 30px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  .bank-loan-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.1));
    animation: rotate 8s linear infinite;
  }

  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  .bank-loan-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(102, 126, 234, 0.6);
  }

  .bank-loan-section h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
    letter-spacing: 2px;
  }

  .footer {
    text-align: center;
    padding: 2rem;
    margin-top: 70px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
  }

  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  }

  .footer p {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-family: 'Playfair Display', serif;
  }

  .footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer a:hover {
    color: white;
    text-shadow: 0 0 20px rgba(255,255,255,0.8);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }

  .highlights-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    z-index: 1;
  }

  .highlights-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .highlight-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fff, #667eea);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }

  .feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  .feature img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    filter: brightness(1.1);
  }

  .feature p {
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
  }

  .highlight-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
  }

  .desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
  }

  .pricing-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }

  .pricing-box ul {
    margin-top: 1rem;
    padding-left: 1.5rem;
  }

  .pricing-box li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 1200px) {
    .main-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
    
    .title-section h1 {
      font-size: 4rem;
    }
    
    .highlights-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }

  @media (max-width: 768px) {
    .header-content {
      flex-direction: column;
      gap: 1rem;
    }
    
    .title-section h1 {
      font-size: 3rem;
      letter-spacing: 4px;
    }
    
    .main-grid {
      padding: 1rem;
    }
    
    .house-image {
      height: 250px;
    }
  }


  .villas-showcase {
    background: linear-gradient(135deg, #1a1a2e, #16213e , #0a0a0a);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .villas-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
    radial-gradient(circle at 90% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%)
      ;
    z-index: 1;
  }
  
  .villas-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  
  .villas-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .villas-header img {
    max-width: 250px;
  }
  
  .villa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .villa-grid img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    object-fit: cover;
    height: 200px;
  }
  
  .villa-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
  }
  

  .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 2rem;
    color: white;
    background: linear-gradient(135deg, #fff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .layout-map-section,
  .house-plan-section {
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .layout-map-container img.layout-map-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255,255,255,0.1);
  }
  
  .house-plan-container .house-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .house-plan-grid img {
    width: 100%;
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
    background: white;
  }
  
  .house-plan-grid img:hover {
    transform: scale(1.05);
  }

  
  .spec-section {
  background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #16213e);
  padding: 4rem 2rem;
  color: white;
  position: relative;
  z-index: 1;
}

.spec-container {
  max-width: 1200px;
  margin: 0 auto;
}

.spec-table {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-size: 1rem;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.spec-row {
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.spec-row span:first-child {
  font-weight: 600;
  color: #00d4ff;
  font-family: 'Playfair Display', serif;
}

.spec-row span:last-child {
  color: rgba(255,255,255,0.9);
  margin-top: 0.2rem;
}

.spec-notes {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  padding: 1rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border-left: 4px solid #00d4ff;
}

.spec-notes ul {
  margin-top: 0.5rem;
  padding-left: 1.5rem;
}

.spec-notes li {
  margin-bottom: 0.5rem;
}

.location-plan-section {
    background: linear-gradient(135deg, #1a1a2e, #0a0a0a, #16213e);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .location-plan-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .location-map-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255,255,255,0.1);
    cursor: pointer;
  }
  
  .location-desc {
    margin-top: 1.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  @keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }

  
  .location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
  }
  
  .feature-item {
    background: white;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  .feature-icon {
    width: 24px;
    height: 24px;
    fill: #0062ff;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .feature-item p {
    color: #333;
    font-size: 1rem;
    line-height: 1.4;
    margin: 0;
  }
  

@media (max-width: 480px) {
  .title-section h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
  }
  
  .title-section p {
    font-size: 1rem;
  }
  
  .villa-grid {
    grid-template-columns: 1fr;
  }
  
  .house-plan-grid {
    grid-template-columns: 1fr;
  }
  
  .feature {
    flex-direction: column;
    text-align: center;
  }
  
  .header {
    padding: 1rem;
  }
  
  .main-grid {
    padding: 1rem;
  }
}

@media (max-width: 1200px) {
  .main-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .title-section h1 {
    font-size: 4rem;
  }
  
  .highlights-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }
  
  .title-section h1 {
    font-size: 3rem;
    letter-spacing: 4px;
  }
  
  .main-grid {
    padding: 1rem;
  }
  
  .house-image {
    height: 250px;
  }
}

@media (max-width: 767px) {
  .promo-container {
    min-height: auto;
    padding-bottom: 2rem;
  }

  .main-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .main-content {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .title-section h1 {
    font-size: 2.5rem;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
  }

  .title-section h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }

  .title-section p {
    font-size: 1rem;
  }

  .house-container {
    margin-top: 1rem;
  }

  .house-image {
    height: 220px;
    border-radius: 20px;
  }

  .left-panel, 
  .right-panel {
    flex-direction: column;
    align-items: center;
  }

  .hmda-badge {
    width: 100%;
    padding: 1rem;
    text-align: center;
  }

  .logo-section {
    width: 100%;
    justify-content: center;
    padding: 1rem;
  }

  .price-card, 
  .bank-loan-section {
    width: 100%;
  }

  .footer {
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }

  .footer a {
    padding: 8px 16px;
    font-size: 1rem;
  }
}

@media (max-width: 400px) {
  .title-section h1 {
    font-size: 2rem;
  }

  .house-image {
    height: 180px;
  }
}