:root{
  --primary:#111111;
  --secondary:#2f2f2f;
  --accent:#14b8a6;
  --light:#f5f5f5;
  --card:#ffffff;
  --text:#1a1a1a;
  --muted:#6b7280;
  --border:#dcdcdc;
  --shadow:none;
}

*{
  box-sizing:border-box;
  border-radius:0 !important;
}

body{
  font-family:'Manrope', sans-serif;
  color:var(--text);
  background:#ffffff;
  margin:0;
  padding:0;
}

h1,h2,h3,h4,h5,h6,.navbar-brand{
  font-family:'Outfit', sans-serif;
  letter-spacing:-0.02em;
  color:var(--primary);
}

a{
  text-decoration:none;
}

.navbar{
  background:#ffffff;
  border-bottom:1px solid var(--border);
  padding-top:12px;
  padding-bottom:12px;
}

.navbar-brand{
  font-size:1.6rem;
  font-weight:800;
  color:var(--primary) !important;
}

.navbar-brand span{
  color:var(--accent);
}

.nav-link{
  color:var(--secondary) !important;
  font-weight:600;
  margin-left:0.5rem;
}

.nav-link:hover,
.nav-link.active{
  color:var(--accent) !important;
}

.btn-brand{
  background:var(--accent);
  color:#ffffff;
  border:1px solid var(--accent);
  font-weight:700;
  padding:0.85rem 1.4rem;
  box-shadow:none;
}

.btn-brand:hover{
  background:#119e90;
  border-color:#119e90;
  color:#ffffff;
  transform:none;
}

.hero{
  padding:120px 0 70px;
  position:relative;
  overflow:hidden;
  background:#ffffff;
}

.hero::before,
.hero::after{
  display:none;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  background:#f3f4f6;
  color:var(--accent);
  font-weight:700;
  font-size:0.9rem;
  margin-bottom:1rem;
  border:1px solid var(--border);
}

.hero h1{
  font-size:clamp(2.3rem, 4vw, 4.3rem);
  line-height:1.08;
  font-weight:800;
  color:var(--primary);
  margin-bottom:1rem;
}

.hero p{
  font-size:1.02rem;
  color:var(--muted);
  max-width:590px;
  line-height:1.8;
}

.hero-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:1.5rem;
  margin-bottom:1.8rem;
}

.hero-badges span{
  background:#ffffff;
  border:1px solid var(--border);
  padding:10px 14px;
  font-weight:700;
  color:var(--secondary);
  box-shadow:none;
  font-size:0.92rem;
}

.hero-card,
.glass-card{
  background:#ffffff;
  border:1px solid var(--border);
  box-shadow:none;
}

.hero-card{
  padding:0;
}

.hero-image{
  min-height:470px;
  padding:24px;
  background:
    linear-gradient(rgba(17,17,17,0.45), rgba(17,17,17,0.45)),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  position:relative;
  overflow:hidden;
}

.floating-mini{
  position:absolute;
  top:22px;
  right:22px;
  background:#ffffff;
  color:var(--primary);
  padding:14px 16px;
  border:1px solid var(--border);
  box-shadow:none;
  min-width:180px;
}

.floating-mini small{
  color:var(--muted);
  font-weight:700;
  display:block;
  margin-bottom:6px;
}

.floating-mini strong{
  font-family:'Outfit', sans-serif;
  font-size:1.15rem;
}

.image-caption{
  background:rgba(17,17,17,0.76);
  border:none;
  padding:20px;
  color:#ffffff;
}

.image-caption h4{
  font-size:1.35rem;
  margin-bottom:0.4rem;
  font-weight:700;
  color:#ffffff;
}

.section{
  padding:70px 0;
}

.section-title{
  text-align:center;
  margin-bottom:46px;
}

.section-title h2{
  font-size:clamp(1.9rem, 3vw, 3rem);
  font-weight:800;
  color:var(--primary);
}

.section-title p{
  color:var(--muted);
  max-width:680px;
  margin:0 auto;
  line-height:1.8;
}

.feature-card{
  background:var(--card);
  border:1px solid var(--border);
  padding:28px;
  height:100%;
  box-shadow:none;
  transition:none;
}

.feature-card:hover{
  transform:none;
  box-shadow:none;
}

.icon-box{
  width:56px;
  height:56px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f3f4f6;
  color:var(--accent);
  font-size:1.4rem;
  margin-bottom:1rem;
  border:1px solid var(--border);
}

.feature-card h5{
  font-size:1.2rem;
  font-weight:700;
  margin-bottom:0.7rem;
  color:var(--primary);
}

.feature-card p{
  color:var(--muted);
  margin-bottom:0;
  line-height:1.75;
}

.destination-card{
  position:relative;
  min-height:290px;
  overflow:hidden;
  box-shadow:none;
  display:flex;
  align-items:end;
  padding:22px;
  color:white;
  background-size:cover;
  background-position:center;
  border:1px solid var(--border);
}

.destination-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(17,17,17,0.75), rgba(17,17,17,0.18));
}

.destination-card > div{
  position:relative;
  z-index:2;
}

.destination-card h4{
  font-weight:700;
  margin-bottom:0.2rem;
  color:#ffffff;
}

.destination-card p{
  margin-bottom:0;
  color:rgba(255,255,255,0.88);
}

