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

:root {
  --primary-navy: #1a2332;
  --secondary-navy: #2c3e50;
  --accent-gold: #d4af37;
  --accent-gold-light: #f4e4a6;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #dee2e6;
  --dark-gray: #495057;
  --gradient-1: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  --gradient-2: linear-gradient(135deg, #d4af37 0%, #f4e4a6 100%);
  --gradient-3: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.95) 0%,
    rgba(44, 62, 80, 0.95) 100%
  );
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html.transitioning {
  overflow: hidden;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

/* ===== PAGE TRANSITION ===== */
.page-transition-overlay {
  display: none;
}

/* Prevent content flash */
section {
  opacity: 1;
  transition: opacity 0.3s ease;
}

body.page-loading section:not(.hero) {
  opacity: 0;
}

body.page-ready section {
  opacity: 1;
}

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

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

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--gradient-1);
  z-index: 1000;
  padding: 1rem 0;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--white);
}

.logo i {
  color: var(--accent-gold);
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: var(--transition);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  height: 100vh;
  background-image: linear-gradient(
      rgba(26, 35, 50, 0.5),
      rgba(26, 35, 50, 0.5)
    ),
    url("https://images.unsplash.com/photo-1623598122059-9b5ef17619c8?w=1920&q=80");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  text-align: center;
  padding: 100px 20px 80px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-3);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  border: 1px solid var(--accent-gold);
  animation: fadeInUp 1s forwards;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
  animation: fadeInUp 1s 0.2s forwards;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--accent-gold-light);
  line-height: 1.6;
  max-width: 600px;
  animation: fadeInUp 1s 0.4s forwards;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 1s 0.6s forwards;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-large i {
  font-size: 1.2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
  cursor: pointer;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--accent-gold);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-2);
  color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-navy);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

/* ===== SECTION STYLES ===== */
section {
  padding: 5rem 0;
  scroll-margin-top: 100px;
  scroll-padding-top: 100px;
  position: relative;
  isolation: isolate;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-2);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-top: 1.5rem;
}

/* ===== COMPANY STATS ===== */
.company-stats {
  background: var(--white);
  padding: 8rem 0 4rem;
  position: relative;
  z-index: 10;
  margin-top: 0;
  margin-top: 0;
}

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

.stat-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: var(--transition);
  border-left: 4px solid var(--accent-gold);
  border: 1px solid var(--medium-gray);
  border-left: 4px solid var(--accent-gold);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 2rem;
  color: var(--primary-navy);
}

