/* ========================================
   MAIN STYLESHEET - SAFARI ADVENTURE TOURS
   ======================================== */

/* ========================================
   CSS VARIABLES & DESIGN TOKENS
   ======================================== */

:root {
  /* Colors */
  --color-primary: #4a7c2c;
  --color-secondary: #d4a574;
  --color-accent: #8fbf3f;
  --color-dark: #1a1a1a;
  --color-light: #f8f7f4;
  --color-highlight: #ff6b35;

  /* Gradients */
  --gradient-forest: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
  --gradient-earth: linear-gradient(135deg, #d4a574 0%, #c99350 100%);
  --gradient-accent: linear-gradient(135deg, #8fbf3f 0%, #b8d465 100%);

  /* Fonts */
  --font-display: 'Cinzel', serif;
  --font-modern: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-accent: 'Bebas Neue', cursive;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;

  /* Shadows */
  --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
  --shadow-hard: 0 15px 50px rgba(0, 0, 0, 0.25);
  --shadow-accent: 0 4px 20px rgba(74, 124, 44, 0.3);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
  background: white;
  overflow-x: hidden;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease-smooth);
}

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

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.8rem;
}

h4 {
  font-size: 1.3rem;
}

p {
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.85);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  font-family: var(--font-modern);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-smooth);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--gradient-forest);
  color: white;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(74, 124, 44, 0.5);
}

.btn-outline {
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--color-secondary);
  color: white;
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--gradient-earth);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
}

/* ========================================
   NAVIGATION BAR
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.nav-logo {
  flex-shrink: 0;
}

.logo-image {
  height: 50px;
  width: auto;
  transition: all 0.3s var(--ease-smooth);
}

.nav-logo:hover .logo-image {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  flex: 1;
  justify-content: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-modern);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s var(--ease-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-secondary);
  transition: width 0.3s var(--ease-smooth);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--color-secondary);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

/* Mobile Menu Active State */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2e10 0%, #2d5016 100%);
  background-image: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920&h=1080&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  margin-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(45, 80, 22, 0.5);
  z-index: 1;
}

/* Gradient Orbs */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8fbf3f, transparent);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #d4a574, transparent);
  bottom: 10%;
  right: 10%;
  animation-delay: 3s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #4a7c2c, transparent);
  top: 40%;
  right: 5%;
  animation-delay: 5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

/* Geometric Shapes */
.geometric-shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: rgba(143, 191, 63, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 15%;
  left: 10%;
  animation: rotate 20s linear infinite;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 20%;
  right: 15%;
  animation: rotate 25s linear infinite reverse;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 var(--spacing-lg);
  animation: slideUp 1s var(--ease-smooth);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-label {
  font-family: var(--font-modern);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  animation: slideUp 1s var(--ease-smooth) 0.1s both;
}

.hero-title {
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.title-line {
  display: block;
  animation: slideUp 1s var(--ease-smooth);
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}
.title-line:nth-child(2) {
  animation-delay: 0.4s;
}
.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

.title-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  opacity: 0.95;
  animation: slideUp 1s var(--ease-smooth) 0.8s both;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideUp 1s var(--ease-smooth) 1s both;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: white;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 30px;
  height: 50px;
  border: 2px solid white;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: white;
  border-radius: 2px;
  animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(-10px);
    opacity: 1;
  }
  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}

/* ========================================
   SECTION STYLING
   ======================================== */

section {
  padding: var(--spacing-xxl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xxl);
}

.section-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  font-family: var(--font-modern);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.label-line {
  width: 60px;
  height: 2px;
  background: var(--color-secondary);
  border-radius: 1px;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--color-dark);
}

.section-description {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.9;
}

/* ========================================
   DESTINATIONS SECTION
   ======================================== */

.destinations {
  background: white;
  position: relative;
}

.section-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-accent);
  font-size: 15rem;
  font-weight: 900;
  color: rgba(45, 80, 22, 0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.5s var(--ease-smooth);
  cursor: pointer;
}

.card-large {
  grid-row: span 2;
}

