/* ===== CSS VARIABLES ===== */
:root {
  --blue: #2B4FCC;
  --blue-dark: #1E3A9E;
  --blue-light: #4B6FEE;
  --blue-xlight: #EEF2FF;
  --gold: #C8923A;
  --gold-light: #E4A84D;
  --cream: #F8F9FF;
  --white: #ffffff;
  --dark: #141414;
  --gray: #6b7280;
  --gray-light: #F0F4FF;
  --border: #DDE3F8;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow: 0 4px 24px rgba(43,79,204,0.10);
  --shadow-lg: 0 12px 48px rgba(43,79,204,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); line-height: 1.6; overflow-x: hidden; max-width: 100%; padding-top: 72px; }
* { max-width: 100%; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background: var(--gray-light); }
.bg-dark-blue { background: var(--blue-dark); }
.mt-2 { margin-top: 24px; display: inline-block; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue); color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  transition: var(--transition); border: 2px solid var(--blue);
}
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,79,204,0.35); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  border: 2px solid var(--blue); transition: var(--transition);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 50px;
  font-weight: 600; font-size: 15px;
  border: 2px solid rgba(255,255,255,0.7); transition: var(--transition);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag { font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.section-tag.light { color: var(--blue); }
.section-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--dark); line-height: 1.2; }
.section-title.light { color: var(--dark); }
.section-sub { margin-top: 16px; color: var(--gray); font-size: 16px; max-width: 540px; margin-left: auto; margin-right: auto; }
.section-cta { text-align: center; margin-top: 48px; }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(43,79,204,0.09);
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.navbar.nav-hidden { opacity: 0; pointer-events: none; transform: translateY(-8px); }
.navbar.scrolled { box-shadow: 0 4px 30px rgba(43,79,204,0.15); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 20px; }
.nav-logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 40px; width: auto; }
.logo-accent { color: var(--blue); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li { position: relative; }
.nav-links > li > a { font-size: 15px; font-weight: 500; color: var(--dark); padding: 8px 14px; border-radius: 8px; display: flex; align-items: center; gap: 5px; transition: var(--transition); }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--blue); background: var(--blue-xlight); }
.nav-links > li > a i { font-size: 10px; transition: var(--transition); }
.has-dropdown:hover > a i { transform: rotate(180deg); }

.dropdown { position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 220px; padding: 8px; opacity: 0; pointer-events: none; transform: translateY(-8px); transition: var(--transition); border: 1px solid var(--border); }
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown li a { display: block; padding: 10px 14px; font-size: 14px; border-radius: 8px; color: var(--dark); }
.dropdown li a:hover { background: var(--blue-xlight); color: var(--blue); }

.btn-nav { background: var(--blue); color: var(--white); padding: 10px 22px; border-radius: 50px; font-size: 14px; font-weight: 600; transition: var(--transition); white-space: nowrap; }
.btn-nav:hover { background: var(--blue-dark); transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1998; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu { position: fixed; top: 0; right: 0; width: min(320px, 85vw); height: 100vh; background: var(--white); z-index: 1999; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1); padding: 80px 28px 40px; overflow-y: auto; box-shadow: -4px 0 40px rgba(43,79,204,0.15); }
.mobile-menu.active { transform: translateX(0); }
.mobile-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; border-radius: 50%; background: var(--gray-light); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--dark); transition: var(--transition); }
.mobile-close:hover { background: var(--blue); color: var(--white); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul li a { display: block; padding: 13px 16px; font-size: 16px; font-weight: 500; color: var(--dark); border-radius: 10px; transition: var(--transition); }
.mobile-menu ul li a:hover { background: var(--blue-xlight); color: var(--blue); }
.btn-mobile { display: block; text-align: center; background: var(--blue) !important; color: var(--white) !important; padding: 14px 20px !important; border-radius: 50px !important; font-weight: 600 !important; margin-top: 16px; }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; min-height: 600px; max-height: 900px; display: flex; align-items: center; overflow: hidden; padding-bottom: 80px; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(14,30,90,0.82) 0%, rgba(43,79,204,0.45) 60%, rgba(0,0,0,0.3) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-tag { font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.9); font-weight: 600; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.hero-tag::before { content: ''; width: 30px; height: 2px; background: rgba(255,255,255,0.7); }
.hero-title { font-family: var(--font-display); font-size: clamp(36px, 6vw, 72px); color: var(--white); line-height: 1.1; font-weight: 700; margin-bottom: 20px; }
.hero-title em { color: var(--gold-light); font-style: italic; }
.hero-sub { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 36px; max-width: 520px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 0; background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); border-radius: var(--radius); padding: 20px 24px; border: 1px solid rgba(255,255,255,0.2); width: fit-content; }
.stat { display: flex; flex-direction: column; align-items: center; padding: 0 20px; }
.stat strong { font-size: 24px; font-weight: 700; color: var(--white); }
.stat span { font-size: 12px; color: rgba(255,255,255,0.7); white-space: nowrap; }
.stat-divider { width: 1px; background: rgba(255,255,255,0.25); margin: 4px 0; }
.hero-dots { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--white); width: 24px; border-radius: 4px; }

