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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f8f3eb;
  color:#222;
  overflow-x:hidden;
}

h1,h2,h3{
  font-family:'Cormorant Garamond', serif;
}

/* HEADER */

header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:15px 60px;
  background:rgba(0,0,0,0.18);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  z-index:1000;
}

nav{
  display:flex;
  gap:28px;
  align-items:center;
  justify-content:flex-start;
  flex-wrap:wrap;
}

nav a{
  display:inline-block;
  color:white;
  text-decoration:none;
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:15px;
  padding:10px 18px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.08);
  transition:all 0.3s ease;
}

nav a:hover{
  color:#facc15;
  background:rgba(255,255,255,0.10);
  border-color:rgba(255,255,255,0.20);
  box-shadow:0 6px 18px rgba(0,0,0,0.20);
  transform:translateY(-2px);
}

/* HERO */

.tour-hero{
  min-height:88vh;
  background:
    linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.42)),
    url('images/cover.jpg') center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  padding:115px 20px 60px;
}

.hero-content{
  max-width:900px;
}

.hero-logo{
  width:390px;
  max-width:85%;
  margin-bottom:18px;
}

.tour-hero h1{
  font-size:60px;
  line-height:1.05;
  margin-bottom:16px;
}

.tour-hero p{
  font-size:20px;
  max-width:780px;
  margin:0 auto 28px;
  line-height:1.7;
}

.hero-btn{
  display:inline-block;
  padding:15px 38px;
  background:#0f766e;
  color:white;
  text-decoration:none;
  border-radius:50px;
  font-weight:700;
  transition:0.3s ease;
}

.hero-btn:hover{
  background:#115e59;
  transform:translateY(-3px);
}

/* COMMON */

.intro,
.tour-types,
.destinations,
.why,
.trip-planner,
.cta{
  padding:50px 20px;
  text-align:center;
}

.intro,
.why{
  background:white;
}

.tour-types,
.trip-planner{
  background:#f8f3eb;
}

.destinations{
  background:#eef7f2;
}

.intro h2,
.tour-types h2,
.destinations h2,
.why h2,
.trip-planner h2,
.cta h2{
  font-size:48px;
  margin-bottom:16px;
}

.intro p,
.planner-intro,
.cta p{
  max-width:900px;
  margin:0 auto 36px;
  font-size:19px;
  line-height:1.75;
  color:#444;
}

/* TOUR EXPERIENCE CARDS */

.type-grid{
  max-width:1300px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.type-card{
  background:rgba(242,232,220,0.75);
  padding:30px 26px;
  border-radius:26px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.35s ease;
}

.type-card:hover{
  transform:translateY(-8px);
  background:rgba(230,245,235,0.92);
  box-shadow:0 18px 45px rgba(0,0,0,0.14);
}

.type-card span{
  font-size:40px;
  display:block;
  margin-bottom:12px;
}

.type-card h3{
  font-size:30px;
  color:#0f766e;
  margin-bottom:10px;
}

.type-card p{
  color:#444;
  font-size:15px;
  line-height:1.65;
}

.type-icon{
  width:54px;
  height:54px;
  object-fit:contain;
  display:block;
  margin:0 auto 12px;
}

/* PROVINCE FEATURED DESTINATIONS */

.destination-intro{
  max-width:850px;
  margin:0 auto 30px;
  color:#444;
  font-size:16px;
  line-height:1.7;
}

.province-grid{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.province-card{
  background:rgba(242,232,220,0.78);
  border-radius:28px;
  padding:24px;
  box-shadow:0 12px 32px rgba(0,0,0,0.10);
  transition:0.35s ease;
  text-align:left;
}

.province-card:hover{
  transform:translateY(-7px);
  background:rgba(230,245,235,0.95);
  box-shadow:0 18px 45px rgba(0,0,0,0.15);
}

.province-card h3{
  color:#0f766e;
  font-size:30px;
  margin-bottom:16px;
}

.province-card button{
  display:inline-block;
  margin:5px 6px 5px 0;
  padding:10px 14px;
  border:none;
  border-radius:50px;
  background:#ffffff;
  color:#0f3d3e;
  font-family:'Poppins', sans-serif;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
  box-shadow:0 6px 18px rgba(0,0,0,0.08);
  transition:0.25s ease;
}

.province-card button:hover{
  background:#0f766e;
  color:#ffffff;
  transform:translateY(-2px);
}

/* WHY */

.why-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.why-grid div{
  background:#f8f3eb;
  padding:30px 24px;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.07);
}

.why-grid h3{
  color:#0f766e;
  font-size:28px;
  margin-bottom:10px;
}

.why-grid p{
  color:#444;
  line-height:1.65;
}

/* TRIP PLANNER */

.planner-box{
  max-width:1300px;
  margin:auto;
  text-align:left;
  background:rgba(255,255,255,0.62);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,0.45);
  border-radius:30px;
  padding:32px;
  box-shadow:0 18px 50px rgba(0,0,0,0.14);
}

