/* ============================================================
   Newport Beach Whale Watching — style.css
   Colors: Primary #0F4C81 | Accent #2CB1BC | BG #F7FAFC
   Fonts: Manrope (headings) | Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --primary:   #0F4C81;
  --accent:    #2CB1BC;
  --bg:        #F7FAFC;
  --white:     #ffffff;
  --text:      #1a2b3c;
  --text-muted:#4a6278;
  --border:    #d0e2f0;
  --card-bg:   #ffffff;
  --shadow:    0 2px 16px rgba(15,76,129,0.10);
  --radius:    10px;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 1rem;
}

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

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

section { padding: 60px 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, opacity 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

/* Primary: accent fill, white text */
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: #24979f; border-color: #24979f; color: var(--white); }

/* Secondary: white text, accent border, transparent bg — for dark backgrounds */
.btn-secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--white);
}
.btn-secondary:hover { background: var(--accent); color: var(--white); }

/* Outline: primary border/text — for light/white backgrounds only */
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.site-logo {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
  line-height: 1.2;
}
.site-logo span { color: var(--accent); }
.site-logo:hover { text-decoration: none; opacity: 0.9; }

/* Desktop nav */
.main-nav ul {
  display: flex;
  gap: 6px;
  align-items: center;
}
.main-nav ul li a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
}
.main-nav ul li a:hover { color: var(--white); background: rgba(255,255,255,0.1); text-decoration: none; }

.header-cta { margin-left: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── Mobile Navigation ─────────────────────────────────────── */
@media (max-width: 700px) {
  .hamburger { display: flex; }
  .header-cta { display: none; }

  .main-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    z-index: 200;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  body.menu-open { overflow: hidden; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 4px 0 12px;
  }
  .main-nav ul li { width: 100%; }
  .main-nav ul li a {
    display: block;
    padding: 13px 20px;
    font-size: 1rem;
    border-radius: 0;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 18px 6px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.6rem;
    cursor: pointer;
    width: 100%;
    line-height: 1;
  }
  .nav-close:hover { color: var(--white); }

  .mobile-book-now {
    display: block !important;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-top: 4px;
    padding: 8px 0 4px;
  }
  .mobile-book-now a { color: var(--accent) !important; font-weight: 700; }
}

/* Nav-close hidden on desktop */
.nav-close { display: none; }
.mobile-book-now { display: none; }

/* ── Hero (Homepage) ───────────────────────────────────────── */
.hero {
  min-height: 60vh;
  background: linear-gradient(rgba(15,76,129,0.6), rgba(15,76,129,0.6)),
              url('/assets/images/Newport Beach Whale Watching Official Website Background.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.hero-content { max-width: 780px; }
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 14px;
}
.hero-content .tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}
.hero-content .intro {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Hero (Tour pages) ─────────────────────────────────────── */
.hero-tour {
  min-height: 60vh;
  background: linear-gradient(rgba(15,76,129,0.55), rgba(15,76,129,0.55)) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.hero-tour .hero-content h1 { font-size: clamp(1.7rem, 4vw, 2.8rem); }

/* ── Advantages ────────────────────────────────────────────── */
.advantages { background: var(--white); }
.advantages h2 { text-align: center; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 40px; }
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.adv-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
}
.adv-icon { font-size: 2.8rem; margin-bottom: 16px; }
.adv-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.adv-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ── History / About ───────────────────────────────────────── */
.history { background: var(--bg); }
.history h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 24px; }
.history p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.97rem; }
.history-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.fact-box {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.fact-box .fact-value {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.fact-box .fact-label { font-size: 0.88rem; opacity: 0.88; }

/* ── Tours Hub ─────────────────────────────────────────────── */
.tours { background: var(--white); }
.tours h2 { text-align: center; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 40px; }
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.tour-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.tour-card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.tour-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; }
.tour-hook { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 18px; flex: 1; }
.tour-meta { display: flex; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.tour-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}
.tour-badge.rating { color: var(--primary); border-color: var(--primary); }
.tour-card-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.tour-card-btns .btn { flex: 1; text-align: center; font-size: 0.88rem; padding: 10px 12px; }

/* ── Seasonality Table ─────────────────────────────────────── */
.seasonality { background: var(--white); }
.seasonality h2 { text-align: center; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 20px; }
.seasonality-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.season-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.season-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 520px;
}
.season-table thead {
  background: var(--primary);
  color: var(--white);
}
.season-table thead th {
  padding: 14px 18px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
}
.season-table thead th:first-child { text-align: left; border-radius: var(--radius) 0 0 0; }
.season-table thead th:last-child  { border-radius: 0 var(--radius) 0 0; }
.season-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.15s ease;
}
.season-table tbody tr:last-child { border-bottom: none; }
.season-table tbody tr:nth-child(even) { background: var(--bg); }
.season-table tbody tr:hover { background: #e8f4f8; }
.season-table td {
  padding: 13px 18px;
  text-align: center;
  font-size: 1.2rem;
  white-space: nowrap;
  line-height: 1;
}
.season-table td.month-col {
  text-align: left;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.season-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.season-legend span { display: flex; align-items: center; gap: 6px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { background: var(--bg); }
.faq h2 { text-align: center; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 40px; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q .faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }

/* ── CTA Banners ───────────────────────────────────────────── */
.cta-banner {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1rem; }
.cta-banner .btn-primary { font-size: 1.05rem; padding: 14px 36px; }

/* ── Reviews ───────────────────────────────────────────────── */
.reviews { background: var(--white); }
.reviews h2 { text-align: center; font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 40px; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.reviewer-info { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.95rem; color: var(--primary); }
.reviewer-meta { font-size: 0.8rem; color: var(--text-muted); }
.review-stars { color: #f59e0b; font-size: 0.95rem; margin-bottom: 10px; }
.review-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand .site-logo { font-size: 1.05rem; display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 300px; }
.footer-col h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.75); font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 18px 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ── Internal Page Sections ────────────────────────────────── */

/* About + booking card */
.tour-intro { background: var(--white); }
.tour-intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.tour-intro-text h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 16px; }
.tour-intro-text p { color: var(--text-muted); margin-bottom: 14px; font-size: 0.96rem; }

/* Booking card */
.booking-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: sticky;
  top: 88px;
}
.booking-card .price {
  font-family: 'Manrope', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}
.booking-card .price-note { font-size: 0.82rem; color: rgba(255,255,255,0.7); margin-bottom: 18px; }
.booking-card .bc-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.booking-card .bc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
}
.booking-card .bc-row span:first-child { color: var(--accent); }
.booking-card .btn-primary { width: 100%; text-align: center; display: block; margin-bottom: 10px; }
.booking-card .btn-secondary { width: 100%; text-align: center; display: block; }

/* Tour Details */
.tour-details { background: var(--bg); }
.tour-details h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 28px; }
.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.detail-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.detail-icon { font-size: 1.5rem; flex-shrink: 0; }
.detail-content .label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 2px; }
.detail-content .value { font-weight: 700; color: var(--primary); font-size: 0.95rem; }

