/* ═══════════════════════════════════════════════════════════════════════
   Мой первый Петербург — Design System
   Шрифты: Cormorant Garamond (display) + Raleway (text)
   Цвета:  Navy deep + Gold warm + White cream
   ═══════════════════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────────────────── */
:root {
  --gold:        #C9973A;
  --gold-light:  #E8C06A;
  --gold-dark:   #9A6E1F;
  --gold-bg:     #FDF8EF;
  --navy:        #0D1B2A;
  --navy-mid:    #162638;
  --navy-soft:   #1E3A52;
  --cream:       #FDFAF5;
  --cream-dark:  #F0EAE0;
  --text:        #1A1410;
  --text-mid:    #4A3F34;
  --text-light:  #8B7B6A;
  --border:      #E4D9CC;
  --white:       #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;

  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow-md:   0 6px 28px rgba(0,0,0,0.11);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.16);
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Base ───────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Utility ────────────────────────────────────────────────────────── */
.now-year { display: none; } /* filled by JS */

/* ── NAVBAR ─────────────────────────────────────────────────────────── */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 900; }

#mainNav {
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(13,27,42,.96) 0%, rgba(13,27,42,.7) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#mainNav.nav-scrolled {
  background: rgba(13,27,42,.98);
  padding: .6rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

/* Brand */
.navbar-brand { display: flex; flex-direction: column; line-height: 1.15; text-decoration: none; }
.brand-first  { font-family: var(--font-body); font-weight: 300; font-size: .78rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); }
.brand-city   { font-family: var(--font-display); font-size: 1.45rem; font-style: italic; color: var(--white); letter-spacing: .5px; }

/* Nav links */
.navbar-nav .nav-link {
  color: rgba(255,255,255,.82) !important;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: .5rem .85rem !important;
  transition: color var(--transition);
}
.navbar-nav .nav-link:hover { color: var(--gold-light) !important; }

/* Navbar buttons */
.btn-search {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.75);
  font-size: 1rem; padding: .45rem .6rem;
  transition: color var(--transition);
}
.btn-search:hover { color: var(--gold-light); }

.btn-cta {
  background: var(--gold);
  color: var(--white) !important;
  border: none; cursor: pointer;
  font-family: var(--font-body);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  padding: .55rem 1.3rem;
  border-radius: 50px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,151,58,.4);
}

/* Toggler */
.navbar-toggler { border: none; padding: .4rem; outline: none; }
.toggler-icon { color: var(--white); font-size: 1.5rem; }

/* ── HERO SECTION ───────────────────────────────────────────────────── */
.hero-section { position: relative; overflow: hidden; }

.hero-slider { position: relative; height: 100vh; min-height: 600px; }

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,.3) 0%,
    rgba(13,27,42,.55) 50%,
    rgba(13,27,42,.75) 100%
  );
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-slide-inner {
  position: absolute; inset: 0;
  z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  padding-top: 80px;
}

.hero-badge {
  display: inline-block;
  border: 1px solid rgba(201,151,58,.7);
  color: var(--gold-light);
  font-size: .7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  padding: .35rem 1.2rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.hero-title em { font-style: italic; color: var(--gold-light); font-weight: 600; }
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,.88);
  font-weight: 300;
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Slider controls */
.hero-controls {
  position: absolute; bottom: 8rem; left: 50%; transform: translateX(-50%);
  z-index: 10;
  display: flex; align-items: center; gap: 1rem;
}
.hero-btn-prev, .hero-btn-next {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.hero-btn-prev:hover, .hero-btn-next:hover { background: rgba(201,151,58,.5); }
.hero-dots { display: flex; gap: .5rem; }
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer; border: none;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active { background: var(--gold-light); transform: scale(1.3); }

/* Hero stats */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10;
  background: rgba(13,27,42,.88);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,151,58,.25);
}
.hero-stats-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0;
}
.hstat {
  display: flex; flex-direction: column; align-items: center;
  padding: 1.2rem 2.5rem;
}
.hstat-num {
  font-family: var(--font-display);
  font-size: 1.7rem; font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hstat-label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-top: .3rem;
}
.hstat-divider {
  width: 1px; height: 40px;
  background: rgba(201,151,58,.2);
  flex-shrink: 0;
}

