/* === DMC TourLink Global Styles === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
  --navy: #1a237e;
  --navy-light: #283593;
  --navy-dark: #0d1642;
  --orange: #ff6f00;
  --orange-hover: #e65100;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #eeeeee;
  --gray-300: #e0e0e0;
  --gray-500: #9e9e9e;
  --gray-700: #616161;
  --gray-900: #212121;
  --shadow: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 8px;
  --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Noto Sans KR', -apple-system, sans-serif; color: var(--gray-900); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--orange); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 28px; border-radius: var(--radius); font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: all .2s; text-decoration: none; gap: 8px; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-hover); color: var(--white); transform: translateY(-1px); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-light); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-kakao { background: #FEE500; color: #191919; }
.btn-kakao:hover { background: #FADA0A; color: #191919; }

/* Header */
.site-header { background: var(--white); border-bottom: 2px solid var(--navy); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; height: 70px; }
.logo { font-size: 24px; font-weight: 900; color: var(--navy); }
.logo span { color: var(--orange); }
.nav-menu { display: flex; gap: 28px; align-items: center; }
.nav-menu a { font-weight: 500; font-size: 15px; color: var(--gray-900); }
.nav-menu a:hover { color: var(--orange); }
.header-cta { display: flex; gap: 12px; align-items: center; }
.header-phone { font-weight: 700; color: var(--navy); font-size: 16px; }
.mobile-toggle { display: none; background: none; border: none; font-size: 28px; cursor: pointer; }

@media (max-width: 768px) {
  .nav-menu { display: none; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 20px; border-bottom: 2px solid var(--navy); gap: 16px; }
  .nav-menu.open { display: flex; }
  .mobile-toggle { display: block; }
  .header-cta .btn { display: none; }
}

/* Hero (legacy) */
.hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); color: var(--white); padding: 80px 0; min-height: 480px; display: flex; align-items: center; }
.hero-content { position: relative; z-index: 1; text-align: center; width: 100%; }
.hero h1 { font-size: 42px; font-weight: 900; margin-bottom: 16px; line-height: 1.3; }
.hero p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; }
@media (max-width: 768px) { .hero { padding: 50px 0; min-height: 360px; } .hero h1 { font-size: 28px; } }