/* ===== SEARCH BAR ===== */
.search-bar-section { background: transparent; padding: 0 0 40px; position: relative; z-index: 10; margin-top: -72px; }
.search-card { background: rgba(255,255,255,0.18); backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4); border-radius: var(--radius-lg); box-shadow: 0 8px 48px rgba(43,79,204,0.25), inset 0 1px 0 rgba(255,255,255,0.4); padding: 24px 28px; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 16px; align-items: end; border: 1px solid rgba(255,255,255,0.35); }
.search-field { display: flex; flex-direction: column; gap: 6px; }
.search-field label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.9); display: flex; align-items: center; gap: 6px; }
.search-field label i { color: var(--gold-light); }
.search-field select { border: 1.5px solid rgba(255,255,255,0.4); border-radius: 10px; padding: 12px 14px; font-size: 15px; font-family: var(--font-body); color: var(--dark); background: rgba(255,255,255,0.95); outline: none; transition: var(--transition); cursor: pointer; }
.search-field select:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(43,79,204,0.2); }
.btn-search { background: var(--blue); color: var(--white); padding: 14px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; white-space: nowrap; transition: var(--transition); display: inline-block; text-align: center; }
.btn-search:hover { background: var(--blue-dark); transform: translateY(-1px); }

/* ===== DESTINATIONS ===== */
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dest-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); display: block; position: relative; }
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-img { height: 220px; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.dest-card:hover .dest-img { transform: scale(1.04); }
.dest-info { padding: 18px 20px; background: var(--white); border-top: 3px solid var(--blue); }
.dest-info h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.dest-info p { font-size: 13px; color: var(--gray); margin-bottom: 10px; }
.dest-info span { font-size: 12px; font-weight: 600; color: var(--blue); background: var(--blue-xlight); padding: 4px 10px; border-radius: 20px; }

/* ===== TOURS ===== */
.tours-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tour-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-img { height: 220px; background-size: cover; background-position: center; position: relative; }
.tour-badge { position: absolute; top: 16px; left: 16px; background: var(--blue); color: var(--white); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px; letter-spacing: 0.5px; }
.tour-body { padding: 22px; }
.tour-meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray); margin-bottom: 12px; flex-wrap: wrap; }
.tour-meta i { color: var(--blue); margin-right: 4px; }
.tour-body h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; }
.tour-body p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 18px; }
.tour-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.tour-price { font-size: 14px; color: var(--gray); }
.tour-price strong { font-size: 18px; color: var(--blue); font-weight: 700; }
.btn-tour { background: var(--blue); color: var(--white); padding: 9px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; transition: var(--transition); }
.btn-tour:hover { background: var(--blue-dark); }