/* ── BUTTONS ────────────────────────────────────────────────────────── */
.btn-hero-primary {
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .88rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: .9rem 2.4rem; border-radius: 50px;
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201,151,58,.45);
  text-decoration: none; display: inline-block;
}
.btn-hero-primary:hover {
  background: var(--gold-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,151,58,.5);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: .88rem; font-weight: 600;
  letter-spacing: .6px;
  padding: .9rem 2.2rem; border-radius: 50px;
  border: 2px solid rgba(255,255,255,.5);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none; display: inline-block;
}
.btn-hero-outline:hover {
  border-color: var(--white); color: var(--white);
  background: rgba(255,255,255,.1);
}

.btn-solid-gold {
  display: inline-block;
  background: var(--gold); color: var(--white);
  font-weight: 700; font-size: .88rem;
  padding: .75rem 1.8rem; border-radius: 50px; border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  box-shadow: 0 3px 14px rgba(201,151,58,.35);
}
.btn-solid-gold:hover {
  background: var(--gold-dark); color: var(--white);
  transform: translateY(-2px); box-shadow: 0 6px 22px rgba(201,151,58,.45);
}
.btn-outline-gold {
  display: inline-block;
  background: transparent; color: var(--gold-dark);
  font-weight: 700; font-size: .88rem;
  padding: .72rem 1.7rem; border-radius: 50px;
  border: 2px solid var(--gold); cursor: pointer;
  transition: all var(--transition); text-decoration: none;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ── SECTIONS ───────────────────────────────────────────────────────── */
.section-light   { background: var(--cream-dark); }
.section-white   { background: var(--white); }
.section-dark    { background: var(--navy); }
.section-gold-bg { background: var(--gold-bg); }

.tours-section, .about-section, .regions-section,
.cert-section, .contact-section { padding: 5rem 0; }

.section-header { margin-bottom: 3rem; }
.section-tag {
  font-size: .7rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--gold-dark); font-weight: 600; }
.section-dark .section-title { color: var(--white); }
.section-sub { color: var(--text-light); max-width: 540px; margin-top: .75rem; }

/* ── ABOUT SECTION ──────────────────────────────────────────────────── */
.about-img-frame { position: relative; display: inline-block; width: 100%; }
.about-img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute; bottom: -1.5rem; right: -1rem;
  background: var(--navy); color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  display: flex; align-items: center; gap: .7rem;
  box-shadow: var(--shadow-md);
  font-size: .82rem; line-height: 1.4;
}
.about-img-badge i { font-size: 1.5rem; color: var(--gold-light); flex-shrink: 0; }
.about-text { color: var(--text-mid); margin-bottom: 1rem; font-size: 1.03rem; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .8rem; margin-top: 1.5rem;
}
.af-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; font-weight: 600; color: var(--text-mid);
}
.af-item i { color: var(--gold); font-size: 1rem; }