/* Hero V2 — TourRadar style */
.hero-v2 { position: relative; min-height: 560px; display: flex; flex-direction: column; align-items: center; justify-content: center; background-size: cover; background-position: center; background-repeat: no-repeat; padding: 80px 20px 100px; }
.hero-v2-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%); z-index: 1; }
.hero-v2-content { position: relative; z-index: 2; text-align: center; color: var(--white); margin-bottom: 48px; }
.hero-v2-title { font-family: 'Playfair Display', serif; font-style: italic; font-size: 64px; font-weight: 700; line-height: 1.15; margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hero-v2-sub { font-size: 18px; opacity: .92; max-width: 600px; margin: 0 auto; line-height: 1.6; text-shadow: 0 1px 4px rgba(0,0,0,.3); }

/* Hero Search Bar */
.hero-search-bar { position: relative; z-index: 2; display: flex; align-items: center; background: var(--white); border-radius: 50px; box-shadow: 0 8px 32px rgba(0,0,0,.18); padding: 6px 6px 6px 24px; max-width: 820px; width: 100%; }
.hero-search-item { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.hero-search-icon { font-size: 18px; flex-shrink: 0; }
.hero-search-item select { border: none; background: transparent; font-family: inherit; font-size: 15px; font-weight: 500; color: var(--gray-900); padding: 14px 4px; width: 100%; cursor: pointer; outline: none; -webkit-appearance: none; appearance: none; }
.hero-search-divider { width: 1px; height: 32px; background: var(--gray-300); flex-shrink: 0; margin: 0 8px; }
.hero-search-btn { background: var(--orange); color: var(--white); border: none; border-radius: 50px; padding: 14px 32px; font-size: 16px; font-weight: 700; font-family: inherit; cursor: pointer; transition: background .2s; flex-shrink: 0; display: flex; align-items: center; gap: 6px; }
.hero-search-btn:hover { background: var(--orange-hover); }

/* Hero 2-Step Date Picker */
.hero-date-picker { display:none; position:absolute; top:calc(100% + 12px); left:50%; transform:translateX(-50%); background:var(--white); border-radius:16px; box-shadow:0 12px 40px rgba(0,0,0,.2); padding:20px; z-index:100; min-width:300px; }
.hero-date-picker.open { display:block; }
.hdp-header { display:flex; align-items:center; justify-content:space-between; margin-bottom:16px; }
.hdp-year, .hdp-month-label { font-size:18px; font-weight:800; color:var(--navy); }
.hdp-nav { background:none; border:1px solid var(--gray-300); border-radius:8px; padding:6px 12px; cursor:pointer; font-size:13px; color:var(--gray-700); transition:all .2s; }
.hdp-nav:hover { border-color:var(--navy); color:var(--navy); }
.hdp-months { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; margin-bottom:16px; }
.hdp-month-btn { padding:12px 8px; border:2px solid var(--gray-200); border-radius:10px; background:var(--white); cursor:pointer; font-family:inherit; font-size:14px; font-weight:600; color:var(--gray-700); transition:all .15s; }
.hdp-month-btn:hover { border-color:var(--navy); color:var(--navy); background:var(--gray-50); }
.hdp-month-btn.selected { background:var(--navy); color:var(--white); border-color:var(--navy); }
.hdp-month-btn.past { opacity:.35; pointer-events:none; }
.hdp-actions { display:flex; gap:8px; }
.hdp-btn-apply { flex:1; padding:10px; border:none; border-radius:10px; background:var(--orange); color:var(--white); font-family:inherit; font-size:14px; font-weight:700; cursor:pointer; transition:background .2s; }
.hdp-btn-apply:hover { background:var(--orange-hover); }
.hdp-btn-secondary { flex:1; padding:8px; border:1px solid var(--gray-300); border-radius:10px; background:var(--white); color:var(--gray-700); font-family:inherit; font-size:13px; cursor:pointer; }
.hdp-btn-secondary:hover { border-color:var(--navy); color:var(--navy); }
.hdp-weekdays { display:grid; grid-template-columns:repeat(7,1fr); text-align:center; font-size:11px; font-weight:700; color:var(--gray-500); margin-bottom:6px; }
.hdp-days { display:grid; grid-template-columns:repeat(7,1fr); gap:3px; text-align:center; margin-bottom:12px; }
.hdp-day { width:36px; height:36px; line-height:36px; margin:0 auto; border-radius:50%; font-size:13px; cursor:pointer; transition:all .15s; color:var(--gray-700); }
.hdp-day:hover { background:var(--gray-100); }
.hdp-day.selected { background:var(--orange); color:var(--white); font-weight:700; }
.hdp-day.today { border:2px solid var(--navy); font-weight:700; }
.hdp-day.empty { cursor:default; }
.hdp-day.past { opacity:.3; pointer-events:none; }
.hdp-step.hidden { display:none; }
@media (max-width:768px) {
  .hero-date-picker { left:0; transform:none; right:0; min-width:auto; border-radius:12px; }
}

/* Stats Bar */
.stats-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-200); padding: 14px 0; }
.stats-bar-inner { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: var(--gray-700); flex-wrap: wrap; }
.stats-bar-inner strong { color: var(--navy); }
.stats-dot { color: var(--gray-300); }

@media (max-width: 768px) {
  .hero-v2 { min-height: 480px; padding: 60px 16px 80px; }
  .hero-v2-title { font-size: 36px; }
  .hero-v2-sub { font-size: 15px; }
  .hero-search-bar { flex-direction: column; border-radius: 16px; padding: 16px; gap: 0; }
  .hero-search-item { width: 100%; padding: 4px 0; }
  .hero-search-item select { padding: 12px 4px; }
  .hero-search-divider { width: 100%; height: 1px; margin: 4px 0; }
  .hero-search-btn { width: 100%; justify-content: center; margin-top: 8px; border-radius: 12px; padding: 14px; }
  .stats-bar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .stats-dot { display: none; }
}

/* Search/Filter Bar */
.filter-bar { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 24px; display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; margin: -40px auto 40px; position: relative; z-index: 10; max-width: var(--max-width); }
.filter-bar .filter-group { flex: 1; min-width: 150px; }
.filter-bar label { display: block; font-size: 12px; font-weight: 700; color: var(--gray-700); margin-bottom: 4px; text-transform: uppercase; }
.filter-bar select, .filter-bar input { width: 100%; padding: 10px 12px; border: 1px solid var(--gray-300); border-radius: 6px; font-size: 14px; font-family: inherit; background: var(--white); }
.filter-bar .btn { min-width: 100px; height: 42px; }
@media (max-width: 768px) { .filter-bar { margin: -20px 16px 20px; flex-direction: column; } .filter-bar .filter-group { min-width: 100%; } }