.planner-section{
  margin-bottom:30px;
}

.planner-section h3{
  font-size:32px;
  color:#0f766e;
  margin-bottom:18px;
}

.planner-section h4{
  font-family:'Cormorant Garamond', serif;
  font-size:26px;
  color:#0f766e;
  margin-bottom:15px;
}

.planner-section label,
.field-label{
  display:block;
  font-weight:600;
  font-size:14px;
  color:#222;
  margin-bottom:8px;
  font-family:'Poppins', sans-serif;
}

.planner-section input,
.planner-section select,
.planner-section textarea{
  width:100%;
  padding:14px 15px;
  border:none;
  border-radius:14px;
  background:#ffffff !important;
  color:#111111 !important;
  border:1px solid rgba(15,118,110,0.18) !important;
  font-family:'Poppins', sans-serif;
  font-size:15px;
  outline:none;
}

.planner-section textarea{
  resize:none;
}

.planner-section input::placeholder,
.planner-section textarea::placeholder{
  color:#777777 !important;
  opacity:1;
}

.planner-section input:focus,
.planner-section select:focus,
.planner-section textarea:focus{
  background:#ffffff !important;
  color:#111111 !important;
  border:1px solid #0f766e !important;
  box-shadow:0 0 0 2px rgba(15,118,110,0.18) !important;
}

/* TRUST BADGES */

.trust-badges{
  max-width:1000px;
  margin:0 auto 28px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}

.trust-badges span{
  background:white;
  color:#0f3d3e;
  padding:10px 18px;
  border-radius:50px;
  font-size:14px;
  font-weight:700;
  box-shadow:0 8px 22px rgba(0,0,0,0.08);
}

/* STEP INDICATOR */

.planner-steps{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:0 0 35px;
  flex-wrap:wrap;
}

.step{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
}

.step span{
  width:42px;
  height:42px;
  border-radius:50%;
  background:#0f766e;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.step p{
  margin:0;
  font-size:13px;
  font-weight:600;
  color:#0f3d3e;
}

.step-line{
  width:60px;
  height:2px;
  background:#0f766e;
  opacity:.3;
}

/* SERVICE TYPE */

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

.service-card{
  background:rgba(242,232,220,0.75);
  border-radius:22px;
  padding:22px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
  text-align:center;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  background:rgba(230,245,235,0.95);
}

.service-card input{
  width:auto;
  accent-color:#0f766e;
}

.service-card span{
  font-size:34px;
}

.service-card strong{
  color:#0f766e;
  font-size:15px;
}

/* AIRPORT / PICKUP DROP */

.airport-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.airport-card{
  background:rgba(242,232,220,0.70);
  padding:24px;
  border-radius:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.airport-card label{
  margin-top:12px;
}

.hidden-fields{
  display:none;
}

/* SELECTED PLACES */

.selected-destination-list{
  background:rgba(255,255,255,0.72);
  border-radius:22px;
  padding:18px;
  margin-bottom:20px;
  border:1px solid rgba(15,118,110,0.10);
}

.selected-destination-list h4{
  color:#0f766e;
  margin-bottom:12px;
}

.selected-destination-list ul{
  padding-left:20px;
  color:#2f3d35;
  font-weight:600;
}

.selected-destination-list li{
  margin-bottom:8px;
  line-height:1.5;
}

/* GOOGLE PLACE AUTOCOMPLETE */

.google-place-box{
  width:100%;
  background:#ffffff;
  border-radius:14px;
  overflow:visible;
}

.google-place-box gmp-place-autocomplete{
  width:100%;
  display:block;
  color-scheme:light;
  background:#ffffff;
  border-radius:14px;
}

.add-selected-btn{
  margin-top:14px;
  padding:14px 22px;
  border:none;
  border-radius:50px;
  background:#0f766e;
  color:white;
  font-weight:700;
  cursor:pointer;
  font-family:'Poppins', sans-serif;
  transition:0.3s ease;
}

.add-selected-btn:hover{
  background:#115e59;
  transform:translateY(-2px);
}

.other-location-list{
  margin-top:15px;
  padding-left:20px;
  color:#2f3d35;
  font-weight:500;
}

/* MAP */

.map-layout{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:22px;
}

#tripMap{
  width:100%;
  height:410px;
  border-radius:26px;
  overflow:hidden;
  box-shadow:0 15px 45px rgba(0,0,0,0.20);
  border:4px solid rgba(255,255,255,0.55);
}

