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

:root {
  /* Brand Palette (Hex.jpg) */
  --primary: #0C4F31;        /* Dark Green */
  --primary-dark: #062416;   /* Deep Forest Green */
  --accent: #F8AF2A;         /* Yellow/Gold */
  --accent-light: #FCD074;
  --whatsapp: #25D366;
  --whatsapp-hover: #20BA56;
  
  /* Neutral Palette */
  --bg-light: #F4F7F9;       /* Light soft background */
  --bg-card: #FFFFFF;
  --text-dark: #0A2416;      /* High contrast dark text with a touch of green */
  --text-light: #FFFFFF;
  --gray: #55685C;           /* Slate green-gray for secondary text */
  --gray-light: #E5ECE8;
  --border-color: rgba(12, 79, 49, 0.08);

  /* Layout & Spacing */
  --container-width: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(12, 79, 49, 0.04);
  --shadow-md: 0 8px 24px rgba(12, 79, 49, 0.08);
  --shadow-lg: 0 16px 48px rgba(12, 79, 49, 0.12);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

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

h1, h2, h3, h4, .font-title {
  font-family: var(--font-heading);
  color: var(--primary-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

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

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Common Styling */
section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.section-subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--gray);
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 20px 0;
  background: transparent;
}

header.scrolled {
  position: fixed;
  background: var(--primary-dark);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

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

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

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  opacity: 0.9;
}

.nav-link:hover {
  opacity: 1;
  color: var(--accent);
}

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

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

.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--whatsapp);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.nav-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  color: #fff;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 20px;
  justify-content: space-between;
  cursor: pointer;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-light);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   HERO SHOWCASE SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #03150d 100%);
  color: var(--text-light);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../Fotos%20Site/Salvador/1%20-%20Bahia%20Panoramica/WhatsApp%20Image%202026-04-17%20at%2014.14.10%20(1).jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-block;
  background-color: rgba(248, 175, 42, 0.12);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-light);
  margin-bottom: 20px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Search Bar */
.search-widget {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.search-field {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
}

.search-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.search-field label svg {
  color: var(--primary);
}

.search-field select {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid rgba(12, 79, 49, 0.15);
  border-radius: var(--radius-md);
  outline: none;
  background-color: #f9fbf9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230C4F31' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding: 10px 36px 10px 14px;
  cursor: pointer;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: var(--transition);
}

.search-field select:hover {
  border-color: var(--primary);
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(12, 79, 49, 0.08);
}

.search-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(12, 79, 49, 0.15);
  background-color: #fff;
}

.search-btn {
  background-color: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
  padding: 0 32px;
  border-radius: var(--radius-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(248, 175, 42, 0.25);
}

.search-btn:hover {
  background-color: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(248, 175, 42, 0.35);
}

/* ==========================================================================
   AUTHORITY / TRUST BAR (TripAdvisor Rating)
   ========================================================================== */
.trust-bar {
  background-color: var(--primary-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  color: var(--text-light);
  position: relative;
  z-index: 10;
}

.trust-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.tripadvisor-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.tripadvisor-logo svg {
  color: #00af87; /* TripAdvisor Green */
}

.stars-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: 700;
}

.trust-text {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.trust-text a {
  text-decoration: underline;
  color: var(--accent-light);
}

.trust-text a:hover {
  color: var(--accent);
}

/* ==========================================================================
   DESTINATIONS GRID (REGIONAL GROUPING)
   ========================================================================== */
.destinations {
  background-color: var(--bg-light);
  padding: 90px 0;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.dest-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 21, 13, 0.9) 0%, rgba(3, 21, 13, 0.3) 50%, transparent 100%);
  z-index: 2;
  transition: var(--transition);
}

