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

:root {
  /* Logo-inspired Lime/Yellow-Green Theme */
  --primary: #8ebd16;
  --primary-dark: #769e10;
  --primary-light: #a6dc1c;
  --primary-glow: rgba(142, 189, 22, 0.45);
  
  /* Rich Neutral Dark Theme Elements */
  --bg-darker: #0a0b0d;
  --bg-dark: #12141c;
  --bg-dark-card: #1b1e29;
  
  /* Neutral Light Theme Elements (For Alternate Sections) */
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  
  /* Text Colors */
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted-dark: #475569;
  --text-muted-light: #94a3b8;
  
  /* Borders and Dividers */
  --border-light: #e2e8f0;
  --border-dark: #2a2f42;
  
  /* Fonts */
  --font-family: 'Outfit', 'Inter', sans-serif;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Shadow & Blur System */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px var(--primary-glow);
  --glass-blur: blur(12px);
  --glass-bg: rgba(18, 20, 28, 0.75);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Custom Selection & Scrollbar */
::selection {
  background-color: var(--primary);
  color: var(--bg-darker);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--border-dark);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

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

li {
  list-style: none;
}

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

/* Reusable Components */
.section-padding {
  padding: 20px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--bg-darker);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-light);
  color: var(--text-dark);
}

.btn-outline:hover {
  background-color: var(--text-dark);
  color: var(--bg-white);
  border-color: var(--text-dark);
  transform: translateY(-3px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: var(--border-dark);
  color: var(--text-light);
}

.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--bg-darker);
  border-color: var(--text-light);
  transform: translateY(-3px);
}

/* Typography styles */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 60px;
}

.subtitle {
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.section-title.light {
  color: var(--text-light);
}

/* Header & Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border-dark);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  transition: var(--transition-smooth);
}

header.scrolled .nav-wrapper {
  padding: 5px 0;
}

.logo {
  height: 55px;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

header.scrolled .logo {
  height: 48px;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-light);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(10, 11, 13, 0.98)), url('https://images.unsplash.com/photo-1511919884226-fd3cad34687c?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  color: var(--text-light);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  animation: fadeInLeft 1s var(--transition-smooth);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(142, 189, 22, 0.15);
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 0 10px rgba(142, 189, 22, 0.1);
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 25px;
}

.hero-title span {
  color: var(--primary);
  position: relative;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted-light);
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-ctas {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Floating Booking Widget in Hero */
.hero-widget {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  padding: 35px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
  animation: fadeInRight 1s var(--transition-smooth);
}

.hero-widget::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.widget-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.widget-title i {
  color: var(--primary);
}

.widget-form .form-group {
  margin-bottom: 18px;
}

.widget-form label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted-light);
  margin-bottom: 6px;
  font-weight: 600;
}

.widget-form select, 
.widget-form input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(10, 11, 13, 0.6);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  color: var(--text-light);
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.widget-form select:focus, 
.widget-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 8px rgba(142, 189, 22, 0.2);
}

.widget-form select option {
  background: var(--bg-dark-card);
  color: var(--text-light);
}

.widget-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* About Section */
.about {
  background-color: var(--bg-white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.about-images-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-box:hover img {
  transform: scale(1.08);
}

.about-img-box.large {
  grid-column: span 2;
  height: 250px;
}

.about-img-box.small {
  height: 180px;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background-color: var(--primary);
  color: var(--bg-darker);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 5;
  animation: float 4s ease-in-out infinite;
}

.experience-badge .years {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content {
  padding-left: 20px;
}

.about-heading {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.about-desc {
  color: var(--text-muted-dark);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  background: rgba(142, 189, 22, 0.1);
  color: var(--primary-dark);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

/* Services / Fleet Section */
.services {
  background-color: var(--bg-light);
}

.tab-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.tab-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary-dark);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--bg-darker);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.vehicle-card {
  background: var(--bg-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.vehicle-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-glow);
}

.vehicle-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #eaeaea;
}

.vehicle-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.vehicle-card:hover .vehicle-img-wrapper img {
  transform: scale(1.06);
}

.vehicle-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--bg-darker);
  color: var(--text-light);
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
}

