:root {
  /* Caribbean Color Palette */
  --turquoise: #00CED1;
  --coral: #FF7F7F;
  --sunset-orange: #FF8C42;
  --palm-green: #2ECC71;
  --ocean-blue: #3498DB;
  --sand: #F5E6A3;
  --deep-sea: #1B4F72;
  --white: #FFFFFF;
  --cream: #FFF8DC;
  --tropical-pink: #FF69B4;
  --mango: #FFCC02;
  --lime: #32CD32;
  
  /* Updated color variables */
  --primary: var(--turquoise);
  --secondary: var(--coral);
  --accent: var(--sunset-orange);
  --success: var(--palm-green);
  --info: var(--ocean-blue);
  --warning: var(--mango);
  --text-dark: #2C3E50;
  --text-light: #7F8C8D;
  --bg-light: var(--cream);
  --bg-white: var(--white);
  
  /* Design tokens */
  --radius: 16px;
  --radius-small: 8px;
  --radius-large: 24px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  font-size: 16px;
}

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

.container {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin: 0 0 1rem 0;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.section-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-title.centered {
  text-align: center;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.section-subtitle.centered {
  text-align: center;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1000;
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 800;
  font-size: 1.5rem;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-small);
  padding: 8px 12px;
  font-size: 18px;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
  transform: translateY(-1px);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-small);
  transition: var(--transition);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-small);
  opacity: 0;
  transition: var(--transition);
}

.nav-menu a:hover::before {
  opacity: 1;
}

.nav-menu a:hover {
  color: var(--primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transform: translateY(-1px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  justify-content: center;
}

.btn.small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn.large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn.primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.btn.primary:hover {
  background: var(--deep-sea);
  border-color: var(--deep-sea);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn.secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn.coral {
  background: var(--secondary);
  color: white;
  border-color: var(--secondary);
}

.btn.coral:hover {
  background: var(--sunset-orange);
  border-color: var(--sunset-orange);
  transform: translateY(-2px);
}

.btn.whatsapp {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.btn.whatsapp:hover {
  background: #1fa851;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 206, 209, 0.7) 0%, 
    rgba(52, 152, 219, 0.6) 50%, 
    rgba(255, 127, 127, 0.7) 100%);
  z-index: -1;
}

.hero-content {
  color: white;
  text-align: center;
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Partnership Section */
.partnership-section {
  position: relative;
  padding: 0;
  margin: 4rem 0;
  overflow: hidden;
}

.partnership-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  border-radius: var(--radius-large);
  overflow: hidden;
  margin: 0 2rem;
  box-shadow: var(--shadow-large);
}

.partnership-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.partnership-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partnership-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 206, 209, 0.85) 0%, 
    rgba(255, 127, 127, 0.8) 50%,
    rgba(255, 140, 66, 0.85) 100%);
  z-index: -1;
}

.partnership-content {
  color: white;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.partnership-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-icon {
  font-size: 1.5rem;
}

.badge-text {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.partnership-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.highlight-text {
  background: linear-gradient(135deg, var(--mango), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.partnership-subtitle {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.partnership-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-radius: var(--radius-large);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h4 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.feature-card p {
  opacity: 0.9;
  line-height: 1.5;
}

.partnership-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.partnership-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
  transition: var(--transition);
}

.partnership-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--cream) 0%, var(--bg-light) 50%, var(--sand) 100%);
  overflow: hidden;
  position: relative;
}

.services-curves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.curve-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  color: var(--bg-white);
}

.curve-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  color: var(--bg-white);
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-light);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.scroll-arrow {
  font-size: 1.2rem;
  animation: bounce-horizontal 2s infinite;
}

@keyframes bounce-horizontal {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(3px);
  }
}

.services-carousel {
  position: relative;
  margin: 0 -2rem;
}

/* Carousel Navigation Arrows */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.carousel-nav:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-large);
}

.carousel-prev {
  left: -30px;
}

.carousel-next {
  right: -30px;
}

.nav-icon {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}

.carousel-nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.carousel-nav:disabled:hover {
  background: white;
  color: var(--text-dark);
  transform: translateY(-50%);
}

.services-track {
  display: flex;
  gap: 2rem;
  padding: 0 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-track::-webkit-scrollbar {
  display: none;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 350px;
  max-width: 400px;
  flex-shrink: 0;
  scroll-snap-align: start;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--primary), var(--ocean-blue));
  color: white;
  position: relative;
  overflow: hidden;
}

.service-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    transparent 50%, 
    rgba(255, 255, 255, 0.1) 100%);
  pointer-events: none;
}

.service-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 0;
  display: block;
}

.featured-badge {
  background: var(--mango);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.3;
}

.service-card p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: inherit;
  opacity: 0.9;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

.service-card.featured .service-features li::before {
  color: var(--mango);
}

.service-duration {
  margin-top: auto;
}

.duration-badge {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-card.featured .duration-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

/* Vehicles Section */
.vehicles-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--cream) 100%);
  padding: 5rem 0;
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.vehicle-card {
  background: white;
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-large);
}

.vehicle-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.vehicle-info {
  padding: 2rem;
}

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

.vehicle-details {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.vehicle-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.vehicle-features {
  margin-bottom: 1.5rem;
}

.feature-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin: 0.25rem 0.25rem 0.25rem 0;
  font-weight: 500;
}

