* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    width: 100%;
    display: block;
  }
  
  /* HEADER */
  
  .header {
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    padding: 22px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: 0.4s ease;
  }
  
  .header.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    padding: 15px 8%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  }
  
  .logo {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
  }
  
  .logo span {
    color: #d4a24c;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  
  .navbar a {
    font-size: 15px;
    font-weight: 500;
    color: #f1f1f1;
    position: relative;
    transition: 0.3s;
  }
  
  .navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: #d4a24c;
    transition: 0.3s;
  }
  
  .navbar a:hover {
    color: #d4a24c;
  }
  
  .navbar a:hover::after {
    width: 100%;
  }
  
  .menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  
  .menu-btn span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
  }
  
  /* HERO */
  
  .hero {
    min-height: 100vh;
    background:
      linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.7)),
      url("https://images.unsplash.com/photo-1597212618440-806262de4f6b?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(212, 162, 76, 0.18);
    border-radius: 50%;
    filter: blur(90px);
    right: -150px;
    bottom: 40px;
    animation: floatingGlow 6s infinite alternate ease-in-out;
  }
  
  @keyframes floatingGlow {
    from {
      transform: translateY(0) scale(1);
    }
    to {
      transform: translateY(-40px) scale(1.1);
    }
  }
  
  .hero-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
    animation: fadeUp 1.2s ease forwards;
  }
  
  .hero-subtitle {
    color: #d4a24c;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 18px;
  }
  
  .hero-content h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(44px, 7vw, 82px);
    line-height: 1.05;
    margin-bottom: 24px;
  }
  
  .hero-text {
    font-size: 18px;
    color: #e0e0e0;
    max-width: 600px;
    margin-bottom: 35px;
  }
  
  .cta-btn {
    display: inline-block;
    background: #d4a24c;
    color: #111;
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.35s;
    box-shadow: 0 10px 35px rgba(212, 162, 76, 0.35);
  }
  
  .cta-btn:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.2);
  }
  
  .cta-btn.dark {
    background: #111;
    color: #fff;
    border: 1px solid #d4a24c;
  }
  
  .cta-btn.dark:hover {
    background: #d4a24c;
    color: #111;
  }
  
  /* SECTIONS */
  
  .section {
    padding: 110px 8%;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title p,
  .small-title {
    color: #d4a24c;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .section-title h2,
  .about-content h2,
  .contact-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 5vw, 54px);
  }
  
  /* SERVICES */
  
  .services {
    background: #111;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
  
  .service-card {
    background: linear-gradient(145deg, #181818, #101010);
    padding: 35px 25px;
    border-radius: 24px;
    border: 1px solid rgba(212, 162, 76, 0.18);
    transition: 0.4s;
  }
  
  .service-card:hover {
    transform: translateY(-12px);
    border-color: #d4a24c;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
  }
  
  .icon {
    font-size: 38px;
    margin-bottom: 20px;
  }
  
  .service-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
  }
  
  .service-card p {
    color: #bdbdbd;
    line-height: 1.7;
  }
  
  /* VILLAS */
  
  .villas {
    background: #0d0d0d;
  }
  
  .villa-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  
  .villa-card {
    background: #151515;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .villa-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55);
  }
  
  .villa-card img {
    height: 260px;
    object-fit: cover;
    transition: 0.6s;
  }
  
  .villa-card:hover img {
    transform: scale(1.08);
  }
  
  .villa-content {
    padding: 28px;
  }
  
  .villa-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .villa-content p {
    color: #c7c7c7;
    line-height: 1.7;
    margin-bottom: 20px;
  }
  
  .villa-info {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }
  
  .villa-info span {
    background: rgba(212, 162, 76, 0.13);
    color: #d4a24c;
    padding: 8px 13px;
    border-radius: 30px;
    font-size: 13px;
  }
  
  .villa-content a {
    color: #d4a24c;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .villa-content a:hover {
    color: #fff;
  }
  
  /* ABOUT */
  
  .about {
    background: #f4efe7;
    color: #111;
  }
  
  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .about-image {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
  }
  
  .about-image img {
    height: 550px;
    object-fit: cover;
    transition: 0.6s;
  }
  
  .about-image:hover img {
    transform: scale(1.07);
  }
  
  .about-content p {
    color: #444;
    line-height: 1.8;
    margin: 22px 0;
  }
  
  .driver-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 30px 0;
  }
  
  .driver-details div {
    background: #fff;
    padding: 22px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  
  .driver-details h4 {
    color: #111;
    margin-bottom: 8px;
  }
  
  /* CONTACT */
  
  .contact {
    padding: 110px 8%;
    background:
      linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)),
      url("https://images.unsplash.com/photo-1539020140153-e8c237112e53?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    text-align: center;
  }
  
  .contact-content {
    max-width: 720px;
    margin: auto;
  }
  
  .contact-content p {
    color: #d0d0d0;
    margin: 18px 0 35px;
    font-size: 17px;
    line-height: 1.8;
  }
  
  /* FOOTER */
  
  footer {
    background: #070707;
    text-align: center;
    padding: 25px 8%;
    color: #aaa;
    font-size: 14px;
  }

  /* CONTACT ACTIONS */

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.instagram-contact {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 27px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: 0.35s ease;
}

.instagram-contact:hover {
  color: #111111;
  background: #d4a24c;
  border-color: #d4a24c;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 35px rgba(212, 162, 76, 0.35);
}
  
  /* ANIMATIONS */
  
  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(45px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .reveal {
    transform: translateY(50px);
    transition: 1s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  .villa-card {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }
  
  .villa-card .villa-link {
    display: inline-block;
    color: #d4a24c;
    font-weight: 700;
    transition: 0.3s;
  }
  
  .villa-card:hover .villa-link {
    transform: translateX(6px);
    color: #fff;
  }

  .view-all-box {
    text-align: center;
    margin-top: 50px;
  }
  
  .villa-card {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }
  
  .villa-card .villa-link {
    display: inline-block;
    color: #d4a24c;
    font-weight: 700;
    transition: 0.3s;
  }
  
  .villa-card:hover .villa-link {
    transform: translateX(6px);
    color: #fff;
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 1050px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .villa-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .about-container {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .header {
      padding: 18px 6%;
    }
  
    .navbar {
      position: absolute;
      top: 75px;
      right: 6%;
      width: 230px;
      background: rgba(15, 15, 15, 0.96);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(212, 162, 76, 0.25);
      border-radius: 20px;
      padding: 25px;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      transform: translateY(-20px);
      opacity: 0;
      pointer-events: none;
      transition: 0.35s;
    }
  
    .navbar.active {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
    }
  
    .menu-btn {
      display: flex;
    }
  
    .hero {
      padding: 0 6%;
    }
  
    .section {
      padding: 85px 6%;
    }
  
    .services-grid,
    .villa-grid,
    .driver-details {
      grid-template-columns: 1fr;
    }
  
    .about-image img {
      height: 420px;
    }
  }
  
  @media (max-width: 480px) {
    .hero-content h1 {
      font-size: 42px;
    }
  
    .hero-text {
      font-size: 16px;
    }
  
    .logo {
      font-size: 23px;
    }
  
    .cta-btn {
      padding: 13px 25px;
    }
  }