/* Tour Route */
.tour-route { background: var(--white); }
.tour-route h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 28px; }
.route-list { list-style: none; position: relative; padding-left: 28px; }
.route-list::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.route-list li {
  position: relative;
  padding: 0 0 22px 18px;
}
.route-list li::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--accent);
}
.route-list li:last-child { padding-bottom: 0; }
.route-list li .stop-name { font-weight: 700; color: var(--primary); font-size: 0.95rem; }
.route-list li .stop-desc { font-size: 0.87rem; color: var(--text-muted); margin-top: 2px; }

/* Experience & Includes */
.tour-experience { background: var(--bg); }
.tour-experience h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 28px; }
.highlights-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.highlight-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
}
.highlight-item .hi-icon { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.highlight-item p { font-size: 0.9rem; color: var(--text-muted); }

/* Includes / Excludes */
.inc-exc { background: var(--white); }
.inc-exc h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 28px; }
.inc-exc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.inc-box, .exc-box { }
.inc-box h3, .exc-box h3 { font-size: 1rem; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.inc-box h3::before { content: '✓'; color: var(--accent); }
.exc-box h3::before { content: '✗'; color: #e55; }
.inc-box ul li, .exc-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.inc-box ul li::before { content: '✓'; color: var(--accent); font-size: 0.85rem; flex-shrink: 0; }
.exc-box ul li::before { content: '✗'; color: #e55; font-size: 0.85rem; flex-shrink: 0; }

/* Meeting Point */
.meeting-point { background: var(--bg); }
.meeting-point h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 24px; }
.meeting-info { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.meeting-info .mi-icon { font-size: 1.3rem; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.meeting-info p { font-size: 0.93rem; color: var(--text-muted); }
.osm-map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.osm-map iframe { display: block; width: 100%; height: 320px; border: none; }

/* Good to Know */
.good-to-know { background: var(--white); }
.good-to-know h2 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 24px; }
.know-list { display: flex; flex-direction: column; gap: 12px; }
.know-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 18px;
  background: var(--bg);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.know-item .ki-icon { color: var(--accent); flex-shrink: 0; font-size: 1.1rem; }

/* Internal page reviews */
.tour-reviews { background: var(--bg); }
.tour-reviews h2 { text-align: center; font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 32px; }
.tour-reviews .reviews-grid { grid-template-columns: repeat(3, 1fr); }

/* Internal page FAQ */
.tour-faq { background: var(--white); }
.tour-faq h2 { text-align: center; font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 32px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .history-facts { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .tour-intro-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-list { grid-template-columns: 1fr; }
  .tour-reviews .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  section { padding: 44px 0; }
  .advantages-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .history-facts { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .inc-exc-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .tour-reviews .reviews-grid { grid-template-columns: 1fr; }
}
