/* Basic reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,'Helvetica Neue',Arial;line-height:1.4;color:#222; background: linear-gradient(to bottom, #f0f9ff, #e0f2fe); min-height: 100vh;}
.container{max-width:1100px;margin:0 auto;padding:0 20px}

/* Header */
.site-header{
  background:rgba(255,255,255,0.95);
  backdrop-filter:saturate(120%) blur(8px);
  position:sticky;
  top:0;
  z-index:50;
  border-bottom:1px solid rgba(0,0,0,0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding-top: 6px;
  padding-bottom: 6px;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  transition: all 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.03);
}

.logo img {
  height:50px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.logo:hover img {
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.logo span {
  background: linear-gradient(135deg, #0b4a6f, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.main-nav ul{list-style:none;display:flex;gap:18px}
.main-nav a{
  color:#222;
  text-decoration:none;
  font-weight:600;
  position: relative;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 50%;
  background: linear-gradient(90deg, #0b4a6f, #2563eb);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.main-nav a:hover {
  color: #2563eb;
}

.main-nav a:hover::after {
  width: 100%;
}
.nav-right{display:flex;align-items:center;gap:8px}
.currency-label{font-size:0.85rem;color:#444}
.nav-right select{
  padding: 8px 12px;
  border-radius: 8px;
  border: 2px solid #e2e8f0;
  background: linear-gradient(to bottom right, #ffffff, #f8fafc);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
  transform: translateY(0);
}

.nav-right select:hover {
  border-color: #2563eb;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
  background: #ffffff;
}

.nav-right select:active {
  transform: translateY(0px);
}

.nav-right select option {
  padding: 10px;
  margin: 4px;
  border-radius: 6px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.nav-right select option:hover {
  background-color: #eff6ff;
}

.nav-right select option:checked {
  background-color: #2563eb;
  color: white;
  font-weight: 600;
  border-radius: 6px;
}

.nav-right select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12), 0 6px 16px rgba(37, 99, 235, 0.12);
  animation: select-bounce 0.4s ease;
}

@keyframes select-bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}
.nav-toggle{display:none;background:none;border:0;cursor:pointer}
.nav-toggle span{display:block;width:22px;height:2px;background:#222;margin:5px 0}

/* Hero */
.hero{background:linear-gradient(180deg,rgba(0,0,0,0.15),rgba(0,0,0,0.15)),linear-gradient(90deg,#07203a,#0b4a6f);color:#fff;padding:60px 0}
.hero-large .hero-grid{display:grid;grid-template-columns:1fr 360px;gap:28px;align-items:start}
.hero-copy h1{font-size:2rem;margin-bottom:12px}
.hero-copy p{opacity:0.95;margin-bottom:14px}
.hero-features{list-style:disc;margin-left:20px;margin-bottom:18px}
.hero-booking{
  background:#fff;
  padding:24px;
  border-radius:16px;
  box-shadow:0 16px 48px rgba(2,6,23,0.18);
  color:#111;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.hero-booking:hover {
  transform: translateY(-4px);
  box-shadow:0 20px 56px rgba(2,6,23,0.22);
}

.booking-form h3{
  margin-bottom:12px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #0b4a6f, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-form label{
  display:block;
  margin-bottom:10px;
  font-size:0.9rem;
  font-weight: 500;
  color: #475569;
}

.booking-form input{
  width:100%;
  padding:12px;
  border:2px solid #e2e8f0;
  border-radius:10px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.booking-form input:hover {
  border-color: #cbd5e1;
}

.booking-form input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.booking-form button{
  width:100%;
  margin-top:16px;
  padding: 13px !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.25);
  transition: all 0.2s ease !important;
}

.booking-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

.btn{display:inline-block;padding:10px 18px;border-radius:8px;text-decoration:none;font-weight:600}
.btn.primary{background:#ff6b00;color:#fff}
.btn.ghost{background:transparent;border:2px solid rgba(255,255,255,0.85);color:#fff}

/* Sections */
.section{padding:56px 0}
.section h2{font-size:1.4rem;margin-bottom:18px}
.grid{display:grid;gap:20px}

.services-decor {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.services-decor img {
  height: 180px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  object-fit: cover;
}

.services-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.card{padding:20px;border-radius:10px;background:#fff;box-shadow:0 6px 18px rgba(25,25,25,0.06)}
.card h3{margin-bottom:8px}

.fleet-grid{grid-template-columns:repeat(auto-fit,minmax(220px,1fr))}
.fleet-card{background:#fff;padding:18px;border-radius:10px;text-align:center;box-shadow:0 10px 28px rgba(2,6,23,0.06)}
.fleet-card img{height:90px;margin-bottom:10px}
.price{font-weight:700;margin-top:12px}
.price .currency{font-weight:600;margin-left:6px}

.contact-grid{display:grid;grid-template-columns:1fr 320px;gap:24px}
.contact-form .form-row{margin-bottom:12px}
.contact-form input,.contact-form textarea{width:100%;padding:10px;border:1px solid #ddd;border-radius:6px}

.site-footer{background:#0b1220;color:#fff;padding:18px 0}
.footer-inner{display:flex;justify-content:space-between;align-items:center}
.socials a{color:#fff;margin-left:12px}

/* Responsive */
@media (max-width:800px){
  .hero{padding:60px 0}
  .hero h1{font-size:1.6rem}
  .nav-toggle{display:block}
  .main-nav{position:absolute;right:20px;top:64px;background:#fff;padding:12px;border-radius:8px;box-shadow:0 10px 30px rgba(2,6,23,0.15);display:none}
  .main-nav.open{display:block}
  .contact-grid{grid-template-columns:1fr}
  
  .logo span { display: none; }
  
  .nav-right { gap: 4px; }
  .currency-label { display: none; }
  
  .services-decor { flex-direction: column; align-items: center; }
  .services-decor img { width: 100%; height: auto; max-width: 360px; }
  
  .car-item { flex-direction: column; text-align: center; }
  .car-item img { width: 100%; max-width: 220px; }
  .car-body { width: 100%; }
  .rightWrap { width: 100%; align-items: center !important; }
  
  .details-card { grid-template-columns: 1fr !important; }
  .details-card img { max-width: 280px; margin: 0 auto; display: block; }
  
  .extra-item { flex-direction: column; text-align: center; }
  .extra-item label { flex-direction: column; gap: 0.5rem; width: 100%; }
  
  .extras-actions { flex-direction: column-reverse; }
  .extras-actions .btn { width: 100%; text-align: center; }
  
  .features-grid { grid-template-columns: 1fr !important; }
  
  .reserve-actions { flex-direction: column-reverse; }
  .reserve-actions > * { width: 100%; justify-content: center; }
}

@media (max-width:900px){
  .hero-large .hero-grid{grid-template-columns:1fr}
  .hero-booking{margin-top:18px}
}

/* Results page */
.results-list{display:grid;gap:16px}
.car-item{display:flex;gap:14px;background:#fff;padding:12px;border-radius:10px;box-shadow:0 8px 20px rgba(2,6,23,0.06);align-items:center}
.car-item img{width:140px;height:auto;border-radius:6px}
.car-item .car-body{flex:1}
.car-item h4{margin-bottom:6px}
.car-item .car-meta{color:#555;font-size:0.9rem}
.car-item .car-price{font-weight:700;margin-left:12px;white-space:nowrap}
.car-item .car-info{color:#374151;font-size:0.95rem;margin-top:8px}

/* Details page */
.details-card{display:grid;grid-template-columns:260px 1fr;gap:18px;background:#fff;padding:18px;border-radius:12px;box-shadow:0 12px 36px rgba(2,6,23,0.06)}
.details-card img{width:100%;height:auto;border-radius:8px}
.reserve-form{margin-top:16px}
.reserve-form label{display:block;margin-bottom:8px}
.reserve-form input{width:100%;padding:8px;border:1px solid #ddd;border-radius:6px}
.reserve-actions{margin-top:12px;display:flex;gap:8px}

.muted{color:#6b7280;margin-bottom:12px}

/* WhatsApp floating button */
.whatsapp-float{position:fixed;right:18px;bottom:18px;width:56px;height:56px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(2,6,23,0.18);z-index:9999;text-decoration:none}
.whatsapp-float:hover{transform:translateY(-3px);transition:transform .18s ease}
.whatsapp-float svg{width:28px;height:28px;display:block}
.whatsapp-float:focus{outline:3px solid rgba(37,211,102,0.18)}

/* Extras Page Styles */
.extras-info {
  text-align: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  font-weight: 500;
}

.extras-form {
  max-width: 800px;
  margin: 0 auto;
}

.extras-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  background: white;
  transition: all 0.2s ease;
}

.extra-item:has(input:checked) {
  border-color: #2563eb;
  background: #eff6ff;
}

.extra-item input[type="checkbox"] {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  cursor: pointer;
}

.extra-item label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

.extra-name {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
}

.has-tooltip {
  border-bottom: 1px dashed #64748b;
  cursor: help;
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 280px;
  background: #1e293b;
  color: white;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: normal;
  line-height: 1.4;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  margin-bottom: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 16px;
  border: 6px solid transparent;
  border-top-color: #1e293b;
}

.has-tooltip:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.extra-price {
  font-weight: 600;
  color: #2563eb;
  white-space: nowrap;
}

.extras-summary {
  background: #f8fafc;
  border-radius: 12px;
  padding: 1.5rem;
}

.extras-summary h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.summary-line:last-of-type {
  border-bottom: none;
}

.deposit-line {
  color: #b45309;
  font-style: italic;
}

.insurance-note {
  color: #166534;
  font-weight: 500;
}

.total-line {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  font-size: 1.1rem;
  border-top: 2px solid #cbd5e1;
}

.extras-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.section-intro {
  text-align: center;
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.car-features {
  font-size: 0.85rem;
  color: #374151;
  margin-top: 6px;
  line-height: 1.5;
}

.included-features {
  margin: 1.5rem 0;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 10px;
}

.included-features h4 {
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #0b4a6f;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
}

.features-grid span {
  font-size: 0.9rem;
  color: #374151;
}
