/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #FF6B35;
  --primary-dark: #e85a24;
  --primary-light: #FFE8DF;
  --accent: #00C9A7;
  --accent-dark: #00A88C;
  --dark: #0F1923;
  --dark2: #1A2836;
  --mid: #2E4057;
  --text: #1A2836;
  --text-muted: #6B7A8D;
  --bg: #FAFBFC;
  --bg-alt: #F2F5F8;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(15,25,35,0.08);
  --shadow-lg: 0 12px 48px rgba(15,25,35,0.14);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font: 'Outfit', sans-serif;
  --font-hand: 'Caveat', cursive;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.navbar.scrolled { background: rgba(255,255,255,0.97); box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo-img { height: 40px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text); transition: color var(--transition); }
.nav-links a:hover { color: var(--primary); }
.btn-nav {
  background: var(--primary); color: var(--white) !important;
  padding: 8px 20px; border-radius: 50px;
  font-weight: 600 !important; font-size: 0.9rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.btn-nav:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--white); border-top: 1px solid var(--bg-alt);
  padding: 16px 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-weight: 500; border-bottom: 1px solid var(--bg-alt); color: var(--text); }
.mobile-menu a:last-child { border-bottom: none; }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 68px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 40%, #1B3A4B 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,107,53,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(0,201,167,0.1) 0%, transparent 50%);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), transparent);
  filter: blur(80px); opacity: 0.2;
}
.s1 { width: 600px; height: 600px; top: -200px; right: -100px; animation: float1 8s ease-in-out infinite; }
.s2 { width: 400px; height: 400px; bottom: -150px; left: -100px; background: linear-gradient(135deg, var(--accent), transparent); animation: float2 10s ease-in-out infinite; }
.s3 { width: 300px; height: 300px; top: 50%; left: 50%; animation: float3 7s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-30px,20px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,-30px)} }
@keyframes float3 { 0%,100%{transform:translate(-50%,-50%)} 50%{transform:translate(-50%,-60%)} }

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 40px 24px;
  max-width: 800px; margin: 0 auto;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero-content h1 .accent {
  background: linear-gradient(135deg, var(--primary), #FFB347);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 36px; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white); padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  box-shadow: 0 8px 32px rgba(255,107,53,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,107,53,0.5); }
.btn-ghost {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white); padding: 14px 32px; border-radius: 50px;
  font-weight: 500; font-size: 1rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-ghost:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num { display: block; font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 400; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light h2, .section-header.light p { color: var(--white); }
.section-header.light .section-tag { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.8); }
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  border: 1px solid rgba(255,107,53,0.2);
  color: var(--primary);
  padding: 6px 16px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; color: var(--dark); }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; }

/* ===== VEHICLES ===== */
.vehicles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.vehicle-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 32px; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow); position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.vehicle-card.featured { border-color: var(--primary); border-width: 2px; }
.vehicle-badge {
  display: inline-block; background: var(--bg-alt);
  color: var(--text-muted); padding: 5px 12px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600; margin-bottom: 16px;
}
.vehicle-card.featured .vehicle-badge { background: var(--primary-light); color: var(--primary); }
.vehicle-icon { font-size: 3rem; margin-bottom: 16px; line-height: 1; }
.vehicle-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.vehicle-desc { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }
.vehicle-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.vehicle-features li { font-size: 0.9rem; color: var(--text); font-weight: 400; }
.vehicle-features li::before { content: ''; }
.vehicle-price { font-size: 1.6rem; font-weight: 300; color: var(--text-muted); }
.vehicle-price strong { font-size: 2rem; font-weight: 800; color: var(--primary); }
.vehicle-price span { font-size: 1rem; color: var(--text-muted); }

/* ===== PRICING ===== */
.pricing-wrap { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-bottom: 56px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow);
}
.pricing-card.highlight { background: linear-gradient(135deg, var(--dark), var(--dark2)); color: var(--white); }
.pricing-card.highlight h3 { color: var(--white); }
.pricing-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.pricing-header h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); }
.pricing-badge {
  background: var(--primary-light); color: var(--primary);
  padding: 4px 12px; border-radius: 50px; font-size: 0.78rem; font-weight: 600;
}
.pricing-badge.alt { background: rgba(0,201,167,0.15); color: var(--accent-dark); }
.price-table { width: 100%; border-collapse: collapse; margin-bottom: 8px; }
.price-table th { background: var(--bg-alt); padding: 10px 8px; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-align: center; border-radius: 6px 6px 0 0; }
.price-table td { padding: 12px 8px; font-size: 1rem; font-weight: 700; color: var(--primary); text-align: center; border-bottom: 1px solid var(--bg-alt); }
.pricing-divider { height: 1px; background: var(--bg-alt); margin: 20px 0; }
.big-price { font-size: 3.5rem; font-weight: 800; color: var(--primary); line-height: 1; margin: 24px 0 12px; }
.big-price span { font-size: 1.2rem; color: rgba(255,255,255,0.6); font-weight: 300; }
.price-note { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

.addons-title { font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; color: var(--dark); }
.addons-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.addon-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--white); padding: 16px 20px; border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform var(--transition);
}
.addon-item:hover { transform: translateY(-2px); }
.addon-icon { font-size: 1.4rem; flex-shrink: 0; }
.addon-text { flex: 1; font-size: 0.88rem; color: var(--text); font-weight: 500; }
.addon-price { font-weight: 700; color: var(--primary); font-size: 0.95rem; white-space: nowrap; }