.custom-map-label{
  background:rgba(15,118,110,0.94);
  color:white;
  padding:8px 13px;
  border-radius:50px;
  font-family:'Poppins', sans-serif;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
  box-shadow:0 8px 22px rgba(0,0,0,0.25);
  border:2px solid rgba(255,255,255,0.75);
}

.custom-map-label span{
  margin-right:5px;
}

.selected-box{
  background:rgba(242,232,220,0.78);
  border-radius:26px;
  padding:24px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  max-height:430px;
  overflow-y:auto;
}

.selected-box h4{
  margin-bottom:12px;
}

.selected-box ul{
  padding-left:20px;
  color:#2f3d35;
}

.selected-box li{
  margin-bottom:7px;
  font-size:14px;
  line-height:1.4;
}

.route-summary{
  background:rgba(255,255,255,0.75);
  border-radius:18px;
  padding:14px 16px;
  margin-bottom:16px;
  color:#0f3d3e;
  font-weight:700;
  line-height:1.7;
}

.vehicle-suggestion{
  background:#fff;
  border-radius:16px;
  padding:13px 15px;
  margin-bottom:14px;
  color:#0f3d3e;
  font-weight:700;
  border:1px solid rgba(15,118,110,0.12);
}

.route-details{
  background:rgba(255,255,255,0.72);
  border-radius:18px;
  padding:14px;
  margin-bottom:15px;
}

.summary-row{
  margin-bottom:12px;
}

.summary-row strong{
  display:block;
  color:#0f766e;
  margin-bottom:5px;
}

.summary-row span,
.summary-row li{
  font-size:13px;
  line-height:1.45;
  color:#2f3d35;
}

.summary-row ul{
  padding-left:18px;
  margin:0;
}

/* FORM GRID */

.form-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.send-plan-btn{
  width:100%;
  margin-top:8px;
  padding:17px;
  border:none;
  border-radius:50px;
  background:#0f766e;
  color:white;
  font-size:16px;
  font-weight:700;
  font-family:'Poppins', sans-serif;
  cursor:pointer;
  transition:0.3s ease;
}

.send-plan-btn:hover{
  background:#115e59;
  transform:translateY(-3px);
}

/* DESTINATION MODAL */

.destination-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.65);
  z-index:10000;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.destination-modal-card{
  position:relative;
  max-width:980px;
  width:100%;
  max-height:92vh;
  overflow-y:auto;
  background:#ffffff;
  border-radius:30px;
  padding:28px;
  box-shadow:0 30px 80px rgba(0,0,0,0.38);
}

.destination-close{
  position:absolute;
  top:14px;
  right:18px;
  border:none;
  background:transparent;
  font-size:36px;
  cursor:pointer;
  color:#333;
}

.destination-modal-card h2{
  color:#0f766e;
  font-size:42px;
  margin-bottom:18px;
  padding-right:40px;
}

.modal-gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:18px;
}

.modal-gallery img{
  width:100%;
  height:150px;
  object-fit:cover;
  border-radius:18px;
}

#modalLocationDescription{
  color:#333;
  line-height:1.7;
  margin-bottom:18px;
}

.dest-info-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:18px;
}

.dest-info-grid div{
  background:#f8f3eb;
  border-radius:18px;
  padding:15px;
}

.dest-info-grid strong{
  display:block;
  color:#0f766e;
  margin-bottom:6px;
}

