/* Silk Road Travel — v3.1 */
:root {
  --clay: #C67B4B;
  --clay-light: #D4956E;
  --gold: #C9A96E;
  --gold-light: #DCC89A;
  --sand: #E8D5B7;
  --sand-light: #F3E8D6;
  --cream: #FDF8F0;
  --cream-dark: #F5EDE1;
  --navy: #1B2A4A;
  --navy-light: #2D4068;
  --text: #2D2D2D;
  --text-light: #5A5A5A;
  --text-muted: #8A8A8A;
  --white: #FFFFFF;
  --border: #E0D5C7;
  --shadow-sm: 0 2px 12px rgba(27,42,74,0.06);
  --shadow-md: 0 8px 30px rgba(27,42,74,0.10);
  --shadow-lg: 0 20px 60px rgba(27,42,74,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body); color: var(--text);
  background: var(--cream); line-height: 1.6;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.reveal { opacity: 0; }
.reveal.visible { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Skip to content — accessibility */
.skip-to-content {
  position: absolute; top: -100px; left: 16px; z-index: 10000;
  background: var(--navy); color: var(--white); padding: 12px 24px;
  border-radius: var(--radius-sm); font-weight: 600; text-decoration: none;
  transition: top 0.2s ease;
}
.skip-to-content:focus { top: 8px; outline: 3px solid var(--gold); outline-offset: 2px; }

/* Header */
.header-top { background: var(--navy); color: var(--white); padding: 8px 0; font-size: 0.85rem; }
.header-top .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.header-top a { color: var(--gold-light); text-decoration: none; transition: var(--transition); }
.header-top a:hover { color: var(--white); }
.header-contact { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.header-contact span { display: flex; align-items: center; gap: 6px; }
.header-social { display: flex; gap: 12px; align-items: center; }
.header-social a { display: flex; align-items: center; gap: 4px; }
.header-main {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 0; box-shadow: var(--shadow-sm);
}
.header-main .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: nowrap; gap: 8px; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; flex-shrink: 0; }
.logo-text { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--navy); line-height: 1.1; white-space: nowrap; }
.logo-text small { display: block; font-size: 0.6rem; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }
.nav-links { display: flex; list-style: none; gap: 2px; flex-shrink: 0; }
.nav-links a {
  text-decoration: none; color: var(--text); padding: 6px 10px;
  border-radius: 6px; font-weight: 500; font-size: 0.85rem; transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--clay); background: var(--cream-dark); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); }

/* Hero (homepage) */
.hero { position: relative; height: 85vh; min-height: 560px; max-height: 800px; overflow: hidden; background-color: var(--navy); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,42,74,0.2) 0%, rgba(27,42,74,0.5) 100%); z-index: 1; }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,42,74,0.3) 0%, rgba(27,42,74,0.6) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); max-width: 800px; padding: 0 24px; }
.hero-content h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 16px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.hero-content p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 32px; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.hero-badge { display: inline-block; background: var(--gold); color: var(--navy); padding: 6px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 600; margin-bottom: 16px; }
.hero-controls { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 10px; }
.hero-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.4); border: 2px solid rgba(255,255,255,0.6); cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.3); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: var(--white); width: 44px; height: 44px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; backdrop-filter: blur(8px); transition: var(--transition); display: flex; align-items: center; justify-content: center; }
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }

/* Page hero (sub-pages) */
.page-hero { padding: 60px 0; background: var(--navy); color: var(--white); text-align: center; position: relative; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,42,74,0.7), rgba(27,42,74,0.9)); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-hero p { opacity: 0.85; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 100px; font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; text-decoration: none; cursor: pointer; border: none; transition: all var(--transition); white-space: nowrap; }
.btn-primary { background: var(--clay); color: var(--white); }
.btn-primary:hover { background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy); margin-bottom: 12px; line-height: 1.2; }
.section-dark .section-header h2 { color: var(--white); }
.section-header p { color: var(--text-light); font-size: 1.05rem; max-width: 640px; margin: 0 auto; }
.section-dark .section-header p { color: var(--sand); }
.section-header .divider { width: 60px; height: 3px; background: var(--clay); margin: 16px auto; border-radius: 2px; }