/* Sections */
.section { padding: 60px 0; }
.section-alt { background: var(--gray-50); }
.section-title { font-size: 28px; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.section-subtitle { font-size: 16px; color: var(--gray-700); margin-bottom: 32px; }
.section-header { text-align: center; margin-bottom: 40px; }

/* Tour Cards (list) */
.cruise-list { display: flex; flex-direction: column; gap: 16px; }
.cruise-item { display: flex; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: all .2s; border: 2px solid #cfd8dc; height: 280px; }
.cruise-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); border-color: var(--navy); }
.cruise-item-image { width: 280px; flex-shrink: 0; background: var(--navy-light); position: relative; overflow: hidden; }
.cruise-item-image .placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); font-size: 56px; }
.cruise-item-body { flex: 1; padding: 16px 20px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.cruise-item-meta { font-size: 14px; color: var(--gray-700); margin-bottom: 4px; }
.cruise-item-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.cruise-item-title a { color: inherit; } .cruise-item-title a:hover { color: var(--orange); }
.cruise-item-ports { font-size: 14px; color: var(--gray-700); margin-bottom: 12px; }
.cruise-item-footer { display: flex; flex-direction: column; gap: 12px; }
.cruise-item-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.cruise-item-info { display: flex; gap: 16px; font-size: 15px; color: var(--gray-700); }
.cruise-item-price { font-size: 26px; font-weight: 900; color: var(--orange); }
.cruise-item-price small { font-size: 14px; font-weight: 400; color: var(--gray-700); }
.cruise-item-actions { display: flex; gap: 8px; justify-content: flex-end; }
.cruise-item .tag, .cruise-card .tag { display: inline-block; padding: 2px 8px; border-radius: 4px; font-size: 11px; font-weight: 700; margin-right: 4px; }
.tag-추천 { background: var(--orange); color: var(--white); }
.tag-인기 { background: #e53935; color: var(--white); }
.hashtag { font-size: 12px; color: var(--navy); background: #e8eaf6; padding: 3px 10px; border-radius: 12px; font-weight: 600; white-space: nowrap; }

@media (max-width: 768px) {
  .cruise-item { flex-direction: column; height: auto; }
  .cruise-item-image { width: 100%; height: 180px; }
  .cruise-item-actions { width: 100%; }
  .cruise-item-actions a, .cruise-item-actions button { flex: 1; text-align: center; justify-content: center; }
}

/* Tour Cards (grid) */
.cruise-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.cruise-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: all .2s; border: 2px solid #cfd8dc; }
.cruise-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--navy); }
.cruise-card-image { height: 200px; overflow: hidden; position: relative; }
.cruise-card-image .placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); color: var(--white); font-size: 48px; }
.cruise-card-tags { position: absolute; top: 12px; left: 12px; display: flex; gap: 4px; }
.cruise-card-body { padding: 20px; }
.cruise-card-meta { font-size: 12px; color: var(--gray-700); margin-bottom: 4px; }
.cruise-card-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.cruise-card-ports { font-size: 13px; color: var(--gray-700); margin-bottom: 12px; }
.cruise-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--gray-200); }
.cruise-card-price { font-size: 20px; font-weight: 900; color: var(--orange); }
.cruise-card-price small { font-size: 12px; color: var(--gray-700); font-weight: 400; }
.cruise-card-link { text-decoration: none; color: inherit; display: block; }
.cruise-card-link:hover { color: inherit; }

/* Continent Cards */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 768px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .dest-grid { grid-template-columns: 1fr; } }
.dest-card { text-align: center; padding: 40px 16px 32px; border-radius: var(--radius); background: var(--white); transition: all .2s; text-decoration: none; border: 2px solid #cfd8dc; box-shadow: var(--shadow); }
.dest-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--navy); }
.dest-card .icon { font-size: 56px; margin-bottom: 16px; display: block; }
.dest-card h3 { font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.dest-card p { font-size: 13px; color: var(--gray-700); }

/* Continent Chip Slider */
.dest-slider-wrap { position: relative; display: flex; align-items: center; margin-top: 16px; gap: 8px; }
.dest-slider { display: flex; gap: 20px; overflow-x: auto; scroll-behavior: smooth; flex: 1; padding: 10px 20px 10px 0; scrollbar-width: none; }
.dest-slider::-webkit-scrollbar { display: none; }
.dest-chip { display: flex; align-items: center; gap: 10px; padding: 14px 26px; background: white; border-radius: 30px; text-decoration: none; color: var(--navy); font-weight: 700; font-size: 16px; white-space: nowrap; flex-shrink: 0; border: 2px solid #cfd8dc; box-shadow: var(--shadow); transition: all .2s; }
.dest-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--navy); color: var(--orange); }
.dest-icon { font-size: 26px; }
.dest-slider-btn { background: rgba(255,255,255,.9); border: none; font-size: 18px; padding: 8px 12px; border-radius: 50%; cursor: pointer; color: var(--navy); box-shadow: var(--shadow); flex-shrink: 0; z-index: 2; }