/* ===== TRIP TYPES ===== */
.types-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.type-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px 16px; text-align: center; box-shadow: var(--shadow); border: 2px solid transparent; transition: var(--transition); display: block; }
.type-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.type-icon { width: 60px; height: 60px; background: var(--blue-xlight); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 22px; color: var(--blue); transition: var(--transition); }
.type-card:hover .type-icon { background: var(--blue); color: var(--white); }
.type-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.type-card p { font-size: 12px; color: var(--gray); }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-sub { color: var(--gray); font-size: 15px; margin: 16px 0 28px; line-height: 1.7; }
.why-points { display: flex; flex-direction: column; gap: 14px; }
.why-point { display: flex;  align-items: flex-start; gap: 12px; }
.why-point i { color: var(--gold-light); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.why-point span { color: var(--gray); font-size: 15px; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.wstat { background: rgba(255,255,255,0.08); border-radius: var(--radius-lg); padding: 32px 24px; text-align: center; border: 1px solid rgba(255,255,255,0.12); transition: var(--transition); }
.wstat:hover { background: rgba(255,255,255,0.14); }
.wnum { display: block; font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.wnum sup { font-size: 24px; }
.wlabel { display: block; font-size: 13px; color: var(--gray); margin-top: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testi-card { background: var(--white); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.testi-stars { color: var(--gold); margin-bottom: 16px; font-size: 14px; display: flex; gap: 3px; }
.testi-card > p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 15px; font-weight: 600; }
.testi-author span { font-size: 12px; color: var(--gray); }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--blue); transition: var(--transition); display: block; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.blog-card:hover .blog-img { transform: scale(1.04); }
.blog-body { padding: 22px; }
.blog-cat { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue); background: var(--blue-xlight); padding: 4px 10px; border-radius: 20px; }
.blog-body h4 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 12px 0 8px; line-height: 1.35; color: var(--dark); }
.blog-body p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 14px; }
.blog-read { font-size: 13px; font-weight: 600; color: var(--blue); }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 100px 0; background: linear-gradient(135deg, rgba(14,30,90,0.92) 0%, rgba(43,79,204,0.85) 100%), url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=1600&q=80') center/cover; text-align: center; }
.cta-overlay { position: absolute; inset: 0; }
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); color: var(--white); font-weight: 700; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #0a1340; color: rgba(255,255,255,0.8); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 36px; width: auto; }
.footer-logo span { color: var(--gold-light); }
.footer-about p { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 14px; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-social a:hover { background: var(--blue); color: var(--white); }
.footer-links h4, .footer-contact h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--white); margin-bottom: 20px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.fc-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.fc-item i { color: var(--gold-light); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.fc-item span { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 8px; }

/* ===== PAGE HERO ===== */
.page-hero { position: relative; padding: 160px 0 100px; overflow: hidden; display: flex; align-items: center; min-height: 420px; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 8s ease; }
.page-hero:hover .page-hero-bg { transform: scale(1.04); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,19,64,0.88) 0%, rgba(43,79,204,0.60) 60%, rgba(0,0,0,0.35) 100%); }
.page-hero-shape { position: absolute; bottom: -2px; left: 0; right: 0; height: 80px; background: var(--white); clip-path: ellipse(55% 100% at 50% 100%); }
.page-hero-content { position: relative; z-index: 2; }
.page-hero-tag { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.85); font-weight: 700; margin-bottom: 16px; display: inline-flex; align-items: center; gap: 10px; }
.page-hero-tag::before { content: ''; width: 28px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(34px, 5vw, 62px); color: var(--white); font-weight: 700; margin-bottom: 20px; line-height: 1.1; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.page-hero h1 em { color: var(--gold-light); font-style: italic; }
.page-hero p { color: rgba(255,255,255,0.88); font-size: 17px; max-width: 560px; line-height: 1.75; text-shadow: 0 1px 8px rgba(0,0,0,0.2); }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.page-hero-stats { display: flex; gap: 32px; margin-top: 36px; flex-wrap: wrap; }
.ph-stat { text-align: center; }
.ph-stat strong { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold-light); line-height: 1; }
.ph-stat span { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; letter-spacing: 0.5px; }

/* ===== DESTINATIONS PAGE ===== */
.dest-section-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 14px; }
.dest-section-title::after { content: ''; flex: 1; height: 2px; background: var(--border); }
.dest-section-sub { color: var(--gray); margin-bottom: 36px; font-size: 15px; }
.dest-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-bottom: 72px; }
.dest-detail-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: var(--transition); }
.dest-detail-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dest-detail-img { height: 260px; background-size: cover; background-position: center; position: relative; }
.dest-detail-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%); }
.dest-detail-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; z-index: 1; }
.dest-detail-overlay h3 { font-family: var(--font-display); font-size: 22px; color: var(--white); font-weight: 700; margin-bottom: 4px; }
.dest-detail-overlay p { font-size: 13px; color: rgba(255,255,255,0.8); }
.dest-detail-body { padding: 28px 28px 32px; }
.dest-highlights { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.dest-highlights span { background: var(--blue-xlight); color: var(--blue); font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 20px; }
.dest-detail-body p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.dest-full-content { max-height: 0; overflow: hidden; transition: max-height 0.55s ease, opacity 0.4s ease; opacity: 0; }
.dest-full-content.expanded { max-height: 1200px; opacity: 1; }
.dest-full-content p { margin-top: 12px; }
.btn-read-more { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--blue); background: var(--blue-xlight); border: 2px solid rgba(43,79,204,0.2); padding: 8px 18px; border-radius: 50px; cursor: pointer; transition: var(--transition); margin-bottom: 16px; font-family: var(--font-body); }
.btn-read-more:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-read-more i { transition: transform 0.3s; font-size: 11px; }
.btn-read-more.open i { transform: rotate(180deg); }

