 @font-face {
  font-family: myFont;
  src: url(assets/font/fact-bold.ttf);
}
 
 * {
        box-sizing: border-box;
      }
      body {
        margin: 0;
        font-family: Arial, sans-serif;
      }

      /* HERO */
      .top {
        position: relative;
        min-height: 1080px;
        background: url("./assets/images/bg.png") no-repeat center bottom / cover;
        background-attachment: fixed;
        isolation: isolate;
      }

      .logo svg{
  width: 240px;        /* control logo size */
  height: auto;
  display: block;
}
      /* overlay */
      .top::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( to top, rgba(0, 0, 0, 0.11), rgba(0, 0, 0, 0.77) );
        pointer-events: none;
        z-index: 0;
      }

      /* top bar */
      .top-inner {
        position: relative;
        z-index: 501;
        padding: 20px 350px 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
      }

      .logo a {
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        letter-spacing: 1px;
      }

      .items {
        align-self: center;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
      }

      .items a {
        color: #fff;
        text-decoration: none;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.15);
        padding: 10px 12px;
        border-radius: 10px;
        display: block;
      }

      /* booking form aligned to inner padding */
      .booking-form {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 120px;
        z-index: 10;
      }

      .booking-inner {
        margin: 0 350px;
        /* background: rgb(255, 255, 255); */
        border-radius: 16px;
        padding: 18px;
        /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); */
      }

      .hero-text {
        font-size: 35px;
        font-weight: 700;
        margin: 0 0 4px;
        color: #fff;
        text-shadow: 2px 2px 4px #000000;
      }

      .subtitle {
        margin: 0 0 25px;
        color: #ffffff;
        text-shadow: 2px 2px 4px #000000;
      }

      /* Trip type buttons (fake radios) */
      .trip-type {
        display: flex;
        gap: 8px;
        /* padding-right: 10px; */
        /* margin-bottom: 14px; */
      }

      .trip-type button {
        border: 0;
        padding: 10px 12px;
        border-radius: 10px;
        cursor: pointer;
        background: #e9ecef;
        color: #111;
      }

      .trip-type button.active {
        background: #D4AF37;
        color: black;
      }

      /* FLEX FORM */
      .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 22px;
        align-items: flex-end;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 5px 10px 18px #0000004f;
      }

/* PASSENGERS */

 .passenger-field{ position:relative; max-width:360px; }
  .p-label{ display:block; margin:0 0 6px; font-size:14px; }
.p-trigger{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border:1px solid #d0d0d0;
  border-radius:10px;
  background:#fff;
  cursor:pointer;
}

  /* Modal */
  .p-modal{ position:fixed; inset:0; z-index:2000; }
  .p-backdrop{ position:absolute; inset:0; background:rgba(0,0,0,.45); }
  .p-card{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:min(360px, calc(100% - 32px));
    background:#fff;
    border-radius:12px;
    padding:14px;
    box-shadow:0 12px 40px rgba(0,0,0,.25);
  }

  .p-left{
  display:flex;
  align-items:center;
  gap:10px;   /* space between icon and text */
}

.p-left i{
  color:#000000;      /* icon color */
  font-size:16px;
}
  .p-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:10px;
  }
  .p-title{ font-weight:700; font-size:16px; }
  .p-close{
    border:0; background:transparent; cursor:pointer;
    padding:6px; border-radius:8px;
  }

  .p-row{ margin:10px 0; }
  .p-name{ font-size:14px; margin-bottom:6px; }

  /* Counter box like screenshot */
  .p-counter{
    display:flex;
    align-items:center;
    justify-content:space-between;
    border:1px solid #d9d9d9;
    border-radius:2px;
    height:40px;
    padding:0 8px;
  }
  .p-btn{
    width:36px;
    height:36px;
    border:0;
    background:transparent;
    cursor:pointer;
    font-size:26px;
    line-height:1;
    color:#D4AF37; /* green-ish */
  }
  .p-value{
    width:40px;
    text-align:center;
    font-size:14px;
    user-select:none;
  }

  .p-apply{
    width:100%;
    margin-top:12px;
    border:0;
    border-radius:4px;
    padding:12px;
    background:#D4AF37;
    color:#fff;
    font-weight:700;
    cursor:pointer;
  }


      /* single fields */
      .field1,
      .field2 {
        position: relative;
        flex: 1 1 160px;
      }

      /* ✅ pair wrapper is ONE flex item -> wraps together */
      .pair {
        display: flex;
        gap: 22px;
        flex: 1 1 360px; /* width of the pair as a group */
        min-width: 220px;
        flex-wrap: nowrap; /* keep date+time on same line */
      }

     .pair .field1
     {
        min-width: 70%;
     }
     .pair.field2 {
        flex: 1 1 0;
        min-width: 30%;
      }



      /* label top-right */
      .field1 label,
      .field2 label {
        position: absolute;
        top: -10px;
        left: 5px;
        background: #fff;
        padding: 0 6px;
        font-size: 15px;
        line-height: 1;
        color: #333;
        z-index: 2;
      }
      .field1 .input-icon,
      .field2 .input-icon{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #000000;
  font-size: 14px;
  pointer-events: none; /* clickable input */
  z-index: 2;
}

