* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f5f5f5;
  color: #222;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 22px 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(10, 20, 30, 0.88);
  z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
  color: white;
}

.logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 28px;
  font-size: 15px;
}

nav a:hover {
  color: #d8a100;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding-top: 145px;
  padding-bottom: 70px;
  background:
    linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.38)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  text-align: center;
  color: white;
  margin-top: 20px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 36px;
}

/* BOOKING GENERAL */
.booking-box {
  background: rgba(255,255,255,0.92);
  padding: 26px;
  border-radius: 22px;
  max-width: 1100px;
  margin: 0 auto;
}

.booking-box input,
.booking-box select {
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  color: #333;
}

.booking-box button {
  background: #d8a100;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  padding: 15px;
  font-weight: bold;
}

.booking-box button:hover {
  background: #b88a00;
}

/* HOME BOOKING */
.booking-box:not(.service-box-layout) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* VILLAS */
.villas-preview {
  padding: 100px 60px;
  background: white;
  color: #222;
}

.villas-preview h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 50px;
  color: #0f172a;
}

.villa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.villa-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.villa-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.villa-card-content {
  padding: 22px;
}

.villa-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
  color: #0f172a;
}

.villa-card p {
  color: #555;
  margin-bottom: 18px;
  line-height: 1.6;
}

.villa-card a {
  display: inline-block;
  background: #d8a100;
  color: white;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: bold;
}

/* SERVICE PAGE */
.service-box-layout {
  display: grid;
  grid-template-columns: 2.1fr 0.75fr;
  gap: 16px;
  align-items: start;
  max-width: 1050px;
  margin: 0 auto;
  padding: 18px;
}

.service-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.service-main select,
.service-main input {
  padding: 11px 12px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  color: #333;
  height: 46px;
}

.price-box {
  grid-column: span 4;
  background: linear-gradient(90deg, #fff7df, #ffffff);
  border-radius: 10px;
  padding: 13px 16px;
  color: #222;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  min-height: 70px;
}

.price-box strong {
  font-size: 15px;
}

#servicePrice {
  color: #c40000;
  font-size: 17px;
  font-weight: bold;
}

.price-box small {
  color: #555;
  font-size: 13px;
}

.service-main button {
  grid-column: span 2;
  background: #d8a100;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 13px;
  height: 48px;
  font-size: 15px;
  font-weight: bold;
  cursor: pointer;
}

.service-price-list {
  background: rgba(255,255,255,0.96);
  padding: 15px;
  border-radius: 13px;
  color: #222;
  font-size: 13px;
  max-height: 420px;
  overflow-y: auto;
}

.service-price-list h3 {
  margin-bottom: 14px;
  color: #0f172a;
  font-size: 16px;
}

.service-price-list p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #ddd;
  padding: 7px 0;
  font-size: 12.5px;
  line-height: 1.4;
}

.service-price-list strong {
  white-space: nowrap;
  color: #0f172a;
}

/* FOOTER / SIMPLE SECTIONS */
footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 35px 20px;
}

/* MOBILE */
@media(max-width: 900px) {
  header {
    position: relative;
    padding: 22px 20px;
    flex-direction: column;
    gap: 16px;
  }

  .logo {
    font-size: 28px;
    text-align: center;
  }

  nav {
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 6px 10px;
    font-size: 15px;
  }

  .hero {
    padding-top: 55px;
    min-height: auto;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 18px;
  }

  .booking-box:not(.service-box-layout) {
    grid-template-columns: 1fr;
  }

  .service-box-layout {
    grid-template-columns: 1fr;
    max-width: 94%;
  }

  .service-main {
    grid-template-columns: 1fr;
  }

  .price-box,
  .service-main button {
    grid-column: span 1;
  }

  .price-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .villa-grid {
    grid-template-columns: 1fr;
  }

  .villas-preview {
    padding: 70px 22px;
  }
.logo span {
    color: white;
}
