/* =============================================
   YourNextTrip.pro — Main Stylesheet
   Premium Travel Magazine Aesthetic
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito+Sans:wght@300;400;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --navy: #0b2545;
  --blue: #1565c0;
  --sky: #3a9fd8;
  --gold: #e8a020;
  --cream: #faf8f4;
  --white: #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f1f1f1;
  --gray-200: #e0e0e0;
  --gray-400: #9e9e9e;
  --gray-600: #666;
  --gray-800: #333;
  --text: #1a1a2e;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Nunito Sans', system-ui, sans-serif;
  --radius: 10px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.13);
  --transition: all 0.25s ease;
  --max-width: 1180px;
}

/* ---- 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(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--sky); }
a:focus-visible { outline: 3px solid var(--sky); outline-offset: 3px; border-radius: 3px; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--gray-800); }

ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: 0.35rem; color: var(--gray-800); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5rem 0; }
.section--gray { background: var(--gray-50); }
.section--cream { background: var(--cream); }
.section--navy { background: var(--navy); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

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

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover { background: #d4901a; border-color: #d4901a; color: var(--white); }

/* ---- Cookie Banner ---- */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

#cookie-banner p {
  color: rgba(255,255,255,0.9);
  margin: 0;
  flex: 1;
  font-size: 0.9rem;
  min-width: 260px;
}

#cookie-banner a { color: var(--sky); }

.cookie-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.cookie-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.cookie-accept { background: var(--sky); color: var(--white); border-color: var(--sky); }
.cookie-accept:hover { background: var(--blue); border-color: var(--blue); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.4); }
.cookie-decline:hover { border-color: var(--white); color: var(--white); }

/* ---- Navigation ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.nav-menu a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  border-radius: 5px;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--blue);
  background: rgba(21, 101, 192, 0.07);
}

/* Dropdown */
.nav-menu .has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 0.5rem 0;
  z-index: 100;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown a {
  display: block;
  padding: 0.5rem 1.1rem;
  font-size: 0.86rem;
  color: var(--gray-800);
  border-radius: 0;
}

.dropdown a:hover { background: var(--gray-50); color: var(--blue); }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 50%, #0d3060 100%);
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 800"><defs><radialGradient id="g" cx="60%" cy="40%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.04"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><rect width="1440" height="800" fill="url(%23g)"/><circle cx="1100" cy="200" r="400" fill="%231565c0" opacity="0.15"/><circle cx="200" cy="600" r="300" fill="%233a9fd8" opacity="0.08"/></svg>') center/cover;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(58, 159, 216, 0.2);
  border: 1px solid rgba(58, 159, 216, 0.4);
  color: var(--sky);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-style: italic;
}

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

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.25rem;
  max-width: 560px;
}
.hero-desc p { color: rgba(255,255,255,0.8); }

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

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.stat-item { text-align: left; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---- Featured Destinations Grid ---- */
.destinations-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--gray-200);
  aspect-ratio: 4/3;
}

.dest-card.large {
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.dest-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.dest-card:hover .dest-card-bg { transform: scale(1.06); }

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
}

.dest-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 1;
}

.dest-card-region {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.3rem;
}

.dest-card-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
}

.dest-card.large .dest-card-name { font-size: 2rem; }

.dest-card-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.3rem;
}