.dest-info-grid span{
  font-size:13px;
  color:#333;
}

#modalLocationMap{
  height:300px;
  border-radius:22px;
  overflow:hidden;
  margin:20px 0;
  box-shadow:0 12px 30px rgba(0,0,0,0.18);
}

/* THANK YOU MODAL */

.thankyou-modal{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.55);
  z-index:10000;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.thankyou-card{
  position:relative;
  max-width:480px;
  width:100%;
  background:#fff;
  border-radius:28px;
  padding:34px 26px;
  text-align:center;
  box-shadow:0 25px 70px rgba(0,0,0,0.35);
}

.thankyou-close{
  position:absolute;
  top:12px;
  right:16px;
  border:none;
  background:transparent;
  font-size:28px;
  cursor:pointer;
  color:#333;
}

.thankyou-icon{
  font-size:46px;
  margin-bottom:10px;
}

.thankyou-card h2{
  color:#0f766e;
  font-size:34px;
  margin-bottom:10px;
}

.thankyou-card p{
  color:#444;
  line-height:1.6;
}

.thankyou-ref{
  background:#f8f3eb;
  padding:16px;
  border-radius:18px;
  margin:18px 0;
  color:#222;
}

.thankyou-ref strong{
  color:#0f766e;
  font-size:22px;
}

.thankyou-small{
  font-size:14px;
}



/* AUTO ITINERARY PREVIEW */

.itinerary-section{
  background:rgba(255,255,255,0.44);
  border-radius:26px;
  padding:24px;
  border:1px solid rgba(15,118,110,0.10);
}

.itinerary-note{
  color:#555;
  font-size:14px;
  line-height:1.6;
  margin:-6px 0 18px;
}

.itinerary-output{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.itinerary-output > p{
  grid-column:1 / -1;
  background:#ffffff;
  border-radius:18px;
  padding:18px;
  color:#555;
  font-weight:600;
  border:1px solid rgba(15,118,110,0.10);
}

.itinerary-day{
  background:#ffffff;
  border-radius:20px;
  padding:18px 16px;
  box-shadow:0 8px 24px rgba(0,0,0,0.07);
  border:1px solid rgba(15,118,110,0.12);
  min-height:116px;
}

.itinerary-day strong{
  display:inline-block;
  background:#0f766e;
  color:#ffffff;
  padding:7px 13px;
  border-radius:50px;
  font-size:13px;
  margin-bottom:12px;
}

.itinerary-day span{
  display:block;
  color:#0f3d3e;
  font-weight:700;
  line-height:1.45;
  margin-bottom:8px;
}

.itinerary-day small{
  display:block;
  color:#666;
  font-size:12px;
  line-height:1.45;
}

.itinerary-main-day{
  background:rgba(242,232,220,0.90);
}

/* CTA */

.cta{
  background:#E3F7CB;
  color:#222;
}

.cta a{
  display:inline-block;
  padding:15px 40px;
  background:#325904;
  color:white;
  text-decoration:none;
  border-radius:50px;
  font-weight:700;
  transition:0.3s ease;
}

.cta a:hover{
  transform:translateY(-3px);
}

/* FOOTER */

footer{
  text-align:center;
  padding:10px;
  background:black;
  color:white;
}

/* FLOATING WHATSAPP */

.floating-whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  width:62px;
  height:62px;
  background:#25D366;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:34px;
  z-index:3000;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
  transition:0.3s ease;
}

.floating-whatsapp:hover{
  transform:translateY(-5px) scale(1.08);
  box-shadow:0 18px 40px rgba(0,0,0,0.35);
}

/* TAP FIX */

a,
button,
input,
textarea,
select{
  -webkit-tap-highlight-color:transparent;
}

nav a:focus,
nav a:active{
  outline:none;
  background:rgba(255,255,255,0.08);
}

/* TABLET */