/* Tour cards */
.tour-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 28px; }
.tour-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card-img { height: 220px; position: relative; overflow: hidden; }
.tour-card-img .img-fill { width: 100%; height: 100%; object-fit: cover; }
.tour-card-duration { position: absolute; top: 12px; right: 12px; background: var(--navy); color: var(--white); padding: 4px 12px; border-radius: 100px; font-size: 0.8rem; font-weight: 600; }
.tour-card-body { padding: 20px 24px; }
.tour-card-body h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.tour-card-route { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 12px; display: flex; align-items: center; gap: 4px; }
.tour-card-features { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.tour-card-features span { font-size: 0.78rem; color: var(--clay); background: var(--cream-dark); padding: 3px 10px; border-radius: 4px; }
.tour-card-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 14px; }
.tour-price .current { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--clay); }
.tour-price .original { font-size: 0.85rem; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }
.tour-price .label { font-size: 0.75rem; color: var(--text-muted); display: block; }
.view-more { text-align: center; margin-top: 40px; }

/* Why Us */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.why-card { text-align: center; padding: 36px 24px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid transparent; }
.why-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon { width: 70px; height: 70px; margin: 0 auto 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; }
.why-icon.tailor { background: #FDF0E5; } .why-icon.expert { background: #E8F0FD; }
.why-icon.professional { background: #E6F4EE; } .why-icon.trusted { background: #F5EBF9; }
.why-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 24px; }
.review-card { background: var(--white); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold); transition: var(--transition); }
.review-card:hover { box-shadow: var(--shadow-md); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.review-body { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--clay); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; }
.review-author-info strong { display: block; color: var(--navy); font-size: 0.9rem; }
.review-author-info span { font-size: 0.8rem; color: var(--text-muted); }

/* Destinations */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.dest-card { position: relative; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1; cursor: pointer; transition: var(--transition); text-decoration: none; }
.dest-card img, .dest-card .img-placeholder { width: 100%; height: 100%; object-fit: cover; background: linear-gradient(135deg, var(--navy-light), var(--navy)); transition: var(--transition); }
.dest-card:hover img, .dest-card:hover .img-placeholder { transform: scale(1.08); }
.dest-card:hover { box-shadow: var(--shadow-lg); }
.dest-card:nth-child(2n) .img-placeholder { background: linear-gradient(135deg, var(--clay), var(--gold)); }
.dest-card:nth-child(3n) .img-placeholder { background: linear-gradient(135deg, var(--clay-light), var(--navy)); }
.dest-card:nth-child(5n) .img-placeholder { background: linear-gradient(135deg, var(--gold), var(--clay)); }
.dest-name { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: var(--white); font-weight: 600; font-size: 0.95rem; text-align: center; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.blog-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); text-decoration: none; color: inherit; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img { height: 180px; overflow: hidden; }
.blog-card-img .img-fill { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 20px; }
.blog-card-body h3 { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; line-height: 1.4; }
.blog-card-body .date { font-size: 0.82rem; color: var(--text-muted); }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, rgba(27,42,74,0.92) 0%, rgba(26,53,94,0.95) 100%), url('https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1200&q=80') center/cover;
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.cta-text h2 { font-family: var(--font-display); font-size: 2rem; color: var(--white); margin-bottom: 16px; }
.cta-text p { color: var(--sand); margin-bottom: 24px; font-size: 1rem; }
.cta-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.cta-feature { display: flex; align-items: center; gap: 8px; color: var(--gold-light); font-size: 0.9rem; }
.cta-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-lg); }
.cta-form h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.95rem; transition: var(--transition); background: var(--cream); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(198,123,75,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; justify-content: center; padding: 14px 28px; font-size: 1rem; }

/* Footer */
.footer { background: #111D34; color: var(--white); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--gold); margin-bottom: 16px; padding-bottom: 10px; position: relative; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--clay); }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-payment { display: flex; gap: 12px; align-items: center; }
.footer-payment span { padding: 4px 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* Breadcrumb — defined below under #Performance-Misc */

/* About page */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.intro-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.intro-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); }
.intro-image .deco { position: absolute; bottom: -20px; right: -20px; width: 120px; height: 120px; border: 2px solid var(--gold); border-radius: var(--radius-lg); z-index: -1; }
.intro-text h2 { font-family: var(--font-display); font-size: 2rem; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.intro-text p { color: var(--text-light); margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }
.intro-stats { display: flex; gap: 40px; margin-top: 24px; }
.intro-stat { text-align: center; }
.intro-stat .num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--clay); }
.intro-stat .label { font-size: 0.85rem; color: var(--text-muted); }

