/* Lovely Trip — modern travel agency styles */
:root {
  --navy: #16204a;
  --navy-2: #1e2b5e;
  --pink: #ec3f87;
  --pink-2: #ff5fa2;
  --teal: #22b0d8;
  --ink: #1c2340;
  --muted: #6b7394;
  --bg: #ffffff;
  --bg-alt: #f6f8fd;
  --line: #e7ebf5;
  --radius: 18px;
  --shadow: 0 18px 40px -18px rgba(22, 32, 74, .28);
  --shadow-sm: 0 8px 24px -12px rgba(22, 32, 74, .25);
  --grad: linear-gradient(120deg, var(--pink) 0%, #b0439c 45%, var(--teal) 100%);
  --grad-navy: linear-gradient(160deg, #1a2559 0%, #16204a 60%, #101838 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
.container { width: min(1180px, 92%); margin: 0 auto; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); font-weight: 700; }
section { position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-weight: 600; font-size: .98rem; padding: .85rem 1.6rem; border-radius: 100px;
  border: 0; cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
  font-family: inherit;
}
.btn-sm { padding: .6rem 1.2rem; font-size: .9rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 22px -8px rgba(236, 63, 135, .6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(236, 63, 135, .7); }
.btn-ghost { background: rgba(255, 255, 255, .12); color: #fff; border: 1.5px solid rgba(255, 255, 255, .5); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, .22); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--pink); border: 1.5px solid var(--pink); }
.btn-outline:hover { background: var(--pink); color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s; padding: .5rem 0;
}
.site-header.scrolled { background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); box-shadow: 0 6px 22px -14px rgba(22, 32, 74, .5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .5rem; }
.brand-logo { height: 56px; width: auto; display: block; transition: transform .4s; }
.brand:hover .brand-logo { transform: rotate(-5deg) scale(1.06); }
.wordmark { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.5rem; line-height: 1; color: #fff; }
.site-header.scrolled .wordmark { color: var(--navy); }
.wordmark span { color: var(--pink); }

.nav { display: flex; gap: 1.6rem; }
.nav a { font-weight: 500; font-size: .96rem; color: #fff; position: relative; padding: .3rem 0; transition: color .2s; }
.site-header.scrolled .nav a { color: var(--ink); }
.nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--pink); transition: width .25s; border-radius: 2px; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a:hover, .nav a.active { color: var(--pink); }
.hide-mobile { display: inline-flex; }

.header-actions { display: flex; align-items: center; gap: .9rem; }
.lang-switch { display: flex; background: rgba(255, 255, 255, .16); border-radius: 100px; padding: 3px; }
.site-header.scrolled .lang-switch { background: var(--bg-alt); }
.lang-switch button {
  border: 0; background: transparent; color: #fff; font-weight: 600; font-size: .8rem;
  padding: .35rem .7rem; border-radius: 100px; cursor: pointer; font-family: inherit; transition: .2s;
}
.site-header.scrolled .lang-switch button { color: var(--muted); }
.lang-switch button.active { background: var(--grad); color: #fff !important; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { width: 26px; height: 2.5px; background: #fff; border-radius: 2px; transition: .3s; }
.site-header.scrolled .burger span { background: var(--navy); }
.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: #101740; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(1000px 500px at 80% -10%, rgba(236, 63, 135, .35), transparent 60%), radial-gradient(800px 500px at 0% 100%, rgba(34, 176, 216, .3), transparent 55%); }
.hero-inner { padding: 7rem 0 5rem; }
.hero-content { max-width: 680px; }
.hero-badge { display: inline-block; background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .3); padding: .45rem 1.1rem; border-radius: 100px; font-size: .82rem; font-weight: 500; letter-spacing: .04em; margin-bottom: 1.4rem; backdrop-filter: blur(6px); }
.hero h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(2.3rem, 5.2vw, 4rem); margin-bottom: 1.2rem; }
.hero p { font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255, 255, 255, .9); max-width: 560px; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.5rem; margin-top: 3rem; flex-wrap: wrap; }
.hero-stats strong { display: block; font-size: 2rem; font-weight: 800; background: linear-gradient(90deg, #fff, var(--pink-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-stats span { font-size: .88rem; color: rgba(255, 255, 255, .78); }
.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; height: 70px; background: var(--bg); clip-path: polygon(0 45%, 100% 0, 100% 100%, 0 100%); }
.hero-blob { position: absolute; border-radius: 50%; filter: blur(6px); opacity: .5; pointer-events: none; z-index: -1; }
.hero-blob { top: 18%; right: 12%; width: 130px; height: 130px; background: radial-gradient(circle at 30% 30%, rgba(255, 95, 162, .8), rgba(236, 63, 135, 0)); }
.hero-blob.b2 { top: auto; bottom: 20%; right: auto; left: 8%; width: 170px; height: 170px; background: radial-gradient(circle at 30% 30%, rgba(34, 176, 216, .7), rgba(34, 176, 216, 0)); }

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: .8rem; }
.section-head h2::after { content: ''; display: block; width: 64px; height: 4px; background: var(--grad); border-radius: 3px; margin: 1rem auto 0; }
.section-head p { color: var(--muted); }

/* ---------- Tours ---------- */
.tours-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 1.6rem; }
.tour-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform .3s, box-shadow .3s; }
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tour-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--grad-navy); }
.tour-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.tour-card:hover .tour-img img { transform: scale(1.08); }
.tour-price { position: absolute; top: 12px; right: 12px; background: var(--grad); color: #fff; font-weight: 700; font-size: .9rem; padding: .4rem .9rem; border-radius: 100px; box-shadow: 0 6px 14px -6px rgba(236, 63, 135, .7); }
.tour-body { padding: 1.1rem 1.2rem 1.3rem; }
.tour-country { font-size: .78rem; color: var(--teal); font-weight: 600; }
.tour-name { font-size: 1.25rem; margin: .2rem 0 1rem; }
.img-fallback .tour-img img, .img-fallback img { opacity: 0; }
.img-fallback .tour-img { background: var(--grad); }

/* ---------- Feature cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.cards-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; }
.feature-card, .why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.feature-card:hover, .why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-icon { width: 58px; height: 58px; display: grid; place-items: center; font-size: 1.6rem; border-radius: 16px; background: linear-gradient(135deg, rgba(236, 63, 135, .12), rgba(34, 176, 216, .12)); margin-bottom: 1.1rem; }
.feature-card h3, .why-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.feature-card p, .why-card p { color: var(--muted); font-size: .95rem; }

/* ---------- About ---------- */
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3.5rem; align-items: center; }
.about-media { position: relative; }
.about-media img { border-radius: 24px; box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-media.img-fallback { min-height: 420px; border-radius: 24px; background: var(--grad); }
.about-badge { position: absolute; right: -14px; bottom: 28px; background: #fff; border-radius: 16px; padding: 1rem 1.3rem; box-shadow: var(--shadow); text-align: center; }
.about-badge strong { display: block; font-size: 1.5rem; color: var(--pink); font-weight: 800; }
.about-badge span { font-size: .78rem; color: var(--muted); }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 1.2rem; }
.about-text h2::after { content: ''; display: block; width: 64px; height: 4px; background: var(--grad); border-radius: 3px; margin-top: 1rem; }
.about-text p { color: var(--muted); margin-bottom: 1rem; }

/* ---------- Contact ---------- */
.contact-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: .8rem; }
.contact-info > p { color: var(--muted); margin-bottom: 2rem; }
.contact-list { list-style: none; display: grid; gap: 1.3rem; margin-bottom: 2rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.ci-ic { width: 46px; height: 46px; flex: none; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, rgba(236, 63, 135, .12), rgba(34, 176, 216, .12)); font-size: 1.2rem; }
.contact-list small { display: block; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }
.contact-list a { display: block; font-weight: 600; color: var(--navy); }
.contact-list a:hover { color: var(--pink); }
.social { display: flex; gap: .7rem; }
.social a { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); transition: transform .2s, background .2s, color .2s, border-color .2s; }
.social a svg { width: 20px; height: 20px; }
.social a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }
.social a.social-empty { opacity: .55; }