/* ── TOUR CARDS ─────────────────────────────────────────────────────── */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.tour-card__img-link { display: block; text-decoration: none; }
.tour-card__img-wrap { overflow: hidden; position: relative; aspect-ratio: 16/10; }
.tour-card__img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.tour-card:hover .tour-card__img { transform: scale(1.06); }
.tour-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.3) 0%, transparent 60%);
}
.tour-card__price-badge {
  position: absolute; top: .9rem; right: .9rem;
  background: var(--gold);
  color: var(--white);
  font-size: .75rem; font-weight: 700;
  padding: .3rem .85rem; border-radius: 50px;
  letter-spacing: .3px;
}
.tour-card__body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; gap: .7rem; }
.tour-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600; line-height: 1.25;
}
.tour-card__title a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
.tour-card__title a:hover { color: var(--gold-dark); }
.tour-card__desc { color: var(--text-light); font-size: .88rem; line-height: 1.55; flex: 1; }
.tour-card__meta { display: flex; flex-wrap: wrap; gap: .5rem; }
.tour-meta-item {
  font-size: .78rem; color: var(--text-light); font-weight: 600;
  display: flex; align-items: center; gap: .3rem;
}
.tour-card__actions { display: flex; gap: .6rem; margin-top: auto; }
.btn-tour-detail {
  flex: 1; text-align: center;
  padding: .6rem; border-radius: 50px;
  font-size: .82rem; font-weight: 700;
  border: 2px solid var(--border); color: var(--text-mid);
  text-decoration: none;
  transition: all var(--transition);
}
.btn-tour-detail:hover { border-color: var(--gold); color: var(--gold-dark); }
.btn-tour-book {
  flex: 1; padding: .6rem;
  background: var(--navy); color: var(--white);
  border: none; border-radius: 50px;
  font-size: .82rem; font-weight: 700; cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font-body);
}
.btn-tour-book:hover { background: var(--gold-dark); }

/* ── REGION CARDS ───────────────────────────────────────────────────── */
.region-card {
  display: block; position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/9;
  text-decoration: none;
}
.region-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.region-card:hover img { transform: scale(1.06); }
.region-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.82) 0%, rgba(13,27,42,.2) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 2rem;
  color: var(--white);
  transition: background var(--transition);
}
.region-card:hover .region-card__overlay { background: linear-gradient(to top, rgba(13,27,42,.92) 0%, rgba(13,27,42,.35) 60%); }
.region-card__overlay h3 {
  font-family: var(--font-display); font-size: 1.9rem;
  font-style: italic; margin-bottom: .3rem;
}
.region-card__overlay p { font-size: .9rem; opacity: .8; margin-bottom: .8rem; }
.region-card__link {
  font-size: .78rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold-light);
}

/* ── CERTIFICATE SECTION ────────────────────────────────────────────── */
.cert-card {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cert-card__image img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.cert-card__content {
  padding: 3.5rem;
  background: var(--navy); color: var(--white);
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
}
.cert-card__content .section-title { color: var(--white); }
.cert-list { list-style: none; margin: 1rem 0; display: flex; flex-direction: column; gap: .7rem; }
.cert-list li { display: flex; align-items: center; gap: .75rem; font-size: 1rem; color: rgba(255,255,255,.88); }
.cert-list i { color: var(--gold-light); flex-shrink: 0; }

/* ── CONTACT SECTION ────────────────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-card__header { text-align: center; margin-bottom: 2rem; }
.contact-icon { font-size: 2.5rem; color: var(--gold); display: block; margin-bottom: .8rem; }
.contact-card__header h3 {
  font-family: var(--font-display); font-size: 1.75rem;
  color: var(--navy); margin-bottom: .4rem;
}
.contact-card__header p { color: var(--text-light); font-size: .95rem; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.cf-field { display: flex; flex-direction: column; gap: .3rem; }
.cf-field input, .cf-field textarea {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-body); font-size: .95rem;
  color: var(--text);
  transition: border-color var(--transition);
  width: 100%;
  background: var(--cream);
}
.cf-field input:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--gold);
  background: var(--white);
}
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  padding: 1rem; border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 18px rgba(201,151,58,.35);
}
.cf-submit:hover { transform: translateY(-2px); box-shadow: 0 7px 24px rgba(201,151,58,.45); }
.contact-success {
  display: flex; align-items: center; gap: .8rem;
  background: #E8F5E9; border: 1px solid #A5D6A7;
  border-radius: var(--radius); padding: 1rem 1.3rem;
  color: #2E7D32; font-weight: 600; margin-top: 1rem;
}
.contact-success i { font-size: 1.4rem; flex-shrink: 0; }

/* ── TOUR HERO ──────────────────────────────────────────────────────── */
.tour-hero {
  position: relative; min-height: 65vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.tour-hero__bg { position: absolute; inset: 0; }
.tour-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.tour-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.88) 0%, rgba(13,27,42,.35) 50%, rgba(13,27,42,.1) 100%);
}
.tour-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,.9) 0%, rgba(13,27,42,.4) 45%, transparent 100%);
}
.tour-hero__content {
  position: relative; z-index: 2;
  width: 100%; padding: 5rem 0 3rem;
  margin-top: 80px;
}
.tour-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.65); text-decoration: none; }
.tour-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.tour-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.tour-hero__title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.tour-hero__meta { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.tour-hero__meta span {
  display: flex; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 600;
}

/* ── TOUR DETAIL ────────────────────────────────────────────────────── */
.tour-section { padding-bottom: 2.5rem; }
.tour-section__title {
  font-family: var(--font-display); font-size: 1.75rem;
  color: var(--navy); margin-bottom: 1.2rem;
  padding-bottom: .7rem;
  border-bottom: 2px solid var(--border);
}
.reviews-count { font-size: 1.2rem; color: var(--text-light); font-weight: 400; }
.tour-description, .tour-program { color: var(--text-mid); line-height: 1.75; font-size: 1.02rem; }

/* Reviews */
.reviews-list { display: flex; flex-direction: column; gap: 1.2rem; }
.review-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 1.5rem; border-left: 3px solid var(--gold);
}
.review-stars { color: var(--gold); font-size: .9rem; margin-bottom: .7rem; }
.review-text { font-style: italic; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.6; }
.review-author { display: flex; align-items: center; gap: .8rem; }
.review-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem;
  color: var(--white); font-weight: 700; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: .9rem; }