/* Gradient placeholders for destinations */
.bg-santorini { background: linear-gradient(135deg, #1e3c72, #2a5298, #3a7bd5); }
.bg-kyoto { background: linear-gradient(135deg, #c94b4b, #4b134f, #8a2387); }
.bg-patagonia { background: linear-gradient(135deg, #1a6b3c, #0d4f2f, #2e8b57); }
.bg-morocco { background: linear-gradient(135deg, #c94b4b, #e8a020, #c55a0e); }
.bg-newzealand { background: linear-gradient(135deg, #1565c0, #0d3060, #1e88e5); }
.bg-peru { background: linear-gradient(135deg, #2d6a4f, #1b4332, #40916c); }

/* ---- Article Cards ---- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.article-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.article-thumb {
  height: 210px;
  overflow: hidden;
  background: var(--gray-200);
}

.article-thumb-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.article-card:hover .article-thumb-bg { transform: scale(1.05); }

.article-body { padding: 1.4rem; }

.article-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 0.5rem;
}

.article-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.article-title a { color: inherit; }
.article-title a:hover { color: var(--blue); }

.article-excerpt {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}
.article-excerpt p { color: var(--gray-600); margin: 0; }

.article-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--gray-400);
}

.article-meta-dot { width: 3px; height: 3px; background: var(--gray-400); border-radius: 50%; }

/* ---- Travel Tips ---- */
.tips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.tip-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.tip-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.tip-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.tip-content h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.tip-content p { font-size: 0.88rem; color: var(--gray-600); margin: 0; }

/* ---- Categories Banner ---- */
.categories-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  text-decoration: none;
}

.cat-pill:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* ---- Popular Destinations Scroll ---- */
.popular-scroll {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pop-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  background: var(--gray-200);
  cursor: pointer;
}

.pop-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.pop-card:hover .pop-card-bg { transform: scale(1.06); }

.pop-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}

.pop-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 1;
}

.pop-card-country {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.2rem;
}

.pop-card-city {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}

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

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

.guide-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.guide-header {
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, var(--navy), #1565c0);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.guide-header::before {
  content: attr(data-emoji);
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.5rem;
  opacity: 0.2;
}

.guide-header h4 { color: var(--white); font-size: 1.15rem; }
.guide-header p { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin: 0.3rem 0 0; }

.guide-body { padding: 1.25rem 1.5rem; }

.guide-links { list-style: none; padding: 0; margin: 0; }

.guide-links li {
  border-bottom: 1px solid var(--gray-100);
  margin: 0;
}

.guide-links li:last-child { border-bottom: none; }

.guide-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  font-size: 0.87rem;
  color: var(--gray-800);
  transition: var(--transition);
}

.guide-links a:hover { color: var(--blue); padding-left: 0.4rem; }

/* ---- Newsletter ---- */
.newsletter-inner {
  background: linear-gradient(135deg, var(--navy) 0%, #1565c0 100%);
  border-radius: 16px;
  padding: 4rem;
  display: flex;
  align-items: center;
  gap: 4rem;
  overflow: hidden;
  position: relative;
}

.newsletter-inner::before {
  content: '✈';
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 8rem;
  opacity: 0.07;
  pointer-events: none;
}

.newsletter-copy { flex: 1; }
.newsletter-copy h2 { color: var(--white); margin-bottom: 0.75rem; }
.newsletter-copy p { color: rgba(255,255,255,0.8); margin: 0; font-size: 1rem; }

.newsletter-form { flex: 1; }

.form-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.form-group input[type="email"],
.form-group input[type="text"],
input[type="email"],
input[type="text"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}

.newsletter-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}

/* ---- Author Card ---- */
.author-card {
  background: var(--white);
  border-radius: 16px;
  padding: 3rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.author-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  flex-shrink: 0;
  border: 4px solid var(--gray-100);
}

.author-info h3 { margin-bottom: 0.3rem; }
.author-role { font-size: 0.85rem; color: var(--sky); font-weight: 600; margin-bottom: 0.75rem; }
.author-bio { font-size: 0.95rem; color: var(--gray-600); margin-bottom: 1.25rem; }
.author-bio p { color: var(--gray-600); margin: 0; }

.author-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.author-stat { text-align: center; }
.author-stat strong { display: block; font-size: 1.4rem; color: var(--navy); font-family: var(--font-display); }
.author-stat span { font-size: 0.78rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---- FAQ ---- */
.faq-list { max-width: 780px; margin: 0 auto; }

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

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}

.faq-q:hover { color: var(--blue); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--blue);
  font-weight: 700;
}

.faq-item.open .faq-icon {
  background: var(--blue);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-a p { color: var(--gray-600); margin: 0; }
.faq-item.open .faq-a { display: block; }

/* ---- Footer ---- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

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

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.6); margin-bottom: 1.25rem; }

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 1.1rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }

.social-links { display: flex; gap: 0.75rem; }

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover { background: var(--sky); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); margin: 0; }

.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}

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

/* ---- Inner Page Layout ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1565c0 100%);
  padding: 4.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(58,159,216,0.15) 0%, transparent 70%);
}

.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0.75rem auto 0; position: relative; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }

.prose {
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.prose h2 { margin: 2.5rem 0 1rem; color: var(--navy); }
.prose h3 { margin: 1.75rem 0 0.75rem; }
.prose p { color: var(--gray-800); margin-bottom: 1.1rem; }
.prose ul, .prose ol { margin-bottom: 1.1rem; }
.prose li { color: var(--gray-800); }
.prose a { color: var(--blue); }
.prose a:hover { text-decoration: underline; }

.prose .last-updated {
  background: var(--gray-50);
  border-left: 3px solid var(--sky);
  padding: 0.75rem 1.1rem;
  font-size: 0.85rem;
  color: var(--gray-600);
  border-radius: 0 5px 5px 0;
  margin-bottom: 2rem;
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  padding: 4rem 0;
}

.contact-form-wrap { }

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

.contact-form .form-field { margin-bottom: 1rem; }

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

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

.contact-info-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.contact-info-card h3 { margin-bottom: 1rem; }

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

.contact-detail-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-detail-text strong { display: block; font-size: 0.85rem; color: var(--navy); margin-bottom: 0.1rem; }
.contact-detail-text span { font-size: 0.9rem; color: var(--gray-600); }

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

.sitemap-section h3 { margin-bottom: 0.75rem; font-size: 1rem; color: var(--blue); }
.sitemap-section ul { list-style: none; padding: 0; }
.sitemap-section li { margin-bottom: 0.4rem; }
.sitemap-section a { font-size: 0.9rem; }

/* ---- Accessibility skip link ---- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
  .popular-scroll { grid-template-columns: repeat(3, 1fr); }
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .dest-card.large { grid-row: auto; aspect-ratio: 4/3; }
}

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

  .nav-menu { display: none; flex-direction: column; width: 100%; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow-md); padding: 1rem 1.25rem; gap: 0; z-index: 999; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 0.65rem 0.5rem; }
  .dropdown { position: static; box-shadow: none; border: none; background: var(--gray-50); border-radius: 6px; margin: 0.25rem 0; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .mobile-toggle { display: flex; }
  .nav-inner { flex-wrap: wrap; position: relative; }
  .nav-actions { display: none; }

  .hero { min-height: auto; padding: 4rem 0; }
  .hero-stats { gap: 1.5rem; }
  .stat-number { font-size: 1.5rem; }

  .destinations-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr; }
  .popular-scroll { grid-template-columns: repeat(2, 1fr); }
  .guides-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .newsletter-inner { flex-direction: column; padding: 2.5rem 1.75rem; gap: 2rem; }
  .newsletter-inner::before { display: none; }
  .form-group { flex-direction: column; }

  .author-card { flex-direction: column; text-align: center; padding: 2rem; gap: 1.5rem; }
  .author-stats { justify-content: center; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

@media (max-width: 480px) {
  .popular-scroll { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}

/* ---- Print ---- */
@media print {
  .site-header, .site-footer, #cookie-banner, .hero-actions, .newsletter-inner { display: none; }
}