/* About team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; }
.member-card { text-align: center; padding: 32px 20px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.member-avatar { width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px; background: var(--sand); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; }
.member-card h3 { font-family: var(--font-display); color: var(--navy); margin-bottom: 4px; }
.member-card .role { color: var(--clay); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.member-card p { color: var(--text-light); font-size: 0.88rem; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 28px; padding: 24px; background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.contact-icon { font-size: 1.5rem; min-width: 48px; height: 48px; background: var(--cream-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-info-text h3 { font-family: var(--font-display); color: var(--navy); font-size: 1.1rem; margin-bottom: 4px; }
.contact-info-text p { color: var(--text-light); font-size: 0.9rem; }
.contact-form-wrap { background: var(--white); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-sm); }

/* Mobile */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid, .cta-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px; box-shadow: var(--shadow-md); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .search-bar { display: none; }
  .logo-text { font-size: 1rem; }
  .logo-text small { font-size: 0.55rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px; box-shadow: var(--shadow-md); z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .header-contact { font-size: 0.75rem; }
  .hero { height: 65vh; min-height: 420px; }
  .hero-arrow { width: 34px; height: 34px; font-size: 1rem; }
  .tour-grid, .reviews-grid { grid-template-columns: 1fr; }
.similar-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .form-row { grid-template-columns: 1fr; }
  .intro-stats { gap: 20px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .search-bar { display: none; }
  .calc-grid { grid-template-columns: 1fr; }
}

/* ===== SEARCH BAR ===== */
.search-bar { display: flex; align-items: center; margin-left: 8px; flex-shrink: 0; }
.search-bar input {
  padding: 6px 12px; border: 1.5px solid var(--border);
  border-radius: 100px; font-family: var(--font-body);
  font-size: 0.82rem; width: 150px; transition: var(--transition);
  background: var(--cream);
}
.search-bar input:focus { outline: none; border-color: var(--clay); width: 180px; box-shadow: 0 0 0 3px rgba(198,123,75,0.1); }
.search-bar button {
  background: var(--clay); color: var(--white); border: none;
  padding: 6px 10px; border-radius: 100px; cursor: pointer;
  margin-left: 6px; font-family: var(--font-body); font-size: 0.82rem;
  transition: var(--transition);
}
.search-bar button:hover { background: var(--navy); }
.no-results { text-align: center; padding: 40px; color: var(--text-muted); font-size: 1.1rem; grid-column: 1 / -1; }

/* ===== PRICE CALCULATOR ===== */
.calc-section { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.calc-result {
  background: var(--navy); color: var(--white); border-radius: var(--radius-md);
  padding: 32px; text-align: center;
}
.calc-result h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 16px; color: var(--gold); }
.calc-total { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--white); }
.calc-total .per { font-size: 1rem; font-weight: 400; color: var(--sand); display: block; }
.calc-breakdown { margin-top: 20px; text-align: left; }
.calc-breakdown .line { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
.calc-slider { margin-bottom: 24px; }
.calc-slider label { display: flex; justify-content: space-between; font-weight: 600; color: var(--navy); margin-bottom: 8px; font-size: 0.9rem; }
.calc-slider label span { color: var(--clay); }
.calc-slider input[type=range] {
  width: 100%; accent-color: var(--clay); height: 6px;
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  display: flex; gap: 4px; margin-left: 8px;
}
.lang-toggle button {
  padding: 4px 10px; border: 1px solid var(--border); border-radius: 4px;
  background: var(--white); cursor: pointer; font-size: 0.8rem;
  font-family: var(--font-body); transition: var(--transition);
}
.lang-toggle button.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.lang-toggle button:hover:not(.active) { border-color: var(--clay); color: var(--clay); }

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--white); border-top: 1px solid var(--border);
  z-index: 999; padding: 8px 16px; padding-bottom: max(8px, env(safe-area-inset-bottom));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-nav-inner { display: flex; justify-content: space-around; align-items: center; }
.mobile-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-decoration: none; color: var(--text-muted); font-size: 0.7rem;
  font-weight: 500; padding: 6px 10px; border-radius: 8px; transition: var(--transition);
}
.mobile-nav a .icon { font-size: 1.3rem; }
.mobile-nav a.active { color: var(--clay); }
@media (max-width: 768px) {
  .mobile-nav { display: block; }
  body { padding-bottom: 70px; }
  .search-bar input { width: 140px; }
  .search-bar input:focus { width: 170px; }
}

