* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: #f5f5f5;
  overflow-x: hidden;
}

#booking {
  scroll-margin-top: 80px;
}
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #1f1f1f;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 10px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.logo {
  color: #c89b3c;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-decoration: none;
}

.nav-btn {
  background: #c89b3c;
  color: #000;
  padding: 7px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 85vh;
  padding: 100px 20px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.45) 0%,
      rgba(0, 0, 0, 0.75) 50%,
      #0b0b0b 100%
    ),
    linear-gradient(
      180deg,
      rgba(11, 11, 11, 0.35) 0%,
      #0b0b0b 100%
    ),
    url("images/est 1.png") center 60% / contain no-repeat;

  opacity: 0.85;
  transform: scale(1.05);
  z-index: -1;
}

.hero-content {
  text-align: center;
  margin: 0 auto;
  max-width: 750px;
  transform: translateY(-30px);
}

.brand {
  color: #d4af37; /* richer gold */
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.booking-brand {
  text-align: center;
  color: #c89b3c;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: #f8f3e9;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.9);
}

.hero p {
  color: #d4d4d4;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 28px;
  color: #d6cfc2; /* warm gray */
}

.btn {
  display: inline-block;
   background: #d4af37;
  color: #0b0b0b;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn:hover {
  background: #e6c45a;
  transform: translateY(-2px);
  
}

.services,
.business-info,
.how-it-works {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.services h2,
.how-it-works h2,
.booking h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #f5f5f5;
}

.services-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card,
.step {
  background: #141414;
  padding: 25px;
  border-radius: 18px;
  border: 1px solid #262626;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.service-card {
  transition: 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
  color: inherit;
  border: 1px solid #262626;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #c89b3c, #e0b84f);
  transition: left 0.3s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: #c89b3c;
}

.service-card h3,
.step h3 {
  margin-bottom: 10px;
  color: #f5f5f5;
}

.service-card p,
.step p {
  color: #a3a3a3;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-card span {
  font-weight: 700;
  color: #c89b3c;
  display: inline-block;
}

.service-card:hover h3 {
  color: #c89b3c;
}

.service-card,
.step,
.info-grid div {
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.step:hover,
.info-grid div:hover {
  transform: translateY(-8px);
  border-color: #c89b3c;
  box-shadow: 0 25px 50px rgba(200, 155, 60, 0.12);
}

/* .popular {
  border: 1px solid #c89b3c;
} */

.badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #c89b3c;
  color: #000;
  padding: 4px 10px;
  font-size: 0.75rem;
  border-radius: 20px;
  font-weight: 700;
}

.booking {
  max-width: 700px;
  width: calc(100% - 32px);
  margin: 80px auto;
  padding: 40px;
  background: #141414;
  border: 1px solid #262626;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.booking h2,
.booking > p,
.booking-brand {
  text-align: center;
}

.booking p {
  color: #a3a3a3;
  margin-bottom: 25px;
  line-height: 1.6;
}

.booking-form {
  display: grid;
  gap: 18px;
  width: 100%;
}

.booking-form label {
  display: grid;
  gap: 8px;
  width: 100%;
  font-weight: 600;
  color: #f5f5f5;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #333333;
  border-radius: 12px;
  background: #0b0b0b;
  color: #f5f5f5;
  font-size: 16px;
  font-family: inherit;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #737373;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
  -webkit-appearance: none;
  appearance: none;
  min-height: 52px;
  line-height: normal;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #c89b3c;
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.15);
}

.booking-form textarea {
  resize: vertical;
  min-height: 110px;
}

.booking-form button {
  width: 100%;
  margin-top: 6px;
}

.note {
  font-size: 0.85rem;
  color: #a3a3a3;
  margin-top: -5px;
  margin-bottom: 0;
}

.day-display {
  font-size: 0.9rem;
  color: #c89b3c;
  font-weight: 600;
  margin-bottom: 0;
}

#success-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  font-weight: 600;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.whatsapp-btn {
  display: block;
  margin-top: 20px;
  text-align: center;
  color: #22c55e;
  font-weight: 700;
  text-decoration: none;
}

.whatsapp-btn:hover {
  text-decoration: underline;
}

.footer {
  text-align: center;
  padding: 30px 20px;
  color: #737373;
  font-size: 0.9rem;
  border-top: 1px solid #1f1f1f;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 90px;
  }

  .services,
  .how-it-works {
    margin: 60px auto;
  }

  .booking {
    width: calc(100% - 32px);
    margin: 40px auto;
    padding: 24px;
  }

  .nav-container {
    padding: 8px 14px;
  }

  .logo {
    font-size: 0.85rem;
    max-width: 180px;
    text-decoration: none;
  }

  .nav-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }
.service-card:hover,
  .step:hover,
  .info-grid div:hover {
    transform: none;
  }

  .booking h2,
.services h2,
.business-info h2,
.how-it-works h2 {
  font-size: 1.6rem;
}
}

.business-info {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: center;
}

.business-info h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #f5f5f5;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.info-grid div {
  background: #141414;
  padding: 25px;
  border-radius: 18px;
  border: 1px solid #262626;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.info-grid h3 {
  margin-bottom: 10px;
  color: #c89b3c;
}

.info-grid p {
  color: #a3a3a3;
  line-height: 1.6;
  margin-bottom: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