.card-wide {
  grid-column: span 2;
}

.card-image-wrapper {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.card-large .card-image-wrapper {
  height: 600px;
}

.card-wide .card-image-wrapper {
  height: 350px;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-smooth);
}

.destination-card:hover .card-image {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 80, 22, 0.2) 0%,
    rgba(45, 80, 22, 0.7) 100%
  );
  transition: all 0.5s var(--ease-smooth);
}

.destination-card:hover .card-overlay {
  background: linear-gradient(
    to bottom,
    rgba(45, 80, 22, 0.4) 0%,
    rgba(45, 80, 22, 0.9) 100%
  );
}

.card-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.2);
  z-index: 2;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem;
  color: white;
  z-index: 3;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s var(--ease-smooth);
}

.destination-card:hover .card-content {
  transform: translateY(0);
  opacity: 1;
}

.card-title {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.card-description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent);
  font-size: 0.95rem;
  transition: all 0.3s var(--ease-smooth);
}

.card-link:hover {
  gap: 1.5rem;
  color: white;
}

/* ========================================
   EXPERIENCES SECTION
   ======================================== */

.experiences {
  background: var(--color-light);
}

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

.experience-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-smooth);
}

.experience-card:hover::before {
  transform: scaleX(1);
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hard);
}

.experience-icon {
  font-size: 3.5rem;
  color: var(--color-secondary);
  margin-bottom: 1.5rem;
  transition: all 0.3s var(--ease-smooth);
}

.experience-card:hover .experience-icon {
  color: var(--color-accent);
  transform: scale(1.1);
}

.experience-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.experience-description {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.75);
}

/* ========================================
   JOURNEYS SECTION
   ======================================== */

.journeys {
  background: white;
}

.journeys-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.journeys-content {
  animation: slideInLeft 1s var(--ease-smooth);
}

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

.journeys-text {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: rgba(26, 26, 26, 0.8);
}

.journeys-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  animation: slideInRight 1s var(--ease-smooth);
}

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

.journey-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.journey-image-1 {
  grid-row: span 2;
}

.journey-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.journey-image:hover img {
  transform: scale(1.05);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials {
  background: var(--color-light);
}

.testimonials-carousel {
  margin-top: 4rem;
}

.carousel-container {
  display: flex;
  overflow: hidden;
  border-radius: 20px;
}

.testimonial-card {
  min-width: 100%;
  background: white;
  padding: 3.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  transition: all 0.5s var(--ease-smooth);
  opacity: 0;
  position: absolute;
  left: 0;
  right: 0;
}

.testimonial-card.active {
  opacity: 1;
  position: relative;
}

.testimonial-stars {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #ffc107;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.9;
  color: var(--color-dark);
  margin-bottom: 2rem;
  font-style: italic;
  quotes: '"' '"';
}

.testimonial-text::before {
  content: open-quote;
  font-size: 3rem;
  color: var(--color-secondary);
  opacity: 0.3;
}

.testimonial-text::after {
  content: close-quote;
  font-size: 3rem;
  color: var(--color-secondary);
  opacity: 0.3;
}

.testimonial-author {
  border-top: 2px solid var(--color-accent);
  padding-top: 1.5rem;
}

.author-name {
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.author-location {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.65);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: white;
  color: var(--color-primary);
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 1rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.carousel-dot.active {
  background: var(--color-primary);
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about {
  background: white;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hard);
  position: relative;
}

.image-overlay-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 80, 22, 0.1) 0%,
    rgba(212, 165, 116, 0.15) 100%
  );
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s var(--ease-smooth);
}

.about-image:hover .image-overlay-accent {
  opacity: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s var(--ease-smooth);
  display: block;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  animation: slideInRight 1s var(--ease-smooth);
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: rgba(26, 26, 26, 0.8);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--color-accent);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-forest);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  font-weight: 600;
}

/* ========================================
   NEWSLETTER SECTION
   ======================================== */

.newsletter {
  background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
  color: white;
}