/* ===== DROPDOWN NAV ===== */
.has-dropdown { position: relative; }
.has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.has-dropdown > a .arrow { font-size: 0.65rem; opacity: 0.5; transition: var(--transition); }
.has-dropdown:hover > a .arrow { opacity: 1; transform: rotate(180deg); }
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15); min-width: 200px; padding: 8px 0;
  z-index: 10000; list-style: none;
  border: 1px solid var(--border);
}
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown { display: block; animation: fadeIn 0.2s ease; }
.dropdown li a {
  display: block; padding: 10px 20px; color: var(--text); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; transition: var(--transition); white-space: nowrap;
}
.dropdown li a:hover { background: var(--cream-dark); color: var(--clay); }
.dropdown .divider { height: 1px; background: var(--border); margin: 6px 12px; }
@media (max-width: 1024px) {
  .has-dropdown { position: static; }
  .dropdown { position: static; display: none; box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 16px; min-width: auto; background: transparent; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { font-size: 0.82rem; padding: 8px 16px; }
  .has-dropdown > a .arrow { font-size: 0.7rem; }
}

/* ===== TOUR DETAIL ===== */
.tour-detail-hero {
  height: 50vh; min-height: 360px; position: relative;
  background-size: cover; background-position: center;
  display: flex; align-items: flex-end;
}
.tour-detail-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(27,42,74,0.85));
}
.tour-detail-hero .container { position: relative; z-index: 1; padding-bottom: 40px; }
.tour-detail-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); margin-bottom: 8px; text-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.tour-detail-hero .route { color: var(--sand); font-size: 1rem; }
.tour-detail-hero .badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.tour-detail-hero .badge-row span {
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  color: var(--white); padding: 6px 14px; border-radius: 100px;
  font-size: 0.82rem; border: 1px solid rgba(255,255,255,0.2);
}

.tour-detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: start; }
.tour-detail-main h2 { font-family: var(--font-display); font-size: 1.6rem; color: var(--navy); margin: 32px 0 16px; }
.tour-detail-main h2:first-child { margin-top: 0; }
.tour-detail-main p { color: var(--text-light); line-height: 1.75; margin-bottom: 16px; }

/* Itinerary timeline */
.itinerary { list-style: none; }
.itinerary li {
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.itinerary li:last-child { border-bottom: none; }
.itinerary .day-badge {
  min-width: 64px; height: 64px; background: var(--navy);
  color: var(--white); border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; font-family: var(--font-display);
  font-size: 0.75rem; flex-shrink: 0;
}
.itinerary .day-badge strong { font-size: 1.5rem; line-height: 1; }
.itinerary .day-content h4 { font-family: var(--font-display); color: var(--navy); font-size: 1.1rem; margin-bottom: 6px; }
.itinerary .day-content p { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; margin-bottom: 8px; }
.itinerary .day-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.itinerary .day-meta span {
  font-size: 0.78rem; color: var(--clay); background: var(--cream-dark);
  padding: 2px 10px; border-radius: 4px;
}

/* Sidebar card */
.sidebar-card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); padding: 28px; position: sticky; top: 100px;
}
.sidebar-card .price-row {
  text-align: center; padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 16px;
}
.sidebar-card .price-big { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--clay); }
.sidebar-card .price-big span { font-size: 0.9rem; color: var(--text-muted); display: block; font-weight: 400; }
.sidebar-card .stat-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.sidebar-card .stat-row .label { color: var(--text-muted); }
.sidebar-card .stat-row .value { font-weight: 600; color: var(--navy); }
.sidebar-card .btn-book { width: 100%; margin-top: 16px; justify-content: center; font-size: 1.05rem; }

/* Includes/Excludes */
.inc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.inc-item { display: flex; align-items: center; gap: 6px; padding: 5px 8px; background: var(--cream); border-radius: var(--radius-sm); }
.inc-item .icon { font-size: 0.85rem; min-width: 16px; }
.inc-item.good .icon { color: #2D8B4E; }
.inc-item.bad .icon { color: #C67B4B; }
.inc-item p { font-size: 0.82rem; color: var(--text); margin: 0; line-height: 1.3; }

/* FAQ */
.faq-item { margin-bottom: 12px; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; padding: 16px 20px; background: var(--white);
  border: none; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  color: var(--navy); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; transition: var(--transition);
}
.faq-q:hover { background: var(--cream); }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--clay); transition: var(--transition); }
.faq-q.open::after { content: '−'; }
.faq-a { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-a.open { padding: 0 20px 16px; max-height: 300px; }
.faq-a p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white); border-radius: var(--radius-md);
  padding: 32px; margin: 32px 0;
}
.highlight-box h3 { font-family: var(--font-display); color: var(--gold); margin-bottom: 12px; }
.highlight-box ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.highlight-box ul li { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
.highlight-box ul li::before { content: '✦'; color: var(--gold); }

@media (max-width: 1024px) {
  .tour-detail-layout { grid-template-columns: 1fr; }
  .sidebar-card { position: static; }
  .inc-list { grid-template-columns: 1fr; }
  .highlight-box ul { grid-template-columns: 1fr; }
  .itinerary li { flex-direction: column; gap: 12px; }
  .itinerary .day-badge { width: 64px; }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 42, 74, 0.97);
  color: #fff;
  z-index: 10000;
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  flex: 1;
  min-width: 200px;
}
.cookie-banner p a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-buttons .btn {
  padding: 8px 20px;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .cookie-banner .container { flex-direction: column; text-align: center; }
  .cookie-banner p { font-size: 0.8rem; }
}

