/* ===== IGNEST.IN — Main Stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --blue: #29ABE2;
  --blue-dark: #1a8bbf;
  --blue-light: #e8f6fd;
  --black: #111111;
  --gray-dark: #1F2937;
  --gray-mid: #6B7280;
  --gray-light: #F3F4F6;
  --white: #FFFFFF;
  --warm-bg: #FAFAF8;
  --gold: #F59E0B;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--warm-bg);
  color: var(--gray-dark);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

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

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(41,171,226,0.12);
  padding: 0 2rem;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
}

.nav-logo svg { width: 36px; height: 36px; }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.5px;
}

.nav-logo-text span { color: var(--blue); }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
  list-style: none;
}

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

.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover { background: var(--blue-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

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

.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--gray-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.pexels.com/photos/1271619/pexels-photo-1271619.jpeg?auto=compress&cs=tinysrgb&w=1920&q=80');
  background-size: cover; background-position: center;
  opacity: 0.35;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: white;
  max-width: 860px; padding: 2rem;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(41,171,226,0.2);
  border: 1px solid rgba(41,171,226,0.4);
  color: var(--blue);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-badge span { width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse 1.5s infinite; }

@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

.hero h1 {
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: normal;
  color: var(--blue);
  display: block;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px; margin: 0 auto 2.5rem;
  font-weight: 300; line-height: 1.7;
}

.hero-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.btn-primary {
  background: var(--blue);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 20px rgba(41,171,226,0.4);
}

.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(41,171,226,0.5); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.5);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-outline:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 3rem; justify-content: center;
  margin-top: 4rem; flex-wrap: wrap;
}

.stat { text-align: center; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--blue); }
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; margin-top: 0.2rem; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 1px;
  animation: bounce 2s infinite;
}

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

/* ===== SECTIONS ===== */
.section { padding: 5rem 2rem; }
.section-sm { padding: 3rem 2rem; }

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

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  font-size: 0.78rem; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.section-header h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--black); margin-bottom: 1rem; }
.section-header p { color: var(--gray-mid); max-width: 560px; margin: 0 auto; }

/* ===== AFFILIATE STRIP ===== */
.affiliate-strip {
  background: var(--blue);
  padding: 1.2rem 2rem;
  overflow: hidden;
}

.affiliate-strip-inner {
  display: flex; gap: 3rem; align-items: center;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
}

@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.aff-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: white; font-size: 0.85rem; font-weight: 500;
}

.aff-item svg { width: 18px; height: 18px; opacity: 0.9; }

/* ===== YOUTUBE SECTION ===== */
.yt-section { background: var(--black); color: white; }

.yt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.yt-featured {
  position: relative;
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 16/9;
  background: #222;
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.yt-featured iframe {
  width: 100%; height: 100%;
  border: none;
}

.yt-playlist {
  display: flex; flex-direction: column; gap: 1rem;
}

.yt-card {
  display: flex; gap: 1rem; align-items: center;
  background: rgba(255,255,255,0.05);
  border-radius: 12px; overflow: hidden;
  padding: 0.75rem;
  transition: background 0.2s;
  cursor: pointer;
  text-decoration: none; color: white;
}

.yt-card:hover { background: rgba(255,255,255,0.1); }

.yt-thumb {
  width: 120px; min-width: 120px; height: 68px;
  border-radius: 8px; overflow: hidden;
  background: #333; position: relative;
}

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

.yt-play-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.2s;
}

.yt-card:hover .yt-play-icon { background: rgba(41,171,226,0.5); }

.yt-info h4 { font-family: 'Inter', sans-serif; font-size: 0.88rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.yt-info span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.yt-channel-link {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 2.5rem;
  background: #FF0000;
  color: white; font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  width: fit-content; margin: 2.5rem auto 0;
  transition: all 0.2s;
}

.yt-channel-link:hover { background: #cc0000; transform: translateY(-2px); }

/* ===== DESTINATIONS ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dest-card {
  border-radius: 16px; overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.dest-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.2); }

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

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

.dest-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: white;
}

.dest-tag {
  background: var(--blue);
  color: white;
  font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  text-transform: uppercase; letter-spacing: 1px;
  display: inline-block; margin-bottom: 0.5rem;
}

.dest-info h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.dest-info p { font-size: 0.82rem; opacity: 0.8; }

/* ===== AFFILIATE CARDS ===== */
.aff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.aff-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}

.aff-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

.aff-icon {
  width: 56px; height: 56px;
  background: var(--blue-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}

.aff-icon svg { width: 28px; height: 28px; color: var(--blue); }

.aff-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.aff-card p { font-size: 0.85rem; color: var(--gray-mid); margin-bottom: 1.5rem; flex: 1; }

.aff-btn {
  background: var(--blue);
  color: white;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

.aff-btn:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}

.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }

.blog-img {
  aspect-ratio: 16/9; 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-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

.blog-cat {
  font-size: 0.72rem; font-weight: 700;
  color: var(--blue); text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 0.6rem;
}

.blog-body h3 { font-size: 1.1rem; margin-bottom: 0.6rem; line-height: 1.4; }
.blog-body p { font-size: 0.85rem; color: var(--gray-mid); flex: 1; }

.blog-meta {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--gray-light);
  font-size: 0.78rem; color: var(--gray-mid);
}

.blog-meta img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; }
.read-more { color: var(--blue); font-weight: 600; font-size: 0.82rem; display: flex; align-items: center; gap: 4px; margin-left: auto; }
.read-more:hover { gap: 8px; }