.fleet-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature h4 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
  padding: 5rem 0;
  background: var(--bg-white);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.reasons-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.reason {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.reason-number {
  background: linear-gradient(135deg, var(--primary), var(--ocean-blue));
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.reason-content h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.reason-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.feature-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-large);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--ocean-blue) 100%);
  padding: 5rem 0;
  color: white;
}

.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: var(--radius-large);
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial blockquote {
  font-size: 1.3rem;
  font-style: italic;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.testimonial cite {
  font-weight: 600;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  position: relative;
  padding: 6rem 0;
  color: white;
  text-align: center;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.cta-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(255, 127, 127, 0.9) 0%, 
    rgba(255, 140, 66, 0.85) 50%,
    rgba(0, 206, 209, 0.9) 100%);
  z-index: -1;
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-badge-icon {
  font-size: 1.5rem;
}

.cta-badge-text {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cta-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.95;
  line-height: 1.6;
}

.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--mango), var(--lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.9;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-actions {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-primary,
.cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2.5rem;
  border-radius: var(--radius-large);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-primary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.cta-primary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta-whatsapp {
  background: rgba(37, 211, 102, 0.2);
  color: white;
  border-color: rgba(37, 211, 102, 0.5);
}

.cta-whatsapp:hover {
  background: rgba(37, 211, 102, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.btn-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
}

.btn-subtitle {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.cta-trust-signals {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-icon {
  font-size: 1.2rem;
}

/* Footer */
.site-footer {
  background: var(--text-dark);
  color: white;
  position: relative;
  padding: 0;
  margin-top: 0;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 60px;
  color: var(--text-dark);
  transform: scaleY(-1);
}

.footer-wave svg {
  width: 100%;
  height: 100%;
}

.footer-content {
  padding: 4rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-tagline {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-badges {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-icon {
  font-size: 1.2rem;
}

.badge-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-section {
  /* Individual footer sections styling */
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.quick-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.contact-method.primary {
  background: rgba(37, 211, 102, 0.1);
  border-color: rgba(37, 211, 102, 0.3);
}

.contact-method.primary:hover {
  background: rgba(37, 211, 102, 0.2);
}

.method-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.method-info {
  flex: 1;
}

.method-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 0.25rem;
}

.method-value {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  transform: translateX(5px);
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-item,
.hours-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-icon,
.hours-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.location-details,
.hours-details {
  flex: 1;
}

.location-name,
.hours-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.location-address,
.hours-time {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-social-section {
  margin-bottom: 3rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-card.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-card.facebook:hover {
  background: #1877f2;
}

.social-card.whatsapp:hover {
  background: #25d366;
}

.social-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.social-info {
  flex: 1;
}

.social-name {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.social-handle {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links-bottom {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-links-bottom a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

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

.separator {
  color: rgba(255, 255, 255, 0.5);
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: var(--shadow-large);
  z-index: 1000;
  transition: var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
}

/* Forms */
.form {
  display: grid;
  gap: 1.5rem;
  max-width: 600px;
}

.form fieldset {
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  padding: 2rem;
  background: var(--bg-light);
}

.form legend {
  padding: 0 1rem;
  color: var(--primary);
  font-weight: 700;
}

.form label {
  display: grid;
  gap: 0.5rem;
}

.form input,
.form select,
.form textarea {
  padding: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  font: inherit;
  transition: var(--transition);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 206, 209, 0.1);
}

.form-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Filters */
.filters {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary);
  border-radius: 50px;
  background: white;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Card grid for vehicles and other content */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-large);
}

.card-media {
  aspect-ratio: 16/9;
  background: var(--bg-light);
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.card-meta {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    box-shadow: var(--shadow-large);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 var(--radius) var(--radius);
    display: none;
  }
  
  .nav-menu.open {
    display: flex;
  }
  
  .nav-menu a {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    text-shadow: none;
  }
  
  .nav-menu a:hover {
    color: var(--primary);
    background: rgba(0, 206, 209, 0.1);
    text-shadow: none;
  }
  
  /* Partnership Section Mobile */
  .partnership-hero {
    margin: 0 1rem;
    min-height: 500px;
  }
  
  .partnership-content {
    padding: 3rem 1.5rem;
  }
  
  .partnership-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .partnership-actions {
    flex-direction: column;
    align-items: center;
  }
  
  /* Services Section Mobile */
  .scroll-hint {
    display: flex;
  }
  
  .service-card {
    min-width: 300px;
  }
  
  .carousel-nav {
    display: none;
  }
  
  /* Vehicles and other sections */
  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .vehicles-grid {
    grid-template-columns: 1fr;
  }
  
  .fleet-features {
    grid-template-columns: 1fr;
  }
  
  /* CTA Section Mobile */
  .cta-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-trust-signals {
    flex-direction: column;
    gap: 1rem;
  }
  
  /* Footer Mobile */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .service-card,
  .feature {
    padding: 1.5rem;
  }
  
  .testimonial {
    padding: 2rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.vehicle-card,
.feature,
.reason {
  animation: fadeInUp 0.6s ease-out;
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 1rem; }
.p-2 { padding: 2rem; }
.p-3 { padding: 3rem; }

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

.primary-color { 
  color: var(--primary); 
}

.secondary-color { 
  color: var(--secondary); 
}

/* Section spacing */
section {
  scroll-margin-top: 100px;
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--bg-light);
}