.review-date { color: var(--text-light); font-size: .78rem; }

/* Review form */
.review-form-card { background: var(--cream); border-radius: var(--radius-lg); padding: 1.8rem; }
.rf-input, .rf-select, .rf-textarea {
  width: 100%; border: 2px solid var(--border); border-radius: var(--radius);
  padding: .7rem 1rem; font-family: var(--font-body); font-size: .93rem;
  color: var(--text); background: var(--white);
  transition: border-color var(--transition);
}
.rf-input:focus, .rf-select:focus, .rf-textarea:focus { outline: none; border-color: var(--gold); }
.rf-textarea { min-height: 90px; resize: vertical; }
.rf-submit {
  background: var(--navy); color: var(--white); border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .88rem; font-weight: 700;
  padding: .7rem 1.8rem; border-radius: 50px;
  transition: background var(--transition);
}
.rf-submit:hover { background: var(--gold-dark); }
.rf-success {
  background: #E8F5E9; border: 1px solid #A5D6A7;
  border-radius: var(--radius); padding: .9rem 1.2rem;
  color: #2E7D32; font-weight: 600; margin-top: 1rem;
}

/* ── BOOKING SIDEBAR ────────────────────────────────────────────────── */
.booking-sidebar { position: sticky; top: 100px; }
.bs-header {
  background: var(--navy); color: var(--white);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 1.5rem;
}
.bs-title { font-family: var(--font-display); font-size: 1.4rem; font-style: italic; margin-bottom: .4rem; }
.bs-price { color: var(--gold-light); font-weight: 700; font-size: 1.15rem; }
.bs-details {
  background: var(--cream); padding: 1.2rem;
  border: 1px solid var(--border); border-top: none;
}
.bs-detail {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .55rem 0; font-size: .9rem; color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.bs-detail:last-child { border-bottom: none; }
.bs-detail i { color: var(--gold); flex-shrink: 0; margin-top: .1rem; }
.bs-dates {
  background: var(--cream); padding: 1rem 1.2rem;
  border: 1px solid var(--border); border-top: none;
}
.bs-dates-label { font-size: .8rem; font-weight: 700; color: var(--text-light); margin-bottom: .6rem; }
.bs-dates-grid { display: flex; flex-wrap: wrap; gap: .4rem; }
.bs-date-chip {
  background: rgba(201,151,58,.12); color: var(--gold-dark);
  border: 1px solid rgba(201,151,58,.3);
  font-size: .78rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 50px;
}
.bs-book-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .93rem; font-weight: 700;
  padding: 1rem;
  border-radius: 0;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 14px rgba(201,151,58,.35);
}
.bs-book-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 22px rgba(201,151,58,.45); }
.bs-contacts {
  display: flex; flex-direction: column; gap: .4rem;
  padding: 1rem 1.2rem; background: var(--cream);
  border: 1px solid var(--border); border-top: none;
}
.bs-contact-link {
  display: flex; align-items: center; gap: .6rem;
  font-size: .88rem; font-weight: 600; color: var(--text-mid);
  text-decoration: none; transition: color var(--transition);
  padding: .3rem 0;
}
.bs-contact-link:hover { color: var(--gold-dark); }
.bs-contact-link i { color: var(--gold); }
.bs-trust {
  background: var(--navy); color: rgba(255,255,255,.7);
  padding: 1rem 1.2rem;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  display: flex; flex-direction: column; gap: .5rem;
}
.bst-item { display: flex; align-items: center; gap: .6rem; font-size: .8rem; }
.bst-item i { color: var(--gold-light); }