.apply-form { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 2rem; box-shadow: var(--shadow); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .4rem; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 12px;
  font-family: inherit; font-size: .96rem; color: var(--ink); background: var(--bg-alt); transition: .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--pink); background: #fff; box-shadow: 0 0 0 4px rgba(236, 63, 135, .1); }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form-status { margin-top: 1rem; font-size: .92rem; font-weight: 500; text-align: center; min-height: 1.2rem; }
.form-status.ok { color: #1a9d5a; }
.form-status.err { color: #d63b3b; }

/* ---------- Map ---------- */
.map-wrap { line-height: 0; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; filter: saturate(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: var(--grad-navy); color: rgba(255, 255, 255, .75); padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.2rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer-brandmark { gap: .55rem; margin-bottom: 1rem; }
.footer-brandmark .brand-logo { height: 62px; }
.footer-brandmark .wordmark { color: #fff; }
.footer-brand p { font-size: .94rem; max-width: 340px; margin-bottom: 1.2rem; }
.footer-col { display: flex; flex-direction: column; }
.site-footer h4 { color: #fff; margin-bottom: 1rem; font-size: 1.05rem; }
.footer-col a { color: rgba(255, 255, 255, .72); font-size: .94rem; margin-bottom: .55rem; transition: .2s; }
.footer-col a:hover { color: var(--pink-2); transform: translateX(3px); }
.footer-brand .social a { color: #fff; border-color: rgba(255, 255, 255, .28); }
.footer-bottom { padding-top: 1.4rem; font-size: .85rem; text-align: center; color: rgba(255,255,255,.7); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2.4rem; }
  .about-badge { right: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { position: fixed; inset: 0 0 auto 0; top: 68px; flex-direction: column; background: #fff; padding: 1.4rem 6%; gap: 1rem; box-shadow: var(--shadow); transform: translateY(-140%); transition: transform .35s; }
  .nav.open { transform: translateY(0); }
  .nav a { color: var(--ink); }
  .nav a.active { color: var(--pink); }
  .burger { display: flex; }
  .hide-mobile { display: none !important; }
  .hero-stats { gap: 1.6rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding: 8.5rem 0 4rem; color: #fff; overflow: hidden; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: var(--grad-navy); }
.page-hero::after { content: ''; position: absolute; inset: 0; z-index: -1; background: radial-gradient(700px 340px at 85% -20%, rgba(236, 63, 135, .4), transparent 60%), radial-gradient(600px 340px at 0% 120%, rgba(34, 176, 216, .35), transparent 55%); }
.page-hero .page-media { position: absolute; inset: 0; z-index: -3; background-size: cover; background-position: center; opacity: .28; }
.page-hero h1 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: .8rem; }
.page-hero p { color: rgba(255, 255, 255, .85); max-width: 640px; margin: 0 auto; }
.crumb { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; color: rgba(255, 255, 255, .7); margin-bottom: 1.1rem; }
.crumb a { color: rgba(255, 255, 255, .7); }
.crumb a:hover { color: #fff; }
.crumb span { color: var(--pink-2); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad); color: #fff; border-radius: 26px; padding: 3.2rem clamp(1.5rem, 5vw, 4rem); text-align: center; box-shadow: var(--shadow); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(500px 260px at 20% 0%, rgba(255, 255, 255, .22), transparent 60%); }
.cta-band > * { position: relative; }
.cta-badge { display: inline-block; background: rgba(255, 255, 255, .2); padding: .4rem 1rem; border-radius: 100px; font-size: .82rem; margin-bottom: 1rem; }
.cta-band h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: .8rem; }
.cta-band p { color: rgba(255, 255, 255, .92); max-width: 560px; margin: 0 auto 1.8rem; }
.cta-band .btn { background: #fff; color: var(--pink); }
.cta-band .btn:hover { background: var(--navy); color: #fff; }

/* ---------- Home intro strip ---------- */
.intro { text-align: center; max-width: 760px; margin: 0 auto; }
.intro h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 1rem; }
.intro p { color: var(--muted); font-size: 1.05rem; }
.center-btn { text-align: center; margin-top: 2.6rem; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; background: var(--grad-navy); border-radius: 24px; padding: 2.6rem 2rem; text-align: center; box-shadow: var(--shadow); }
.stats-band strong { display: block; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; background: linear-gradient(90deg, #fff, var(--pink-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stats-band span { color: rgba(255, 255, 255, .8); font-size: .9rem; }
@media (max-width: 640px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.review-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.9rem 1.8rem; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-card::before { content: '\201C'; position: absolute; top: 6px; right: 20px; font-family: 'Playfair Display', serif; font-size: 4.5rem; line-height: 1; color: var(--line); }
.review-stars { color: #ffb400; letter-spacing: 2px; margin-bottom: .8rem; }
.review-stars .star-empty { color: #d8dbe6; }
.review-text { color: var(--ink); font-style: italic; margin-bottom: 1.5rem; position: relative; }
.review-author { display: flex; align-items: center; gap: .85rem; }
.review-ava { width: 46px; height: 46px; flex: none; border-radius: 50%; display: grid; place-items: center; font-weight: 700; color: #fff; background: var(--grad); }
.review-author strong { display: block; color: var(--navy); font-size: .98rem; }
.review-author small { color: var(--muted); font-size: .82rem; }