/* ===== GEAR/PACKING ===== */
.gear-section { background: var(--blue-light); }

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

.gear-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.gear-card:hover { transform: translateY(-4px); }

.gear-img { aspect-ratio: 1; overflow: hidden; background: #f8f8f8; }
.gear-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gear-card:hover .gear-img img { transform: scale(1.05); }

.gear-body { padding: 1.25rem; }
.gear-body h4 { font-family: 'Inter', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.gear-body .price { color: var(--blue); font-weight: 700; font-size: 1rem; margin-bottom: 0.75rem; }

.amazon-btn {
  width: 100%;
  background: #FF9900;
  color: white;
  padding: 0.6rem;
  border-radius: 8px;
  font-size: 0.82rem; font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}

.amazon-btn:hover { background: #e68900; }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: linear-gradient(135deg, var(--blue), #1a8bbf);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
}

.newsletter h2 { color: white; margin-bottom: 1rem; }
.newsletter p { opacity: 0.85; max-width: 480px; margin: 0 auto 2rem; }

.newsletter-form {
  display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto;
  flex-wrap: wrap; justify-content: center;
}

.newsletter-form input {
  flex: 1; min-width: 250px;
  padding: 0.85rem 1.25rem;
  border-radius: 50px; border: none;
  font-size: 0.95rem; outline: none;
  font-family: 'Inter', sans-serif;
}

.newsletter-form button {
  background: var(--black);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: 50px; border: none;
  font-weight: 700; font-size: 0.9rem;
  cursor: pointer; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.newsletter-form button:hover { background: #333; transform: translateY(-1px); }

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a; color: rgba(255,255,255,0.7);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px; margin: 0 auto 3rem;
}

.footer-brand p { font-size: 0.88rem; margin: 1rem 0 1.5rem; max-width: 280px; line-height: 1.7; }

.footer-socials { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
  color: rgba(255,255,255,0.7);
}

.social-btn:hover { background: var(--blue); color: white; }
.social-btn svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; font-weight: 700;
  color: white; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a { font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--blue); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 1rem;
}

.footer-bottom a { color: var(--blue); }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  min-height: 40vh;
  background: linear-gradient(135deg, #0f2027, #203a43);
  display: flex; align-items: center; justify-content: center;
  padding: 8rem 2rem 4rem;
  text-align: center; color: white;
}

.contact-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.contact-hero p { opacity: 0.8; margin-top: 1rem; max-width: 480px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem; max-width: 1000px; margin: 0 auto;
}

.contact-info h2 { font-size: 1.8rem; margin-bottom: 0.75rem; }
.contact-info p { color: var(--gray-mid); margin-bottom: 2rem; }

.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}

.contact-item-icon svg { width: 20px; height: 20px; color: var(--blue); }
.contact-item h4 { font-family: 'Inter', sans-serif; font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }
.contact-item a, .contact-item p { font-size: 0.9rem; color: var(--gray-mid); }
.contact-item a:hover { color: var(--blue); }

.contact-form-box {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--gray-dark); margin-bottom: 0.4rem; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  background: var(--warm-bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }

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

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

.submit-btn {
  width: 100%;
  background: var(--blue);
  color: white;
  padding: 0.9rem;
  border-radius: 50px;
  border: none;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

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

/* ===== BLOG PAGE ===== */
.page-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #0f2027, #203a43);
  color: white; text-align: center;
}

.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero p { opacity: 0.8; margin-top: 1rem; max-width: 520px; margin-left: auto; margin-right: auto; }

.filter-tabs {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-bottom: 3rem; justify-content: center;
}

.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; border: none;
  background: var(--gray-light); color: var(--gray-dark);
  transition: all 0.2s;
}

.filter-tab.active,
.filter-tab:hover { background: var(--blue); color: white; }

/* ===== UTILITIES ===== */
.bg-white { background: white; }
.bg-dark { background: var(--black); }
.text-center { text-align: center; }
.mt-2 { margin-top: 3rem; }
.view-all {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: white;
  padding: 0.75rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s; margin-top: 2.5rem;
}
.view-all:hover { background: var(--blue-dark); transform: translateY(-2px); }

.view-all-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--blue); color: var(--blue);
  padding: 0.75rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  transition: all 0.2s; margin-top: 2.5rem;
}

.view-all-outline:hover { background: var(--blue); color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .yt-grid { grid-template-columns: 1fr; }
  .yt-playlist { flex-direction: row; flex-wrap: wrap; }
  .yt-card { flex: 1 1 45%; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 1.5rem 2rem; gap: 1.5rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .dest-grid { grid-template-columns: 1fr; }
  .yt-card { flex: 1 1 100%; }
  .hero-btns { flex-direction: column; align-items: center; }
}