/* ── ABOUT PAGE ─────────────────────────────────────────────────────── */
.doc-card {
  background: var(--cream); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  cursor: pointer; transition: box-shadow var(--transition);
}
.doc-card:hover { box-shadow: var(--shadow-md); }
.doc-card img { width: 100%; object-fit: contain; background: #f8f9fa; max-height: 380px; }
.doc-card--sm img { max-height: 200px; }
.doc-card__label { padding: .9rem 1.2rem; text-align: center; font-size: .9rem; }
.social-icon { color: var(--gold-dark); transition: color var(--transition), transform var(--transition); }
.social-icon:hover { color: var(--gold); transform: translateY(-3px); }
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: var(--white); text-align: center;
  padding: 3.5rem 2rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.cta-banner h2 { font-family: var(--font-display); font-size: 2rem; margin-bottom: .75rem; }
.cta-banner p  { opacity: .8; margin-bottom: 1.5rem; }

/* ── BOOKING MODAL ──────────────────────────────────────────────────── */
.modal-book-content {
  border: none; border-radius: var(--radius-lg);
  overflow: hidden; background: var(--white);
  position: relative;
}
.modal-close-btn {
  position: absolute; top: 1rem; right: 1rem; z-index: 10;
  background: rgba(255,255,255,.2); border: none; cursor: pointer;
  color: var(--white); width: 36px; height: 36px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.modal-close-btn:hover { background: rgba(255,255,255,.35); }
.modal-book-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  padding: 2.2rem 2rem 1.5rem; text-align: center;
}
.modal-book-icon { font-size: 2rem; color: var(--gold-light); margin-bottom: .7rem; }
.modal-book-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: .3rem; }
.modal-book-sub { color: rgba(255,255,255,.65); font-size: .88rem; margin: 0; }
.modal-book-body { padding: 1.8rem; }
.book-field { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1rem; }
.book-field label { font-size: .78rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--text-light); }
.book-field input, .book-field textarea {
  border: 2px solid var(--border); border-radius: var(--radius);
  padding: .7rem 1rem; font-family: var(--font-body); font-size: .95rem;
  color: var(--text); background: var(--cream);
  transition: border-color var(--transition); width: 100%;
}
.book-field input:focus, .book-field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.book-field textarea { min-height: 80px; resize: vertical; }
.book-submit {
  width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white); border: none; cursor: pointer;
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  padding: .95rem; border-radius: 50px; margin-top: .3rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 16px rgba(201,151,58,.35);
}
.book-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(201,151,58,.45); }
.modal-book-success {
  text-align: center; padding: 2.5rem 2rem;
}
.success-icon { font-size: 3rem; color: #4CAF50; margin-bottom: 1rem; }
.modal-book-success h5 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: .5rem; }
.modal-book-success p { color: var(--text-light); }