.vehicle-price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: var(--primary);
  color: var(--bg-darker);
  padding: 8px 16px;
  font-weight: 800;
  border-radius: 12px;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
}

.vehicle-price span {
  font-size: 0.75rem;
  font-weight: 500;
}

.vehicle-info {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.vehicle-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.vehicle-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: var(--text-muted-dark);
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 15px;
}

.vehicle-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vehicle-meta i {
  color: var(--primary-dark);
}

.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 25px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border-light);
  padding-bottom: 5px;
}

.spec-item .label {
  color: var(--text-muted-dark);
}

.spec-item .val {
  font-weight: 600;
  color: var(--text-dark);
}

.vehicle-cta {
  margin-top: auto;
  width: 100%;
}

/* Gallery Section */
.gallery {
  background-color: var(--bg-white);
}

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(142, 189, 22, 0.3));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: var(--text-light);
  font-size: 1.25rem;
  font-weight: 700;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-overlay p {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Call to Action Bar */
.cta-bar {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 60px 0;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.cta-bar::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 70%);
  opacity: 0.3;
}

.cta-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 5;
}

.cta-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-text p {
  color: var(--text-muted-light);
}

/* Contact Details & Form Section */
.contact {
  background-color: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}

.contact-info-card {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 40px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-dark);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-info-desc {
  color: var(--text-muted-light);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-detail-icon {
  background: rgba(142, 189, 22, 0.1);
  color: var(--primary);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(142, 189, 22, 0.2);
}

.contact-detail-content h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-muted-light);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail-content p,
.contact-detail-content a {
  font-size: 1.05rem;
  font-weight: 600;
}

.contact-detail-content a:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--bg-dark-card);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-dark);
  transition: var(--transition-fast);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--bg-darker);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* Contact Form */
.contact-form-card {
  background-color: var(--bg-white);
  padding: 45px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--text-dark);
}

.booking-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.booking-form .form-group {
  margin-bottom: 20px;
}

.booking-form .form-group.full-width {
  grid-column: span 2;
}

.booking-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted-dark);
  margin-bottom: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-light);
  border-radius: 12px;
  font-family: var(--font-family);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
  color: var(--text-dark);
}

.booking-form textarea {
  resize: vertical;
  min-height: 120px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--primary-dark);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(142, 189, 22, 0.15);
}

.form-submit-btn {
  width: 100%;
}

/* Footer Section */
footer {
  background-color: var(--bg-darker);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-about .footer-logo {
  height: 60px;
  margin-bottom: 20px;
}

.footer-about .footer-logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.footer-about p {
  color: var(--text-muted-light);
  margin-bottom: 25px;
  max-width: 320px;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted-light);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-hours p {
  color: var(--text-muted-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.footer-hours p span {
  font-weight: 600;
  color: var(--text-light);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

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

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

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

/* Success Modal styling */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  background-color: rgba(10, 11, 13, 0.8);
  backdrop-filter: var(--glass-blur);
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  max-width: 450px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-icon {
  background-color: rgba(142, 189, 22, 0.15);
  color: var(--primary);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2.2rem;
  margin: 0 auto 20px auto;
  border: 1px solid var(--primary-glow);
}

.modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.modal-desc {
  color: var(--text-muted-light);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: auto;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .about-content {
    padding-left: 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 10px 0;
  }
  
  .section-title {
    font-size: 2.1rem;
  }
  
  /* Mobile Menu */
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    width: 100%;
  }
  
  .nav-link {
    font-size: 1.15rem;
    display: block;
    padding: 15px 0;
  }
  
  .nav-cta {
    display: none; /* Show inside menu or keep clean */
  }
  
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: var(--primary);
  }
  
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background-color: var(--primary);
  }
  
  .cta-bar-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .booking-form .form-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-form .form-group.full-width {
    grid-column: span 1;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .widget-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .fleet-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-container {
    flex-wrap: wrap;
  }
  
  .tab-btn {
    width: 100%;
    text-align: center;
  }
}