.dest-img-wrapper {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.dest-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.dest-card:hover .dest-img-wrapper img {
  transform: scale(1.08);
}

.dest-card:hover::before {
  background: linear-gradient(to top, rgba(12, 79, 49, 0.95) 0%, rgba(12, 79, 49, 0.4) 60%, transparent 100%);
}

.dest-info {
  position: relative;
  z-index: 3;
  color: var(--text-light);
}

.dest-info h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.dest-info span {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dest-info span::after {
  content: '→';
  transition: transform 0.3s ease;
}

.dest-card:hover .dest-info span::after {
  transform: translateX(4px);
}

/* ==========================================================================
   TOURS GRID & FILTERS (SHOWCASE)
   ========================================================================== */
.tours-showcase {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Filter Row */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--bg-light);
  color: var(--gray);
  border: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  background-color: var(--gray-light);
  color: var(--primary-dark);
}

.tab-btn.active {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(12, 79, 49, 0.2);
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.tour-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(12, 79, 49, 0.15);
}

.tour-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: var(--primary-dark);
}

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

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

.category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(6, 36, 22, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--accent);
  border: 1px solid rgba(248, 175, 42, 0.3);
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 100px;
  z-index: 10;
}

.tour-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  line-height: 1.35;
}

.tour-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.operator-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #F0F6F3;
  border: 1px solid rgba(12, 79, 49, 0.06);
  border-radius: 8px;
  padding: 8px 12px;
  margin-top: auto;
  margin-bottom: 20px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
}

.operator-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent);
  flex-shrink: 0;
}

.tour-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-light);
  padding-top: 18px;
  margin-top: auto;
}

.price-box .price-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.price-box .price-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
}

.price-box .price-period {
  font-size: 11px;
  color: var(--gray);
  font-weight: 400;
}

.btn-details {
  background-color: var(--bg-light);
  color: var(--primary);
  border: 1px solid var(--gray-light);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
}

.btn-details:hover {
  background-color: var(--gray-light);
}

.btn-reserve {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--whatsapp);
  color: var(--text-light);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.15);
}

.btn-reserve:hover {
  background-color: var(--whatsapp-hover);
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.25);
  color: #fff;
}

/* ==========================================================================
   WHY ALLTOUR (DIFERENCIAIS)
   ========================================================================== */
.why-us {
  background-color: var(--primary-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(248, 175, 42, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

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

.why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

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

.diff-card {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.diff-card:hover {
  background-color: rgba(255, 255, 255, 0.07);
  transform: translateY(-4px);
  border-color: rgba(248, 175, 42, 0.3);
}

.diff-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: rgba(248, 175, 42, 0.12);
  border: 1px solid rgba(248, 175, 42, 0.25);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.diff-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
}

.diff-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

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

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

.testimonial-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 16px;
}

.testimonial-card .quote {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--gray-light);
  padding-top: 18px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font-heading);
}

.author-details p {
  line-height: 1.25;
}

.author-name {
  font-size: 14px;
  font-weight: 750;
  color: var(--primary-dark);
}

.author-location {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

/* ==========================================================================
   FINAL CALL TO ACTION
   ========================================================================== */
.final-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #03150d 100%);
  color: var(--text-light);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}

.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 90%, rgba(248, 175, 42, 0.1) 0%, transparent 50%);
}

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

.cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.cta-title {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  line-height: 1.65;
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--whatsapp);
  color: var(--text-light);
  padding: 16px 36px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-cta-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  color: #fff;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: #03100a;
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 14px;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 55px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-cnpj {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-col h4 {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 700;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

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

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-contact p {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact p svg {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-partnership a {
  text-decoration: underline;
  color: var(--accent-light);
}

/* ==========================================================================
   FLOATING ELEMENTS (Sticky WhatsApp Button)
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--whatsapp);
  opacity: 0.5;
  z-index: -1;
  animation: pulseWhatsapp 2s infinite;
}

.floating-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
  color: #fff;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(1); opacity: 0.5; }
  70% { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   PRODUCT DETAIL PAGES (Specific Styles)
   ========================================================================== */
.back-bar {
  background-color: var(--primary-dark);
  padding: 80px 0 20px;
  color: var(--text-light);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.05);
}

.back-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

.product-detail {
  padding: 50px 0 80px;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: start;
}

/* Left Column - Content */
.product-content-col h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--primary-dark);
}

.product-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
  height: 420px;
}

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

