/* =========================================
   CSS VARIABLES & RESET
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors - Professional Theme */
  --primary: #E04B28; /* Professional brick orange based on logo */
  --primary-hover: #C53A1B;
  --secondary: #1E293B; /* Slate dark */
  --bg-color: #F8FAFC;
  --surface: #FFFFFF;
  --text: #334155;
  --text-light: #64748B;
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5D;
  --border: rgba(226, 232, 240, 1);
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, #E04B28 0%, #F97316 100%);
  --dark-gradient: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  --surface-gradient: #FFFFFF;
  
  /* Layout & Spacing */
  --radius: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Modern Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.1);
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.95);
  --glass-border: rgba(226, 232, 240, 0.8);
  --glass-blur: blur(10px);
  
  --transition: all 0.3s ease;
  --font-family: 'Outfit', sans-serif;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.2;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.w-full { width: 100%; }

/* Layout Helpers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.bg-light { background-color: var(--bg-color); }
.bg-dark { background: var(--secondary); color: white; }

.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 800;
  color: var(--secondary);
}
.bg-dark .section-title {
  color: white;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
  font-weight: 400;
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary, .btn-primary-small, .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 14px 30px;
  font-size: 1.05rem;
}
.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(224, 75, 40, 0.3);
}

.btn-primary-small {
  background: var(--primary);
  color: white;
  padding: 10px 20px;
}
.btn-primary-small:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  padding: 14px 30px;
  font-size: 1.05rem;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(37, 211, 102, 0.3);
}

.btn-large {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .btn-large {
    width: auto;
    padding: 16px 40px;
  }
}

/* =========================================
   HEADER & NAVBAR
   ========================================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo .icon { 
  font-size: 2rem; 
}
.brand h1 { 
  font-size: 1.4rem; 
  color: var(--primary);
  margin: 0; 
  font-weight: 800;
}
.brand p { 
  font-size: 0.7rem; 
  font-weight: 600; 
  margin: 0; 
  text-transform: uppercase; 
  letter-spacing: 1px;
  color: var(--text-light);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 30px;
  font-weight: 600;
}
.desktop-nav a:not(.btn-primary-small) {
  color: var(--secondary);
}
.desktop-nav a:not(.btn-primary-small):hover {
  color: var(--primary);
}

@media (min-width: 900px) {
  .header { padding-left: 5%; padding-right: 5%; }
  .desktop-nav { display: flex; }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  padding-top: 80px;
  background-color: var(--secondary);
}

.hero-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('assets/hero_bg.png') no-repeat center center/cover;
  opacity: 0.5;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-size: 1.3rem;
  margin-bottom: 35px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
}

@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
  .hero-tagline { font-size: 1.5rem; }
}

/* =========================================
   CAROUSAL SECTION
   ========================================= */
.category-header h3 {
  font-size: 1.6rem;
  margin: 50px 0 20px;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.category-header h3::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 24px;
  background: var(--primary);
  border-radius: 4px;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.carousel-btn {
  background: white;
  border: 1px solid var(--border);
  color: var(--secondary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 10;
  position: absolute;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.carousel-btn.left { left: -22px; }
.carousel-btn.right { right: -22px; }

@media (max-width: 768px) {
  .carousel-btn { display: none; } /* Hide arrows on mobile, rely on touch scroll */
}

.car-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 10px;
  scrollbar-width: none; /* Firefox */
  width: 100%;
}
.car-carousel::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.car-card {
  min-width: 280px;
  max-width: 280px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  overflow: hidden;
}
.car-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.car-image {
  width: 100%;
  height: 160px;
  object-fit: contain;
  background: #F8FAFC;
  padding: 15px;
  border-bottom: 1px solid var(--border);
}

.car-info-row {
  padding: 15px 20px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.car-brand {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.car-model {
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 800;
}



/* =========================================
   BOOKING FORM SECTION
   ========================================= */
.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  box-shadow: var(--shadow-md);
  margin: 0 auto;
  max-width: 800px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .form-row { flex-direction: row; }
  .form-row .form-group { flex: 1; }
  .booking-card { padding: 50px; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
}

input, select, textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  background: #F9FAFB;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

.help-text {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* =========================================
   DESTINATIONS
   ========================================= */
.dest-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 600px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .dest-grid { grid-template-columns: repeat(4, 1fr); }
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dest-card:hover img {
  transform: scale(1.05);
}

.dest-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white;
}

.dest-content h4 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.dest-content p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.dest-card .btn-primary-small {
  opacity: 0;
  transform: translateY(10px);
  width: 100%;
  text-align: center;
}

.dest-card:hover .btn-primary-small {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   TRUST SECTION
   ========================================= */
.trust-section { background: white; }

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

@media (min-width: 768px) {
  .trust-badges {
    flex-direction: row;
    justify-content: center;
    gap: 30px;
  }
}

.badge {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-color);
  border-radius: var(--radius-lg);
  flex: 1;
  border: 1px solid var(--border);
}

.badge-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.badge h4 {
  font-size: 1.1rem;
  color: var(--secondary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: #F9FAFB;
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.stars {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.review-card p {
  font-style: italic;
  margin-bottom: 20px;
  color: var(--text);
}

.review-card h5 {
  font-size: 1rem;
}

/* =========================================
   CONTACT & FOOTER
   ========================================= */
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

@media (min-width: 600px) {
  .contact-buttons {
    flex-direction: row;
    gap: 20px;
  }
}

.footer {
  background: var(--secondary);
  color: #9CA3AF;
  padding: 60px 0 30px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-brand h3 {
  color: white;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
}

/* =========================================
   MOBILE STICKY BOTTOM BAR
   ========================================= */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background: white;
  box-shadow: 0 -4px 15px rgba(0,0,0,0.05);
  z-index: 1000;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .mobile-sticky-bar { display: none; }
  body { padding-bottom: 0 !important; }
}

@media (max-width: 767px) {
  body { padding-bottom: 60px; }
}

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  border-right: 1px solid var(--border);
  min-height: 60px;
}
.sticky-btn:last-child {
  border-right: none;
}
.sticky-btn .icon {
  font-size: 1.2rem;
  margin-bottom: 2px;
}

.btn-wa {
  background: var(--whatsapp);
  color: white;
}
.btn-wa:hover {
  background: var(--whatsapp-hover);
  color: white;
}