/* ===== TOURS PAGE ===== */
.tour-detail-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 48px; border: 1px solid var(--border); }
.tour-detail-inner { display: grid; grid-template-columns: 1fr 2fr; }
.tour-detail-img { background-size: cover; background-position: center; min-height: 360px; }
.tour-detail-content { padding: 36px; }
.tour-detail-content h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; margin-bottom: 12px; }
.tour-detail-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 20px; }
.tdm { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray); }
.tdm i { color: var(--blue); }
.tdm strong { color: var(--dark); font-weight: 600; }
.tour-itinerary { margin: 24px 0; }
.tour-itinerary h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 16px; }
.itinerary-day { display: flex; gap: 16px; margin-bottom: 12px; align-items: flex-start; }
.day-num { background: var(--blue); color: var(--white); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; }
.day-text { font-size: 14px; color: var(--gray); line-height: 1.5; }
.tour-includes { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.include-tag { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--dark); background: var(--gray-light); padding: 6px 12px; border-radius: 20px; }
.include-tag i { color: var(--blue); font-size: 12px; }
.tour-detail-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--border); gap: 16px; flex-wrap: wrap; }
.tour-detail-price { font-size: 15px; color: var(--gray); }
.tour-detail-price strong { font-size: 28px; color: var(--blue); font-weight: 700; display: block; line-height: 1; }
.tour-filter-bar { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 20px 24px; margin-bottom: 40px; display: flex; gap: 12px; flex-wrap: wrap; border: 1px solid var(--border); }
.filter-btn { padding: 9px 20px; border-radius: 50px; font-size: 14px; font-weight: 600; cursor: pointer; transition: var(--transition); border: 2px solid var(--border); background: var(--white); color: var(--gray); }
.filter-btn:hover, .filter-btn.active { border-color: var(--blue); color: var(--blue); background: var(--blue-xlight); }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-block { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-accent { position: absolute; bottom: -28px; right: -28px; background: var(--blue); color: var(--white); border-radius: var(--radius-lg); padding: 24px 28px; text-align: center; box-shadow: var(--shadow-lg); }
.about-img-accent strong { display: block; font-size: 36px; font-weight: 700; font-family: var(--font-display); }
.about-img-accent span { font-size: 13px; opacity: 0.85; }
.about-content h2 { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 40px); font-weight: 700; line-height: 1.2; margin-bottom: 20px; }
.about-content p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.badge { display: flex; align-items: center; gap: 8px; background: var(--gray-light); border-radius: 10px; padding: 10px 16px; font-size: 13px; font-weight: 600; color: var(--dark); border: 1px solid var(--border); }
.badge i { color: var(--blue); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 56px; }
.team-card { text-align: center; }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-light)); display: flex; align-items: center; justify-content: center; font-size: 36px; font-weight: 700; color: var(--white); margin: 0 auto 16px; font-family: var(--font-display); }
.team-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-card span { font-size: 13px; color: var(--blue); font-weight: 500; }

