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

:root {
  --color-primary: #1a73e8;
  --color-primary-dark: #1557b0;
  --color-accent: #ff6b35;
  --color-text: #1a1a2e;
  --color-text-secondary: #555;
  --color-text-light: #777;
  --color-bg: #fff;
  --color-bg-alt: #f5f7fa;
  --color-bg-dark: #1a1a2e;
  --color-border: #e0e4e8;
  --color-success: #27ae60;
  --color-danger: #e74c3c;

  --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

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

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--color-primary-dark);
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  height: 60px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.header__logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
}

.header__logo:hover {
  color: var(--color-primary);
}

.header__nav {
  display: flex;
  gap: 24px;
}

.header__nav a {
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
}

.header__nav a:hover {
  color: var(--color-primary);
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  margin-top: 60px;
  background: linear-gradient(135deg, #0f4c8a 0%, #1a73e8 40%, #36a3f7 100%);
  color: #fff;
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center / cover;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__breadcrumbs {
  font-size: 13px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.hero__breadcrumbs a {
  color: #fff;
  opacity: 0.8;
}

.hero__breadcrumbs a:hover {
  opacity: 1;
}

.hero__breadcrumbs span {
  opacity: 0.6;
}

.hero__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 20px;
  max-width: 640px;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 40px;
}

.hero__facts {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero__fact {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  min-width: 140px;
}

.hero__fact-value {
  font-size: 24px;
  font-weight: 700;
}

.hero__fact-label {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 2px;
}

/* ===== STICKY NAV ===== */
.sticky-nav {
  position: sticky;
  top: 60px;
  z-index: 90;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.sticky-nav__list {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 4px;
}

.sticky-nav__list::-webkit-scrollbar {
  display: none;
}

.sticky-nav__link {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-secondary);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.sticky-nav__link:hover,
.sticky-nav__link.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

/* ===== SECTIONS ===== */
.section {
  padding: 64px 0;
}

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

.section__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}

.section__intro {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.section__more {
  text-align: center;
  margin-top: 36px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ===== ICON CARD (shared component) ===== */
.icon-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}

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

.icon-card__icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.icon-card__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.icon-card__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.icon-card--feature .icon-card__title {
  font-size: 18px;
}

.icon-card--overview {
  background: var(--color-bg-alt);
}

/* ===== FEATURES GRID (Why Adler) ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== DISTRICTS ===== */
.districts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.district-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.district-card:hover {
  box-shadow: var(--shadow-md);
}

.district-card__img {
  height: 180px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.district-card__img--imeretinka { background: linear-gradient(135deg, #1a73e8 0%, #36a3f7 100%); }
.district-card__img--center { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.district-card__img--kurortny { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.district-card__img--sovhoz { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }

.district-card__body {
  padding: 24px;
}

.district-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.district-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.district-card__tag--premium { background: #e3f2fd; color: #1565c0; }
.district-card__tag--budget { background: #e8f5e9; color: #2e7d32; }
.district-card__tag--health { background: #f3e5f5; color: #7b1fa2; }
.district-card__tag--quiet { background: #fff8e1; color: #f57f17; }

.district-card__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  margin-bottom: 14px;
  line-height: 1.5;
}

.district-card__meta {
  list-style: none;
  font-size: 14px;
  margin-bottom: 14px;
}

.district-card__meta li {
  padding: 3px 0;
}

.district-card__pros-cons {
  font-size: 13px;
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.plus { color: var(--color-success); font-weight: 700; margin-right: 4px; }
.minus { color: var(--color-danger); font-weight: 700; margin-right: 4px; }

/* ===== ATTRACTIONS ===== */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.attraction-card {
  display: flex;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

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

.attraction-card__img {
  width: 180px;
  min-height: 160px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.attraction-card__img--olymp { background: linear-gradient(135deg, #1a73e8, #00c6fb); }
.attraction-card__img--sochipark { background: linear-gradient(135deg, #f5576c, #ff6b35); }
.attraction-card__img--skypark { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.attraction-card__img--naberezhnaya { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.attraction-card__img--yuzhnye { background: linear-gradient(135deg, #43e97b, #667eea); }
.attraction-card__img--ocean { background: linear-gradient(135deg, #0052d4, #4364f7); }
.attraction-card__img--cave { background: linear-gradient(135deg, #8B4513, #D2691E); }
.attraction-card__img--krasnaya { background: linear-gradient(135deg, #e8e8e8, #95c8f0); }
.attraction-card__img--forel { background: linear-gradient(135deg, #00b4db, #0083b0); }
.attraction-card__img--tesla { background: linear-gradient(135deg, #f7971e, #ffd200); }

.attraction-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.attraction-card__category {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.attraction-card__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.attraction-card__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ===== BEACHES ===== */
.beach-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.beach-filter {
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  background: var(--color-bg);
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-text-secondary);
}

.beach-filter:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.beach-filter.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

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

.beach-card {
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.beach-card.hidden {
  display: none;
}

.beach-card:hover {
  box-shadow: var(--shadow-md);
}

.beach-card__img {
  height: 160px;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.beach-card__img--mandarin { background: linear-gradient(135deg, #f7971e, #ffd200); }
.beach-card__img--chayka { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.beach-card__img--barrakuda { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.beach-card__img--imeretinka { background: linear-gradient(135deg, #1a73e8, #36a3f7); }
.beach-card__img--ogonek { background: linear-gradient(135deg, #f093fb, #f5576c); }
.beach-card__img--fregat { background: linear-gradient(135deg, #a8c0ff, #3f2b96); }

.beach-card__body {
  padding: 20px;
}

.beach-card__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.beach-card__meta {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.beach-card__type,
.beach-card__infra {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: 16px;
  background: var(--color-bg-alt);
  color: var(--color-text-secondary);
}

.beach-card__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ===== ACCOMMODATION ===== */
.accommodation-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--color-border);
}

.accommodation-tab {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-secondary);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.accommodation-tab:hover {
  color: var(--color-primary);
}

.accommodation-tab.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.accommodation-panel {
  display: none;
}

.accommodation-panel.active {
  display: block;
}

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

.accommodation-tier {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.accommodation-tier__label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.accommodation-tier__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.accommodation-tier__desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ===== KIDS ===== */
.kids-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kid-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
}

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

.kid-card__icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.kid-card__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.kid-card__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.kid-card__age {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-bg-alt);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 16px;
  color: var(--color-text-light);
}

/* ===== TRANSPORT TABLE ===== */
.transport-table-wrap,
.weather-table-wrap,
.prices-table-wrap {
  overflow-x: auto;
  margin-bottom: 32px;
}

.transport-table,
.weather-table,
.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.transport-table th,
.weather-table th,
.prices-table th {
  background: var(--color-primary);
  color: #fff;
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.transport-table th:first-child,
.weather-table th:first-child,
.prices-table th:first-child {
  border-radius: var(--radius-sm) 0 0 0;
}

.transport-table th:last-child,
.weather-table th:last-child,
.prices-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.transport-table td,
.weather-table td,
.prices-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}

.transport-table tbody tr:hover,
.weather-table tbody tr:hover,
.prices-table tbody tr:hover {
  background: var(--color-bg-alt);
}

.weather-table__peak {
  background: #fffde7 !important;
}

.weather-table__peak:hover {
  background: #fff9c4 !important;
}

.prices-table__total {
  background: var(--color-bg-alt);
  font-weight: 600;
}

/* Weather tags */
.weather-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 16px;
}

.weather-tag--beach { background: #e3f2fd; color: #1565c0; }
.weather-tag--velvet { background: #fff8e1; color: #f57f17; }
.weather-tag--excursion { background: #e8f5e9; color: #2e7d32; }
.weather-tag--ski { background: #e8eaf6; color: #283593; }
.weather-tag--off { background: #fce4ec; color: #c62828; }

/* When to go */
.when-to-go {
  margin-top: 32px;
}

.when-to-go__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.when-to-go__grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.when-to-go__item {
  flex: 1;
  min-width: 180px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.when-to-go__item strong {
  font-size: 14px;
}

.when-to-go__item span {
  font-size: 15px;
  color: var(--color-primary);
  font-weight: 600;
}

/* ===== INNER TRANSPORT ===== */
.inner-transport {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.inner-transport__title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

.inner-transport__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.inner-transport__item {
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.inner-transport__item h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.inner-transport__item p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

/* ===== FOOD ===== */
.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.food-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}

.food-card:hover {
  box-shadow: var(--shadow-md);
}

.food-card--highlight {
  border-color: var(--color-accent);
  border-width: 2px;
}

.food-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.food-card__price {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.food-card__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ===== HEALTH ===== */
.health-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.health-card {
  background: var(--color-bg-alt);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 24px;
}

.health-card__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.health-card__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ===== EXCURSIONS ===== */
.excursions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.excursion-card {
  display: flex;
  background: var(--color-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.excursion-card__img {
  width: 200px;
  min-height: 180px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.excursion-card__img--krasnaya { background: linear-gradient(135deg, #e8e8e8, #95c8f0); }
.excursion-card__img--abhazia { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.excursion-card__img--skypark2 { background: linear-gradient(135deg, #f7971e, #ffd200); }
.excursion-card__img--sochi { background: linear-gradient(135deg, #f093fb, #f5576c); }

.excursion-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.excursion-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.excursion-card__distance {
  font-size: 13px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.excursion-card__text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ===== SEASONS ===== */
.seasons-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 28px;
}

.season-tab {
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-bg-alt);
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-text-secondary);
}

.season-tab:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.season-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.season-panel {
  display: none;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 32px;
}

.section--alt .season-panel {
  background: var(--color-bg);
}

.season-panel.active {
  display: block;
}

.season-panel h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.season-panel p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.season-panel a {
  font-weight: 600;
  font-size: 15px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
}

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

.faq-item__question {
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--color-text-light);
  transition: var(--transition);
}

.faq-item[open] .faq-item__question::after {
  content: '\2212';
}

.faq-item__answer {
  padding-bottom: 20px;
}

.faq-item__answer p {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ===== CROSSLINKS ===== */
.crosslinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.crosslink-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: var(--transition);
}

.crosslink-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow);
}

.crosslink-card__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 4px;
}

.crosslink-card:hover .crosslink-card__title {
  color: var(--color-primary);
}

.crosslink-card__desc {
  font-size: 13px;
  color: var(--color-text-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-dark);
  color: #ccc;
  padding-top: 48px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__heading {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer__text {
  font-size: 14px;
  line-height: 1.6;
  color: #999;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: 14px;
  color: #999;
  transition: var(--transition);
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 13px;
  color: #666;
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.98);
  z-index: 95;
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

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

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .attractions-grid {
    grid-template-columns: 1fr;
  }

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

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

  .crosslinks-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 768px) {
  .header__nav {
    display: none;
  }

  .header__burger {
    display: flex;
  }

  .hero {
    padding: 40px 0 50px;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__facts {
    gap: 12px;
  }

  .hero__fact {
    padding: 12px 16px;
    min-width: 120px;
  }

  .hero__fact-value {
    font-size: 18px;
  }

  .section {
    padding: 40px 0;
  }

  .section__title {
    font-size: 26px;
  }

  .features-grid,
  .districts-grid,
  .beaches-grid,
  .accommodation-grid,
  .kids-grid,
  .food-grid,
  .health-grid,
  .excursions-grid {
    grid-template-columns: 1fr;
  }

  .attraction-card {
    flex-direction: column;
  }

  .attraction-card__img {
    width: 100%;
    height: 140px;
  }

  .excursion-card {
    flex-direction: column;
  }

  .excursion-card__img {
    width: 100%;
    height: 160px;
  }

  .inner-transport__grid {
    grid-template-columns: 1fr;
  }

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

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .accommodation-tabs,
  .seasons-tabs {
    flex-wrap: wrap;
  }

  .when-to-go__grid {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }

  .hero__facts {
    flex-direction: column;
    gap: 8px;
  }

  .hero__fact {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .crosslinks-grid {
    grid-template-columns: 1fr;
  }

  .beaches-grid {
    grid-template-columns: 1fr;
  }
}