.product-tabs-content {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.product-section {
  margin-bottom: 32px;
}

.product-section:last-child {
  margin-bottom: 0;
}

.product-section h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

.product-section p {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-section ul li {
  font-size: 14.5px;
  position: relative;
  padding-left: 28px;
  color: var(--text-dark);
}

.product-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
  background-color: rgba(12, 79, 49, 0.08);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

/* Specific list styles for alerts/negatives */
.product-section ul.practical-details li::before {
  content: '📋';
  background-color: transparent;
  font-size: 14px;
  top: 1px;
}

/* Right Column - Sidebar Call to Action */
.product-sidebar-col {
  position: sticky;
  top: 100px;
}

.sidebar-booking-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  text-align: center;
}

.sidebar-booking-card .price-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.sidebar-booking-card .price-value {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 6px;
}

.sidebar-booking-card .price-period {
  font-size: 14px;
  color: var(--gray);
}

.booking-card-divider {
  height: 1px;
  background-color: var(--gray-light);
  margin: 24px 0;
}

.btn-sidebar-reserve {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--whatsapp);
  color: var(--text-light);
  width: 100%;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-sidebar-reserve:hover {
  background-color: var(--whatsapp-hover);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  color: #fff;
}

.sidebar-guarantees {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.sidebar-guarantees div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--gray);
}

.sidebar-guarantees div svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.sidebar-trust-box {
  background-color: var(--primary-dark);
  color: var(--text-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.sidebar-trust-box h4 {
  color: var(--text-light);
  font-size: 16px;
  margin-bottom: 8px;
}

.sidebar-trust-box .tripadvisor-logo {
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.sidebar-trust-box .stars-rating {
  justify-content: center;
  margin-bottom: 10px;
}

.sidebar-trust-box p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.sidebar-trust-box a {
  text-decoration: underline;
  color: var(--accent-light);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Unified Layout)
   ========================================================================== */

/* Tablet Viewports */
@media (max-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dest-card {
    height: 300px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-main .brand-col {
    grid-column: 1 / -1;
  }
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .product-sidebar-col {
    position: static;
  }
}

/* Mobile Viewports (Core Web Vitals & Thumb Zone optimizations) */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  /* Header Mobile Overlay */
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--primary-dark);
    flex-direction: column;
    padding: 100px 30px;
    align-items: flex-start;
    gap: 24px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    z-index: 100;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 18px;
  }
  
  .nav-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Hero section adjustments */
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero-title {
    font-size: 28px;
    margin-bottom: 14px;
  }
  
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  /* Compact Search Widget on Mobile */
  .search-widget {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
    border-radius: var(--radius-md);
  }
  
  .search-field {
    padding: 0;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 10px;
  }
  
  .search-field:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .search-btn {
    padding: 14px 20px;
    height: auto;
  }
  
  /* Destinations Grid */
  .destinations-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dest-card {
    height: 220px;
  }
  
  /* Products Filter Pills */
  .filter-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 24px;
    /* Hide scrollbar */
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-btn {
    flex-shrink: 0;
    padding: 8px 16px;
    font-size: 13px;
  }
  
  /* Products list */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .tour-image {
    height: 180px;
  }
  
  /* Footer mobile */
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  /* Floating WhatsApp Position for Mobile (Thumb Zone) */
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
  
  /* Product detail page mobile */
  .product-gallery {
    height: 260px;
    margin-bottom: 24px;
  }
  
  .product-tabs-content {
    padding: 20px;
  }
  
  .sidebar-booking-card {
    padding: 24px;
  }
}