@media(max-width:1100px){

  .province-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .type-grid,
  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .service-grid,
  .form-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .map-layout,
  .airport-grid{
    grid-template-columns:1fr;
  }

  .itinerary-output{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */

@media(max-width:768px){

  header{
    padding:12px 10px;
    overflow-x:auto;
    overflow-y:hidden;
    white-space:nowrap;
  }

  header::-webkit-scrollbar{
    display:none;
  }

  nav{
    display:flex;
    flex-wrap:nowrap;
    gap:10px;
    justify-content:flex-start;
    align-items:center;
    min-width:max-content;
  }

  nav a{
    font-size:13px;
    padding:8px 12px;
    flex:0 0 auto;
  }

  .tour-hero{
    min-height:auto;
    padding:90px 16px 40px;
  }

  .hero-logo{
    width:230px;
    margin-bottom:14px;
  }

  .tour-hero h1{
    font-size:33px;
    margin-bottom:10px;
  }

  .tour-hero p{
    font-size:15px;
    line-height:1.55;
    margin-bottom:20px;
  }

  .hero-btn{
    padding:12px 28px;
    font-size:14px;
  }

  .intro,
  .tour-types,
  .destinations,
  .why,
  .trip-planner,
  .cta{
    padding:34px 14px;
  }

  .intro h2,
  .tour-types h2,
  .destinations h2,
  .why h2,
  .trip-planner h2,
  .cta h2{
    font-size:31px;
    margin-bottom:12px;
  }

  .intro p,
  .planner-intro,
  .cta p{
    font-size:15px;
    line-height:1.55;
    margin-bottom:24px;
  }

  .type-grid,
  .why-grid,
  .province-grid,
  .form-grid,
  .itinerary-output{
    grid-template-columns:1fr;
  }

  .service-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .service-card{
    padding:16px 12px;
  }

  .service-card span{
    font-size:28px;
  }

  .service-card strong{
    font-size:13px;
  }

  .type-card,
  .why-grid div{
    padding:20px 16px;
    border-radius:20px;
  }

  .province-card{
    padding:20px 16px;
    border-radius:22px;
  }

  .province-card h3{
    font-size:26px;
  }

  .province-card button{
    font-size:12px;
    padding:9px 12px;
  }

  .planner-box{
    padding:18px 13px;
    border-radius:20px;
  }

  .planner-section{
    margin-bottom:24px;
  }

  .planner-section h3{
    font-size:25px;
    margin-bottom:14px;
  }

  .planner-section h4{
    font-size:22px;
  }

  .planner-section input,
  .planner-section select,
  .planner-section textarea{
    padding:13px 14px;
  }

  .planner-steps{
    gap:8px;
  }

  .step-line{
    width:25px;
  }

  .step p{
    font-size:11px;
  }

  .trust-badges{
    gap:8px;
  }

  .trust-badges span{
    font-size:12px;
    padding:8px 12px;
  }

  .airport-card{
    padding:18px 14px;
    border-radius:20px;
  }

  .add-selected-btn{
    width:100%;
    padding:14px;
  }

  #tripMap{
    height:285px;
    border-radius:20px;
  }

  .selected-box{
    max-height:260px;
    overflow-y:auto;
    padding:18px 14px;
    border-radius:20px;
  }

  .selected-box li{
    font-size:13px;
    margin-bottom:5px;
    line-height:1.3;
  }

  .route-summary{
    padding:12px 14px;
  }

  .itinerary-section{
    padding:18px 14px;
    border-radius:20px;
  }

  .itinerary-day{
    min-height:auto;
    padding:16px 14px;
  }

  .send-plan-btn{
    padding:15px;
  }

  .destination-modal-card{
    padding:20px 15px;
    border-radius:24px;
  }

  .destination-modal-card h2{
    font-size:32px;
  }

  .modal-gallery{
    grid-template-columns:1fr;
  }

  .modal-gallery img{
    height:170px;
  }

  .dest-info-grid{
    grid-template-columns:1fr;
  }

  #modalLocationMap{
    height:240px;
  }

  .thankyou-card h2{
    font-size:28px;
  }

  .floating-whatsapp{
    width:56px;
    height:56px;
    right:18px;
    bottom:18px;
    font-size:30px;
  }
}
.modal-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:20px 0;
}

.modal-actions button{
  padding:12px 20px;
  border:none;
  border-radius:30px;
  cursor:pointer;
  font-weight:600;
}
.footer-links{
  margin-top:12px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-links a{
  color:inherit;
  text-decoration:none;
  opacity:.85;
  font-size:14px;
}

.footer-links a:hover{
  opacity:1;
  text-decoration:underline;
}