/* Partner Logo Slider */
.logo-slider-wrap { margin: 32px 0 48px; overflow: hidden; position: relative; }
.logo-slider-wrap::before, .logo-slider-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2; pointer-events: none; }
.logo-slider-wrap::before { left: 0; background: linear-gradient(to right, white, transparent); }
.logo-slider-wrap::after { right: 0; background: linear-gradient(to left, white, transparent); }
.logo-slider-track { display: flex; align-items: center; gap: 48px; animation: logoScroll 20s linear infinite; width: max-content; }
.logo-slider-track .partner-logo { font-size: 40px; flex-shrink: 0; opacity: 0.7; transition: opacity .2s; display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy); }
.logo-slider-track .partner-logo:hover { opacity: 1; }
@keyframes logoScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.logo-slider-wrap:hover .logo-slider-track { animation-play-state: paused; }

/* CTA Section */
.cta-section { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); color: var(--white); padding: 60px 0; text-align: center; }
.cta-section h2 { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.cta-section p { font-size: 16px; opacity: 0.9; margin-bottom: 28px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: nowrap; }
.cta-buttons .btn { flex: 1; max-width: 220px; min-width: 0; text-align: center; padding: 16px 12px; font-size: 15px; }
@media (max-width: 768px) { .cta-buttons { flex-wrap: nowrap; gap: 8px; } .cta-buttons .btn { padding: 12px 8px; font-size: 13px; max-width: none; } }

/* Detail Page */
.detail-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); color: var(--white); padding: 60px 0; }
.detail-hero h1 { font-size: 32px; font-weight: 900; margin-bottom: 12px; }
.detail-hero .meta { font-size: 16px; opacity: 0.9; }
.info-bar { display: flex; justify-content: space-around; background: var(--gray-50); border-radius: 12px; padding: 20px; margin: -30px 0 40px; position: relative; z-index: 2; box-shadow: var(--shadow); }
.info-bar-item { text-align: center; }
.info-bar-item .label { font-size: 12px; color: var(--gray-500); margin-bottom: 4px; }
.info-bar-item .value { font-size: 16px; font-weight: 700; color: var(--navy); }
@media (max-width: 768px) { .info-bar { flex-direction: column; gap: 12px; margin-top: -20px; } .detail-hero h1 { font-size: 1.4rem; } }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 3px; background: var(--navy); border-radius: 3px; }
.timeline-day { position: relative; margin-bottom: 32px; padding: 20px; background: var(--gray-50); border-radius: 12px; }
.timeline-day::before { content: ''; position: absolute; left: -26px; top: 24px; width: 14px; height: 14px; background: var(--orange); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 2px var(--navy); }
.timeline-day h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.timeline-day .desc { font-size: 14px; line-height: 1.7; color: var(--gray-700); }

/* Inclusions */
.inclusions { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 16px; }
.inclusion-list h3 { margin-bottom: 12px; }
.inclusion-list ul { list-style: none; padding: 0; }
.inclusion-list li { padding: 6px 0; font-size: 14px; padding-left: 28px; position: relative; }
.included li::before { content: "✅"; position: absolute; left: 0; }
.excluded li::before { content: "❌"; position: absolute; left: 0; }
@media (max-width: 768px) { .inclusions { grid-template-columns: 1fr; } }