/* ===== Tours Grid (used in destination/recommended sections) ===== */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.tours-grid .tour-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.tours-grid .tour-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tours-grid .tour-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
.tours-grid .tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tours-grid .tour-card:hover .tour-image img {
  transform: scale(1.05);
}
.tours-grid .tour-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}
.tours-grid .tour-info {
  padding: 16px;
}
.tours-grid .tour-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.tours-grid .tour-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

/* ===== Tour Card Image Fill (extends base .tour-card-img) ===== */
.tour-card-img {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tour-card .tour-card-img img.img-fill {
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-card-img img.img-fill {
  transform: scale(1.05);
}

/* ===== Image Placeholder (for destination grids) ===== */
.img-placeholder {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--sand), var(--clay-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  opacity: 0.85;
}

/* ===== Payment Page ===== */
.payment-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 40px; }
.payment-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 32px 24px; text-align: center; transition: all var(--transition);
}
.payment-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-light); }
.payment-card-icon { font-size: 3rem; margin-bottom: 16px; }
.payment-card h3 { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); margin-bottom: 8px; }
.payment-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.6; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-top: 40px; }
.step { text-align: center; }
.step-circle {
  width: 64px; height: 64px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--white); font-size: 1.5rem; font-weight: 700;
}
.step h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--text-light); font-size: 0.9rem; line-height: 1.5; }

.security-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.security-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 28px 24px; transition: var(--transition);
}
.security-item:hover { box-shadow: var(--shadow-sm); border-color: var(--gold-light); }
.security-item h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.security-item p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

.faq-list { max-width: 800px; margin: 40px auto 0; }
.faq-plain {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 24px; margin-bottom: 16px; transition: var(--transition);
}
.faq-plain:hover { box-shadow: var(--shadow-sm); }
.faq-plain h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.faq-plain p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ===== Review Page ===== */
.review-page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.review-page-card {
  background: var(--white); border-radius: var(--radius-md); padding: 28px;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold); transition: var(--transition);
}
.review-page-card:hover { box-shadow: var(--shadow-md); }
.review-page-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.review-page-body { font-size: 0.92rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-page-author { display: flex; align-items: center; gap: 10px; }
.review-avatar-circle {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; color: var(--white);
}
.review-author-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; display: block; }
.review-author-country { font-size: 0.8rem; color: var(--text-muted); }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin-bottom: 32px; }
.stat-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 24px 16px; text-align: center; transition: var(--transition);
}
.stat-card:hover { border-color: var(--gold); }
.stat-card .stat-num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--clay); margin-bottom: 4px;
}
.stat-card .stat-label { font-size: 0.85rem; color: var(--text-muted); }
.stat-stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 8px; }

.review-summary { background: linear-gradient(135deg, var(--navy), var(--navy-light)); color: var(--white); border-radius: var(--radius-lg); padding: 36px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.review-summary-score { text-align: center; }
.review-summary-score .big { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.review-summary-score .label { font-size: 0.85rem; color: var(--sand); margin-top: 4px; }
.review-summary-bars { flex: 1; min-width: 260px; }
.review-summary-bars .bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.review-summary-bars .bar-row .stars { font-size: 0.85rem; color: var(--gold); min-width: 60px; }
.review-summary-bars .bar-row .bar-bg { flex: 1; height: 8px; background: rgba(255,255,255,0.15); border-radius: 4px; overflow: hidden; }
.review-summary-bars .bar-row .bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }
.review-summary-bars .bar-row .pct { font-size: 0.8rem; color: var(--sand); min-width: 36px; text-align: right; }

/* ===== Review Submit Form ===== */
.review-form-wrap { background: var(--white); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-sm); max-width: 640px; margin: 0 auto; }
.review-form-wrap h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 20px; text-align: center; }
.star-select { display: flex; gap: 6px; justify-content: center; margin-bottom: 16px; flex-direction: row-reverse; }
.star-select input { display: none; }
.star-select label { font-size: 1.8rem; color: var(--border); cursor: pointer; transition: var(--transition); }
.star-select label:hover, .star-select label:hover ~ label, .star-select input:checked ~ label { color: var(--gold); }