/* ── SEARCH MODAL ───────────────────────────────────────────────────── */
.modal-search-content { background: var(--navy); color: var(--white); border: none; border-radius: var(--radius-lg); }
.modal-search-content .modal-title { color: var(--white); }
.search-input-wrap { position: relative; }
.search-icon { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); color: var(--gold-light); font-size: 1rem; }
.search-field {
  width: 100%; border: 2px solid rgba(201,151,58,.4); border-radius: 50px;
  padding: .85rem 1rem .85rem 2.7rem;
  font-family: var(--font-body); font-size: .95rem;
  background: rgba(255,255,255,.08); color: var(--white);
  transition: border-color var(--transition);
}
.search-field::placeholder { color: rgba(255,255,255,.4); }
.search-field:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,.12); }
.search-results { display: flex; flex-direction: column; gap: .5rem; max-height: 340px; overflow-y: auto; }
.search-result-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: .8rem 1rem; border-radius: var(--radius);
  background: rgba(255,255,255,.07); text-decoration: none; color: var(--white);
  border: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition);
}
.search-result-item:hover { background: rgba(201,151,58,.2); color: var(--white); border-color: rgba(201,151,58,.4); }
.search-result-title { font-weight: 600; font-size: .93rem; }
.search-result-meta { font-size: .78rem; color: rgba(255,255,255,.5); }

/* ── FOOTER ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); }
.footer-top { padding: 4rem 0 3rem; }
.footer-brand { margin-bottom: .8rem; }
.footer-brand .brand-first { display: block; font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.45); }
.footer-brand .brand-city { display: block; font-family: var(--font-display); font-size: 1.6rem; font-style: italic; color: var(--gold-light); }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 1.2rem; line-height: 1.5; }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65); font-size: 1rem;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.footer-socials a:hover { background: var(--gold); color: var(--white); }
.footer-heading { color: var(--white); font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .88rem; text-decoration: none; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-light); }
.footer-contacts { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-contacts li { display: flex; align-items: center; gap: .6rem; font-size: .88rem; color: rgba(255,255,255,.55); }
.footer-contacts i { color: var(--gold); width: 14px; flex-shrink: 0; }
.footer-contacts a { color: rgba(255,255,255,.55); text-decoration: none; transition: color var(--transition); }
.footer-contacts a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 0;
  font-size: .8rem; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────────────────── */
.reveal-up    { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity .65s ease, transform .65s ease; }
.revealed { opacity: 1 !important; transform: none !important; }

/* ── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .booking-sidebar { position: static; }
  .cert-card { grid-template-columns: 1fr; }
  .cert-card__image img { min-height: 250px; }
  .cert-card__content { padding: 2rem; }
  .about-img-badge { right: 0; }
  .about-features { grid-template-columns: 1fr; }
  .hstat { padding: .9rem 1.5rem; }
}
@media (max-width: 767px) {
  .hero-slider { height: 85vh; min-height: 520px; }
  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-controls { bottom: 6.5rem; }
  .hstat-divider { display: none; }
  .hstat { padding: .8rem 1rem; }
  .hstat-num { font-size: 1.3rem; }
  .tours-section { padding: 3rem 0; }
  .cert-card__content { padding: 1.8rem 1.5rem; }
  .contact-card { padding: 1.8rem 1.5rem; }
  .about-section, .regions-section { padding: 3.5rem 0; }
}
@media (max-width: 575px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-hero-primary,
  .hero-actions .btn-hero-outline { width: 100%; max-width: 280px; text-align: center; }
  .tour-hero { min-height: 55vh; }
  .tour-hero__title { font-size: clamp(1.7rem, 8vw, 2.5rem); }
}

/* ── Reduced motion ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: none; }
  .tour-card { transition: none; }
}