/* Operator Card */
.operator-card { background: var(--white); border: 2px solid #cfd8dc; border-radius: var(--radius); padding: 24px; }

/* Modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1000; align-items: center; justify-content: center; }
.modal-overlay.open { display: flex; }
.modal { background: var(--white); border-radius: 12px; max-width: 500px; width: 90%; max-height: 90vh; overflow-y: auto; }
.modal-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--gray-200); }
.modal-header h2 { font-size: 20px; font-weight: 700; }
.modal-close { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray-700); }
.modal-body { padding: 24px; }
.modal-product-info { background: var(--gray-50); padding: 16px; border-radius: 8px; margin-bottom: 20px; font-size: 14px; }
.modal-product-info strong { color: var(--navy); }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-group label .req { color: #e53935; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 10px 14px; border: 1px solid var(--gray-300); border-radius: 6px; font-family: inherit; font-size: 14px; }
.form-group textarea { resize: vertical; min-height: 80px; }
.privacy-section { margin: 16px 0; }
.privacy-check { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; }
.privacy-check input { margin-top: 3px; }
.privacy-toggle { background: none; border: none; color: var(--navy); font-size: 13px; cursor: pointer; text-decoration: underline; }
.privacy-detail { display: none; background: var(--gray-50); padding: 12px; border-radius: 6px; font-size: 12px; color: var(--gray-700); margin-top: 8px; line-height: 1.8; }
.privacy-detail.open { display: block; }
.modal-footer { padding: 0 24px 24px; }
.modal-footer .btn { width: 100%; }
.form-status { padding: 12px; border-radius: 6px; margin-bottom: 16px; font-size: 14px; display: none; }
.form-status.success { display: block; background: #e8f5e9; color: #2e7d32; }
.form-status.error { display: block; background: #ffebee; color: #c62828; }

/* Footer */
.site-footer { background: var(--navy-dark); color: var(--white); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; margin-bottom: 32px; }
.footer-section h3 { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: var(--white); }
.footer-section a { color: rgba(255,255,255,0.7); font-size: 14px; display: block; margin-bottom: 8px; }
.footer-section a:hover { color: var(--orange); }
.footer-section p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.8; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 13px; color: rgba(255,255,255,0.5); }

/* Page */
.page-header { background: var(--navy); color: var(--white); padding: 48px 0; text-align: center; }
.page-header h1 { font-size: 32px; font-weight: 900; }
.page-content { padding: 48px 0; }

/* Sort/Filter */
.list-controls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.sort-select { padding: 8px 12px; border: 1px solid var(--gray-300); border-radius: 6px; font-family: inherit; font-size: 14px; }
.result-count { font-size: 14px; color: var(--gray-700); }
.no-results { text-align: center; padding: 60px 20px; color: var(--gray-500); }
.no-results .icon { font-size: 48px; margin-bottom: 16px; }

/* Contact form on partners page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card { background: var(--gray-50); padding: 24px; border-radius: var(--radius); }
.contact-info-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-info-item { display: flex; gap: 12px; margin-bottom: 16px; font-size: 15px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

/* Utilities */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.hidden { display: none !important; }

/* Partner benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; margin: 32px 0; }
.benefit-card { background: var(--white); border: 2px solid #cfd8dc; border-radius: var(--radius); padding: 32px 24px; text-align: center; transition: all .2s; }
.benefit-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.benefit-card .icon { font-size: 48px; margin-bottom: 16px; display: block; }
.benefit-card h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.benefit-card p { font-size: 14px; color: var(--gray-700); line-height: 1.6; }

/* Country cards for continent pages */
.country-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.country-card { display: flex; align-items: center; gap: 12px; padding: 20px; background: var(--white); border: 2px solid #cfd8dc; border-radius: var(--radius); text-decoration: none; color: var(--gray-900); transition: all .2s; }
.country-card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.country-card .flag { font-size: 32px; }
.country-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); }
.country-card p { font-size: 12px; color: var(--gray-700); }

/* === Tour Detail V2 === */

/* Hero Gallery */
.detail-hero-v2 { background: var(--gray-100); }
.hero-gallery { display: grid; grid-template-columns: 1fr 300px; max-width: var(--max-width); margin: 0 auto; gap: 4px; max-height: 480px; overflow: hidden; }
.hero-gallery-main { overflow: hidden; cursor: pointer; }
.hero-gallery-main img { width: 100%; height: 480px; object-fit: cover; transition: transform .3s; }
.hero-gallery-main img:hover { transform: scale(1.02); }
.hero-gallery-thumbs { display: grid; grid-template-rows: repeat(4, 1fr); gap: 4px; }
.hero-thumb { overflow: hidden; cursor: pointer; position: relative; }
.hero-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.hero-thumb:hover img { transform: scale(1.05); }
.thumb-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.5); color: white; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; }
.detail-hero-fallback { height: 320px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy-dark), var(--navy)); }
.hero-emoji { font-size: 120px; }
@media (max-width: 768px) {
  .hero-gallery { grid-template-columns: 1fr; max-height: 280px; }
  .hero-gallery-thumbs { display: none; }
  .hero-gallery-main img { height: 280px; }
}

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: white; font-size: 36px; cursor: pointer; z-index: 10; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: white; font-size: 28px; padding: 16px 12px; cursor: pointer; border-radius: 8px; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: 14px; }