/* ===== CONTACT PAGE ===== */
.contact-quick-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.contact-quick-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow); text-align: center; display: block; border: 2px solid transparent; transition: var(--transition); }
.contact-quick-card:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cqc-icon { width: 60px; height: 60px; background: var(--blue-xlight); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 24px; color: var(--blue); transition: var(--transition); }
.contact-quick-card:hover .cqc-icon { background: var(--blue); color: var(--white); }
.contact-quick-card h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.contact-quick-card .cqc-val { font-size: 15px; color: var(--blue); font-weight: 700; }
.contact-quick-card .cqc-sub { font-size: 12px; color: var(--gray); margin-top: 5px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 16px; }
.contact-info p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.ci { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon { width: 48px; height: 48px; background: var(--blue-xlight); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--blue); font-size: 18px; }
.ci-text strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.ci-text span, .ci-text a { font-size: 14px; color: var(--gray); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px; border: 1px solid var(--border); }
.contact-form-card h3 { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select, .form-group textarea { border: 1.5px solid var(--border); border-radius: 10px; padding: 13px 16px; font-size: 15px; font-family: var(--font-body); color: var(--dark); background: var(--white); outline: none; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,79,204,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit { width: 100%; background: var(--blue); color: var(--white); padding: 16px; border-radius: 10px; font-size: 16px; font-weight: 600; cursor: pointer; transition: var(--transition); border: none; font-family: var(--font-body); }
.btn-submit:hover { background: var(--blue-dark); transform: translateY(-1px); }
.map-section { margin-top: 72px; }
.map-section h3 { font-family: var(--font-display); font-size: 28px; font-weight: 700; margin-bottom: 24px; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }

/* ===== BLOG PAGE ===== */
.blog-hero-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 48px; display: grid; grid-template-columns: 1.2fr 1fr; }
.blog-hero-img { background-size: cover; background-position: center; min-height: 400px; }
.blog-hero-content { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.blog-hero-content .blog-cat { margin-bottom: 16px; display: inline-block; }
.blog-hero-content h2 { font-family: var(--font-display); font-size: 28px; font-weight: 700; line-height: 1.25; margin-bottom: 16px; }
.blog-hero-content p { font-size: 15px; color: var(--gray); line-height: 1.75; margin-bottom: 24px; }
.blog-meta { display: flex; gap: 16px; font-size: 13px; color: var(--gray); margin-bottom: 20px; flex-wrap: wrap; }
.blog-meta i { color: var(--blue); margin-right: 4px; }
.blog-grid-main { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-full-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.blog-full-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-full-img { height: 200px; background-size: cover; background-position: center; }
.blog-full-body { padding: 24px; }
.blog-full-body .blog-cat { margin-bottom: 12px; display: inline-block; }
.blog-full-body h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; line-height: 1.3; margin-bottom: 10px; color: var(--dark); }
.blog-full-body p { font-size: 14px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }
.blog-full-body .blog-meta { margin-bottom: 16px; }
.read-more { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--blue); }
.read-more:hover { gap: 10px; }
.sidebar-card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 28px; border: 1px solid var(--border); margin-bottom: 28px; }
.sidebar-card h4 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--blue); color: var(--dark); }
.sidebar-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.sidebar-list li a { color: var(--gray); display: flex; justify-content: space-between; align-items: center; }
.sidebar-list li a:hover { color: var(--blue); }
.sidebar-list li a span { background: var(--gray-light); padding: 2px 8px; border-radius: 20px; font-size: 12px; }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: var(--gray-light); color: var(--gray); font-size: 12px; padding: 5px 12px; border-radius: 20px; transition: var(--transition); }
.tag:hover { background: var(--blue); color: var(--white); }
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }

/* ===== WATERMARK ===== */
@keyframes udit-blink { 0%,100%{opacity:1;box-shadow:0 0 6px #00ff88,0 0 14px #00ff88}50%{opacity:0.15;box-shadow:none} }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .types-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  body { padding-top: 72px; }
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0 12px; }
  .search-card { grid-template-columns: 1fr 1fr; }
  .btn-search { grid-column: span 2; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .tours-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-accent { bottom: 16px; right: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-quick-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .blog-hero-card { grid-template-columns: 1fr; }
  .blog-hero-img { min-height: 280px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-grid-main { grid-template-columns: repeat(2, 1fr); }
  .tour-detail-inner { grid-template-columns: 1fr; }
  .tour-detail-img { min-height: 250px; }
  .dest-detail-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .page-hero { padding: 130px 0 80px; min-height: 360px; }
  .page-hero-stats { gap: 20px; }
  .ph-stat strong { font-size: 22px; }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .search-card { grid-template-columns: 1fr; }
  .btn-search { grid-column: auto; }
  .dest-grid { grid-template-columns: 1fr; }
  .tours-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-grid-main { grid-template-columns: 1fr; }
  .contact-quick-cards { grid-template-columns: 1fr; max-width: 100%; }
  .contact-form-card { padding: 20px 16px; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; width: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
  .page-hero { padding: 110px 0 70px; min-height: 300px; }
  .page-hero-stats { gap: 16px; flex-wrap: wrap; }
  .page-hero-shape { height: 48px; }
  .ci { gap: 12px; }
  .ci-icon { width: 40px; height: 40px; font-size: 16px; }
}

@media (max-width: 420px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-outline-light { width: 100%; text-align: center; justify-content: center; }
  .btn-submit { font-size: 15px; padding: 14px; }
}