.newsletter-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.newsletter-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.form-input {
  flex: 1;
  min-width: 250px;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-dark);
  transition: all 0.3s var(--ease-smooth);
}

.form-input::placeholder {
  color: rgba(26, 26, 26, 0.5);
}

.form-input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(143, 191, 63, 0.4);
}

.newsletter-form .btn {
  padding: 1rem 2.5rem;
  white-space: nowrap;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(143, 191, 63, 0.3);
  border-radius: 10px;
  border: 1px solid rgba(143, 191, 63, 0.5);
  display: none;
  color: white;
  animation: slideUp 0.5s var(--ease-smooth);
}

.form-message.show {
  display: block;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--color-dark);
  color: white;
  padding: var(--spacing-xl) 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-xl);
}

.footer-column {
  animation: slideUp 0.8s var(--ease-smooth);
}

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

.footer-tagline {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s var(--ease-smooth);
}

.social-icon:hover {
  background: var(--color-secondary);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links,
.footer-contact {
  list-style: none;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s var(--ease-smooth);
}

.footer-links a:hover {
  color: var(--color-secondary);
  padding-left: 0.5rem;
}

.footer-contact span {
  display: block;
}

.footer-contact i {
  color: var(--color-accent);
  margin-right: 0.75rem;
  width: 20px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.3s var(--ease-smooth);
}

.footer-contact a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-large {
    grid-row: auto;
  }

  .card-wide {
    grid-column: span 2;
  }

  .hero-title {
    font-size: 4rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .journeys-layout {
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: white;
    gap: 0;
    display: none;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
  }

  .hero {
    height: 70vh;
    min-height: 500px;
    background-attachment: scroll;
    margin-top: 70px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    gap: 1rem;
  }

  .destinations-grid {
    grid-template-columns: 1fr;
  }

  .card-large,
  .card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .card-image-wrapper,
  .card-large .card-image-wrapper {
    height: 250px;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .experiences-grid {
    grid-template-columns: 1fr;
  }

  .journeys-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .journeys-images {
    grid-template-columns: 1fr;
  }

  .journey-image-1 {
    grid-row: auto;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 2rem;
  }

  .testimonial-text {
    font-size: 1rem;
  }

  .section-bg-text {
    font-size: 8rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .form-input {
    min-width: 100%;
  }

  section {
    padding: var(--spacing-lg) 0;
  }

  .container {
    padding: 0 var(--spacing-md);
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 1rem var(--spacing-md);
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-label {
    font-size: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-header {
    margin-bottom: var(--spacing-lg);
  }

  .section-bg-text {
    font-size: 4rem;
  }

  .experience-card {
    padding: 2rem 1.5rem;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 1.5rem 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.3rem;
  }
}

/* ========================================
   ACCESSIBILITY & UTILITIES
   ======================================== */

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* Focus styles for keyboard navigation */
button:focus,
/* ========================================
   CAR RENTALS SECTION
   ======================================== */

.car-rentals {
  background: linear-gradient(135deg, #f5f9f2 0%, #e8f1e0 100%);
}

.rentals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.rental-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.5s var(--ease-smooth);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.rental-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-forest);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-smooth);
}

.rental-card:hover::before {
  transform: scaleX(1);
}

.rental-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hard);
  border-color: var(--color-accent);
}

.rental-icon {
  font-size: 4rem;
  color: var(--color-accent);
  margin-bottom: 1.5rem;
  transition: all 0.3s var(--ease-smooth);
}

.rental-card:hover .rental-icon {
  color: var(--color-secondary);
  transform: scale(1.15);
}

.rental-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-dark);
}

.rental-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.75);
  margin-bottom: 1.5rem;
}

.rental-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}

.rental-features li {
  font-size: 0.95rem;
  color: rgba(26, 26, 26, 0.75);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.rental-features i {
  color: var(--color-secondary);
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .rentals-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rental-card {
    padding: 2rem 1.5rem;
  }

  .rental-icon {
    font-size: 3rem;
  }

  .rental-title {
    font-size: 1.3rem;
  }
}

a:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* Reduce motion preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