.field1 input,
.field2 input{
  padding-left: 30px;  /* keep your top padding too */
}
      input {
        width: 100%;
        padding: 12px 12px 10px;
        border: 1px solid #d0d0d0;
        border-radius: 10px;
        outline: none;
        font-size: 14px;
        font-weight: 700;
        box-shadow: 2px 2px 1px #1a1a1a12;
      }

      input:disabled{
  opacity: .6;
  cursor: not-allowed;
}


      .btn-submit {
        flex: 1 1 180px;
        min-width: 180px;
      }

      .btn-submit button {
        width: 100%;
        border: 0;
        border-radius: 10px;
        padding: 12px;
        cursor: pointer;
        background: #D4AF37;
        color: black    ;
        font-weight: 500;
      }

      .top-inner{
  position: relative; /* needed for mobile dropdown positioning */
}

.items{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.items a{
  color:#fff;
  text-decoration:none;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.15);
  padding: 10px 12px;
  border-radius: 10px;
  display:block;
}

.menu-toggle{
  display:none;           /* hidden on desktop */
  border:0;
  background: rgba(255,255,255,.12);
  color:#fff;
  padding: 10px 12px;
  border-radius: 10px;
  cursor:pointer;
  font-size: 20px;
}

/* top bar */
.topbar{
  top: 0;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.918);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
}

.topbar-inner{
  padding: 8px 350px;           /* match your site padding */
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  align-items: center;
  font-size: 13px;
}

.topbar-link{
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.95;
}

.topbar-link:hover{ opacity: 1; }

    


/* SERVICES */
.services{
  padding: 70px 150px;
  background: #0b0b0b;          /* dark luxury section */
  color: #fff;
}

.services-inner{
  padding: 0 150px;             /* match your layout */
}

.services-title{
  font-size: 34px;
  margin: 0 0 8px;
  letter-spacing: 0.5px;
}

.services-subtitle{
  margin: 0 0 28px;
  color: rgba(255,255,255,0.75);
  max-width: 720px;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 18px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  min-height: 170px;
}

.service-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
}

.service-icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(212,175,55,0.16); /* gold tint */
  border: 1px solid rgba(212,175,55,0.25);
  margin-bottom: 12px;
  font-size: 18px;
  color: #D4AF37; /* gold */
}

.service-card h3{
  margin: 0 0 8px;
  font-size: 18px;
}

.service-card p{
  margin: 0;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  font-size: 14px;
}


/* FAQS */

.faq{
  padding: 70px 0;
  background: #fff;
  color: #111;
}

.faq-inner{
  padding: 0 350px; /* or your clamp/max-width approach */
}

.faq-title{
  margin: 0 0 8px;
  font-size: 34px;
}

.faq-subtitle{
  margin: 0 0 26px;
  color: #666;
  max-width: 760px;
}

.faq-list{
  display: grid;
  gap: 12px;
}

