* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #0b0b0b;
  color: white;
  line-height: 1.6;
}

/* HEADER */
header {
  background: #000;
  padding: 25px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  font-size: 32px;
  font-weight: bold;
}

.brand span {
  color: #d6a15d;
}

nav {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #d6a15d;
}

/* HERO IMAGE SECTION */
.services-hero {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 420px;
}

.service-box {
  height: 420px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.service-box h2 {
  position: relative;
  z-index: 2;
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  padding: 20px;
  line-height: 1.2;
}

/* INTRO */
.intro {
  text-align: center;
  padding: 80px 20px;
  max-width: 1000px;
  margin: auto;
}

.intro h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.intro span {
  color: #d6a15d;
}

.intro p {
  max-width: 850px;
  margin: auto;
  font-size: 20px;
}

.btn {
  display: inline-block;
  margin-top: 30px;
  background: #d6a15d;
  color: #000;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* INFO CARDS */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 70px 40px;
}

.info-card {
  background: #111;
  border-radius: 14px;
  padding: 45px 30px;
  text-align: center;
  min-height: 450px;
}

.info-card h2 {
  color: #d6a15d;
  font-size: 40px;
}

.info-card h3 {
  font-size: 30px;
  margin: 18px 0;
}

.info-card p {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.7;
}

.outline-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  border: 2px solid #d6a15d;
  color: #d6a15d;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

/* PARTNERS */
.partner-logos {
  text-align: center;
  padding: 70px 20px;
}

.partner-logos h3 {
  color: #d6a15d;
  font-size: 42px;
  margin-bottom: 30px;
}

.logo-track {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.logo-track img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: white;
  padding: 10px;
  border-radius: 50%;
}

/* GALLERY */
#gallery {
  text-align: center;
  padding: 80px 30px;
}

#gallery h2 {
  color: #d6a15d;
  font-size: 46px;
  margin-bottom: 15px;
}

#gallery p {
  max-width: 850px;
  margin: auto;
  font-size: 20px;
}

.gallery-grid {
  margin: 40px auto 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #d6a15d;
}





/* SOCIAL */
.social-side {
  position: fixed;
  right: 12px;
  top: 72%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-side img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  padding: 8px;
  object-fit: contain;
}

/* FOOTER */
footer {
  background: #000;
  padding: 30px;
  text-align: center;
  color: #ccc;
}

/* MOBILE */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    padding: 25px 15px;
  }

  .brand {
    font-size: 28px;
    margin-bottom: 15px;
  }

  nav {
    justify-content: center;
    gap: 15px;
  }

  .services-hero,
  .info-grid,
  .gallery-grid,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .services-hero {
    height: auto;
  }

  .service-box {
    height: 320px;
  }

  .service-box h2 {
    font-size: 26px;
  }

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

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

  .info-grid {
    padding: 50px 20px;
  }

  .info-card {
    min-height: auto;
    padding: 40px 25px;
  }

  .gallery-grid img {
    height: 260px;
  }

  /* BOOKING */
  
  /* FIX BOOKING LAYOUT */
.booking-form {
  max-width: 760px !important;
  margin: 0 auto !important;
  background: #151515 !important;
  border: 1px solid #d6a15d !important;
  border-radius: 16px !important;
  padding: 30px !important;
}

.form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 22px !important;
}

.booking-form textarea,
.booking-form button {
  grid-column: 1 / -1 !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .booking-form {
    max-width: 90% !important;
    padding: 18px !important;
  }

  .form-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  .booking-form input,
  .booking-form select {
    padding: 10px !important;
    font-size: 12px !important;
    height: 42px !important;
  }

  .booking-form textarea {
    height: 90px !important;
    font-size: 12px !important;
  }
}
  /* FINAL BOOKING FIX */
.booking-section {
  max-width: 100% !important;
  padding: 70px 20px !important;
  text-align: center !important;
}

.booking-form {
  max-width: 760px !important;
  margin: 30px auto !important;
  padding: 30px !important;
}

.form-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 22px !important;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 15px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
}

.booking-form textarea {
  display: block !important;
  margin-top: 22px !important;
  min-height: 120px !important;
}