.stat-content {
  flex: 1;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-content p {
  color: var(--dark-gray);
  font-size: 1rem;
  font-weight: 500;
}

/* ===== ABOUT COMPANY ===== */
.about-company {
  padding: 5rem 0;
  background: var(--light-gray);
}

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

.about-badge {
  display: inline-block;
  background: var(--gradient-2);
  color: var(--primary-navy);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.about-content h2 {
  font-size: 2.5rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-highlight {
  font-size: 1.2rem;
  color: var(--dark-gray);
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-content p {
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.about-feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.about-feature-item i {
  font-size: 2rem;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.about-feature-item h4 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.about-feature-item p {
  color: var(--dark-gray);
  font-size: 0.95rem;
  margin: 0;
}

.about-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}

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

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

/* ===== WHY CHOOSE US ===== */
.why-choose {
  background: var(--light-gray);
  padding-top: 8rem;
  margin-top: 0;
}

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

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

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

.feature-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent-gold);
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card h3 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* ===== DESTINATIONS ===== */
.destinations {
  padding-top: 8rem;
}

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

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

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

.destination-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

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

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

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.destination-card:hover .destination-overlay {
  opacity: 1;
}

.destination-info {
  text-align: center;
  color: var(--white);
  padding: 2rem;
  transform: translateY(20px);
  transition: var(--transition);
}

.destination-card:hover .destination-info {
  transform: translateY(0);
}

.destination-info h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent-gold);
}

.destination-info p {
  margin-bottom: 1.5rem;
}

.destination-details {
  padding: 1.5rem;
}

.destination-details h3 {
  color: var(--primary-navy);
  margin-bottom: 0.75rem;
}

.destination-meta {
  display: flex;
  gap: 1.5rem;
  color: var(--dark-gray);
  font-size: 0.9rem;
}

.destination-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.destination-meta i {
  color: var(--accent-gold);
}

/* ===== TRANSPORTATION ===== */
.transportation {
  background: var(--light-gray);
  padding-top: 8rem;
}

.transport-category {
  margin-bottom: 4rem;
}

.transport-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 2rem;
  color: var(--primary-navy);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--accent-gold);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-title i {
  color: var(--accent-gold);
  font-size: 2.5rem;
}

.category-description {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  padding-left: 3.5rem;
  font-style: italic;
}

.transport-category {
  margin-bottom: 4rem;
}

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

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

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

.transport-image {
  height: 250px;
  overflow: hidden;
}

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

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

.transport-content {
  padding: 2rem;
}

.transport-content h4 {
  color: var(--primary-navy);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.transport-content p {
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

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

.transport-features li {
  padding: 0.5rem 0;
  color: var(--dark-gray);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.transport-features i {
  color: var(--accent-gold);
}

.transport-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--light-gray);
}

.transport-price .price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.transport-price .unit {
  color: var(--dark-gray);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--gradient-1);
  color: var(--white);
  padding-top: 8rem;
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-title::after {
  background: var(--accent-gold);
}

.testimonials .section-subtitle {
  color: var(--accent-gold-light);
}

.testimonial-carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.testimonial-slide {
  display: none;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  animation: slideIn 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.testimonial-avatar {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--accent-gold);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  flex: 1;
}

.stars {
  margin-bottom: 1rem;
}

.stars i {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.testimonial-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-text h4 {
  color: var(--accent-gold);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.testimonial-location {
  color: var(--accent-gold-light);
  font-size: 0.9rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent-gold);
  color: var(--primary-navy);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--accent-gold-light);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: -25px;
}

.carousel-btn.next {
  right: -25px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dots .dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
}

/* ===== BOOKING ===== */
.booking {
  background: var(--light-gray);
  padding-top: 8rem;
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.booking-info h2 {
  font-size: 2.5rem;
  color: var(--primary-navy);
  margin-bottom: 1.5rem;
}

.booking-info p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.contact-info {
  margin-bottom: 3rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.contact-item i {
  font-size: 2rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

/* ===== PAYMENT METHODS ===== */
.payment-methods {
  margin-top: 2.5rem;
  padding: 2rem;
  background: linear-gradient(
    135deg,
    rgba(26, 35, 50, 0.05) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.payment-methods h4 {
  color: var(--primary-navy);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.payment-subtitle {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.payment-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.payment-item i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.payment-item span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-navy);
}

.payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.payment-logo {
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.payment-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #28a745;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.payment-note i {
  font-size: 1rem;
}

.social-media h4 {
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

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

.social-icons a {
  width: 50px;
  height: 50px;
  background: var(--gradient-2);
  color: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
}

.social-icons a:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.booking-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
}

.booking-form h3 {
  font-size: 2rem;
  color: var(--primary-navy);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-navy);
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.form-group textarea {
  resize: vertical;
}

.error-message {
  display: block;
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 0.5rem;
}

.success-message {
  background: #d4edda;
  color: #155724;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  display: none;
  align-items: center;
  gap: 1rem;
}

.success-message.show {
  display: flex;
}

.success-message i {
  font-size: 2rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-1);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-logo i {
  color: var(--accent-gold);
  font-size: 2rem;
}

.footer-section p {
  margin-bottom: 1.5rem;
  color: var(--accent-gold-light);
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: var(--accent-gold-light);
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--accent-gold);
  padding-left: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom i {
  color: var(--accent-gold);
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-2);
  color: var(--primary-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
}

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

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

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

.scroll-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: var(--gradient-1);
    padding: 2rem;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

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

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

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

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

  .stat-item {
    padding: 2rem 1.5rem;
  }

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

  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }

  .destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .transport-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .testimonial-content {
    flex-direction: column;
    text-align: center;
  }

  .testimonial-avatar {
    margin: 0 auto;
    width: 120px;
    height: 120px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .booking-form {
    padding: 2rem;
  }

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

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

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

  .section-subtitle {
    font-size: 1rem;
  }

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

  .company-stats {
    padding: 4rem 0 3rem;
  }

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

  .stat-item {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .stat-icon {
    width: 60px;
    height: 60px;
  }

  .stat-icon i {
    font-size: 1.5rem;
  }

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

  .about-image {
    min-height: 300px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-highlight {
    font-size: 1.1rem;
  }

  .about-features {
    gap: 1rem;
  }

  .about-feature-item {
    padding: 1rem;
  }

  .about-feature-item i {
    font-size: 1.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 100px;
    height: 100px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 100vh;
    min-height: 600px;
  }

  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .btn {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
  }

  .testimonial-slide {
    padding: 2rem 1rem;
  }

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

  .category-title {
    font-size: 1.5rem;
  }

  .transport-content {
    padding: 1.5rem;
  }

  .contact-item {
    padding: 1rem;
  }

  .contact-item i {
    font-size: 1.5rem;
  }

  .destination-image {
    height: 250px;
  }

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

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo i {
    font-size: 1.5rem;
  }

  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .container {
    padding: 0 15px;
  }

  section {
    padding: 2.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

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

  .section-title::after {
    width: 60px;
  }

  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-btn.prev {
    left: 5px;
  }

  .carousel-btn.next {
    right: 5px;
  }

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

  .testimonial-avatar {
    width: 100px;
    height: 100px;
  }

  .testimonial-text p {
    font-size: 0.95rem;
  }

  .booking-form {
    padding: 1.5rem;
  }

  .booking-form h3 {
    font-size: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }

  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .social-icons a {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .payment-methods {
    padding: 1.5rem;
  }

  .payment-methods h4 {
    font-size: 1.2rem;
  }

  .payment-logos {
    justify-content: center;
  }

  .payment-logo {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .transport-price .price {
    font-size: 1.5rem;
  }

  .destination-image,
  .transport-image {
    height: 200px;
  }

  .destination-info {
    padding: 1.5rem;
  }

  .destination-info h3 {
    font-size: 1.5rem;
  }

  .destination-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-content {
    gap: 2rem;
  }

  .scroll-top {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    bottom: 20px;
    right: 20px;
  }
}