/* ===== Cooperation Page ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.benefit-card {
  background: var(--white); border-radius: var(--radius-md); padding: 32px 24px;
  text-align: center; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid transparent;
}
.benefit-card:hover { border-color: var(--gold-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-icon { font-size: 2.5rem; margin-bottom: 16px; }
.benefit-card h3 { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

.partner-types { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin-top: 40px; }
.partner-type {
  background: var(--cream); border-radius: var(--radius-md); padding: 28px 24px;
  text-align: center; transition: var(--transition); border: 1px solid var(--border);
}
.partner-type:hover { background: var(--white); box-shadow: var(--shadow-sm); border-color: var(--gold); }
.partner-type .icon { font-size: 2rem; margin-bottom: 12px; }
.partner-type h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 8px; }
.partner-type p { color: var(--text-light); font-size: 0.88rem; line-height: 1.5; }

.cooperation-form-wrap { background: var(--white); border-radius: var(--radius-md); padding: 36px; box-shadow: var(--shadow-sm); max-width: 700px; margin: 0 auto; }
.cooperation-form-wrap h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 20px; text-align: center; }

/* ===== Performance Optimizations ===== */
/* Paint containment for scrolled sections */
.section, .section-alt { content-visibility: auto; contain-intrinsic-size: 500px; }
/* Layout isolation for cards */
.tour-card, .dest-card, .blog-card, .benefit-card, .partner-type { contain: layout style paint; }
/* Hint browser for animated elements */
.reveal, .tour-card:hover, .dest-card:hover, .blog-card:hover, .benefit-card:hover, .btn { will-change: transform, opacity; }
/* Image rendering optimizations */
img { image-rendering: auto; backface-visibility: hidden; }
/* Reduce paint on fixed elements */
.mobile-nav, .cookie-banner { contain: layout style paint; }
/* No layout thrashing on hover */
.tour-card-img img, .dest-card img { transform: translateZ(0); }
/* Defer offscreen fonts */
@font-face { font-family: 'Playfair Display'; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; font-display: swap; }

/* ===== Breadcrumb Navigation ===== */
.breadcrumb { padding: 14px 0; background: var(--white); border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.breadcrumb .container { display: flex; flex-wrap: wrap; align-items: center; gap: 4px; }
.breadcrumb a { color: var(--clay); text-decoration: none; transition: var(--transition); }
.breadcrumb a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumb .sep { color: var(--text-muted); margin: 0 4px; user-select: none; }
.breadcrumb .current { color: var(--text-light); font-weight: 500; }

/* ===== Back to Top Button ===== */
.back-to-top { position: fixed; bottom: 80px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--white); border: none; cursor: pointer; font-size: 1.2rem; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(20px); transition: opacity 0.3s, visibility 0.3s, transform 0.3s; z-index: 9999; box-shadow: 0 4px 16px rgba(27,42,74,0.3); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--clay); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(27,42,74,0.4); }
@media (max-width: 768px) { .back-to-top { bottom: 72px; right: 16px; width: 40px; height: 40px; font-size: 1rem; } }

/* ===== Print Styles ===== */
@media print {
  .header-top, .header-main, .mobile-nav, .cookie-banner, .cta-section,
  .nav-toggle, .lang-toggle, .footer-bottom, .footer-payment { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
  .page-hero { min-height: auto; padding: 20px 0; background: none !important; }
  .page-hero h1 { color: #000; font-size: 24pt; }
  .page-hero p { color: #333; }
  .container { max-width: 100%; padding: 0 12px; }
  .footer { background: #f5f5f5; color: #000; padding: 20px 0; }
  .footer a { color: #000; }
  a[href]:after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666; }
  img { max-width: 100% !important; page-break-inside: avoid; }
  h2, h3 { page-break-after: avoid; }
  .section { padding: 20px 0; page-break-inside: avoid; }
}