.booking-form button {
  display: block !important;
  width: 100% !important;
  margin-top: 22px !important;
  padding: 16px !important;
  background: #d6a15d !important;
  border-radius: 8px !important;
  font-weight: bold !important;
  font-size: 16px !important;
}
 .booking-form select {
  color: #111 !important;
  background: #fff !important;
  height: 58px !important;
  line-height: normal !important;
  padding: 0 15px !important;
  font-size: 16px !important;
  appearance: auto !important;
}

.booking-form input[type="date"],
.booking-form input[type="time"] {
  color: #111 !important;
  background: #fff !important;
  height: 58px !important;
  line-height: normal !important;
  padding: 0 15px !important;
  font-size: 16px !important;
}
  .date-wrap label {
  display: block !important;
  color: #d6a15d !important;
  font-size: 13px !important;
  font-weight: bold !important;
  margin-bottom: 6px !important;
  text-align: left !important;
}

.date-wrap input {
  width: 100% !important;
}
  #booking .booking-form {
  max-width: 760px !important;
  margin: 30px auto !important;
  background: #151515 !important;
  border: 1px solid #d6a15d !important;
  border-radius: 16px !important;
  padding: 30px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 22px !important;
}

#booking .booking-form input,
#booking .booking-form select,
#booking .booking-form textarea {
  width: 100% !important;
  height: 55px !important;
  padding: 15px !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  box-sizing: border-box !important;
}

#booking .booking-form textarea {
  grid-column: 1 / -1 !important;
  height: 120px !important;
}

#booking .booking-form button {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  padding: 16px !important;
  background: #d6a15d !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: bold !important;
  font-size: 16px !important;
}

@media (max-width: 768px) {
  #booking .booking-form {
    grid-template-columns: 1fr 1fr !important;
    padding: 20px !important;
  }
}
  #bookingDate,
#bookingTime {
    width: 100%;
    height: 60px;
    padding: 0 18px;
    border-radius: 12px;
    border: none;
    background: #fff;
    color: #777;
    font-size: 16px;
    cursor: pointer;
}
  .input-wrap {
    position: relative;
    width: 100%;
}

.input-wrap input {
    width: 100%;
    height: 60px;
    padding: 18px;
    border-radius: 12px;
    border: none;
    background: #fff;
    color: transparent;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.input-wrap label {
    position: absolute;
    left: 18px;
    top: 18px;
    color: #777;
    font-size: 16px;
    pointer-events: none;
    z-index: 1;   /* behind input */
}

.input-wrap input:focus,
.input-wrap input:valid {
    color: #000;
}

.input-wrap input:focus + label,
.input-wrap input:valid + label {
    display: none;
}
  /* BOOKING SECTION */
.booking-section {
  padding: 80px 20px;
  background: #111;
  text-align: center;
  color: #fff;
}

.booking-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #d6a15d;
}

.booking-section p {
  margin-bottom: 30px;
  color: #ccc;
}

.booking-form {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #333;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  font-size: 16px;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #d6a15d;
}

.full-width {
  grid-column: 1 / 3;
}

.booking-form button {
  grid-column: 1 / 3;
  padding: 15px;
  background: #d6a15d;
  color: #111;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.booking-form button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .booking-form {
    grid-template-columns: 1fr;
  }

  .full-width,
  .booking-form button {
    grid-column: 1;
  }

  .booking-section h2 {
    font-size: 28px;
  }
}
  /* BOOKING FORM WHITE FIELDS */
.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 18px;
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
  border-radius: 14px;
  font-size: 16px;
  box-sizing: border-box;
}

/* Placeholder text */
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: #777;
}

/* Full width booking details */
.full-width {
  grid-column: 1 / 3;
}

/* Textarea aligned */
.booking-form textarea {
  width: 100%;
  min-height: 220px;
  resize: none;
}

/* Mobile */
@media (max-width: 768px) {
  .booking-form {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: 1;
  }

  .booking-form textarea {
    min-height: 180px;
  }
}
  Paste this **below your current CSS**. It makes **Location / Booking Details** stretch **corner to corner inside the form**:

```css
/* Full width Booking Details */
.full-width {
  grid-column: 1 / -1;
  width: 100%;
}

.full-width textarea {
  width: 100%;
  min-height: 220px;
  padding: 20px;
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
  border-radius: 14px;
  box-sizing: border-box;
}

/* Mobile */
@media (max-width: 768px) {
  .full-width {
    grid-column: 1;
    width: 100%;
  }

  .full-width textarea {
    width: 100%;
  }
}
```

This makes the **Location / Booking Details box fill left to right** across the whole booking form.
/* FORCE Booking Details full width */
.booking-form .full-width {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

.booking-form .full-width textarea {
  display: block;
  width: 100% !important;
  min-height: 220px;
  padding: 20px;
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
  border-radius: 14px;
  box-sizing: border-box;
}

/* Make form columns same size */
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form .full-width {
    grid-column: 1 !important;
  }
}
  .booking-details {
  grid-column: 1 / span 2 !important;
  width: 100% !important;
}

.booking-details textarea {
  width: 100% !important;
  min-height: 220px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .booking-details {
    grid-column: 1 !important;
  }
}
  .booking-form {
  grid-template-columns: 1fr 1fr !important;
}

.booking-form > .booking-details {
  grid-column: 1 / 3 !important;
  max-width: none !important;
}

.booking-form > .booking-details textarea {
  width: 100% !important;
  max-width: none !important;
  display: block !important;
  min-height: 220px;
}

@media (max-width: 768px) {
  .booking-form {
    grid-template-columns: 1fr !important;
  }

  .booking-form > .booking-details {
    grid-column: 1 !important;
  }
}
  /* FIX ALL BOOKING TEXT FIELDS */
.booking-section .booking-form {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.booking-section .form-group {
  width: 100% !important;
  max-width: none !important;
}

.booking-section .form-group input,
.booking-section .form-group select,
.booking-section .form-group textarea {
  width: 100% !important;
  max-width: none !important;
  box-sizing: border-box !important;
  background: #fff !important;
  color: #111 !important;
}

/* MAKE LOCATION / DETAILS FULL WIDTH */
.booking-section .form-group.full-width,
.booking-section .booking-details {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

.booking-section .form-group.full-width textarea,
.booking-section .booking-details textarea {
  width: 100% !important;
  min-height: 220px !important;
}

/* MOBILE */
@media (max-width: 768px) {
  .booking-section .booking-form {
    grid-template-columns: 1fr !important;
  }

  .booking-section .form-group.full-width,
  .booking-section .booking-details {
    grid-column: 1 !important;
  }
}
  /* FINAL BOOKING MOBILE FIX */
@media (max-width: 768px) {
  #booking .booking-form {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  #booking .form-group {
    width: 100% !important;
    max-width: 100% !important;
  }

  #booking input,
  #booking select,
  #booking textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  #booking textarea {
    min-height: 220px !important;
  }

  #booking button {
    width: 100% !important;
  }
}
  /* FULL TABLET + MOBILE RESPONSIVE FIX */
@media screen and (max-width: 1024px) {

  /* Cards stack properly */
  .services-hero,
  .services-grid,
  .cards-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    gap: 20px !important;
  }

  /* Booking form full width */
  #booking .booking-form {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  #booking .form-group,
  #booking input,
  #booking select,
  #booking textarea,
  #booking button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Text area */
  #booking textarea {
    min-height: 220px !important;
  }

  /* Header/nav wrap */
  header {
    flex-wrap: wrap !important;
    gap: 15px !important;
  }

  nav {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important;
  }

  /* Text scale */
  h1 {
    font-size: 42px !important;
  }

  h2 {
    font-size: 32px !important;
  }
}
/* FINAL BOOKING FIX */
#booking form.booking-form {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 25px !important;
  width: 100% !important;
  max-width: 1100px !important;
  margin: 0 auto !important;
}

#booking .form-group {
  width: 100% !important;
}

#booking input,
#booking select,
#booking textarea {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  display: block !important;
}

#booking .full-width {
  grid-column: 1 / -1 !important;
}

#booking .full-width textarea {
  min-height: 220px !important;
}

#booking button {
  grid-column: 1 / -1 !important;
  width: 100% !important;
}

/* PHONE FIX */
@media screen and (max-width: 768px) {
  #booking form.booking-form {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  #booking .full-width,
  #booking button {
    grid-column: 1 / -1 !important;
  }
}