/* Title Bar */
.detail-title-bar { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: white; padding: 32px 0 24px; }
.detail-breadcrumb { font-size: 14px; opacity: .8; margin-bottom: 8px; }
.detail-title-bar h1 { font-size: 32px; font-weight: 900; margin-bottom: 8px; }
.detail-rating-inline { display: flex; align-items: center; gap: 8px; }
.detail-rating-inline .stars { color: #ffc107; font-size: 18px; }
.detail-rating-inline .rating-num { font-weight: 700; font-size: 18px; }
.detail-rating-inline .rating-count { opacity: .7; font-size: 14px; }
@media (max-width: 768px) { .detail-title-bar h1 { font-size: 1.4rem; } .detail-title-bar { padding: 24px 0 16px; } }

/* Summary Bar */
.summary-bar { display: flex; justify-content: space-around; background: var(--white); border-radius: 12px; padding: 20px 16px; margin: -28px 0 32px; position: relative; z-index: 2; box-shadow: var(--shadow-lg); flex-wrap: wrap; gap: 12px; }
.summary-item { text-align: center; min-width: 100px; }
.summary-icon { font-size: 24px; margin-bottom: 4px; }
.summary-label { font-size: 11px; color: var(--gray-500); text-transform: uppercase; font-weight: 600; }
.summary-value { font-size: 14px; font-weight: 700; color: var(--navy); }
@media (max-width: 768px) { .summary-bar { flex-wrap: wrap; justify-content: center; margin-top: -20px; } .summary-item { min-width: 80px; } }

/* Detail Layout (main + sidebar) */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; margin-bottom: 60px; }
.detail-main { min-width: 0; }
@media (max-width: 968px) { .detail-layout { grid-template-columns: 1fr; } .detail-sidebar { display: none; } }

/* Detail Sections */
.detail-section { margin-bottom: 48px; }
.detail-desc { font-size: 16px; line-height: 1.8; margin-bottom: 20px; color: var(--gray-700); }
.detail-subtitle { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.highlight-list { list-style: none; padding: 0; }
.highlight-list li { padding: 6px 0; font-size: 15px; padding-left: 28px; position: relative; }
.hl-icon { position: absolute; left: 0; }

/* Timeline V2 */
.timeline-v2 { position: relative; padding-left: 48px; }
.timeline-v2::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 3px; background: linear-gradient(to bottom, var(--navy), var(--orange)); border-radius: 3px; }
.tl-day { position: relative; margin-bottom: 24px; }
.tl-marker { position: absolute; left: -48px; top: 0; width: 40px; height: 40px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 900; font-size: 16px; border: 3px solid white; box-shadow: 0 0 0 2px var(--navy); z-index: 1; }
.tl-content { background: var(--white); border: 2px solid var(--gray-200); border-radius: 12px; overflow: hidden; transition: border-color .2s; }
.tl-content:hover { border-color: var(--navy); }
.tl-header { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; user-select: none; }
.tl-header h3 { color: var(--navy); font-size: 17px; margin: 0; }
.tl-toggle { font-size: 14px; color: var(--gray-500); transition: transform .3s; }
.tl-body { padding: 0 20px 20px; }
.tl-body:not(.open) { display: none; }
.tl-header:has(+ .tl-body:not(.open)) .tl-toggle { transform: rotate(-90deg); }
.tl-desc { font-size: 14px; line-height: 1.7; color: var(--gray-700); margin-bottom: 12px; }
.tl-detail-row { display: flex; gap: 10px; margin-bottom: 8px; font-size: 14px; }
.tl-detail-icon { flex-shrink: 0; }
.tl-detail-content { line-height: 1.6; }
.tl-detail-content strong { color: var(--navy); }
.tl-act-list { list-style: disc; padding-left: 20px; margin: 4px 0 0; }
.tl-act-list li { padding: 2px 0; font-size: 13px; }
.tl-badges { display: flex; gap: 8px; margin: 8px 0; flex-wrap: wrap; }
.meal-badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 12px; background: var(--gray-100); border-radius: 20px; font-size: 13px; font-weight: 600; }

