.villa-details-page {
    min-height: 100vh;
    background: #0d0d0d;
    padding: 140px 8% 90px;
  }
  
  .villa-details-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 55px;
    align-items: start;
  }
  
  .villa-gallery {
    position: sticky;
    top: 120px;
  }
  
  .main-image-box {
    position: relative;
    width: 100%;
    height: 570px;
    border-radius: 30px;
    overflow: hidden;
    background: #161616;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
  }
  
  .main-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: imageFade 0.45s ease;
  }
  
  @keyframes imageFade {
    from {
      opacity: 0.5;
      transform: scale(1.04);
    }
  
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 38px;
    cursor: pointer;
    transition: 0.3s;
    backdrop-filter: blur(8px);
  }
  
  .slider-btn:hover {
    background: #d4a24c;
    color: #111;
  }
  
  .prev-btn {
    left: 18px;
  }
  
  .next-btn {
    right: 18px;
  }
  
  .thumbnail-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 18px;
  }
  
  .thumbnail-row img {
    height: 105px;
    object-fit: cover;
    border-radius: 18px;
    cursor: pointer;
    opacity: 0.55;
    border: 2px solid transparent;
    transition: 0.3s;
  }
  
  .thumbnail-row img:hover,
  .thumbnail-row img.active {
    opacity: 1;
    border-color: #d4a24c;
    transform: translateY(-4px);
  }
  
  .villa-details-content {
    background: linear-gradient(145deg, #171717, #0f0f0f);
    padding: 42px;
    border-radius: 32px;
    border: 1px solid rgba(212, 162, 76, 0.2);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  }
  
  .villa-details-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.05;
    margin-bottom: 18px;
  }
  
  .villa-location {
    color: #d4a24c;
    font-weight: 500;
    margin-bottom: 28px;
  }
  
  .villa-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 35px;
  }
  
  .feature-card {
    background: rgba(212, 162, 76, 0.1);
    border: 1px solid rgba(212, 162, 76, 0.16);
    padding: 16px;
    border-radius: 18px;
  }
  
  .feature-card strong {
    display: block;
    color: #fff;
    font-size: 19px;
    margin-bottom: 3px;
  }
  
  .feature-card span {
    color: #bdbdbd;
    font-size: 14px;
  }
  
  .villa-details-content h3 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 22px;
    color: #fff;
  }
  
  .villa-details-content p {
    color: #c9c9c9;
    line-height: 1.8;
  }
  
  .villa-details-content ul {
    list-style: none;
    margin-bottom: 25px;
  }
  
  .villa-details-content li {
    color: #d6d6d6;
    margin-bottom: 10px;
    position: relative;
    padding-left: 24px;
  }
  
  .villa-details-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4a24c;
    font-weight: 700;
  }
  
  .price-box {
    margin: 35px 0;
    padding: 25px;
    border-radius: 24px;
    background: #f4efe7;
    color: #111;
  }
  
  .price-box p {
    color: #555;
    margin-bottom: 5px;
  }
  
  .price-box h2 {
    font-size: 34px;
    color: #111;
  }
  
  .villa-link {
    color: #d4a24c;
    font-weight: 600;
  }
  
  /* Responsive */
  
  @media (max-width: 1000px) {
    .villa-details-container {
      grid-template-columns: 1fr;
    }
  
    .villa-gallery {
      position: relative;
      top: 0;
    }
  }
  
  @media (max-width: 768px) {
    .villa-details-page {
      padding: 120px 6% 70px;
    }
  
    .main-image-box {
      height: 420px;
    }
  
    .thumbnail-row {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .villa-details-content {
      padding: 28px;
    }
  
    .villa-features {
      grid-template-columns: 1fr;
    }
  
    .navbar {
      display: none;
    }
  }
  
  @media (max-width: 480px) {
    .main-image-box {
      height: 320px;
    }
  
    .thumbnail-row img {
      height: 85px;
    }
  
    .slider-btn {
      width: 42px;
      height: 42px;
      font-size: 30px;
    }
  }