/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --primary:       #00BCD4;
  --primary-dark:  #0097A7;
  --primary-light: #E0F7FA;
  --warm-yellow:   #FFD600;
  --warm-orange:   #FF6F00;
  --red-bus:       #D32F2F;
  --whatsapp:      #25D366;
  --whatsapp-dark: #128C7E;
  --white:         #FFFFFF;
  --gray-50:       #F8FAFC;
  --gray-100:      #F1F5F9;
  --gray-300:      #CBD5E1;
  --gray-500:      #64748B;
  --gray-600:      #475569;
  --gray-800:      #1E293B;
  --gray-900:      #0F172A;
  --font:          'Poppins', sans-serif;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 4px 24px rgba(0, 188, 212, 0.18);
  --shadow-card:   0 2px 16px rgba(15, 23, 42, 0.08);
  --shadow-warm:   0 4px 24px rgba(255, 111, 0, 0.15);
  --transition:    0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

/* ===========================
   UTILITIES
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}

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

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-warm {
  background: linear-gradient(135deg, var(--warm-orange), var(--warm-yellow));
  color: var(--gray-900);
  border-color: transparent;
  font-weight: 700;
}
.btn-warm:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: var(--shadow-warm);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
  font-weight: 700;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}

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

/* Logo */
.logo {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar.scrolled .logo { color: var(--gray-900); }
.logo .logo-picaras { color: var(--warm-yellow); }
.navbar.scrolled .logo .logo-picaras { color: var(--warm-orange); }
.logo .logo-tours  { color: var(--white); }
.navbar.scrolled .logo .logo-tours { color: var(--primary-dark); }

/* Nav links */
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  transition: color var(--transition);
  white-space: nowrap;
}
.navbar.scrolled .nav-link { color: var(--gray-600); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--warm-yellow);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.navbar.scrolled .nav-link::after { background: var(--primary); }

.nav-link:hover,
.nav-link.active { color: var(--white); }
.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active { color: var(--primary-dark); }

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--gray-800); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO (full-height, homepage)
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    url('https://images.unsplash.com/photo-1518638150340-f706e86654de?w=1600&q=80')
    center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10, 30, 50, 0.82) 0%,
    rgba(0, 150, 170, 0.65) 60%,
    rgba(255, 111, 0, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-yellow);
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
}

.hero-sub-title {
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-weight: 600;
  color: var(--warm-yellow);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 40px;
}

/* ===========================
   PAGE HERO (short, inner pages)
=========================== */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1200&q=80')
    center/cover no-repeat;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(10,30,50,0.88) 0%, rgba(0,150,170,0.70) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}

.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
}

/* ===========================
   WELCOME / ABOUT STRIP (homepage)
=========================== */
.welcome {
  background: var(--white);
}

.welcome-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome-text .section-tag { margin-bottom: 16px; }

.welcome-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: 20px;
}

.welcome-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 16px;
}

.welcome-text p:last-of-type { margin-bottom: 28px; }

.welcome-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  aspect-ratio: 4/3;
  background:
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=800&q=80')
    center/cover no-repeat;
}

/* ===========================
   SLOGAN BANNER
=========================== */
.slogan-banner {
  background: linear-gradient(135deg, var(--warm-orange) 0%, var(--warm-yellow) 100%);
  padding: 56px 24px;
  text-align: center;
}

.slogan-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
}

.slogan-banner p {
  font-size: 1rem;
  color: rgba(10, 30, 50, 0.7);
  margin-top: 10px;
  font-weight: 500;
}

/* ===========================
   TRIP PREVIEW (homepage) & TRIP CARDS (proximos-viajes)
=========================== */
.trips-preview { background: var(--gray-50); }

.trips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.trip-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.trip-card-img {
  height: 220px;
  background: var(--gray-100) center/cover no-repeat;
  position: relative;
}

.trip-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

.badge-days {
  background: rgba(10, 30, 50, 0.8);
  color: var(--white);
}

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

.trip-card-body {
  padding: 24px 24px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trip-card-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.3;
}

.trip-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.65;
  flex: 1;
}

.trip-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

.trip-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.trip-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
}

.trip-dates {
  font-size: 0.8rem;
  color: var(--gray-500);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trip-dates strong { color: var(--gray-800); }

/* ===========================
   BENEFITS / WHY US
=========================== */
.why-us { background: var(--white); }

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

.benefit-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.benefit-icon { font-size: 2.5rem; margin-bottom: 18px; }

.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ===========================
   STATS STRIP
=========================== */
.stats-strip {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 100%);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item { padding: 20px; }

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--warm-yellow);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

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

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

.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-100) center/cover no-repeat;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}

.about-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-text p {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.mission-block {
  background: var(--primary-light);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-top: 28px;
}
.mission-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mission-block p {
  font-size: 0.95rem;
  color: var(--gray-700, #374151);
  margin-bottom: 0;
  line-height: 1.7;
}

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

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.blog-card-img {
  height: 240px;
  background: var(--gray-100) center/cover no-repeat;
}

.blog-card-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 3px 10px;
  border-radius: 999px;
}

.blog-date {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.blog-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
}

.blog-author {
  font-size: 0.82rem;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}

/* ===========================
   CALENDAR EMBED
=========================== */
.calendar-section { background: var(--white); }

.calendar-embed-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
}

.calendar-embed-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: none;
}

/* ===========================
   PRIVATE TRIP PAGE
=========================== */
.private-info { background: var(--white); }

.private-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.private-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 20px;
}
.private-text p {
  font-size: 0.98rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}
.private-text p:last-of-type { margin-bottom: 28px; }

.private-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.private-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.private-feature-icon {
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.private-feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.private-feature-text p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 0;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-section { background: var(--gray-50); }

.contact-channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.contact-channel-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-channel-icon { font-size: 2.5rem; }

.contact-channel-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.contact-channel-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.contact-channel-card .phone {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
}

.contact-note {
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 20px 28px;
  max-width: 680px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

/* ===========================
   FORMS (shared)
=========================== */
.form-section {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 100%);
}
.form-section .section-header .section-tag {
  background: rgba(224, 247, 250, 0.15);
  color: var(--primary-light);
}
.form-section .section-header h2 { color: var(--white); }
.form-section .section-header p  { color: rgba(255,255,255,0.7); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 860px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-group.full-width { margin-bottom: 20px; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--gray-800);
  background: var(--gray-50);
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.14);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-submit { text-align: center; margin-bottom: 0 !important; }

.form-success {
  margin-top: 20px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 16px;
  border-radius: 8px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--gray-900);
  padding: 40px 0;
}

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

.logo-footer {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
}

.footer-copy {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.4);
}

.social-links { display: flex; gap: 14px; }

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .trips-grid { grid-template-columns: 1fr; }
  .contact-channels { grid-template-columns: 1fr 1fr; }
}

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

  /* Mobile nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--gray-900);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 36px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity var(--transition), transform var(--transition);
    z-index: 999;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav-link { font-size: 1.35rem; color: var(--white) !important; }

  /* Grids */
  .welcome-inner  { grid-template-columns: 1fr; gap: 40px; }
  .about-inner    { grid-template-columns: 1fr; gap: 40px; }
  .private-inner  { grid-template-columns: 1fr; gap: 40px; }
  .benefits-grid  { grid-template-columns: 1fr; }
  .blog-grid      { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr; gap: 0; }
  .contact-channels { grid-template-columns: 1fr; }

  .contact-form { padding: 32px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .trips-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.2rem; }
  .page-hero-content h1 { font-size: 1.8rem; }
}
