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

:root {
  --primary: #11B6CC;
  --primary-dark: #0e9aad;
  --white: #FFFFFF;
  --text-dark: #222222;
  --text-muted: #777777;
  --bg-light: #F8F9FA;
  --bg-dark: #121B22;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--white);
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.section {
  padding: 80px 0;
}

.pacifico, .cursive-subtitle {
  font-family: 'Pacifico', cursive;
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.cursive-subtitle {
  color: var(--primary);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

.cursive-subtitle.white {
  color: var(--white);
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--text-dark);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  transform: translateY(-2px);
}

.btn-white-solid {
  background: var(--white);
  color: var(--primary);
  font-weight: 600;
  padding: 14px 32px;
}

.btn-white-solid:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-dark {
  background: transparent;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  padding: 8px 22px;
  border-radius: 6px;
}

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

.btn-outline-primary {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.85rem;
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 0 5%;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo i {
  color: var(--primary);
  font-size: 1.6rem;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

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

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-dark);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 5% 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1600&h=900&fit=crop') center/cover no-repeat;
  z-index: -2;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 40%, rgba(255,255,255,0.3) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 580px;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

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

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
  padding: 10px 10px 10px 25px;
  margin-top: 50px;
  max-width: 650px;
  gap: 10px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.search-field i {
  color: var(--primary);
  font-size: 1rem;
}

.search-field select {
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  background: transparent;
  cursor: pointer;
  min-width: 100px;
}

.search-divider {
  width: 1px;
  height: 30px;
  background: #e0e0e0;
}

.search-btn {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.3s;
  flex-shrink: 0;
}

.search-btn:hover {
  background: var(--primary-dark);
}

/* ===== CATEGORIES ===== */
.categories {
  background: var(--white);
}

.categories-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.category-item {
  text-align: center;
  width: 150px;
  transition: transform 0.3s;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-item.offset-up {
  margin-top: -20px;
}

.category-img {
  width: 150px;
  height: 190px;
  border-radius: 75px 75px 20px 20px;
  overflow: hidden;
  margin-bottom: 12px;
}

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

.category-item p {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===== POPULAR TOURS ===== */
.popular-tours {
  background: var(--bg-light);
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.tour-img {
  height: 220px;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.tour-info {
  padding: 20px;
}

.tour-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.tour-info > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.tour-meta i {
  color: var(--primary);
  margin-right: 5px;
}

.tour-meta .fa-star {
  color: #f5a623;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--white);
}

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

.about-images {
  position: relative;
  height: 500px;
}

.about-img-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 85%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-1 img,
.about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 75%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--white);
}

.experience-badge {
  position: absolute;
  bottom: 80px;
  left: -10px;
  background: var(--primary);
  color: var(--white);
  padding: 15px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(17,182,204,0.4);
  z-index: 2;
}

.experience-badge i {
  font-size: 1.5rem;
}

.experience-badge strong {
  display: block;
  font-size: 1.1rem;
}

.experience-badge span {
  font-size: 0.8rem;
  opacity: 0.9;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-content > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

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

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

.feature-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  background: rgba(17,182,204,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.about-action {
  display: flex;
  align-items: center;
  gap: 25px;
}

.founder-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.founder-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-info strong {
  display: block;
  font-size: 0.9rem;
}

.founder-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 40px 0 80px;
}

.stats-banner {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
}

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

.stats-box {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  box-shadow: var(--shadow);
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-item h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.journey-circle {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.journey-circle span {
  color: var(--white);
  font-size: 1.6rem;
  padding: 20px;
  line-height: 1.4;
}

/* ===== OFFERS ===== */
.offers-section {
  background: var(--white);
}

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

.offer-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition: transform 0.3s;
}

.offer-card:hover {
  transform: translateY(-5px);
}

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

.offer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.1) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.offer-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.offer-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.5);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
}

.offer-overlay h3 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.offer-discount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
}

.offer-terms {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: var(--bg-light);
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 50px;
  align-items: center;
}

.testimonial-image {
  position: relative;
  height: 450px;
}

.blob-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e8d5f5, #d5e8f5);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  z-index: 0;
}

.testimonial-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30% 70% 50% 50% / 40% 40% 60% 60%;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-cards {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(50% - 10px);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  padding: 25px;
  background: var(--white);
  flex-shrink: 0;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 10px;
}

.stars i {
  color: #f5a623;
  font-size: 0.85rem;
}

.testimonial-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 3px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 15px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-user span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  justify-content: flex-end;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.slider-btn.active,
.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

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

.service-img {
  height: 220px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.service-card h3 {
  padding: 18px 15px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== BLOG ===== */
.blog-section {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  border-radius: 15px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.blog-date {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog-content {
  padding: 20px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 12px;
}

.blog-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-meta i {
  color: var(--primary);
  margin-right: 5px;
}

.blog-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
}

.read-more {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}

.read-more:hover {
  gap: 12px;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 15px;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

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

.gi-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.gi-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.gi-3 { grid-column: 3 / 4; grid-row: 1 / 3; }
.gi-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.gi-5 { grid-column: 2 / 3; grid-row: 2 / 3; }

/* Extra item fills last column */
.gallery-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.gi-3 { grid-column: 3 / 5; }

/* ===== CTA BANNER ===== */
.cta-section {
  padding-bottom: 80px;
}

.cta-banner {
  background: var(--primary);
  border-radius: 20px;
  padding: 50px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 400px;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}

.cta-images {
  display: flex;
  gap: -15px;
  position: relative;
  z-index: 2;
}

.cta-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
}

.cta-circle.c2 {
  margin-left: -20px;
  margin-top: 30px;
}

.cta-circle.c3 {
  margin-left: -20px;
}

.cta-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-decorations {
  position: absolute;
  right: 80px;
  top: 20px;
  z-index: 1;
}

.cta-plane {
  font-size: 3rem;
  color: rgba(255,255,255,0.2);
  transform: rotate(-30deg);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
}

.footer-contact {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}

.footer-logo i {
  color: var(--primary);
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-item > i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--white);
}

.contact-item span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.footer-main {
  padding: 50px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 15px;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: background 0.3s;
}

.social-icons a:hover {
  background: var(--primary);
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}

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

.newsletter-input {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.newsletter-input input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  outline: none;
}

.newsletter-input input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-input button {
  padding: 12px 18px;
  background: var(--primary);
  border: none;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-input button:hover {
  background: var(--primary-dark);
}

.checkbox-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.checkbox-label input {
  accent-color: var(--primary);
}

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

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.payment-icons {
  display: flex;
  gap: 15px;
}

.payment-icons i {
  font-size: 1.8rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.payment-icons i:hover {
  color: var(--white);
}

/* ===== BOOKING MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  max-width: 460px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.modal-close:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.modal-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--text-dark);
  padding-right: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: var(--primary);
}

.btn-full {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 14px;
  font-size: 1rem;
}

.modal-thanks {
  text-align: center;
  padding: 20px 0;
}

.thanks-icon {
  font-size: 4rem;
  margin-bottom: 15px;
}

.modal-thanks h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  padding-right: 0;
}

.modal-thanks p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
  .about-grid { gap: 40px; }
  .testimonials-wrapper { grid-template-columns: 1fr; }
  .testimonial-image { display: none; }
  .stats-banner { height: 350px; }
  .journey-circle { width: 150px; height: 150px; }
  .journey-circle span { font-size: 1.2rem; }
  .cta-banner { flex-direction: column; text-align: center; gap: 30px; }
  .cta-images { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .book-now-btn { display: none; }
  .mobile-toggle { display: block; }

  .hero { padding: 100px 5% 40px; min-height: auto; }
  .hero h1 { font-size: 2rem; }
  .hero-content { max-width: 100%; }

  .search-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .search-divider {
    width: 100%;
    height: 1px;
    margin: 8px 0;
  }

  .search-field { padding: 8px 0; }

  .search-btn {
    width: 100%;
    height: 46px;
    margin-top: 8px;
  }

  .tours-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; margin-bottom: 20px; }
  .offers-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .stats-banner { height: auto; padding: 20px; }
  .stats-bg { display: none; }
  .stats-box {
    position: static;
    transform: none;
    width: 100%;
  }
  .journey-circle { display: none; }
  .stats-banner { background: var(--bg-light); border-radius: 20px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gi-1, .gi-2, .gi-3, .gi-4, .gi-5 {
    grid-column: auto;
    grid-row: auto;
  }
  .gallery-item { height: 200px; }

  .categories-grid { gap: 15px; }
  .category-item { width: 120px; }
  .category-img { width: 120px; height: 150px; }
  .category-item.offset-up { margin-top: 0; }

  .testimonial-card { min-width: 100%; }

  .cta-banner { padding: 35px 25px; }
  .cta-content h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.6rem; }
  .hero h1 { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-contact-inner { flex-direction: column; align-items: flex-start; }
  .features-grid { grid-template-columns: 1fr; }
  .about-action { flex-direction: column; align-items: flex-start; }
}