.enquiry-wrap{
  background:#ffffff;
  border:1px solid var(--border);
  box-shadow:none;
  overflow:hidden;
}

.enquiry-info{
  background:#111111;
  color:white;
  padding:38px;
  height:100%;
}

.enquiry-info h3{
  font-size:2rem;
  font-weight:800;
  margin-bottom:1rem;
  color:#ffffff;
}

.enquiry-info p{
  color:rgba(255,255,255,0.80);
  line-height:1.8;
}

.info-pill{
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,0.14);
  background:#1a1a1a;
  margin-top:14px;
}

.form-area{
  padding:38px;
}

.form-control,
.form-select{
  padding:0.9rem 1rem;
  border:1px solid var(--border);
  box-shadow:none !important;
  font-size:0.98rem;
  background:#ffffff;
  color:var(--text);
}

.form-control:focus,
.form-select:focus{
  border-color:var(--accent);
  box-shadow:none !important;
}

.stats-strip{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.stat-box{
  background:white;
  border:1px solid var(--border);
  padding:22px;
  text-align:center;
  box-shadow:none;
}

.stat-box h3{
  font-weight:800;
  margin-bottom:0.2rem;
  color:var(--primary);
}

.stat-box p{
  color:var(--muted);
  margin-bottom:0;
  font-size:0.95rem;
}

footer{
  background:#111111;
  color:rgba(255,255,255,0.8);
  padding:28px 0;
  margin-top:70px;
}

footer strong{
  color:white;
  font-family:'Outfit', sans-serif;
  letter-spacing:-0.02em;
}

/* ===== FORM SECTION ===== */

.form-container{
  background:#fff;
  padding:32px;
  border:1px solid var(--border);
  box-shadow:none;
}

.form-title{
  font-family:'Outfit', sans-serif;
  font-size:2rem;
  font-weight:800;
  margin-bottom:8px;
  color:#111111;
  text-align:center;
}

.whatsapp-subtitle{
  text-align:center;
  color:var(--accent);
  font-weight:700;
  margin-bottom:24px;
}

.form-label{
  font-size:0.88rem;
  font-weight:700;
  color:#2f2f2f;
  margin-bottom:6px;
}

.form-control,
.form-select{
  padding:12px 14px;
  border:1px solid var(--border);
  box-shadow:none !important;
}

.form-control:focus,
.form-select:focus{
  border-color:var(--accent);
}

.submit-btn{
  width:100%;
  border:none;
  padding:14px 18px;
  font-weight:700;
  background:var(--accent);
  color:#fff;
}

.submit-btn:hover{
  background:#119e90;
  color:#fff;
}

.whatsapp-note{
  font-size:0.85rem;
  color:#64748b;
  margin-top:6px;
}

.acc-toggle label.btn{
  cursor:pointer;
  padding:10px 18px;
  font-weight:600;
  border:1px solid #111111 !important;
  background:#ffffff !important;
  color:#111111 !important;
}

.acc-toggle input[type="radio"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.acc-toggle .btn.active{
  background:#111111 !important;
  color:#fff !important;
  border-color:#111111 !important;
}

/* ===== MODAL / VEHICLE ===== */

#vehicleModal .modal-dialog{
  max-width:360px;
  margin:auto;
}

#vehicleModal .modal-content{
  border:1px solid var(--border);
  box-shadow:none;
  max-height:70vh;
  overflow:hidden;
}

#vehicleModal .modal-body{
  max-height:55vh;
  overflow-y:auto;
  padding:10px !important;
  font-size:0.85rem;
}

#vehicleModal .vehicle-item{
  padding:8px 10px;
  margin-bottom:8px;
  font-size:0.85rem;
}

#vehicleModal .modal-header{
  padding:10px 14px !important;
  border-bottom:1px solid var(--border);
}

#vehicleModal .modal-title{
  font-size:0.95rem;
  color:#111111;
}

.vehicle-item{
  padding:10px 10px;
  border:1px solid var(--border);
  margin-bottom:8px;
  cursor:pointer;
  background:#ffffff;
}

.vehicle-item:hover{
  border-color:var(--accent);
  background:#f9f9f9;
}

.vehicle-item:active{
  transform:none;
}

/* ===== SMALL HELPERS ===== */

.row.g-2{
  --bs-gutter-y:.5rem;
}

.floating-group{
  z-index:1040 !important;
}

.text-accent{
  color:var(--accent) !important;
}

.border-accent{
  border-color:var(--accent) !important;
}

.bg-light-clean{
  background:#f9f9f9 !important;
}

/* ===== MOBILE ===== */

@media (max-width: 991px){
  .hero{
    padding-top:100px;
  }

  .hero-image{
    min-height:360px;
    margin-top:28px;
  }

  .stats-strip{
    grid-template-columns:1fr;
  }

  .form-container{
    padding:22px;
  }

  .enquiry-info,
  .form-area{
    padding:24px;
  }
}

/* ===== FLOATING ACTION BUTTONS ===== */
.float-btn {
  position: fixed;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50% !important;
  color: white !important;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.2s, opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1040;
}

.float-btn:hover {
  transform: scale(1.1);
  color: white !important;
}

.float-btn.wa {
  right: 20px;
  background-color: #25D366;
}

.float-btn.call {
  left: 20px;
  background-color: #14b8a6;
}

.float-btn.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