/* ===== FEATURES ===== */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.feature-item {
  text-align: center; padding: 28px 20px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.feature-item:hover { transform: translateY(-4px); }
.feature-icon { font-size: 2.2rem; margin-bottom: 12px; }
.feature-item h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.feature-item p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== DESTINATIONS ===== */
.destinations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.dest-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 32px 24px;
  text-align: center; backdrop-filter: blur(10px);
  transition: transform var(--transition), background var(--transition);
}
.dest-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.dest-emoji { font-size: 3rem; margin-bottom: 16px; line-height: 1; }
.dest-card h4 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.dest-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ===== CALENDAR ===== */
.calendar-legend {
  display: flex; gap: 24px; justify-content: center; margin-bottom: 28px; flex-wrap: wrap;
}
.leg-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }
.leg-dot { width: 12px; height: 12px; border-radius: 50%; }
.leg-dot.free { background: var(--accent); }
.leg-dot.busy { background: #FF4757; }
.leg-dot.today { background: var(--primary); }

.calendar-loading { text-align: center; padding: 60px 20px; }
.spinner {
  width: 44px; height: 44px;
  border: 3px solid var(--bg-alt);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.calendar-loading p { color: var(--text-muted); font-size: 0.95rem; }

.calendar-error {
  text-align: center; padding: 40px;
  background: #FFF4F2; border: 1px solid rgba(255,71,87,0.2);
  border-radius: var(--radius); color: #c0392b;
}

.calendar-nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 500px; margin: 0 auto 28px;
}
.cal-btn {
  background: none; border: 1px solid rgba(0,0,0,0.12);
  padding: 8px 16px; border-radius: 50px; cursor: pointer;
  font-family: var(--font); font-size: 0.88rem; font-weight: 500;
  color: var(--text); transition: all var(--transition);
}
.cal-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.cal-month-label { font-size: 1.15rem; font-weight: 700; color: var(--dark); text-transform: capitalize; }

.calendar-grid {
  max-width: 700px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.cal-header-row {
  display: grid; grid-template-columns: repeat(7, 1fr);
  background: var(--dark);
}
.cal-header-cell {
  padding: 12px 4px; text-align: center;
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px;
}
.cal-days-row { display: grid; grid-template-columns: repeat(7, 1fr); }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: 0.88rem; font-weight: 500; cursor: default;
  border: 1px solid rgba(0,0,0,0.04); position: relative;
  transition: background var(--transition);
}
.cal-day.empty { background: var(--bg-alt); }
.cal-day.free { background: rgba(0,201,167,0.08); color: var(--text); }
.cal-day.free:hover { background: rgba(0,201,167,0.18); }
.cal-day.busy { background: rgba(255,71,87,0.12); color: #c0392b; font-weight: 600; }
.cal-day.busy::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(255,71,87,0.08) 3px, rgba(255,71,87,0.08) 6px);
}
.cal-day.today {
  background: var(--primary) !important; color: var(--white) !important;
  font-weight: 700; border-radius: 50%; z-index: 1;
}
.cal-day.past { opacity: 0.4; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
.contact-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 24px; text-align: center;
  border: 1px solid rgba(0,0,0,0.06); box-shadow: var(--shadow);
  transition: transform var(--transition);
}
.contact-card:hover { transform: translateY(-4px); }
.contact-icon { font-size: 2.4rem; margin-bottom: 12px; }
.contact-card h4 { font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); margin-bottom: 8px; }
.contact-card a, .contact-card p { font-size: 1rem; font-weight: 600; color: var(--dark); }
.contact-card a:hover { color: var(--primary); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 56px 24px 32px; text-align: center; }
.footer-logo { height: 36px; margin: 0 auto 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-tagline { font-family: var(--font-hand); font-size: 1.3rem; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.footer-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.5); font-weight: 500; transition: color var(--transition); }
.footer-links a:hover { color: var(--primary); }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .hero-stats { gap: 16px; }
  .stat-num { font-size: 1.8rem; }
  .calendar-nav { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stat-divider { display: none; }
}
