/* =============================================
   Alabama Travel - Main Stylesheet
   Domain: alabama.in
   ============================================= */

/* --- CSS Variables / Design Tokens --- */
:root {
  --color-primary: #1a4a6e;       /* Deep Alabama Blue */
  --color-primary-dark: #123450;
  --color-primary-light: #2a6496;
  --color-accent: #c8893a;        /* Warm Southern Gold */
  --color-accent-dark: #a36a20;
  --color-accent-light: #e8a84a;
  --color-white: #ffffff;
  --color-off-white: #f8f6f2;
  --color-light-gray: #f0ede8;
  --color-mid-gray: #e2ddd5;
  --color-text: #2c2c2c;
  --color-text-light: #555555;
  --color-text-muted: #888888;
  --color-border: #d8d4cd;
  --color-footer-bg: #1a1a2e;
  --color-footer-text: #c8c4bc;

  --font-heading: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: all 0.3s ease;

  --container-max: 1200px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-light);
  font-size: 1.05rem;
}

p:last-child { margin-bottom: 0; }

strong { color: var(--color-text); font-weight: 600; }

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.site-logo .logo-icon {
  width: 42px;
  height: 42px;
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-logo .logo-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--color-white);
}

.site-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-logo .logo-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
}

.site-logo .logo-tagline {
  font-size: 0.7rem;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  padding: 0.5rem 0.9rem;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary);
  background: var(--color-off-white);
}

.main-nav a.active {
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--color-accent);
  border-radius: 0;
}

.nav-cta {
  background: var(--color-accent) !important;
  color: var(--color-white) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.5rem 1.1rem !important;
  font-weight: 600 !important;
  border-bottom: none !important;
}

.nav-cta:hover {
  background: var(--color-accent-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =============================================
   HERO SECTIONS
   ============================================= */
.hero {
  margin-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero-full {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
}

.hero-inner {
  min-height: 480px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,30,55,0.80) 0%, rgba(10,30,55,0.45) 60%, rgba(10,30,55,0.20) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 4rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(200,137,58,0.9);
  color: var(--color-white);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.2rem;
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero p {
  color: rgba(255,255,255,0.88);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 2rem;
}

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

/* Page Hero (inner pages) */
.page-hero {
  margin-top: var(--nav-height);
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-content {
  padding: 3rem 0;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--color-accent-light); }

.breadcrumb-sep {
  color: rgba(255,255,255,0.4);
}

.breadcrumb-current {
  color: var(--color-accent-light);
  font-weight: 500;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,137,58,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.6);
}

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

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

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

/* =============================================
   SECTIONS
   ============================================= */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--color-off-white);
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255,255,255,0.80);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--color-text-light);
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--color-accent);
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

/* =============================================
   CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

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

.card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1.5rem;
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.card-link:hover { color: var(--color-accent); }

.card-link::after {
  content: '→';
  transition: transform 0.2s;
}

.card:hover .card-link::after {
  transform: translateX(4px);
}

/* =============================================
   CONTENT SECTIONS (Article Style)
   ============================================= */
.content-section {
  padding: 4.5rem 0;
}

.content-section:nth-child(even) {
  background: var(--color-off-white);
}

.content-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-2col.reverse {
  direction: rtl;
}

.content-2col.reverse > * {
  direction: ltr;
}

.content-text h2 {
  margin-bottom: 1.25rem;
}