/* Accommodation Grid */
.accom-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.accom-card { background: var(--gray-50); border: 2px solid var(--gray-200); border-radius: 12px; padding: 20px; text-align: center; }
.accom-stars { color: #ffc107; font-size: 18px; margin-bottom: 8px; }
.accom-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.accom-days { font-size: 13px; color: var(--gray-500); }

/* Inclusions V2 */
.inclusions-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.incl-col { padding: 20px; border-radius: 12px; }
.incl-yes { background: #e8f5e9; }
.incl-no { background: #ffebee; }
.incl-col h3 { margin-bottom: 16px; font-size: 18px; }
.incl-category { margin-bottom: 12px; }
.incl-category h4 { font-size: 13px; font-weight: 700; color: var(--gray-700); text-transform: uppercase; margin-bottom: 4px; }
.incl-category ul { list-style: none; padding: 0; }
.incl-category li { padding: 3px 0; font-size: 14px; padding-left: 20px; position: relative; }
.incl-yes .incl-category li::before { content: "✓"; position: absolute; left: 0; color: #2e7d32; font-weight: 700; }
.incl-no .incl-category li::before { content: "✗"; position: absolute; left: 0; color: #c62828; font-weight: 700; }
@media (max-width: 768px) { .inclusions-v2 { grid-template-columns: 1fr; } }

/* Reviews */
.review-summary { display: flex; gap: 32px; background: var(--gray-50); border-radius: 12px; padding: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.review-score { text-align: center; min-width: 120px; }
.review-big-num { font-size: 48px; font-weight: 900; color: var(--navy); line-height: 1; }
.review-stars { color: #ffc107; font-size: 20px; margin: 4px 0; }
.review-total { font-size: 13px; color: var(--gray-500); }
.review-cats { flex: 1; min-width: 200px; }
.review-cat-row { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.cat-name { width: 50px; font-size: 13px; font-weight: 600; color: var(--gray-700); }
.cat-bar { flex: 1; height: 8px; background: var(--gray-200); border-radius: 4px; overflow: hidden; }
.cat-bar-fill { height: 100%; background: var(--orange); border-radius: 4px; }
.cat-score { width: 30px; text-align: right; font-size: 13px; font-weight: 700; color: var(--navy); }
.review-list { display: flex; flex-direction: column; gap: 16px; }
.review-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; padding: 20px; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: white; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.review-author { font-weight: 700; font-size: 15px; }
.review-date { font-size: 12px; color: var(--gray-500); }
.review-rating { margin-left: auto; color: #ffc107; font-size: 16px; }
.review-text { font-size: 14px; line-height: 1.7; color: var(--gray-700); }

/* Departures Table */
.departure-table { border: 2px solid var(--gray-200); border-radius: 12px; overflow: hidden; }
.dep-header { display: grid; grid-template-columns: 1fr 1fr 1fr auto; padding: 14px 20px; background: var(--navy); color: white; font-weight: 700; font-size: 14px; gap: 12px; }
.dep-row { display: grid; grid-template-columns: 1fr 1fr 1fr auto; padding: 14px 20px; border-bottom: 1px solid var(--gray-200); align-items: center; gap: 12px; }
.dep-row:last-child { border-bottom: none; }
.dep-filling { background: #fff8e1; }
.dep-date { font-weight: 600; }
.dep-price { font-size: 20px; font-weight: 900; color: var(--orange); }
.badge { display: inline-block; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.badge-filling { background: #ff6f00; color: white; }
.badge-instant { background: #e8f5e9; color: #2e7d32; }
.badge-available { background: var(--gray-100); color: var(--gray-700); }
@media (max-width: 768px) {
  .dep-header { display: none; }
  .dep-row { grid-template-columns: 1fr 1fr; gap: 8px; }
}

/* Operator Card V2 */
.operator-card-v2 { background: var(--white); border: 2px solid var(--gray-200); border-radius: 12px; padding: 24px; }
.op-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.op-logo { font-size: 48px; }
.op-info h3 { font-size: 20px; font-weight: 700; color: var(--navy); }
.op-info p { font-size: 14px; color: var(--gray-700); }
.op-desc { font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.op-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; background: var(--gray-50); border-radius: 8px; padding: 16px; }
.op-stat { text-align: center; }
.op-stat-num { display: block; font-size: 16px; font-weight: 900; color: var(--navy); }
.op-stat-label { font-size: 11px; color: var(--gray-500); }
@media (max-width: 768px) { .op-stats { grid-template-columns: repeat(2, 1fr); } }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { border: 2px solid var(--gray-200); border-radius: 12px; overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 15px; user-select: none; }
.faq-q:hover { background: var(--gray-50); }
.faq-toggle { font-size: 20px; color: var(--gray-500); transition: transform .3s; }
.faq-a { display: none; padding: 0 20px 16px; font-size: 14px; line-height: 1.7; color: var(--gray-700); }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* Sidebar Booking Card */
.booking-card { position: sticky; top: 90px; background: var(--white); border: 2px solid var(--gray-200); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-lg); }
.booking-price { margin-bottom: 16px; }
.booking-from { font-size: 13px; color: var(--gray-500); }
.booking-amount { font-size: 36px; font-weight: 900; color: var(--orange); }
.booking-per { font-size: 14px; color: var(--gray-700); }
.booking-meta { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--gray-700); margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); }
.booking-next { margin-bottom: 16px; padding: 12px; background: var(--gray-50); border-radius: 8px; }
.booking-next-label { font-size: 12px; color: var(--gray-500); margin-bottom: 4px; }
.booking-next-date { font-size: 16px; font-weight: 700; color: var(--navy); }
.booking-btn { width: 100%; margin-bottom: 8px; justify-content: center; }
.booking-all-dates { display: block; text-align: center; margin-top: 12px; font-size: 14px; font-weight: 600; color: var(--navy); }

/* Booking Calendar */
.booking-calendar { margin-bottom: 16px; }
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal-month { font-size: 15px; font-weight: 700; color: var(--navy); }
.cal-nav { background: none; border: 1px solid var(--gray-300); border-radius: 6px; padding: 4px 10px; cursor: pointer; font-size: 12px; color: var(--gray-700); transition: all .2s; }
.cal-nav:hover { border-color: var(--navy); color: var(--navy); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; font-size: 11px; font-weight: 700; color: var(--gray-500); margin-bottom: 4px; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); text-align: center; gap: 2px; }
.cal-empty { height: 32px; }
.cal-day { height: 32px; line-height: 32px; font-size: 13px; border-radius: 50%; color: var(--gray-700); }
.cal-dep { background: var(--orange); color: var(--white); font-weight: 700; cursor: pointer; transition: transform .15s; }
.cal-dep:hover { transform: scale(1.15); background: var(--orange-hover); }

/* === Auth Pages === */
.auth-container { max-width: 480px; margin: 0 auto; padding: 40px 0; }
.auth-container.auth-signup { max-width: 640px; }
.auth-card { background: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg); padding: 40px; border: 2px solid var(--gray-200); }
.auth-title { font-size: 24px; font-weight: 900; color: var(--navy); text-align: center; margin-bottom: 8px; }
.auth-subtitle { text-align: center; color: var(--gray-700); font-size: 14px; margin-bottom: 32px; line-height: 1.6; }
.auth-section-title { font-size: 16px; font-weight: 700; color: var(--navy); margin: 24px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-200); }
.auth-footer { text-align: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--gray-200); font-size: 14px; color: var(--gray-700); }
.auth-footer a { color: var(--orange); font-weight: 700; }
.auth-link { font-size: 13px; color: var(--navy); }
.checkbox-inline { display: flex; align-items: center; gap: 6px; font-size: 14px; cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } .auth-card { padding: 24px 20px; } }
.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (max-width: 480px) { .checkbox-grid { grid-template-columns: repeat(2, 1fr); } }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 14px; cursor: pointer; padding: 6px 0; }
.checkbox-item input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--navy); }
.terms-agree { background: var(--gray-50); border-radius: 8px; padding: 16px; }
.terms-agree .checkbox-item { padding: 4px 0; }

/* === Terms/Privacy Pages === */
.terms-content { max-width: 800px; margin: 0 auto; }
.terms-content h2 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; padding-bottom: 8px; border-bottom: 2px solid var(--gray-200); }
.terms-content h3 { font-size: 16px; font-weight: 700; color: var(--navy-light); margin: 20px 0 8px; }
.terms-content p { font-size: 15px; line-height: 1.8; margin-bottom: 12px; color: var(--gray-900); }
.terms-content ol, .terms-content ul { padding-left: 24px; margin-bottom: 12px; }
.terms-content ol { list-style: decimal; }
.terms-content ul { list-style: disc; }
.terms-content li { font-size: 15px; line-height: 1.8; margin-bottom: 4px; }
.terms-content ol ol { list-style: lower-alpha; margin-top: 4px; }
.terms-content ul ul { margin-top: 4px; }
.terms-updated { font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
.terms-table { width: 100%; border-collapse: collapse; margin: 12px 0 20px; }
.terms-table th, .terms-table td { border: 1px solid var(--gray-300); padding: 10px 14px; font-size: 14px; text-align: left; }
.terms-table th { background: var(--navy); color: white; font-weight: 600; }
.terms-table td:first-child { font-weight: 600; white-space: nowrap; width: 80px; }
.terms-company-info { margin-top: 40px; padding: 20px; background: var(--gray-50); border-radius: 8px; font-size: 14px; line-height: 1.8; }
.terms-company-info p { margin-bottom: 2px; }