.faq-item{
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-q{
  width: 100%;
  padding: 16px 16px;
  border: 0;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
}

.faq-q i{
  font-size: 14px;
  color: #D4AF37; /* gold accent */
  transition: transform .15s ease;
}

.faq-a{
  display: none;
  padding: 0 16px 16px;
  color: #444;
  line-height: 1.6;
}

.faq-item.open .faq-a{
  display: block;
}

.faq-item.open .faq-q i{
  transform: rotate(45deg); /* plus -> x */
}


 



/* VEHICLES */
.vehicles{
  padding: 70px 0;
  background: #0b0b0b;     /* dark luxury, change to #fff if you prefer */
  color: #fff;
}

.vehicles-inner{
  padding: 0 350px;        /* or your clamp/max-width */
}

.vehicles-title{
  margin: 0 0 8px;
  font-size: 34px;
}

.vehicles-subtitle{
  margin: 0 0 26px;
  color: rgba(255,255,255,0.75);
  max-width: 760px;
}

.vehicles-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.vehicle-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.vehicle-card:hover{
  transform: translateY(-4px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
}

.vehicle-media{
  /* height: 190px; */
  background: rgba(255,255,255,0.04);
}

.vehicle-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vehicle-body{
  padding: 16px;
}

.vehicle-body h3{
  margin: 0 0 8px;
  font-size: 18px;
}

.vehicle-body p{
  margin: 0 0 12px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  font-size: 14px;
}

.vehicle-body ul{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.vehicle-body li{
  display: flex;
  align-items: center;
  gap: 10px;
}

.vehicle-body i{
  color: #D4AF37; /* gold */
}

/* responsive */
@media (max-width: 1200px){
  .vehicles-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 992px){
  .vehicles-inner{ padding: 0 24px; }
  .vehicle-media{ height: 210px; }
}



/* PLACES TO VISIT */
 .places{
      padding: 70px 0;
      background: #fff;
    }

    /* change 350px to your site padding (or use clamp) */
    .places-inner{
      padding: 0 350px;
    }

    .places-title{
      margin: 0 0 8px;
      font-size: 34px;
      letter-spacing: .2px;
    }

    .places-subtitle{
      margin: 0 0 28px;
      color: #666;
      max-width: 760px;
      line-height: 1.5;
    }

    .places-grid{
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .place-card{
      border-radius: 16px;
      overflow: hidden;
      background: #000; /* fallback while image loads */
      box-shadow: 0 10px 25px rgba(0,0,0,0.08);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .place-card:hover{
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    }

    .place-media{
      position: relative;
      height: 220px;
    }

    .place-media img{
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* gradient overlay so caption readable */
    .place-media::after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.31), rgba(0, 0, 0, 0));
      pointer-events:none;
    }

    /* text inside image */
    .place-caption{
      position:absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      z-index: 2;
      color:#fff;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: .2px;
      text-shadow: 0 6px 18px rgba(0,0,0,0.45);
    }

    /* responsive */
    @media (max-width: 1200px){
      .places-grid{ grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 992px){
      .places-inner{ padding: 0 24px; }
    }
    @media (max-width: 576px){
      .places-grid{ grid-template-columns: 1fr; }
      .place-media{ height: 240px; }
    }

     /* responsive */
      @media (max-width: 1822px) {

        .services{
    padding: 70px 0;
        }

          .places-inner{
      padding: 0 150px;
    }
.vehicles-inner{
  padding: 0 150px;        /* or your clamp/max-width */
}
        .top {
            min-height: 800px;
        }
        .pair {
             flex: 2 1 360px;
            min-width: 100%;
        }
        

      }

      @media (max-width: 1400px) {
        .top-inner {
          padding: 20px 24px 0;
        }
        .topbar-inner{ padding: 8px 24px; }
        .booking-inner {
          margin: 0 24px;
        }
        .booking-form {
          top: 105px;
        }
      }

      /* on very small screens stack pairs vertically but keep them together */
      @media (max-width: 576px) {

                  .places-inner{
      padding: 0 10px;
    }
.vehicles-inner{
  padding: 0 10px;        /* or your clamp/max-width */
}

        .pair {
          flex-direction: column;
          min-width: 100%;
        }
        .pair .field1,
        .pair .field2 {
          min-width: 100%;
        }


        .field1,
        .field2 {
          flex: 1 1 100%;
        }
      }

      /* desktop */


/* mobile */
@media (max-width: 768px){
  .menu-toggle{ display:block; }

  /* hide menu by default on mobile */
  .items{
    display:none;
    position:absolute;
    top: 60px;            /* adjust if needed */
    right: 16px;
    left: 16px;
    flex-direction:column;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;         /* above overlay/content */
    align-self: unset;
  }

   .topbar-inner{
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .items.open{ display:flex; }

  .items a{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
  }
}
/* responsive */
@media (max-width: 1200px){
  .services-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 992px){
  .services-inner{ padding: 0 24px; }
}
@media (max-width: 576px){
  .services-grid{ grid-template-columns: 1fr; }
}

/* responsive */
@media (max-width: 992px){
  .faq-inner{ padding: 0 24px; }
}


/* FOOTER */
 .footer{
    background:#0b0b0b;
    color:#fff;
    padding: 60px 0 20px;
  }

  .footer-inner{
    padding: 0 350px; /* match your site spacing */
  }

  .footer-grid{
    display:grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 26px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }

  .footer-brand{
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .4px;
    margin-bottom: 10px;
    color: #D4AF37;
  }

  .footer-title{
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: .2px;
  }

  .footer-text{
    margin: 0 0 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    font-size: 14px;
  }

  .footer-link{
    display:flex;
    align-items:center;
    gap: 10px;
    color: rgba(255,255,255,0.82);
    text-decoration:none;
    margin: 10px 0;
    font-size: 14px;
  }

  .footer-link i{
    color:#D4AF37;
    width: 18px;
    text-align:center;
  }

  .footer-link:hover{
    color:#fff;
  }

  .footer-social{
    display:flex;
    gap: 10px;
    margin-top: 8px;
  }

  .footer-social a{
    width: 38px;
    height: 38px;
    display:grid;
    place-items:center;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    color:#fff;
    text-decoration:none;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
  }

  .footer-social a:hover{
    transform: translateY(-2px);
    background: rgba(255,255,255,0.10);
    border-color: rgba(255,255,255,0.18);
  }

  .footer-cta{
    display:inline-block;
    margin-top: 6px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #D4AF37;
    color:#111;
    font-weight: 800;
    text-decoration:none;
  }

  .footer-cta:hover{
    filter: brightness(1.05);
  }

  .footer-bottom{
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 18px;
    color: rgba(255,255,255,0.65);
    font-size: 13px;
  }

  .footer-bottom-links{
    display:flex;
    gap: 14px;
  }

  .footer-bottom a{
    color: rgba(255,255,255,0.65);
    text-decoration:none;
  }

  .footer-bottom a:hover{
    color:#fff;
  }

  /* responsive */
  @media (max-width: 1200px){
    .footer-grid{ grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 992px){
    .footer-inner{ padding: 0 24px; }
  }

  @media (max-width: 576px){
    .footer-grid{ grid-template-columns: 1fr; }
    .footer-bottom{ flex-direction: column; align-items: flex-start; }
  }