.content-text h3 {
  color: var(--color-accent);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.content-text p + h3 {
  margin-top: 1.75rem;
}

.content-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.content-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.content-img-wrap:hover img {
  transform: scale(1.03);
}

.img-caption {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* =============================================
   STATS / HIGHLIGHTS BAR
   ============================================= */
.stats-bar {
  background: var(--color-primary);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-accent-light);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =============================================
   INFO BOXES / TIPS
   ============================================= */
.info-box {
  background: var(--color-off-white);
  border-left: 4px solid var(--color-accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
}

.info-box h4 {
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.tip-box {
  background: #e8f4fd;
  border-left: 4px solid #2a80b9;
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 1.5rem 0;
}

/* =============================================
   FEATURE LIST
   ============================================= */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-mid-gray);
  font-size: 0.95rem;
  color: var(--color-text-light);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list .check {
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* =============================================
   UNIVERSITY CARDS
   ============================================= */
.univ-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

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

.univ-card-header {
  background: var(--color-primary);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.univ-initials {
  width: 52px;
  height: 52px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  flex-shrink: 0;
}

.univ-card-header h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin: 0;
}

.univ-card-header span {
  color: rgba(255,255,255,0.65);
  font-size: 0.82rem;
}

.univ-card-body {
  padding: 1.5rem;
}

.univ-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.univ-meta-item {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.univ-meta-item strong {
  color: var(--color-text);
}

.univ-card-body p {
  font-size: 0.93rem;
  margin-bottom: 0;
}

/* =============================================
   TESTIMONIALS / QUOTES
   ============================================= */
.quote-block {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  position: relative;
  margin: 2rem 0;
}

.quote-block::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  line-height: 1;
}

.quote-block p {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.quote-block cite {
  display: block;
  color: var(--color-accent-light);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 600;
  margin-top: 1rem;
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 0;
}

.footer-main {
  padding: 4rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-brand .logo-name {
  color: var(--color-white);
}

.footer-brand .logo-tagline {
  color: var(--color-accent-light);
}

.footer-brand p {
  color: var(--color-footer-text);
  font-size: 0.9rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.65;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--color-footer-text);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--color-footer-text);
  margin-bottom: 0.75rem;
}

.footer-contact-icon {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Cookie Notice */
.footer-cookie-notice {
  background: rgba(255,255,255,0.04);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
}

.footer-cookie-notice p {
  font-size: 0.82rem;
  color: rgba(200,196,188,0.7);
  text-align: center;
  margin: 0;
  line-height: 1.55;
}

.footer-cookie-notice a {
  color: var(--color-accent-light);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.4rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(200,196,188,0.7);
  margin: 0;
}

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

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

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #12121e;
  border-top: 2px solid var(--color-accent);
  padding: 1.1rem 1.5rem;
  z-index: 9999;
  display: none;
  animation: slideUp 0.4s ease;
}

#cookie-banner.show { display: block; }

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: var(--container-max);
  margin: 0 auto;
  flex-wrap: wrap;
}

.cookie-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  flex: 1;
}

.cookie-text a {
  color: var(--color-accent-light);
}

.cookie-btns {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--color-accent);
  color: white;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept:hover { background: var(--color-accent-dark); }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-decline:hover {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
}

/* =============================================
   DESTINATION HIGHLIGHT CARDS
   ============================================= */
.dest-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 280px 1fr;
}

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

.dest-card-img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.dest-card-content {
  padding: 2rem;
}

.dest-category {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  background: rgba(200,137,58,0.1);
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

/* =============================================
   PAGE SPECIFIC
   ============================================= */

/* Season Table */
.season-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.93rem;
}

.season-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
}

.season-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-light);
}

.season-table tr:nth-child(even) td {
  background: var(--color-off-white);
}

/* Accordion / FAQ */
.faq-list {
  margin-top: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  gap: 1rem;
}

.faq-question .faq-icon {
  color: var(--color-accent);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 1.25rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* =============================================
   BACK TO TOP
   ============================================= */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--color-accent);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--color-accent-dark);
  transform: translateY(-3px);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .content-2col {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .content-2col.reverse { direction: ltr; }
  .content-img-wrap img { height: 320px; }

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

  .dest-card {
    grid-template-columns: 1fr;
  }
  .dest-card-img { height: 240px; }
}

@media (max-width: 768px) {
  :root { --nav-height: 62px; }

  .main-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 280px;
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 1.5rem 2rem;
    box-shadow: -4px 0 30px rgba(0,0,0,0.15);
    gap: 0.25rem;
    z-index: 1000;
  }

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

  .main-nav a {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .main-nav a.active {
    border-bottom: none;
    background: var(--color-off-white);
  }

  .nav-toggle { display: flex; }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }
  .nav-overlay.open { display: block; }

  .hero-full { min-height: 80vh; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: fit-content; }

  .section { padding: 3.5rem 0; }
  .content-section { padding: 3rem 0; }

  .cards-grid, .cards-grid-2 {
    grid-template-columns: 1fr;
  }

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

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .page-hero { min-height: 300px; }
  .quote-block { padding: 1.75rem; }
  .cookie-inner { flex-direction: column; }
  .cookie-btns { width: 100%; justify-content: center; }
}
