@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap");

:root {
  --navy: #062f55;
  --navy-2: #0a4777;
  --blue: #0f78b8;
  --blue-light: #e8f5ff;
  --green: #168dcc;
  --green-light: #e7f5fd;
  --sand: #edf6fc;
  --cream: #f8fbfe;
  --white: #ffffff;
  --ink: #142c3e;
  --muted: #617789;
  --line: #dce9f2;
  --danger: #9a3b3b;
  --shadow-sm: 0 8px 24px rgba(6, 47, 85, 0.09);
  --shadow: 0 20px 55px rgba(6, 47, 85, 0.16);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-lg: 34px;
  --container: 1180px;
  --transition: 220ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.section { padding: 90px 0; }
.section-sm { padding: 58px 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 30px; height: 2px; background: currentColor; }
.section-title {
  margin: 12px 0 16px;
  color: var(--navy);
  font-size: clamp(2rem, 4.4vw, 4.1rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.section-lead { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.center { text-align: center; }
.center .section-lead { margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 251, 254, .93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 233, 242, .86);
}
.navbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 15px; color: var(--white);
  background: linear-gradient(145deg, #0f78b8, #4cb8f2);
  box-shadow: var(--shadow-sm); font-weight: 900;
}
.brand-text strong { display: block; color: var(--navy); font-size: 1.05rem; line-height: 1.15; }
.brand-text span { display: block; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; }
.nav-links { display: flex; align-items: center; gap: 5px; }
.nav-links a { padding: 12px 13px; color: #334953; font-size: .93rem; font-weight: 700; border-radius: 12px; transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue-light); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--white) !important; background: var(--navy) !important; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--white); box-shadow: var(--shadow-sm); }
.menu-toggle span { display: block; width: 21px; height: 2px; margin: 5px auto; background: var(--navy); transition: var(--transition); }

.hero {
  position: relative;
  min-height: 790px;
  display: flex;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -3;
  background: url("../images/site/hero-diber.webp") center/cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(90deg, rgba(4, 27, 44, .88) 0%, rgba(7, 40, 58, .62) 47%, rgba(7, 40, 58, .22) 100%), rgba(15,120,184,.18);
  backdrop-filter: blur(3px);
}
.hero-orb { position: absolute; right: -160px; bottom: -210px; width: 550px; height: 550px; border-radius: 50%; background: rgba(65, 174, 236, .22); filter: blur(4px); z-index: -1; }
.hero-content { max-width: 760px; padding: 120px 0 150px; color: var(--white); }
.hero-eyebrow { display: inline-flex; gap: 10px; align-items: center; padding: 9px 14px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; background: rgba(255,255,255,.08); font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.hero h1 { margin: 22px 0; font-family: "Playfair Display", Georgia, "Times New Roman", serif; font-weight: 500; font-size: clamp(3.4rem, 8vw, 7.2rem); line-height: .94; letter-spacing: -.055em; }
.hero h1 em { color: #73c9ff; font-style: italic; }
.hero p { max-width: 640px; margin: 0 0 32px; color: rgba(255,255,255,.82); font-size: clamp(1.04rem, 1.8vw, 1.26rem); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 20px; border: 1px solid transparent; border-radius: 14px; font-weight: 800; transition: transform var(--transition), box-shadow var(--transition), background var(--transition); }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--navy); background: #73c9ff; box-shadow: 0 12px 34px rgba(0,0,0,.18); }
.btn-light { color: var(--white); border-color: rgba(255,255,255,.38); background: rgba(255,255,255,.08); }
.btn-dark { color: var(--white); background: var(--navy); }
.btn-outline { color: var(--navy); border-color: var(--line); background: var(--white); }
.btn-blue { color: var(--white); background: var(--blue); }
.btn-whatsapp { color: #0a679d; background: #e7f5fd; }
.hero-facts { position: absolute; left: 50%; bottom: 34px; transform: translateX(-50%); width: min(calc(100% - 32px), var(--container)); display: grid; grid-template-columns: repeat(4, 1fr); background: rgba(255,255,255,.94); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden; }
.hero-fact { padding: 23px 26px; border-right: 1px solid var(--line); }
.hero-fact:last-child { border-right: 0; }
.hero-fact strong { display: block; color: var(--navy); font-size: 1.12rem; }
.hero-fact span { color: var(--muted); font-size: .84rem; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.image-stack { position: relative; min-height: 600px; }
.image-stack .main-image { position: absolute; inset: 0 70px 70px 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.image-stack .main-image img { width: 100%; height: 100%; object-fit: cover; }
.image-stack .small-image { position: absolute; right: 0; bottom: 0; width: 47%; height: 290px; border: 9px solid var(--cream); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.image-stack .small-image img { width: 100%; height: 100%; object-fit: cover; }
.quote-card { margin-top: 28px; padding: 22px 24px; border-left: 4px solid var(--green); border-radius: 0 18px 18px 0; background: var(--green-light); color: var(--green); font-weight: 700; }
.check-list { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before { content: "✓"; flex: 0 0 25px; height: 25px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; font-size: .75rem; font-weight: 900; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.destination-card { position: relative; min-height: 410px; overflow: hidden; border-radius: var(--radius); background: var(--navy); box-shadow: var(--shadow-sm); }
.destination-card img { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms ease; }
.destination-card::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(115,201,255,.10), rgba(15,120,184,.18)); backdrop-filter: blur(2.5px); }
.destination-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(12,85,132,.10) 12%, rgba(4, 27, 44, .90) 100%); }
.destination-card:hover img { transform: scale(1.06); }
.destination-content { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; padding: 28px; color: var(--white); }
.destination-content small { display: inline-block; margin-bottom: 9px; color: #73c9ff; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.destination-content h3 { margin: 0 0 8px; font-size: 1.65rem; }
.destination-content p { margin: 0; color: rgba(255,255,255,.78); font-size: .93rem; }

.experience-band { background: var(--navy); color: var(--white); }
.experience-band .section-title { color: var(--white); }
.experience-band .section-lead { color: rgba(255,255,255,.72); }
.experience-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.experience-card { min-height: 260px; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 22px; background: rgba(255,255,255,.05); transition: var(--transition); }
.experience-card:hover { transform: translateY(-5px); border-color: rgba(115,201,255,.62); background: rgba(255,255,255,.08); }
.icon-box { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 28px; border-radius: 17px; color: var(--navy); background: #73c9ff; font-size: 1.45rem; }
.experience-card h3 { margin: 0 0 10px; font-size: 1.2rem; }
.experience-card p { margin: 0; color: rgba(255,255,255,.65); font-size: .92rem; }

.featured-stay { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; margin-top: 42px; }
.featured-stay-main { position: relative; min-height: 470px; overflow: hidden; border-radius: var(--radius-lg); }
.featured-stay-main img { width: 100%; height: 100%; object-fit: cover; }
.featured-stay-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(115,201,255,.10), rgba(3,38,67,.92)); backdrop-filter: blur(2px); }
.featured-stay-copy { position: absolute; z-index: 2; left: 32px; right: 32px; bottom: 30px; color: var(--white); }
.featured-stay-copy h3 { margin: 7px 0 8px; font-size: 2rem; }
.featured-stay-list { display: grid; gap: 16px; }
.mini-stay { display: grid; grid-template-columns: 150px 1fr; overflow: hidden; min-height: 145px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.mini-stay img { width: 100%; height: 100%; object-fit: cover; }
.mini-stay-copy { padding: 20px; }
.mini-stay-copy h4 { margin: 0 0 6px; color: var(--navy); }
.mini-stay-copy p { margin: 0; color: var(--muted); font-size: .88rem; }

.page-hero { padding: 105px 0 82px; color: var(--white); background: linear-gradient(120deg, rgba(3,38,67,.96), rgba(15,120,184,.78)), url("../images/site/hero-diber.webp") center/cover; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; color: rgba(255,255,255,.72); font-size: .9rem; }
.page-hero h1 { max-width: 900px; margin: 0 0 18px; font-family: "Playfair Display", Georgia, "Times New Roman", serif; font-size: clamp(3rem, 7vw, 6rem); line-height: .98; font-weight: 500; letter-spacing: -.045em; }
.page-hero p { max-width: 720px; margin: 0; color: rgba(255,255,255,.78); font-size: 1.1rem; }

.filters { margin: 38px 0 28px; padding: 18px; display: grid; grid-template-columns: 1.5fr 1fr 1fr auto; gap: 12px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow-sm); }
.form-control { width: 100%; min-height: 50px; padding: 0 15px; color: var(--ink); border: 1px solid var(--line); border-radius: 13px; background: var(--cream); outline: none; transition: var(--transition); }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(15,120,184,.10); }

.accommodation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stay-card { overflow: hidden; border: 1px solid var(--line); border-radius: 23px; background: var(--white); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.stay-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stay-image { position: relative; height: 225px; overflow: hidden; background: var(--sand); }
.stay-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.stay-card:hover .stay-image img { transform: scale(1.04); }
.badge { position: absolute; top: 15px; left: 15px; padding: 7px 10px; border-radius: 999px; color: var(--navy); background: rgba(255,255,255,.92); backdrop-filter: blur(10px); font-size: .75rem; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; }
.stay-body { padding: 23px; }
.stay-body h3 { margin: 0 0 7px; color: var(--navy); font-size: 1.35rem; }
.stay-zone { color: var(--blue); font-size: .83rem; font-weight: 800; }
.stay-description { min-height: 72px; margin: 14px 0; color: var(--muted); font-size: .92rem; }
.contact-list { display: grid; gap: 9px; margin: 18px 0; padding-top: 16px; border-top: 1px solid var(--line); }
.contact-item { display: flex; gap: 10px; align-items: flex-start; color: #42545d; font-size: .88rem; }
.contact-item span:first-child { flex: 0 0 24px; color: var(--blue); font-weight: 900; }
.stay-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.stay-actions a { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 0 9px; border-radius: 11px; font-size: .76rem; font-weight: 900; }
.no-results { grid-column: 1/-1; padding: 46px; text-align: center; border: 1px dashed #b8c5ca; border-radius: 20px; color: var(--muted); background: var(--white); }
.data-note { margin-top: 24px; padding: 18px 20px; border-radius: 16px; color: #0a679d; background: #edf7ff; font-size: .9rem; }

.guide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.info-card { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); }
.info-card h3 { margin: 0 0 12px; color: var(--navy); }
.info-card p { color: var(--muted); }
.info-card .meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.meta span { padding: 7px 10px; border-radius: 999px; background: var(--green-light); color: var(--green); font-size: .78rem; font-weight: 800; }

.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: start; }
.contact-panel { padding: 32px; border-radius: 25px; color: var(--white); background: linear-gradient(150deg, var(--navy), var(--blue)); box-shadow: var(--shadow); }
.contact-panel h2 { margin-top: 0; font-size: 2.2rem; }
.contact-panel p { color: rgba(255,255,255,.72); }
.contact-panel .contact-item { color: rgba(255,255,255,.88); margin-top: 16px; }
.contact-form { display: grid; gap: 15px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 7px; color: var(--navy); font-size: .86rem; font-weight: 800; }
.contact-form textarea { min-height: 150px; padding-top: 14px; resize: vertical; }
.map-frame { width: 100%; height: 470px; border: 0; border-radius: 24px; box-shadow: var(--shadow-sm); }

.cta-section { padding: 70px 0; }
.cta-box { position: relative; overflow: hidden; padding: 58px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(125deg, var(--green), var(--blue)); box-shadow: var(--shadow); }
.cta-box::after { content: ""; position: absolute; width: 330px; height: 330px; right: -80px; top: -130px; border-radius: 50%; background: rgba(255,255,255,.10); }
.cta-box h2 { position: relative; z-index: 1; max-width: 780px; margin: 0 0 14px; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.05; }
.cta-box p { position: relative; z-index: 1; max-width: 650px; color: rgba(255,255,255,.78); }
.cta-box .btn-row { position: relative; z-index: 1; margin-top: 25px; }

.site-footer { padding: 70px 0 24px; color: rgba(255,255,255,.72); background: #061c2d; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 42px; }
.site-footer .brand-text strong { color: var(--white); }
.footer-about { max-width: 420px; margin-top: 20px; }
.footer-title { margin: 0 0 16px; color: var(--white); font-size: 1rem; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: #73c9ff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.visible { opacity: 1; transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

@media (max-width: 1050px) {
  .nav-links { position: fixed; left: 16px; right: 16px; top: 88px; display: none; padding: 14px; flex-direction: column; align-items: stretch; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 15px; }
  .menu-toggle { display: block; }
  .hero { min-height: 760px; }
  .hero-facts { grid-template-columns: repeat(2, 1fr); }
  .hero-fact:nth-child(2) { border-right: 0; }
  .hero-fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .card-grid, .accommodation-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .section { padding: 70px 0; }
  .hero { min-height: 820px; align-items: flex-start; }
  .hero-content { padding-top: 100px; }
  .hero-facts { bottom: 24px; }
  .intro-grid, .featured-stay, .contact-layout, .guide-grid { grid-template-columns: 1fr; }
  .image-stack { min-height: 500px; order: -1; }
  .featured-stay-main { min-height: 390px; }
  .filters { grid-template-columns: 1fr 1fr; }
  .filters .search-field { grid-column: 1/-1; }
  .filters .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .navbar { min-height: 70px; }
  .brand-text span { display: none; }
  .hero { min-height: 850px; }
  .hero-content { padding: 78px 0 300px; }
  .hero h1 { font-size: clamp(3rem, 16vw, 4.8rem); }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .hero-fact { padding: 15px 14px; }
  .hero-fact strong { font-size: .96rem; }
  .hero-fact span { font-size: .73rem; }
  .btn-row .btn { width: 100%; }
  .image-stack { min-height: 420px; }
  .image-stack .main-image { inset: 0 30px 52px 0; }
  .image-stack .small-image { width: 52%; height: 200px; border-width: 6px; }
  .card-grid, .experience-grid, .accommodation-grid { grid-template-columns: 1fr; }
  .destination-card { min-height: 370px; }
  .featured-stay-main { min-height: 390px; }
  .mini-stay { grid-template-columns: 115px 1fr; }
  .filters { grid-template-columns: 1fr; }
  .filters .search-field { grid-column: auto; }
  .stay-actions { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-box { padding: 38px 25px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child, .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}


/* Version 1.1 – seksione të zgjeruara */
.stats-band { padding: 32px 0; color: var(--white); background: linear-gradient(120deg, var(--green), var(--blue)); }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 18px 28px; border-right: 1px solid rgba(255,255,255,.2); }
.stat-item:last-child { border-right: 0; }
.stat-item strong { display: block; font-size: clamp(1.65rem, 3vw, 2.7rem); line-height: 1; }
.stat-item span { display: block; margin-top: 8px; color: rgba(255,255,255,.76); font-size: .88rem; }
.overview-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: start; }
.quick-places-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quick-place { display: flex; gap: 16px; align-items: center; min-height: 112px; padding: 19px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-sm); transition: var(--transition); }
.quick-place:hover { transform: translateY(-3px); border-color: rgba(15,120,184,.35); box-shadow: var(--shadow); }
.quick-place > span { flex: 0 0 43px; height: 43px; display: grid; place-items: center; border-radius: 14px; color: var(--white); background: var(--blue); font-weight: 900; }
.quick-place strong, .quick-place small { display: block; }
.quick-place strong { color: var(--navy); }
.quick-place small { margin-top: 3px; color: var(--muted); line-height: 1.35; }
.itinerary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.itinerary-card { padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); }
.itinerary-day { display: inline-flex; padding: 7px 11px; border-radius: 999px; color: var(--green); background: var(--green-light); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.itinerary-card h3 { margin: 17px 0 13px; color: var(--navy); font-size: 1.45rem; }
.itinerary-card ol { margin: 0 0 22px; padding-left: 22px; color: var(--muted); }
.itinerary-card li { margin: 7px 0; }
.itinerary-card a { color: var(--blue); font-weight: 900; }
.food-section { background: var(--sand); }
.food-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.food-copy .btn { margin-top: 16px; }
.food-cards { display: grid; gap: 14px; }
.food-cards > div { padding: 24px; border: 1px solid rgba(6,47,85,.08); border-radius: 20px; background: rgba(255,255,255,.72); box-shadow: var(--shadow-sm); }
.food-cards strong, .food-cards span { display: block; }
.food-cards strong { color: var(--navy); font-size: 1.1rem; }
.food-cards span { margin-top: 5px; color: var(--muted); }
.destination-intro { background: var(--white); }
.destination-toolbar { display: grid; grid-template-columns: minmax(240px, 1fr) 2fr auto; gap: 16px; align-items: center; margin-bottom: 28px; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: var(--white); box-shadow: var(--shadow-sm); }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { min-height: 40px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; color: #40535d; background: var(--cream); font-size: .78rem; font-weight: 900; transition: var(--transition); }
.filter-chip:hover, .filter-chip.active { color: var(--white); border-color: var(--blue); background: var(--blue); }
.result-count { white-space: nowrap; color: var(--navy); font-size: .85rem; }
.places-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.place-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.place-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.place-card[hidden] { display: none; }
.place-image { position: relative; height: 230px; overflow: hidden; background: var(--sand); }
.place-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.place-card:hover .place-image img { transform: scale(1.04); }
.place-body { padding: 24px; }
.place-body h3 { margin: 5px 0 10px; color: var(--navy); font-size: 1.45rem; line-height: 1.15; }
.place-body > p { min-height: 104px; margin: 0; color: var(--muted); font-size: .92rem; }
.place-meta { display: grid; gap: 7px; margin: 18px 0; padding-top: 16px; border-top: 1px solid var(--line); color: #53666f; font-size: .8rem; }
.place-meta b { color: var(--navy); }
.map-link { display: inline-flex; align-items: center; color: var(--blue); font-size: .86rem; font-weight: 900; }
.map-link:hover { text-decoration: underline; }

@media (max-width: 1050px) {
  .places-grid, .itinerary-grid { grid-template-columns: repeat(2, 1fr); }
  .destination-toolbar { grid-template-columns: 1fr; }
  .result-count { justify-self: start; }
}
@media (max-width: 820px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: 0; }
  .stat-item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.2); }
  .overview-grid, .food-grid { grid-template-columns: 1fr; }
  .quick-places-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .stat-grid, .quick-places-grid, .places-grid, .itinerary-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .stat-item:last-child { border-bottom: 0; }
  .place-body > p { min-height: 0; }
  .destination-toolbar { padding: 13px; }
  .filter-chips { gap: 6px; }
  .filter-chip { padding: 0 10px; }
}


/* Version 1.2 – logo, histori dhe faqe të detajuara */
.brand-logo-link { min-width: 210px; }
.brand-logo { width: 220px; height: auto; max-height: 62px; object-fit: contain; }
.footer-logo-wrap { display: inline-flex; padding: 8px 12px; border-radius: 14px; background: #fff; }
.footer-logo-wrap .brand-logo { width: 230px; }
.place-actions { display:flex; align-items:center; justify-content:space-between; gap:12px; }
.place-actions .btn { min-height:42px; padding:0 14px; font-size:.8rem; }
.history-preview { background: linear-gradient(135deg,#f3f9fd,#edf7ff); }
.history-preview-grid { display:grid; grid-template-columns:.7fr 1.3fr; gap:60px; align-items:center; }
.history-emblem { min-height:420px; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:40px; border-radius:34px; color:#fff; background:linear-gradient(145deg,var(--navy),var(--green)); box-shadow:var(--shadow); }
.history-emblem img { width:min(290px,80%); border-radius:50%; box-shadow:0 20px 50px rgba(0,0,0,.25); }
.history-emblem span { margin-top:24px; font-family:"Playfair Display",Georgia,serif; font-size:1.4rem; }
.history-points { display:flex; flex-wrap:wrap; gap:9px; margin:24px 0; }
.history-points span { padding:8px 12px; border-radius:999px; color:var(--green); background:var(--green-light); font-size:.8rem; font-weight:800; }
.history-hero { background:linear-gradient(120deg,rgba(3,38,67,.97),rgba(47,107,79,.82)),url('../images/site/hero-diber.webp') center/cover; }
.history-intro { display:grid; grid-template-columns:.8fr 1.2fr; gap:60px; }
.history-timeline { max-width:980px; margin:48px auto 0; position:relative; }
.history-timeline::before { content:""; position:absolute; left:185px; top:8px; bottom:8px; width:2px; background:linear-gradient(var(--blue),var(--green)); }
.timeline-item { display:grid; grid-template-columns:160px 1fr; gap:54px; margin-bottom:24px; }
.timeline-date { align-self:start; padding:9px 12px; border-radius:999px; color:var(--blue); background:var(--blue-light); text-align:center; font-size:.78rem; font-weight:900; }
.timeline-item > div { position:relative; padding:26px 28px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:var(--shadow-sm); }
.timeline-item > div::before { content:""; position:absolute; left:-36px; top:31px; width:14px; height:14px; border:5px solid #edf7ff; border-radius:50%; background:var(--blue); }
.timeline-item h3 { margin:0 0 8px; color:var(--navy); }
.timeline-item p { margin:0; color:var(--muted); }
.history-figures { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.history-figures div { padding:22px; border:1px solid var(--line); border-radius:18px; background:#fff; box-shadow:var(--shadow-sm); }
.history-figures strong,.history-figures span { display:block; }
.history-figures strong { color:var(--navy); }
.history-figures span { margin-top:5px; color:var(--muted); font-size:.9rem; }
.history-culture { color:#fff; background:var(--navy); }
.history-culture .section-title { color:#fff; }
.history-culture .section-lead { color:rgba(255,255,255,.72); }
.culture-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; margin-top:38px; }
.culture-grid > div { padding:27px; border:1px solid rgba(255,255,255,.14); border-radius:22px; background:rgba(255,255,255,.06); }
.culture-grid > div > span { font-size:1.7rem; color:#73c9ff; }
.culture-grid h3 { margin:14px 0 8px; }
.culture-grid p { margin:0; color:rgba(255,255,255,.66); }
.destination-detail-hero { position:relative; min-height:640px; display:flex; align-items:flex-end; overflow:hidden; color:#fff; background:var(--navy); }
.detail-hero-bg { position:absolute; inset:0; }
.detail-hero-bg::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(3,38,67,.93),rgba(3,38,67,.58) 58%,rgba(3,38,67,.24)), rgba(15,120,184,.16); backdrop-filter: blur(3px); }
.detail-hero-bg img { width:100%; height:100%; object-fit:cover; }
.detail-hero-content { position:relative; z-index:2; padding:115px 0 54px; }
.detail-badge { display:inline-flex; padding:8px 12px; border:1px solid rgba(255,255,255,.32); border-radius:999px; background:rgba(255,255,255,.1); font-size:.78rem; font-weight:900; text-transform:uppercase; letter-spacing:.08em; }
.detail-hero-content h1 { max-width:900px; margin:18px 0 14px; font-family:"Playfair Display",Georgia,serif; font-size:clamp(3rem,7vw,6.3rem); line-height:.96; font-weight:500; }
.detail-hero-content > p { max-width:760px; color:rgba(255,255,255,.82); font-size:1.14rem; }
.detail-quick { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; margin-top:36px; overflow:hidden; border-radius:18px; background:rgba(255,255,255,.18); }
.detail-quick span { padding:18px; background:rgba(3,38,67,.72); }
.detail-quick b { display:block; margin-bottom:4px; color:#73c9ff; font-size:.72rem; text-transform:uppercase; letter-spacing:.08em; }
.detail-layout { display:grid; grid-template-columns:minmax(0,1.45fr) minmax(290px,.55fr); gap:50px; align-items:start; }
.detail-content .section-title { font-size:clamp(2.3rem,4.8vw,4.3rem); }
.detail-intro { color:#3e5059; font-size:1.16rem; line-height:1.85; }
.detail-content h3 { margin:38px 0 14px; color:var(--navy); font-size:1.45rem; }
.detail-content > p { color:var(--muted); }
.detail-list { display:grid; grid-template-columns:1fr 1fr; gap:12px; padding:0; list-style:none; }
.detail-list li { padding:15px 17px 15px 44px; position:relative; border:1px solid var(--line); border-radius:15px; background:#fff; }
.detail-list li::before { content:"✓"; position:absolute; left:15px; top:15px; width:21px; height:21px; display:grid; place-items:center; border-radius:50%; color:#fff; background:var(--green); font-size:.7rem; font-weight:900; }
.safety-note { margin-top:34px; padding:24px; border-left:4px solid var(--blue); border-radius:0 18px 18px 0; background:var(--blue-light); }
.safety-note strong { color:var(--navy); }
.safety-note p { margin:7px 0 0; color:#40555e; }
.detail-sidebar { display:grid; gap:18px; position:sticky; top:102px; }
.detail-map-card,.detail-plan-card,.source-box { padding:25px; border:1px solid var(--line); border-radius:22px; background:#fff; box-shadow:var(--shadow-sm); }
.detail-map-card { color:#fff; background:linear-gradient(145deg,var(--navy),var(--blue)); }
.detail-map-card h3,.detail-plan-card h3 { margin-top:0; }
.detail-map-card p { color:rgba(255,255,255,.72); }
.detail-map-card .btn { width:100%; background:#73c9ff; color:var(--navy); }
.detail-plan-card > div { display:flex; gap:12px; padding:13px 0; border-bottom:1px solid var(--line); }
.detail-plan-card > div span { font-size:1.25rem; }
.detail-plan-card p { margin:0; color:var(--muted); font-size:.9rem; }
.detail-plan-card b { color:var(--navy); }
.detail-plan-card .btn { width:100%; margin-top:18px; }
.source-box summary { color:var(--navy); font-weight:900; cursor:pointer; }
.source-box ul { padding-left:18px; }
.source-box a { color:var(--blue); text-decoration:underline; }
.source-box p { color:var(--muted); font-size:.82rem; }
.related-section { background:#edf7ff; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:36px; }
.related-card { overflow:hidden; border-radius:22px; background:#fff; box-shadow:var(--shadow-sm); }
.related-card img { width:100%; height:210px; object-fit:cover; }
.related-card span,.related-card strong { display:block; margin-inline:20px; }
.related-card span { margin-top:17px; color:var(--blue); font-size:.76rem; font-weight:900; text-transform:uppercase; }
.related-card strong { margin-top:5px; margin-bottom:20px; color:var(--navy); font-size:1.2rem; }
@media(max-width:1100px){.brand-logo-link{min-width:185px}.brand-logo{width:190px}.nav-links a{padding:11px 9px;font-size:.87rem}.detail-quick{grid-template-columns:repeat(2,1fr)}}
@media(max-width:820px){.history-preview-grid,.history-intro,.detail-layout{grid-template-columns:1fr}.history-emblem{min-height:340px}.history-timeline::before{left:18px}.timeline-item{grid-template-columns:1fr;gap:10px;padding-left:48px}.timeline-date{justify-self:start}.timeline-item>div::before{left:-38px}.history-figures,.culture-grid,.related-grid{grid-template-columns:1fr 1fr}.detail-sidebar{position:static}.destination-detail-hero{min-height:720px}}
@media(max-width:620px){.brand-logo-link{min-width:0}.brand-logo{width:170px;max-height:54px}.footer-logo-wrap .brand-logo{width:205px}.history-figures,.culture-grid,.related-grid,.detail-list,.detail-quick{grid-template-columns:1fr}.destination-detail-hero{min-height:780px}.detail-hero-content{padding-top:88px}.detail-hero-content h1{font-size:3.45rem}.place-actions{align-items:stretch;flex-direction:column}.place-actions .btn{width:100%}}


/* Fotografitë reale të destinacioneve */
.photo-gallery-section{padding-top:8px;background:#fff}.photo-gallery-head{display:flex;justify-content:space-between;gap:22px;align-items:end;margin-bottom:26px}.photo-gallery-head p{max-width:620px;margin:0;color:var(--muted)}.photo-gallery{display:grid;grid-template-columns:repeat(12,1fr);grid-auto-rows:155px;gap:14px}.photo-gallery a{position:relative;overflow:hidden;border-radius:20px;background:var(--sand);box-shadow:var(--shadow-sm)}.photo-gallery a:nth-child(1){grid-column:span 7;grid-row:span 2}.photo-gallery a:nth-child(2){grid-column:span 5;grid-row:span 2}.photo-gallery a:nth-child(n+3){grid-column:span 4;grid-row:span 2}.photo-gallery img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}.photo-gallery a:hover img{transform:scale(1.045)}.photo-gallery-caption{position:absolute;left:12px;right:12px;bottom:12px;padding:9px 11px;border-radius:12px;color:#fff;background:rgba(15,120,184,.34);backdrop-filter:blur(10px);border:1px solid rgba(255,255,255,.18);font-size:.78rem;font-weight:800}.photo-credit{margin-top:15px;color:var(--muted);font-size:.78rem}.peshkopi-hero{background:linear-gradient(120deg,rgba(3,38,67,.92),rgba(15,120,184,.62)),url('../images/destinations/peshkopi.webp') center 58%/cover}.image-source{display:block;margin-top:7px;color:#6b7b82;font-size:.72rem}.stay-image::after{content:"";position:absolute;inset:auto 0 0;height:42%;background:linear-gradient(transparent,rgba(3,38,67,.34));pointer-events:none}.stay-image .badge{z-index:2}.stay-photo-source{position:absolute;z-index:2;right:10px;bottom:9px;padding:5px 8px;border-radius:9px;color:#fff;background:rgba(3,38,67,.72);font-size:.64rem;font-weight:700}.destination-card .photo-credit-chip{position:absolute;z-index:3;right:12px;top:12px;padding:5px 8px;border-radius:9px;color:#fff;background:rgba(3,38,67,.62);font-size:.62rem}.real-photo-note{margin-top:24px;padding:16px 18px;border:1px solid var(--line);border-radius:15px;background:#fff;color:var(--muted);font-size:.86rem}
@media(max-width:820px){.photo-gallery{grid-template-columns:1fr 1fr;grid-auto-rows:235px}.photo-gallery a,.photo-gallery a:nth-child(1),.photo-gallery a:nth-child(2),.photo-gallery a:nth-child(n+3){grid-column:auto;grid-row:auto}.photo-gallery-head{align-items:start;flex-direction:column}}
@media(max-width:560px){.photo-gallery{grid-template-columns:1fr;grid-auto-rows:260px}}


/* Version 1.4 – logo profesionale dhe përmbajtje nga arkivi “Rruga e Arbërit” */
.brand-logo-link{min-width:225px}.brand-logo{width:242px;max-height:64px;object-fit:contain}.footer-logo-wrap .brand-logo{width:270px;max-height:76px}.nav-links{gap:2px}.nav-links a{padding-inline:10px}
.guide-hero{background:linear-gradient(115deg,rgba(3,38,67,.96),rgba(15,120,184,.7)),url('../images/destinations/drini.webp') center/cover}.guide-numbers{background:#fff;border-bottom:1px solid var(--line)}.guide-number-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;overflow:hidden;border-radius:24px;background:var(--line);box-shadow:var(--shadow-sm)}.guide-number-grid>div{padding:28px;background:var(--cream)}.guide-number-grid strong{display:block;color:var(--navy);font-family:"Playfair Display",Georgia,serif;font-size:2.4rem}.guide-number-grid span{color:var(--muted);font-size:.86rem}.historical-note{margin:18px auto 0;max-width:900px;color:#526e82;font-size:.79rem;text-align:center}.reason-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:14px;margin-top:40px}.reason-grid article{padding:24px 20px;border:1px solid var(--line);border-radius:20px;background:#fff;box-shadow:var(--shadow-sm)}.reason-grid b{display:block;color:#4cb8f2;font-family:"Playfair Display",Georgia,serif;font-size:1.7rem}.reason-grid h3{margin:8px 0;color:var(--navy);font-size:1.08rem}.reason-grid p{margin:0;color:var(--muted);font-size:.84rem}.route-section{background:#edf7ff}.route-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:38px}.route-card{padding:28px;border-radius:22px;background:#fff;border:1px solid var(--line);box-shadow:var(--shadow-sm)}.route-card>span{display:inline-flex;padding:6px 10px;border-radius:999px;color:var(--green);background:var(--green-light);font-size:.75rem;font-weight:900}.route-card h3{margin:16px 0 10px;color:var(--navy);font-size:1.35rem}.route-card p{color:var(--muted)}.route-card a{color:var(--blue);font-weight:900}.glacial-section{background:var(--navy);color:#fff}.glacial-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}.glacial-section .section-title{color:#fff}.glacial-section .section-lead{color:rgba(255,255,255,.72)}.glacial-section .check-list li{color:rgba(255,255,255,.82)}.glacial-photo{position:relative;overflow:hidden;border-radius:28px;min-height:520px}.glacial-photo img{width:100%;height:100%;object-fit:cover}.glacial-photo span{position:absolute;left:20px;right:20px;bottom:20px;padding:14px 16px;border-radius:14px;background:rgba(3,38,67,.76);backdrop-filter:blur(9px);font-size:.85rem}.source-library{background:#fff}.source-link-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:36px}.source-link-grid a{padding:23px;border:1px solid var(--line);border-radius:18px;background:var(--cream);transition:var(--transition)}.source-link-grid a:hover{transform:translateY(-3px);box-shadow:var(--shadow-sm)}.source-link-grid strong,.source-link-grid span{display:block}.source-link-grid strong{color:var(--navy)}.source-link-grid span{margin-top:5px;color:var(--muted);font-size:.86rem}.local-research-section{background:#fff}.research-header{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:end}.research-stat-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin:34px 0}.research-stat-grid>div{padding:24px;border-radius:19px;color:#fff;background:linear-gradient(145deg,var(--navy),var(--blue))}.research-stat-grid strong{display:block;font-family:"Playfair Display",Georgia,serif;font-size:2.1rem}.research-stat-grid span{color:rgba(255,255,255,.74);font-size:.82rem}.research-routes{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin:0 0 28px}.research-routes a{padding:23px;border:1px solid var(--line);border-radius:18px;background:var(--cream)}.research-routes span,.research-routes strong{display:block}.research-routes span{color:var(--blue);font-size:.76rem;font-weight:900;text-transform:uppercase;letter-spacing:.08em}.research-routes strong{margin-top:7px;color:var(--navy)}.resistance-section{background:#fff}.resistance-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:52px;align-items:center}.resistance-cards{display:grid;grid-template-columns:1fr 1fr;gap:13px}.resistance-cards>div{padding:22px;border-radius:18px;background:var(--cream);border:1px solid var(--line)}.resistance-cards strong,.resistance-cards span{display:block}.resistance-cards strong{color:var(--blue);font-family:"Playfair Display",Georgia,serif;font-size:1.35rem}.resistance-cards span{margin-top:6px;color:var(--muted);font-size:.86rem}.source-inline{display:flex;flex-wrap:wrap;gap:10px 16px;margin-top:30px;padding-top:22px;border-top:1px solid var(--line);font-size:.86rem}.source-inline span{color:var(--muted)}.source-inline a{color:var(--blue);font-weight:800}.local-insight{margin-top:36px;padding:26px;border:1px solid #cceaff;border-radius:20px;background:linear-gradient(145deg,#f2f9fe,#eef7fa)}.local-insight h3{margin:10px 0 8px}.local-insight p{color:#4b6068}.local-insight a,.city-source-note a{color:var(--blue);font-weight:900}.city-source-note{width:min(calc(100% - 32px),var(--container));margin:30px auto 0;padding:28px;border:1px solid var(--line);border-radius:22px;background:#fff;box-shadow:var(--shadow-sm)}.city-source-note h3{color:var(--navy)}.city-source-note p{color:var(--muted)}
@media(max-width:1120px){.reason-grid{grid-template-columns:repeat(3,1fr)}.route-grid{grid-template-columns:repeat(2,1fr)}.research-routes{grid-template-columns:repeat(2,1fr)}.brand-logo-link{min-width:190px}.brand-logo{width:205px}.nav-links a{padding-inline:7px;font-size:.83rem}}
@media(max-width:820px){.guide-number-grid,.research-stat-grid{grid-template-columns:repeat(2,1fr)}.glacial-grid,.research-header,.resistance-grid{grid-template-columns:1fr}.source-link-grid{grid-template-columns:1fr}.glacial-photo{min-height:420px}.resistance-cards{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.reason-grid,.route-grid,.research-routes,.resistance-cards{grid-template-columns:1fr}.guide-number-grid,.research-stat-grid{grid-template-columns:1fr}.brand-logo{width:185px}.footer-logo-wrap .brand-logo{width:225px}.glacial-photo{min-height:330px}}


/* v1.5 additions */
.activity-feature{margin-top:38px;padding:28px;border:1px solid var(--line);border-radius:22px;background:linear-gradient(145deg,#f2f9fe,#eef6fa)}
.activity-feature h3{margin:10px 0 8px;color:var(--navy);font-size:1.55rem}.activity-feature p{color:var(--muted)}
.safety-panel{margin-top:20px;padding:18px 20px;border-left:4px solid #4cb8f2;border-radius:12px;background:#edf7ff}.safety-panel strong{color:#0a679d}.safety-panel p{margin:5px 0 0;color:#526e82}
.gastronomy-hero{background:linear-gradient(120deg,rgba(3,38,67,.94),rgba(47,107,79,.72)),url('../images/restaurants/nena-dashuri.svg') center/cover}
.gastronomy-intro{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:end;margin-bottom:42px}
.restaurant-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.restaurant-card{overflow:hidden;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:var(--shadow-sm);transition:var(--transition)}.restaurant-card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.restaurant-visual{position:relative;height:245px;overflow:hidden}.restaurant-visual img{width:100%;height:100%;object-fit:cover}.restaurant-visual span{position:absolute;right:12px;bottom:12px;padding:6px 9px;border-radius:9px;color:#fff;background:rgba(3,38,67,.72);font-size:.68rem;font-weight:800}
.restaurant-body{padding:24px}.restaurant-body small{color:var(--blue);font-weight:900;text-transform:uppercase;letter-spacing:.08em}.restaurant-body h3{margin:8px 0;color:var(--navy);font-size:1.35rem}.restaurant-body p{color:var(--muted)}.restaurant-meta{display:grid;gap:7px;margin:18px 0;color:#455962;font-size:.86rem}.restaurant-actions{display:flex;flex-wrap:wrap;gap:8px}.restaurant-actions .btn{min-height:42px;padding:0 14px;font-size:.82rem}.restaurant-note{margin-top:35px;padding:22px;border:1px solid var(--line);border-radius:18px;background:var(--cream)}.restaurant-note p{margin:6px 0 0;color:var(--muted)}
.culture-feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:38px}.culture-feature-card{overflow:hidden;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:var(--shadow-sm)}.culture-feature-card img{width:100%;height:280px;object-fit:cover}.culture-feature-card>div{padding:24px}.culture-feature-card span{color:var(--blue);font-size:.78rem;font-weight:900;text-transform:uppercase;letter-spacing:.09em}.culture-feature-card h3{margin:8px 0;color:var(--navy)}.culture-feature-card p{margin:0;color:var(--muted)}
.feature-split{display:grid;grid-template-columns:1fr 1fr;gap:58px;align-items:center}.feature-photo{overflow:hidden;min-height:430px;border-radius:28px;box-shadow:var(--shadow)}.feature-photo img{width:100%;height:100%;object-fit:cover}
@media(max-width:1000px){.restaurant-grid{grid-template-columns:repeat(2,1fr)}.culture-feature-grid{grid-template-columns:1fr 1fr}.nav-links a{padding:11px 9px;font-size:.86rem}}
@media(max-width:820px){.gastronomy-intro,.feature-split{grid-template-columns:1fr}.culture-feature-grid{grid-template-columns:1fr}.feature-photo{min-height:330px}}
@media(max-width:620px){.restaurant-grid{grid-template-columns:1fr}.restaurant-visual{height:230px}}


/* v1.6 – ture dhe ndërveprim */
.scroll-progress{position:fixed;top:0;left:0;z-index:2000;width:0;height:3px;background:linear-gradient(90deg,#73c9ff,#0f78b8);transition:width 80ms linear}
.back-to-top{position:fixed;right:20px;bottom:20px;z-index:900;width:48px;height:48px;border:0;border-radius:16px;color:#fff;background:var(--navy);box-shadow:var(--shadow);opacity:0;transform:translateY(14px);pointer-events:none;transition:var(--transition);font-size:1.15rem}.back-to-top.show{opacity:1;transform:none;pointer-events:auto}
.tour-hero{position:relative;overflow:hidden;padding:118px 0 94px;color:#fff;background:linear-gradient(115deg,rgba(3,38,67,.97),rgba(15,120,184,.76)),url('../images/destinations/rabdisht-2.webp') center/cover}.tour-hero::after{content:"";position:absolute;width:440px;height:440px;right:-130px;bottom:-220px;border-radius:50%;background:rgba(115,201,255,.18)}.tour-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1.25fr .55fr;gap:70px;align-items:center}.tour-hero-copy h1{max-width:820px;margin:20px 0;font-family:"Playfair Display",Georgia,serif;font-size:clamp(3rem,6.6vw,6rem);line-height:.97;letter-spacing:-.055em}.tour-hero-copy h1 em{color:#73c9ff;font-style:italic}.tour-hero-copy p{max-width:720px;color:rgba(255,255,255,.78);font-size:1.12rem}.tour-hero-panel{padding:28px;border:1px solid rgba(255,255,255,.18);border-radius:26px;background:rgba(255,255,255,.09);backdrop-filter:blur(16px);box-shadow:0 28px 60px rgba(0,0,0,.18)}.tour-hero-panel strong{display:block;margin-top:17px;color:#73c9ff;font-family:"Playfair Display",Georgia,serif;font-size:3.1rem;line-height:1}.tour-hero-panel p{margin:5px 0 0;color:#fff}.tour-hero-panel small{display:block;margin-top:20px;color:rgba(255,255,255,.62);font-size:.78rem}.tour-live-dot{display:flex;align-items:center;gap:9px;font-size:.75rem;font-weight:800;text-transform:uppercase;letter-spacing:.08em}.tour-live-dot i{width:9px;height:9px;border-radius:50%;background:#73c9ff;box-shadow:0 0 0 6px rgba(115,201,255,.16)}
.tour-trust-strip{background:#fff;border-bottom:1px solid var(--line)}.tour-trust-grid{display:grid;grid-template-columns:repeat(4,1fr)}.tour-trust-grid>div{display:grid;grid-template-columns:46px 1fr;column-gap:12px;padding:26px;border-right:1px solid var(--line)}.tour-trust-grid>div:last-child{border-right:0}.tour-trust-grid span{grid-row:1/3;width:42px;height:42px;display:grid;place-items:center;border-radius:14px;color:var(--blue);background:var(--blue-light);font-weight:900}.tour-trust-grid strong{color:var(--navy)}.tour-trust-grid small{color:var(--muted)}
.tour-directory-head{display:flex;justify-content:space-between;gap:28px;align-items:end}.saved-counter{flex:none;padding:10px 14px;border-radius:999px;color:var(--green);background:var(--green-light);font-size:.82rem;font-weight:900}.tour-toolbar{display:grid;grid-template-columns:1fr 230px auto;gap:12px;margin:34px 0 16px}.tour-search{display:flex;align-items:center;gap:10px;padding:0 16px;border:1px solid var(--line);border-radius:14px;background:#fff}.tour-search input{width:100%;height:52px;border:0;outline:0;background:transparent}.tour-toolbar select{height:52px;padding:0 14px;border:1px solid var(--line);border-radius:14px;color:var(--ink);background:#fff}.tour-filter-chips{display:flex;flex-wrap:wrap;gap:9px}.tour-filter-chips button{padding:9px 13px;border:1px solid var(--line);border-radius:999px;color:#435862;background:#fff;font-size:.82rem;font-weight:800}.tour-filter-chips button.active,.tour-filter-chips button:hover{color:#fff;border-color:var(--blue);background:var(--blue)}.tour-results-line{display:flex;justify-content:space-between;gap:20px;margin:22px 0 18px;color:var(--muted);font-size:.82rem}.tour-results-line span:first-child{color:var(--navy);font-weight:900}.tour-card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}.tour-card{overflow:hidden;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:var(--shadow-sm);transition:var(--transition)}.tour-card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}.tour-card-image{position:relative;height:230px;overflow:hidden}.tour-card-image img{width:100%;height:100%;object-fit:cover;transition:transform 600ms ease}.tour-card:hover .tour-card-image img{transform:scale(1.05)}.tour-card-type{position:absolute;left:14px;top:14px;padding:7px 10px;border-radius:999px;color:#fff;background:rgba(3,38,67,.78);backdrop-filter:blur(8px);font-size:.69rem;font-weight:900;text-transform:uppercase;letter-spacing:.07em}.tour-save{position:absolute;right:14px;top:14px;width:42px;height:42px;border:0;border-radius:14px;color:var(--navy);background:rgba(255,255,255,.92);font-size:1.25rem;box-shadow:var(--shadow-sm)}.tour-save.saved{color:#fff;background:var(--green)}.tour-card-body{padding:23px}.tour-card-zone{color:var(--blue);font-size:.75rem;font-weight:900;text-transform:uppercase;letter-spacing:.08em}.tour-card h3{margin:7px 0 8px;color:var(--navy);font-size:1.35rem;line-height:1.2}.tour-card p{min-height:70px;margin:0;color:var(--muted);font-size:.9rem}.tour-meta{display:flex;flex-wrap:wrap;gap:8px;margin:17px 0}.tour-meta span{padding:6px 9px;border-radius:9px;background:var(--cream);color:#485c64;font-size:.75rem;font-weight:800}.tour-card-actions{display:flex;gap:8px}.tour-card-actions .btn{min-height:43px;padding:0 13px;font-size:.8rem}.tour-card-actions .btn:first-child{flex:1}.tour-status-note{margin-top:12px;color:#526e82;font-size:.72rem}.tour-status-note.online{color:#168dcc}
.tour-planner-section{background:linear-gradient(145deg,#eef8ff,#edf5f9)}.tour-planner-grid{display:grid;grid-template-columns:1fr 1fr;gap:70px;align-items:center}.planner-note{margin-top:24px;padding:17px;border-left:4px solid var(--green);border-radius:0 14px 14px 0;color:#456b82;background:#fff;font-size:.86rem}.tour-planner-card{display:grid;gap:15px;padding:30px;border:1px solid rgba(6,47,85,.08);border-radius:26px;background:#fff;box-shadow:var(--shadow)}.tour-planner-card label{display:grid;gap:7px;color:var(--navy);font-size:.82rem;font-weight:900}.tour-planner-card select{height:52px;padding:0 14px;border:1px solid var(--line);border-radius:13px;background:#fff}.planner-result{min-height:105px;padding:18px;border-radius:17px;background:var(--cream);color:var(--muted)}.planner-result strong{display:block;color:var(--navy);font-size:1.1rem}.planner-result a{display:inline-block;margin-top:8px;color:var(--blue);font-weight:900}.tour-source-section{background:#fff}.tour-source-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:38px}.tour-source-grid article{padding:26px;border:1px solid var(--line);border-radius:20px;background:var(--cream)}.tour-source-grid b{color:#4cb8f2;font-family:"Playfair Display",Georgia,serif;font-size:1.8rem}.tour-source-grid h3{margin:8px 0;color:var(--navy)}.tour-source-grid p{margin:0;color:var(--muted)}
.tour-modal[hidden]{display:none}.tour-modal{position:fixed;inset:0;z-index:1800;display:grid;place-items:center;padding:18px}.tour-modal-backdrop{position:absolute;inset:0;background:rgba(3,38,67,.72);backdrop-filter:blur(7px)}.tour-modal-card{position:relative;z-index:1;width:min(720px,100%);max-height:calc(100vh - 36px);overflow:auto;border-radius:28px;background:#fff;box-shadow:0 32px 90px rgba(0,0,0,.3)}.tour-modal-close{position:absolute;z-index:2;right:14px;top:14px;width:44px;height:44px;border:0;border-radius:15px;background:#fff;box-shadow:var(--shadow-sm);font-size:1.55rem}.tour-modal-image{height:300px}.tour-modal-image img{width:100%;height:100%;object-fit:cover}.tour-modal-copy{padding:30px}.tour-modal-copy h2{margin:8px 0;color:var(--navy);font-size:2rem}.tour-modal-copy>p{color:var(--muted)}.tour-modal-highlights{display:grid;grid-template-columns:1fr 1fr;gap:9px;margin:20px 0;padding:0;list-style:none}.tour-modal-highlights li{padding:11px 12px;border-radius:12px;background:var(--cream);font-size:.86rem}.tour-modal-highlights li::before{content:"✓";margin-right:8px;color:var(--green);font-weight:900}.tour-modal-actions{display:flex;flex-wrap:wrap;gap:9px;margin-top:22px}body.modal-open{overflow:hidden}
.home-tour-section{background:#fff}.home-tour-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:55px;align-items:center}.home-tour-controls{display:grid;grid-template-columns:1fr 1fr;gap:11px;margin-top:28px}.home-tour-controls label{display:grid;gap:6px;color:var(--navy);font-size:.8rem;font-weight:900}.home-tour-controls select{height:50px;padding:0 12px;border:1px solid var(--line);border-radius:13px;background:#fff}.home-tour-controls .btn{grid-column:1/-1}.home-tour-result{display:grid;grid-template-columns:45% 55%;min-height:380px;overflow:hidden;border-radius:28px;background:var(--navy);box-shadow:var(--shadow)}.home-tour-result img{width:100%;height:100%;object-fit:cover}.home-tour-result>div{display:flex;flex-direction:column;justify-content:center;padding:32px;color:#fff}.home-tour-result span{color:#73c9ff;font-size:.75rem;font-weight:900;text-transform:uppercase;letter-spacing:.09em}.home-tour-result h3{margin:8px 0;font-size:1.8rem}.home-tour-result p{color:rgba(255,255,255,.68)}.home-tour-result a{margin-top:14px;color:#73c9ff;font-weight:900}
@media(max-width:1180px){.tour-card-grid{grid-template-columns:repeat(2,1fr)}.tour-hero-grid{grid-template-columns:1fr .55fr}.nav-links a{padding-inline:6px;font-size:.79rem}}
@media(max-width:900px){.tour-hero-grid,.tour-planner-grid,.home-tour-grid{grid-template-columns:1fr}.tour-hero-panel{max-width:520px}.tour-trust-grid{grid-template-columns:1fr 1fr}.tour-trust-grid>div:nth-child(2){border-right:0}.tour-trust-grid>div:nth-child(-n+2){border-bottom:1px solid var(--line)}.tour-toolbar{grid-template-columns:1fr 1fr}.tour-toolbar .tour-search{grid-column:1/-1}.tour-source-grid{grid-template-columns:1fr}.home-tour-result{min-height:340px}}
@media(max-width:620px){.tour-hero{padding:92px 0 70px}.tour-hero-copy h1{font-size:3.2rem}.tour-hero-grid{gap:35px}.tour-trust-grid,.tour-card-grid{grid-template-columns:1fr}.tour-trust-grid>div{border-right:0;border-bottom:1px solid var(--line)}.tour-toolbar{grid-template-columns:1fr}.tour-toolbar .tour-search{grid-column:auto}.tour-directory-head,.tour-results-line{align-items:flex-start;flex-direction:column}.tour-modal-highlights{grid-template-columns:1fr}.tour-modal-image{height:230px}.tour-modal-copy{padding:23px}.home-tour-controls{grid-template-columns:1fr}.home-tour-controls .btn{grid-column:auto}.home-tour-result{grid-template-columns:1fr;min-height:0}.home-tour-result img{height:240px}.home-tour-result>div{padding:25px}.back-to-top{right:14px;bottom:14px}}


/* VERSIONI 1.7 — identitet vizual blu dhe tipografi turistike */
h1, h2, h3, .section-title,
.hero h1, .page-hero h1, .detail-hero h1,
.tour-hero-copy h1, .cta-box h2,
.featured-stay-copy h3, .tour-modal-copy h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.section-title,
.hero h1,
.page-hero h1,
.detail-hero h1,
.tour-hero-copy h1 {
  font-weight: 700;
}

.nav-links a,
.btn,
.section-kicker,
.hero-eyebrow,
.brand-text,
.tour-filter-chips button,
.tour-card-type,
.tour-card-zone {
  font-family: "Montserrat", ui-sans-serif, system-ui, sans-serif;
}

.hero h1 em,
.tour-hero-copy h1 em {
  color: #73c9ff;
}

.btn-primary,
.icon-box {
  color: #062f55;
  background: #73c9ff;
}

.quote-card,
.planner-note {
  border-left-color: #168dcc;
  color: #0a679d;
  background: #e7f5fd;
}

.check-list li::before,
.tour-save.saved {
  background: #168dcc;
}

.destination-content small,
.home-tour-result span,
.home-tour-result a,
.tour-hero-panel strong {
  color: #73c9ff;
}

.experience-card:hover {
  border-color: rgba(115, 201, 255, .62);
}

.site-header {
  box-shadow: 0 8px 30px rgba(6, 47, 85, .035);
}

.nav-cta,
.btn-dark {
  background: linear-gradient(135deg, #062f55, #0a4777) !important;
}

.btn-blue {
  background: linear-gradient(135deg, #0f78b8, #168dcc);
}

.section-kicker {
  color: #0f78b8;
}

.stats-band,
.experience-band,
.site-footer {
  background-color: #062f55;
}

/* ======================================================================
   ZBULO DIBRËN PRO 2.0 — premium navigation, global polish & Elementor
   ====================================================================== */
:root{
  --navy:#063a66;
  --navy-deep:#031f38;
  --blue:#0f78b8;
  --blue-bright:#4bbbf4;
  --sky:#cfeeff;
  --cream:#f6fafc;
  --line:#d8e7f0;
  --shadow-sm:0 12px 34px rgba(4,49,84,.09);
  --shadow:0 26px 70px rgba(4,49,84,.16);
  --shadow-lg:0 42px 110px rgba(3,31,56,.24);
  --radius:26px;
  --radius-lg:38px;
}
body{background:linear-gradient(180deg,#fbfdff 0%,#f6fafc 100%);overflow-x:hidden}
body.nav-open,body.modal-open{overflow:hidden}
svg{display:block;width:1.15em;height:1.15em;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.section{position:relative}
.section-title{font-family:"Playfair Display",Georgia,serif;font-weight:600;letter-spacing:-.045em}
.section-lead{line-height:1.85}
.btn{position:relative;overflow:hidden;border-radius:15px;isolation:isolate}
.btn::before{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(105deg,transparent 20%,rgba(255,255,255,.28) 48%,transparent 72%);transform:translateX(-130%);transition:transform .65s ease}
.btn:hover::before{transform:translateX(130%)}
.btn svg{width:18px;height:18px;transition:transform .22s ease}
.btn:hover svg{transform:translateX(4px)}

/* top utility bar */
.zd-topbar{position:relative;z-index:1002;color:rgba(255,255,255,.78);background:var(--navy-deep);font-size:.73rem;font-weight:650;letter-spacing:.02em}
.zd-topbar-inner{min-height:35px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.zd-topbar-copy,.zd-topbar-links,.zd-topbar-links a{display:flex;align-items:center;gap:9px}
.zd-topbar-links{gap:18px}.zd-topbar-links a{transition:color .2s ease}.zd-topbar-links a:hover{color:#fff}.zd-topbar-links svg{width:14px;height:14px}
.zd-live-dot{width:7px;height:7px;border-radius:50%;background:#73c9ff;box-shadow:0 0 0 5px rgba(115,201,255,.12);animation:zdPulse 2.2s infinite}
@keyframes zdPulse{50%{box-shadow:0 0 0 9px rgba(115,201,255,0)}}

/* premium header and WordPress menu */
.site-header{top:0;z-index:1000;background:rgba(250,253,255,.86);border-bottom:1px solid rgba(216,231,240,.75);backdrop-filter:blur(24px) saturate(150%);transition:box-shadow .28s ease,background .28s ease}
.site-header.is-scrolled{background:rgba(255,255,255,.95);box-shadow:0 12px 40px rgba(3,31,56,.1)}
.navbar{min-height:88px;gap:24px}
.brand-logo-link{min-width:205px}.brand-logo{width:218px;max-height:60px;transition:width .28s ease,transform .28s ease}.site-header.is-scrolled .brand-logo{width:200px}
.nav-links{margin-left:auto;display:block}
.primary-menu,.primary-menu ul{margin:0;padding:0;list-style:none}
.primary-menu{display:flex;align-items:center;gap:2px}
.primary-menu>li{position:relative}
.primary-menu>li>a{position:relative;display:flex;align-items:center;min-height:48px;padding:0 13px;border-radius:13px;color:#294554;font-size:.86rem;font-weight:800;letter-spacing:-.01em;transition:color .2s ease,background .2s ease}
.primary-menu>li>a::after{content:"";position:absolute;left:14px;right:14px;bottom:5px;height:2px;border-radius:2px;background:var(--blue);transform:scaleX(0);transition:transform .22s ease}
.primary-menu>li:hover>a,.primary-menu>li>a:focus-visible,.primary-menu>.current-menu-item>a,.primary-menu>.current-menu-ancestor>a{color:var(--blue);background:rgba(15,120,184,.07)}
.primary-menu>li:hover>a::after,.primary-menu>.current-menu-item>a::after,.primary-menu>.current-menu-ancestor>a::after{transform:scaleX(1)}
.primary-menu>.menu-item-has-children>a{padding-right:31px}
.primary-menu>.menu-item-has-children>a::before{content:"";position:absolute;right:13px;top:50%;width:6px;height:6px;border-right:1.8px solid currentColor;border-bottom:1.8px solid currentColor;transform:translateY(-65%) rotate(45deg);transition:transform .2s ease}
.primary-menu>.menu-item-has-children:hover>a::before{transform:translateY(-25%) rotate(225deg)}
.primary-menu .sub-menu{position:absolute;left:50%;top:calc(100% + 14px);width:410px;display:grid;grid-template-columns:1fr 1fr;gap:7px;padding:14px;border:1px solid rgba(216,231,240,.92);border-radius:22px;background:rgba(255,255,255,.98);box-shadow:var(--shadow);opacity:0;visibility:hidden;transform:translate(-50%,10px);transition:opacity .2s ease,transform .2s ease,visibility .2s ease}
.primary-menu .sub-menu::before{content:"";position:absolute;left:50%;top:-7px;width:14px;height:14px;border-left:1px solid var(--line);border-top:1px solid var(--line);background:#fff;transform:translateX(-50%) rotate(45deg)}
.primary-menu li:hover>.sub-menu,.primary-menu li:focus-within>.sub-menu{opacity:1;visibility:visible;transform:translate(-50%,0)}
.primary-menu .sub-menu li{position:relative;z-index:1}
.primary-menu .sub-menu a{display:flex;align-items:center;min-height:58px;padding:10px 13px;border-radius:14px;color:var(--navy);font-size:.83rem;font-weight:800;transition:background .2s ease,transform .2s ease,color .2s ease}
.primary-menu .sub-menu a::before{content:"";width:9px;height:9px;margin-right:11px;border:2px solid var(--blue);border-radius:50%;box-shadow:0 0 0 4px rgba(15,120,184,.08)}
.primary-menu .sub-menu a:hover{color:var(--blue);background:var(--blue-light);transform:translateX(3px)}
.header-tools{display:flex;align-items:center;gap:9px;margin-left:5px}
.language-switch{padding:6px 7px;border-color:rgba(216,231,240,.9);border-radius:11px;background:rgba(255,255,255,.82)}
.header-search{height:43px;display:inline-flex;align-items:center;gap:7px;padding:0 12px;border:1px solid var(--line);border-radius:13px;color:var(--navy);background:#fff;font-size:.8rem;font-weight:800;transition:border .2s ease,transform .2s ease,box-shadow .2s ease}
.header-search:hover{border-color:#a9d8f2;transform:translateY(-1px);box-shadow:var(--shadow-sm)}.header-search svg{width:17px;height:17px}
.header-plan{min-height:44px;display:inline-flex;align-items:center;gap:8px;padding:0 16px;border-radius:14px;color:#fff;background:linear-gradient(135deg,var(--navy),var(--blue));box-shadow:0 11px 25px rgba(6,58,102,.2);font-size:.8rem;font-weight:850;transition:transform .2s ease,box-shadow .2s ease}.header-plan:hover{transform:translateY(-2px);box-shadow:0 15px 34px rgba(6,58,102,.28)}.header-plan svg{width:16px;height:16px}
.menu-toggle{position:relative;width:45px;height:45px;border:1px solid var(--line);box-shadow:none}.menu-toggle span{position:absolute;left:12px;width:20px;margin:0}.menu-toggle span:nth-child(1){top:14px}.menu-toggle span:nth-child(2){top:21px}.menu-toggle span:nth-child(3){top:28px}.menu-toggle.active span:nth-child(1){top:21px;transform:rotate(45deg)}.menu-toggle.active span:nth-child(2){opacity:0}.menu-toggle.active span:nth-child(3){top:21px;transform:rotate(-45deg)}
.mobile-nav-head,.mobile-nav-footer,.submenu-toggle,.nav-backdrop{display:none}

/* improved search */
.search-overlay{z-index:3000}.search-panel{width:min(760px,calc(100% - 28px));padding:28px;border:1px solid rgba(255,255,255,.55);border-radius:28px;background:rgba(255,255,255,.96);box-shadow:var(--shadow-lg);backdrop-filter:blur(24px)}
.search-panel-head h2{font-family:"Playfair Display",Georgia,serif;font-size:clamp(2rem,4vw,3.2rem);letter-spacing:-.04em}.search-input-wrap{height:62px;display:flex;align-items:center;gap:12px;padding:0 18px;border:1px solid var(--line);border-radius:17px;background:#f8fbfd}.search-input-wrap:focus-within{border-color:#82c9ed;box-shadow:0 0 0 4px rgba(15,120,184,.09)}.search-input-wrap svg{flex:0 0 auto;color:var(--blue);width:21px;height:21px}.search-input-wrap input{width:100%;height:100%;border:0!important;outline:0;background:transparent!important;box-shadow:none!important}.global-search-results a{position:relative;border-radius:16px;transition:background .2s ease,transform .2s ease}.global-search-results a:hover{background:var(--blue-light);transform:translateX(3px)}.global-search-results a>b{margin-left:auto;color:var(--blue);font-size:1.25rem}

/* redesigned homepage hero */
.hero{min-height:850px;background:var(--navy-deep)}
.hero::before{transform:scale(1.025);filter:saturate(.9) contrast(1.04)}
.hero::after{background:linear-gradient(90deg,rgba(3,31,56,.96) 0%,rgba(4,49,84,.82) 43%,rgba(4,49,84,.38) 100%),linear-gradient(180deg,rgba(15,120,184,.04),rgba(3,31,56,.18));backdrop-filter:none}
.hero-grid-lines{position:absolute;inset:0;z-index:-1;opacity:.13;background-image:linear-gradient(rgba(255,255,255,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.18) 1px,transparent 1px);background-size:72px 72px;mask-image:linear-gradient(90deg,#000,transparent 72%)}
.hero-layout{display:grid;grid-template-columns:minmax(0,1.18fr) minmax(300px,.62fr);gap:70px;align-items:center;padding:105px 0 170px}
.hero-content{max-width:720px;padding:0}.hero-eyebrow{background:rgba(255,255,255,.09);backdrop-filter:blur(12px)}
.hero h1{margin:25px 0 24px;font-size:clamp(4.2rem,8vw,7.65rem);text-shadow:0 9px 34px rgba(0,0,0,.16)}.hero h1 em{color:#86d5ff}.hero p{line-height:1.8}
.hero-trail{display:flex;align-items:center;gap:12px;margin-top:30px;color:rgba(255,255,255,.55);font-size:.74rem;font-weight:800;letter-spacing:.1em;text-transform:uppercase}.hero-trail i{width:28px;height:1px;background:rgba(255,255,255,.28)}
.hero-feature-card{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.2);border-radius:30px;color:#fff;background:rgba(255,255,255,.1);box-shadow:0 34px 90px rgba(0,0,0,.28);backdrop-filter:blur(16px);transform:rotate(1.5deg);transition:transform .45s cubic-bezier(.2,.8,.2,1),box-shadow .45s ease}.hero-feature-card:hover{transform:rotate(0) translateY(-8px);box-shadow:0 44px 110px rgba(0,0,0,.35)}
.hero-feature-image{position:relative;height:255px;overflow:hidden}.hero-feature-image::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 55%,rgba(3,31,56,.65))}.hero-feature-image img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}.hero-feature-card:hover img{transform:scale(1.06)}.hero-feature-image>span{position:absolute;z-index:2;left:17px;top:17px;padding:7px 11px;border:1px solid rgba(255,255,255,.3);border-radius:999px;background:rgba(3,31,56,.48);backdrop-filter:blur(10px);font-size:.67rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase}
.hero-feature-copy{padding:23px 24px 25px}.hero-feature-copy small{color:#86d5ff;font-weight:850;text-transform:uppercase;letter-spacing:.1em}.hero-feature-copy h2{margin:8px 0 9px;font-family:"Playfair Display",Georgia,serif;font-size:2rem;line-height:1.05}.hero-feature-copy p{display:-webkit-box;margin:0 0 16px;overflow:hidden;color:rgba(255,255,255,.66);font-size:.83rem;line-height:1.65;-webkit-line-clamp:2;-webkit-box-orient:vertical}.hero-feature-copy strong{display:flex;align-items:center;gap:8px;color:#fff;font-size:.78rem}.hero-feature-copy strong svg{width:16px;height:16px}
.hero-facts{bottom:32px;border:1px solid rgba(255,255,255,.65);border-radius:24px;background:rgba(255,255,255,.94);backdrop-filter:blur(18px)}.hero-fact{position:relative;padding:25px 27px}.hero-fact strong{font-size:1.08rem}.hero-fact::before{content:"";position:absolute;left:0;top:0;width:0;height:3px;background:linear-gradient(90deg,var(--blue),var(--blue-bright));transition:width .35s ease}.hero-fact:hover::before{width:100%}

/* global premium cards and sections */
.card-grid{gap:28px}.destination-card{min-height:440px;border:1px solid rgba(255,255,255,.5);border-radius:28px;box-shadow:0 18px 45px rgba(4,49,84,.12);transition:transform .38s cubic-bezier(.2,.8,.2,1),box-shadow .38s ease}.destination-card:hover{transform:translateY(-9px);box-shadow:0 30px 75px rgba(4,49,84,.2)}.destination-content{padding:28px}.destination-content h3{font-family:"Playfair Display",Georgia,serif;font-size:1.85rem}.quick-tags span{border:1px solid rgba(255,255,255,.18);background:rgba(255,255,255,.1);backdrop-filter:blur(8px)}
.portal-card,.contact-card,.itinerary-card,.place-card,.tour-card,.stay-card{border-color:rgba(216,231,240,.9);box-shadow:var(--shadow-sm)}
.portal-card{border-radius:28px;background:rgba(255,255,255,.88);backdrop-filter:blur(18px)}
.planner-box label{color:var(--navy);font-size:.76rem;letter-spacing:.04em;text-transform:uppercase}.planner-box select{margin-top:7px;border-radius:13px;background:#f8fbfd}
.interactive-strip{border:1px solid var(--line);border-radius:28px;background:linear-gradient(145deg,#fff,#eff8fd);box-shadow:var(--shadow-sm)}.interactive-strip>div{position:relative;padding:27px}.interactive-strip>div::before{content:"";display:block;width:30px;height:4px;margin-bottom:13px;border-radius:4px;background:linear-gradient(90deg,var(--blue),var(--blue-bright))}
.cta-section{position:relative;overflow:hidden;background:linear-gradient(180deg,#f6fafc,#edf7fc)}.cta-box{position:relative;overflow:hidden;border:1px solid rgba(255,255,255,.18);border-radius:34px;background:radial-gradient(circle at 85% 20%,rgba(75,187,244,.28),transparent 28%),linear-gradient(135deg,var(--navy-deep),var(--navy));box-shadow:var(--shadow-lg)}.cta-box::after{content:"";position:absolute;right:-90px;bottom:-130px;width:320px;height:320px;border:1px solid rgba(255,255,255,.13);border-radius:50%;box-shadow:0 0 0 40px rgba(255,255,255,.025),0 0 0 80px rgba(255,255,255,.018)}
.page-hero{position:relative;overflow:hidden;padding:125px 0 105px}.page-hero::after{content:"";position:absolute;inset:0;pointer-events:none;background-image:linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);background-size:64px 64px;mask-image:linear-gradient(90deg,#000,transparent)}.page-hero .container{position:relative;z-index:2}
.filter-shell,.destination-toolbar{border-radius:25px;box-shadow:var(--shadow-sm);backdrop-filter:blur(16px)}
.place-card,.tour-card,.stay-card{border-radius:26px;transition:transform .3s ease,box-shadow .3s ease}.place-card:hover,.tour-card:hover,.stay-card:hover{transform:translateY(-7px);box-shadow:var(--shadow)}

/* footer */
.site-footer{position:relative;overflow:hidden;padding:0 0 25px;background:var(--navy-deep)}.site-footer>.container{position:relative;z-index:2}.footer-glow{position:absolute;border-radius:50%;filter:blur(10px);pointer-events:none}.footer-glow-one{right:-180px;top:-170px;width:520px;height:520px;background:rgba(15,120,184,.16)}.footer-glow-two{left:-170px;bottom:-230px;width:460px;height:460px;background:rgba(75,187,244,.08)}
.footer-topline{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:65px 0 42px;margin-bottom:48px;border-bottom:1px solid rgba(255,255,255,.12)}.footer-topline .section-kicker{color:#73c9ff}.footer-topline h2{margin:8px 0 0;color:#fff;font-family:"Playfair Display",Georgia,serif;font-size:clamp(2.4rem,5vw,4.5rem);line-height:1}.footer-topline .btn{flex:0 0 auto}
.footer-logo-wrap{padding:8px 13px;border-radius:16px}.footer-socials{display:flex;gap:9px;margin-top:22px}.footer-socials a{width:42px;height:42px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.13);border-radius:13px;color:#fff;background:rgba(255,255,255,.05);transition:background .2s ease,transform .2s ease}.footer-socials a:hover{background:var(--blue);transform:translateY(-3px)}.footer-socials svg{width:18px;height:18px}.footer-title{font-size:.83rem;letter-spacing:.12em;text-transform:uppercase}.footer-links{gap:11px}.footer-links a{transition:color .2s ease,transform .2s ease}.footer-links a:hover{transform:translateX(3px)}.footer-contact-links span,.footer-contact-links a{display:flex;align-items:center;gap:8px}.footer-contact-links svg{width:16px;height:16px;color:#73c9ff}
.back-to-top{width:48px;height:48px;border-radius:15px;box-shadow:var(--shadow)}.back-to-top svg{width:19px;height:19px}

/* Elementor-ready surfaces and custom widgets */
.zd-elementor-main{min-height:55vh;overflow:hidden}.zd-elementor-main>.elementor{width:100%}.zd-elementor-canvas{margin:0}.zd-e-hero{position:relative;display:flex;align-items:center;overflow:hidden;color:#fff;background-position:center;background-size:cover}.zd-e-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(3,31,56,.95),rgba(6,58,102,.72),rgba(6,58,102,.2))}.zd-e-hero-inner{position:relative;z-index:2;padding:100px 0}.zd-e-hero-inner h1{max-width:900px;margin:22px 0;font-family:"Playfair Display",Georgia,serif;font-size:clamp(3.6rem,8vw,7rem);line-height:.96;letter-spacing:-.055em}.zd-e-hero-inner h1 em{color:#86d5ff}.zd-e-hero-inner p{max-width:700px;margin:0 0 30px;color:rgba(255,255,255,.78);font-size:1.12rem;line-height:1.8}
.zd-e-grid{display:grid;grid-template-columns:repeat(var(--zd-grid-columns,3),minmax(0,1fr));gap:25px}.zd-e-card{overflow:hidden;border:1px solid var(--line);border-radius:26px;background:#fff;box-shadow:var(--shadow-sm);transition:transform .3s ease,box-shadow .3s ease}.zd-e-card:hover{transform:translateY(-7px);box-shadow:var(--shadow)}.zd-e-card-image{position:relative;height:245px;display:block;overflow:hidden}.zd-e-card-image::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(3,31,56,.55))}.zd-e-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}.zd-e-card:hover img{transform:scale(1.055)}.zd-e-card-image span{position:absolute;z-index:2;left:15px;top:15px;padding:7px 10px;border-radius:999px;color:#fff;background:rgba(3,31,56,.68);backdrop-filter:blur(10px);font-size:.68rem;font-weight:850;text-transform:uppercase;letter-spacing:.07em}.zd-e-card-body{padding:24px}.zd-e-card-body small{color:var(--blue);font-weight:800}.zd-e-card-body h3{margin:8px 0 10px;color:var(--navy);font-family:"Playfair Display",Georgia,serif;font-size:1.65rem;line-height:1.12}.zd-e-card-body p{display:-webkit-box;overflow:hidden;margin:0 0 18px;color:var(--muted);font-size:.88rem;line-height:1.7;-webkit-line-clamp:3;-webkit-box-orient:vertical}.zd-e-card-link{display:inline-flex;align-items:center;gap:7px;color:var(--blue);font-size:.8rem;font-weight:850}.zd-e-card-link svg{width:15px;height:15px}.zd-e-cta{display:flex;align-items:center;justify-content:space-between;gap:35px}.zd-e-cta h2{margin:0 0 10px}.zd-e-cta p{margin:0}

/* mobile drawer */
.nav-backdrop{position:fixed;inset:0;z-index:1190;border:0;background:rgba(3,31,56,.58);backdrop-filter:blur(4px);opacity:0;visibility:hidden;transition:opacity .25s ease,visibility .25s ease}.nav-backdrop.show{opacity:1;visibility:visible}
@media(max-width:1180px){
  .navbar{gap:15px}.brand-logo-link{min-width:185px}.brand-logo{width:195px}.header-search span{display:none}.header-search{width:43px;justify-content:center;padding:0}.primary-menu>li>a{padding-inline:10px;font-size:.82rem}.primary-menu>.menu-item-has-children>a{padding-right:27px}.header-plan{padding:0 13px}
}
@media(max-width:1100px){
  .zd-topbar-links a:first-child{display:none}
  .nav-links{position:fixed;z-index:1200;top:0;right:0;left:auto;width:min(410px,92vw);height:100dvh;display:flex!important;flex-direction:column;align-items:stretch;margin:0;padding:0;border:0;border-radius:0;background:#fff;box-shadow:-28px 0 80px rgba(3,31,56,.26);transform:translateX(105%);visibility:hidden;transition:transform .32s cubic-bezier(.2,.8,.2,1),visibility .32s ease;overflow-y:auto}
  .nav-links.open{transform:translateX(0);visibility:visible}
  .mobile-nav-head{position:sticky;top:0;z-index:5;display:flex;align-items:center;justify-content:space-between;min-height:76px;padding:0 22px;border-bottom:1px solid var(--line);background:rgba(255,255,255,.96);backdrop-filter:blur(18px);color:var(--navy);font-family:"Playfair Display",Georgia,serif;font-size:1.45rem;font-weight:700}
  .mobile-nav-close{width:40px;height:40px;border:1px solid var(--line);border-radius:12px;color:var(--navy);background:#f7fbfd;font-size:1.7rem;line-height:1}
  .primary-menu{display:block;padding:18px 16px}.primary-menu>li{border-bottom:1px solid #edf3f6}.primary-menu>li>a{min-height:56px;padding:0 13px;border-radius:12px;font-size:.96rem}.primary-menu>li>a::after,.primary-menu>.menu-item-has-children>a::before{display:none}.primary-menu>li:hover>a{background:transparent}.primary-menu>.current-menu-item>a,.primary-menu>.current-menu-ancestor>a{background:var(--blue-light)}
  .primary-menu>.menu-item-has-children>a{padding-right:58px}.submenu-toggle{position:absolute;z-index:2;right:7px;top:8px;width:40px;height:40px;display:grid;place-items:center;border:0;border-radius:11px;color:var(--navy);background:#f1f7fa}.submenu-toggle svg{width:18px;height:18px;transition:transform .22s ease}.submenu-open>.submenu-toggle svg{transform:rotate(180deg)}
  .primary-menu .sub-menu{position:static;width:auto;max-height:0;display:block;padding:0 7px;border:0;border-radius:0;background:transparent;box-shadow:none;opacity:1;visibility:visible;transform:none;overflow:hidden;transition:max-height .35s ease,padding .35s ease}.primary-menu .sub-menu::before{display:none}.primary-menu .submenu-open>.sub-menu{max-height:500px;padding:3px 7px 13px}.primary-menu .sub-menu a{min-height:48px;padding:8px 12px;font-size:.84rem}.primary-menu .sub-menu a::before{width:7px;height:7px}
  .mobile-nav-footer{display:grid;gap:9px;margin-top:auto;padding:18px 22px 26px;border-top:1px solid var(--line);background:#f7fbfd}.mobile-nav-footer a{display:flex;align-items:center;justify-content:center;gap:8px;min-height:46px;border-radius:13px;font-size:.8rem;font-weight:850}.mobile-contact-link{color:var(--navy);border:1px solid var(--line);background:#fff}.mobile-whatsapp-link{color:#fff;background:var(--blue)}.mobile-nav-footer svg{width:17px;height:17px}
  .menu-toggle{display:block}.nav-backdrop{display:block}.header-plan{display:none}
  .hero-layout{grid-template-columns:minmax(0,1fr) minmax(280px,.5fr);gap:34px}.hero h1{font-size:clamp(4rem,9.5vw,6.6rem)}.hero-feature-card{transform:none}
}
@media(max-width:880px){
  .zd-topbar{display:none}.admin-bar .site-header{top:46px}.hero{min-height:900px}.hero-layout{grid-template-columns:1fr;padding:95px 0 330px}.hero-feature-card{display:none}.hero-content{max-width:760px}.hero-facts{bottom:25px}
  .footer-topline{align-items:flex-start;flex-direction:column}.zd-e-cta{align-items:flex-start;flex-direction:column}.zd-e-grid{--zd-grid-columns:2!important}
}
@media(max-width:620px){
  .navbar{min-height:74px}.brand-logo-link{min-width:0}.brand-logo,.site-header.is-scrolled .brand-logo{width:165px}.header-tools{gap:6px}.language-switch{font-size:.67rem}.header-search{width:40px;height:40px}.menu-toggle{width:42px;height:42px}.menu-toggle span{left:10px}
  .hero{min-height:900px}.hero-layout{padding:70px 0 320px}.hero h1{font-size:clamp(3.45rem,17vw,5rem)}.hero p{font-size:.98rem}.hero-trail{gap:7px;font-size:.63rem}.hero-trail i{width:14px}.hero-facts{grid-template-columns:1fr 1fr;border-radius:20px}.hero-fact{padding:16px 13px}.hero-fact strong{font-size:.9rem}.hero-fact span{font-size:.68rem}
  .search-panel{padding:20px 16px;border-radius:22px}.search-panel-head h2{font-size:2rem}.search-input-wrap{height:55px}.global-search-results a img{width:62px;height:52px}
  .destination-card{min-height:405px}.destination-content{padding:23px}.footer-topline{padding-top:52px}.footer-topline .btn{width:100%}.footer-grid{gap:35px}.zd-e-grid{--zd-grid-columns:1!important}.zd-e-hero-inner{padding:80px 0}.zd-e-hero-inner h1{font-size:3.7rem}.zd-e-card-image{height:220px}.zd-e-cta{padding:36px 24px}
}
@media(prefers-reduced-motion:reduce){*,*::before,*::after{scroll-behavior:auto!important;animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}}


/* v2.0.1 — stronger contrast for accent text on dark/image backgrounds */
.hero h1 em,
.hero-feature-copy small,
.destination-content small,
.featured-stay-copy .stay-zone,
.page-hero .section-kicker,
.experience-band .section-kicker,
.history-culture .section-kicker,
.history-culture .culture-grid > div > span,
.destination-detail-hero .detail-quick b,
.glacial-section .section-kicker,
.detail-map-card .section-kicker,
.home-tour-result span,
.home-tour-result a,
.cta-box .section-kicker,
.site-footer .section-kicker,
.site-footer .footer-contact-links svg,
.zd-e-hero .section-kicker,
.zd-e-hero h1 em {
  color: #ffffff !important;
}

/* Primary actions now use white lettering on a deeper blue for readability. */
.btn-primary {
  color: #ffffff;
  background: #0f78b8;
}
.hero .btn-primary,
.cta-box .btn-primary,
.zd-e-hero .btn-primary {
  color: #ffffff;
  background: #0f78b8;
  border-color: rgba(255,255,255,.18);
}
.hero .btn-light,
.page-hero .btn-light,
.zd-e-hero .btn-light {
  color: #ffffff;
  background: rgba(3,31,56,.36);
  border-color: rgba(255,255,255,.5);
}


/* v2.0.2 — final contrast fix for hero and overlay headings */
.hero h1,
.hero h1 em,
.page-hero h1,
.detail-hero-content h1,
.destination-detail-hero h1,
.tour-hero-copy h1,
.zd-e-hero-inner h1,
.zd-e-hero-inner h1 em {
  color: #ffffff !important;
  text-shadow: 0 10px 28px rgba(3,31,56,.42), 0 2px 6px rgba(3,31,56,.28);
}
.hero p,
.page-hero p,
.detail-hero-content > p,
.tour-hero-copy p,
.zd-e-hero-inner p {
  color: rgba(255,255,255,.94) !important;
}
.hero-eyebrow,
.detail-badge,
.page-hero .breadcrumbs,
.hero-trail {
  color: rgba(255,255,255,.88) !important;
}


/* v2.1.0 — larger logo, cleaner hero, refined buttons and premium nav */
.brand-logo-link{min-width:250px;display:flex;align-items:center;padding:10px 16px;border:1px solid rgba(216,231,240,.92);border-radius:18px;background:linear-gradient(180deg,rgba(255,255,255,.96),rgba(246,250,252,.92));box-shadow:0 14px 34px rgba(3,31,56,.06);transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.brand-logo-link:hover{transform:translateY(-1px);border-color:rgba(15,120,184,.25);box-shadow:0 20px 44px rgba(3,31,56,.1)}
.brand-logo{width:var(--zd-logo-width,255px);max-height:72px;object-fit:contain}
.site-header.is-scrolled .brand-logo{width:calc(var(--zd-logo-width,255px) - 12px)}
.footer-logo-wrap{padding:12px 16px;border:1px solid rgba(216,231,240,.16);background:rgba(255,255,255,.98);box-shadow:0 16px 40px rgba(0,0,0,.08)}
.footer-logo-wrap .brand-logo{width:290px;max-height:84px}

.primary-menu>li>a{min-height:50px;padding:0 14px;font-size:.88rem;font-weight:850}
.primary-menu>li+li{margin-left:2px}
.primary-menu>.current-menu-item>a,.primary-menu>.current-menu-ancestor>a,.primary-menu>li:hover>a{box-shadow:inset 0 0 0 1px rgba(15,120,184,.08)}
.primary-menu .sub-menu{top:calc(100% + 16px);border-radius:24px;padding:16px;box-shadow:0 28px 70px rgba(3,31,56,.16)}
.primary-menu .sub-menu a{min-height:60px;border:1px solid transparent}
.primary-menu .sub-menu a:hover{border-color:rgba(15,120,184,.12)}
.language-switch{display:flex;align-items:center;gap:7px;padding:7px 10px;border-radius:12px;border:1px solid var(--line);background:#fff;font-size:.78rem;font-weight:850;box-shadow:0 8px 24px rgba(3,31,56,.05)}
.language-switch a.active{color:var(--blue)}

.hero{min-height:820px}
.hero::after{background:linear-gradient(90deg,rgba(3,31,56,.82) 0%,rgba(6,58,102,.56) 48%,rgba(6,58,102,.18) 100%),rgba(6,58,102,.12);backdrop-filter:blur(1.5px)}
.hero-content{max-width:700px;padding:110px 0 145px}
.hero-eyebrow{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.28);box-shadow:0 10px 24px rgba(3,31,56,.12)}
.hero h1{margin:18px 0 20px;line-height:.92}
.hero p{max-width:610px;margin-bottom:34px;font-size:clamp(1.02rem,1.7vw,1.22rem)}
.hero-trail{margin-top:24px}
.hero-feature-card{border-radius:32px;background:rgba(255,255,255,.12);box-shadow:0 38px 110px rgba(0,0,0,.24)}
.hero-feature-copy{padding:25px 26px 28px}
.hero-feature-copy h2{font-size:2.1rem}
.hero-facts{bottom:28px;border-radius:24px;box-shadow:0 24px 60px rgba(3,31,56,.18)}

.btn{min-height:52px;padding:0 22px;border-radius:15px;font-weight:850;letter-spacing:-.01em}
.btn-primary,.hero .btn-primary,.cta-box .btn-primary,.zd-e-hero .btn-primary{background:linear-gradient(135deg,#0f78b8,#168dcc);box-shadow:0 16px 36px rgba(15,120,184,.22)}
.btn-light{border-color:rgba(255,255,255,.32);background:rgba(255,255,255,.1);backdrop-filter:blur(8px)}
.btn-dark{box-shadow:0 14px 32px rgba(3,31,56,.18)}
.btn-outline{border-color:#d4e4ee;background:#fff;box-shadow:0 8px 24px rgba(3,31,56,.05)}

.cta-box{border-radius:36px;background:linear-gradient(135deg,#0b568d,#168dcc)}
.interactive-strip,.portal-card,.place-card,.tour-card,.stay-card,.itinerary-card{border-radius:30px}
.destination-card{border-radius:30px}
.destination-content h3,.section-title,.cta-box h2,.footer-topline h2{font-weight:700}
.footer-topline{padding:68px 0 44px}

@media(max-width:1180px){
  .brand-logo-link{min-width:220px;padding:9px 14px}
  .brand-logo{width:calc(var(--zd-logo-width,255px) - 20px)}
}
@media(max-width:1100px){
  .brand-logo-link{min-width:0;padding:8px 12px}
  .footer-logo-wrap .brand-logo{width:260px}
}
@media(max-width:620px){
  .brand-logo-link{padding:7px 10px;border-radius:15px}
  .brand-logo,.site-header.is-scrolled .brand-logo{width:var(--zd-logo-mobile-width,190px);max-height:60px}
  .footer-logo-wrap .brand-logo{width:225px;max-height:72px}
  .hero{min-height:920px}
  .hero-content{padding-top:76px}
}


/* v2.2.0 — premium homepage, mobile drawer, footer bar and SEO-ready polish */
.mobile-nav-brand{display:flex;align-items:center;gap:12px}.mobile-nav-brand img{width:132px;max-height:42px;object-fit:contain;border-radius:10px;background:#fff;padding:4px 6px;box-shadow:0 8px 18px rgba(3,31,56,.08)}.mobile-nav-brand strong{display:block;color:var(--navy);font-size:1rem;line-height:1.1}.mobile-nav-brand small{display:block;margin-top:2px;color:var(--muted);font-size:.7rem;letter-spacing:.04em;text-transform:uppercase}.mobile-nav-head{gap:12px}.mobile-nav-close{flex:0 0 40px}
.mobile-nav-footer{grid-template-columns:1fr 1fr}.mobile-nav-footer .mobile-whatsapp-link{grid-column:1/-1}.mobile-nav-footer a{box-shadow:0 10px 20px rgba(3,31,56,.06)}
.section-luxury-overview{background:linear-gradient(180deg,#fff 0%,#f5fafd 100%)}.section-luxury-overview .overview-grid{align-items:center}.section-luxury-overview .quick-places-grid{margin-top:26px}.section-luxury-overview .quick-place{background:linear-gradient(180deg,#fff,#f8fbfd)}
.featured-stay-copy .section-kicker{color:#fff!important}.featured-stay-copy p{color:rgba(255,255,255,.84)}
.food-section{padding-top:40px}.food-cards>div{border-radius:22px;transition:transform .22s ease,box-shadow .22s ease}.food-cards>div:hover{transform:translateY(-4px);box-shadow:var(--shadow-sm)}
.site-footer{padding-bottom:100px}.floating-contact-bar{position:fixed;left:50%;bottom:18px;z-index:1300;transform:translateX(-50%);display:flex;align-items:center;gap:10px;padding:10px;border:1px solid rgba(216,231,240,.85);border-radius:22px;background:rgba(255,255,255,.96);box-shadow:0 24px 60px rgba(3,31,56,.16);backdrop-filter:blur(18px)}.floating-contact-bar a{display:inline-flex;align-items:center;gap:8px;min-height:46px;padding:0 16px;border-radius:15px;color:var(--navy);font-size:.84rem;font-weight:850;background:#fff;box-shadow:0 8px 20px rgba(3,31,56,.06)}.floating-contact-bar a svg{width:18px;height:18px}.floating-contact-bar a.is-whatsapp{color:#fff;background:linear-gradient(135deg,#0f78b8,#168dcc)}
@media(min-width:1101px){.mobile-nav-brand{display:none}}
@media(max-width:880px){.site-footer{padding-bottom:110px}}
@media(max-width:620px){.mobile-nav-footer{grid-template-columns:1fr}.mobile-nav-footer .mobile-whatsapp-link{grid-column:auto}.mobile-nav-brand img{width:118px}.floating-contact-bar{left:12px;right:12px;bottom:12px;transform:none;justify-content:space-between;padding:8px;border-radius:18px}.floating-contact-bar a{flex:1;justify-content:center;padding:0 10px;font-size:.74rem}.floating-contact-bar a span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}}


/* v2.2.1 — lighter sky-blue accents and finer detail-list typography */
:root{--zd-sky-blue:#63c8f6;--zd-sky-blue-deep:#37afe8;--zd-soft-ink:#496473}
.detail-content .section-kicker,
.detail-content h3,
.detail-map-card h3,
.detail-plan-card h3,
.tour-card-zone,
.restaurant-body small,
.culture-feature-card span {
  color: var(--zd-sky-blue-deep);
}
.detail-content .section-title{font-size:clamp(2rem,4.2vw,3.4rem);line-height:1.02}
.detail-content h3{margin:30px 0 12px;font-size:1.18rem;font-weight:600;letter-spacing:-.01em}
.detail-list{gap:10px}
.detail-list li{padding:13px 15px 13px 40px;border-color:#d7ebf7;border-radius:14px;background:linear-gradient(180deg,#ffffff,#f8fcff);color:var(--zd-soft-ink);font-size:.95rem;font-weight:500;line-height:1.45;box-shadow:none}
.detail-list li::before{left:13px;top:13px;width:20px;height:20px;font-size:.66rem;background:var(--zd-sky-blue);box-shadow:0 0 0 4px rgba(99,200,246,.10)}
.tour-card .detail-list li{font-size:.9rem;padding:12px 14px 12px 38px}
.tour-card .detail-list li::before{left:12px;top:12px;width:19px;height:19px}
@media(max-width:620px){
  .detail-content .section-title{font-size:1.85rem}
  .detail-content h3{font-size:1.06rem}
  .detail-list li,.tour-card .detail-list li{font-size:.88rem;line-height:1.4}
}


/* v2.2.2 — fix solid mobile menu, remove floating bar, add orange accents */
:root{--zd-orange:#f39a2e;--zd-orange-deep:#e68012;--zd-orange-soft:#fff3e3}
@media(max-width:1100px){
  .site-header,
  .site-header.is-scrolled,
  .navbar,
  .nav-links,
  .mobile-nav-head,
  .mobile-nav-footer{
    background:#ffffff !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
    opacity:1 !important;
  }
  .site-header{box-shadow:0 10px 28px rgba(3,31,56,.08)!important}
  .nav-links{border-left:1px solid #e6eef4}
}
.floating-contact-bar{display:none !important}
.site-footer{padding-bottom:25px !important}
.history-culture .section-kicker,
.culture-grid > div > span,
.culture-grid h3,
.reason-grid b,
.route-card > span{
  color:var(--zd-orange) !important;
}
.route-card > span{background:var(--zd-orange-soft) !important}
.culture-grid > div{
  border-color:rgba(243,154,46,.18);
  background:rgba(255,255,255,.08);
}
.culture-grid > div:hover{box-shadow:0 14px 34px rgba(0,0,0,.08)}
