:root {
  --blue: #0aa7e8;
  --blue-dark: #102a56;
  --blue-soft: #eef8fd;
  --pink: #f40a8a;
  --orange: #ff7618;
  --lime: #c9dd20;
  --green: #19b95a;
  --green-dark: #0f9647;
  --text: #13294f;
  --muted: #5d6b80;
  --surface: #ffffff;
  --border: #dbe8f2;
  --shadow: 0 18px 48px rgba(16, 42, 86, .14);
  --radius: 24px;
  --container: 1180px;
  --header-h: 74px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--text); background: #fff; line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.sr-only, .skip-link { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link:focus { position: fixed; width: auto; height: auto; margin: 0; clip: auto; top: 10px; left: 10px; z-index: 9999; background: #fff; padding: 10px 14px; border-radius: 8px; }

.site-header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(16,42,86,.08); }
.header-inner { min-height: var(--header-h); display: flex; align-items: center; gap: 26px; }
.site-logo { width: 220px; flex: 0 0 auto; }
.site-logo img { width: 100%; height: auto; }
.primary-nav { margin-left: auto; }
.primary-nav ul { list-style: none; display: flex; gap: 24px; padding: 0; margin: 0; align-items: center; }
.primary-nav a { font-size: 14px; font-weight: 700; color: var(--blue-dark); }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--blue); }
.header-cta { flex: 0 0 auto; }
.nav-toggle { display: none; margin-left: auto; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; }
.nav-toggle span { display: block; height: 2px; background: var(--blue-dark); margin: 5px 0; }

.btn { min-height: 50px; padding: 13px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; border-radius: 999px; font-weight: 800; transition: .2s ease; border: 1px solid transparent; }
.btn:hover { transform: translateY(-1px); }
.btn-whatsapp { background: linear-gradient(180deg, #24c864, #16aa53); color: #fff; box-shadow: 0 10px 24px rgba(25,185,90,.24); }
.btn-whatsapp:hover { background: var(--green-dark); }
.btn-light { background: #fff; color: var(--blue-dark); border-color: rgba(16,42,86,.16); }
.btn-light:hover { border-color: var(--blue); color: var(--blue); }
.btn-small { min-height: 44px; padding: 10px 18px; font-size: 14px; }

.hero { position: relative; overflow: hidden; background: linear-gradient(115deg, #f9fcff 0%, #eef8ff 44%, #dff2fb 100%); }
.hero::before { content: ""; position: absolute; left: -150px; bottom: -155px; width: 370px; height: 370px; border-radius: 50%; background: radial-gradient(circle at 38% 40%, var(--pink) 0 18%, var(--orange) 19% 36%, var(--lime) 37% 54%, var(--blue) 55% 72%, transparent 73%); opacity: .94; }
.hero-grid { min-height: calc(100svh - var(--header-h)); max-height: 790px; display: grid; grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr); align-items: center; gap: 36px; position: relative; z-index: 2; padding-top: 34px; padding-bottom: 34px; }
.hero-content { max-width: 610px; }
.eyebrow { margin: 0 0 10px; text-transform: uppercase; letter-spacing: .11em; font-size: 13px; font-weight: 900; color: var(--blue-dark); }
.eyebrow-light { color: #fff; opacity: .92; }
.hero h1 { margin: 0; font-size: clamp(44px, 5.15vw, 72px); line-height: .98; letter-spacing: -.045em; color: var(--blue-dark); }
.hero h1 span, .feature-copy h2 span { color: var(--blue); }
.hero-text { margin: 18px 0 18px; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.35; max-width: 560px; color: #243d62; }
.hero-offer { width: min(100%, 460px); display: grid; grid-template-columns: 1.25fr .75fr; background: #fff; border-radius: 22px; box-shadow: var(--shadow); border: 1px solid rgba(16,42,86,.08); overflow: hidden; }
.hero-price { padding: 13px 22px 12px; position: relative; }
.hero-price::after { content: ""; position: absolute; right: 0; top: 18%; bottom: 18%; width: 1px; background: linear-gradient(var(--pink), var(--orange)); }
.hero-price .from { color: var(--pink); font-weight: 900; text-transform: uppercase; font-size: 14px; display: block; }
.hero-price strong { color: var(--blue); font-size: clamp(52px, 5vw, 74px); line-height: .9; letter-spacing: -.05em; }
.hero-price .per { display: block; color: var(--pink); font-size: 14px; font-weight: 900; text-transform: uppercase; }
.hero-duration { padding: 16px 20px; display: flex; flex-direction: column; justify-content: center; }
.hero-duration strong { font-size: 24px; line-height: 1.05; text-transform: uppercase; }
.hero-duration span { margin-top: 6px; font-size: 12px; text-transform: uppercase; font-weight: 800; }
.hero-conditions { font-size: 13px; font-weight: 700; margin: 10px 0 14px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { margin-top: 9px; display: flex; align-items: center; gap: 8px 12px; flex-wrap: wrap; font-size: 12px; color: var(--muted); }
.hero-email { color: var(--blue-dark); font-weight: 800; text-decoration: underline; text-decoration-color: rgba(10,167,232,.35); text-underline-offset: 3px; }
.hero-email:hover, .hero-email:focus-visible { color: var(--blue); text-decoration-color: currentColor; }
.hero-media { align-self: stretch; display: flex; align-items: stretch; min-height: 0; }
.hero-media img { width: 100%; height: 100%; max-height: 720px; object-fit: cover; border-radius: 0 0 0 90px; box-shadow: -12px 18px 40px rgba(16,42,86,.16); }

.offer-strip { background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 10px 28px rgba(16,42,86,.05); }
.offer-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item { display: flex; gap: 14px; align-items: center; padding: 22px 20px; min-width: 0; border-right: 1px solid var(--border); }
.strip-item:last-child { border-right: 0; }
.strip-icon { font-size: 32px; line-height: 1; font-weight: 900; }
.strip-pink .strip-icon { color: var(--pink); }
.strip-blue .strip-icon { color: var(--blue); }
.strip-lime .strip-icon { color: var(--lime); }
.strip-orange .strip-icon { color: var(--orange); }
.strip-item strong { display: block; font-size: 15px; }
.strip-item span:not(.strip-icon) { display: block; color: var(--muted); font-size: 13px; line-height: 1.4; margin-top: 3px; }

.section { padding: 84px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading-center { text-align: center; margin-inline: auto; }
.section-heading h2, .feature-copy h2, .about-section h2, .final-cta h2, .selfdrive-section h2 { margin: 0 0 14px; font-size: clamp(34px, 4vw, 52px); line-height: 1.04; letter-spacing: -.035em; }
.section-heading p:last-child { color: var(--muted); font-size: 18px; }
.split-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-feature-reverse .feature-image { order: 1; }
.split-feature-reverse .feature-copy { order: 2; }
.feature-image img { width: 100%; aspect-ratio: 1.55 / 1; object-fit: cover; border-radius: 0 54px 54px 0; }
.feature-copy p { color: var(--muted); font-size: 17px; line-height: 1.58; margin: 0 0 14px; }
.feature-copy h2 { color: var(--blue-dark); }
.travel-section { padding-top: 72px; padding-bottom: 72px; }

.itinerary-section { background: linear-gradient(180deg, #eff9ff 0%, #e5f5fd 100%); }
.itinerary-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.day-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 20px rgba(16,42,86,.08); }
.day-card img { width: 100%; aspect-ratio: 1.7/1; object-fit: cover; }
.day-card-body { padding: 18px 18px 22px; }
.day-label { margin: 0 0 4px; font-weight: 900; text-transform: uppercase; font-size: 13px; }
.day-1 .day-label { color: var(--pink); } .day-2 .day-label { color: var(--blue); } .day-3 .day-label { color: var(--orange); } .day-4 .day-label { color: #9fae00; }
.day-card h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.05; }
.day-card p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.52; }

.included-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.included-grid article { text-align: center; background: #f7fbfe; border: 1px solid var(--border); border-radius: 18px; padding: 26px 20px; }
.included-mark { display: block; font-size: 40px; font-weight: 900; line-height: 1; margin-bottom: 12px; }
.included-mark.pink { color: var(--pink); } .included-mark.blue { color: var(--blue); } .included-mark.lime { color: var(--lime); } .included-mark.orange { color: var(--orange); }
.included-grid h3 { margin: 0 0 8px; font-size: 19px; }
.included-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.offer-note { margin: 18px 0 0; text-align: center; background: #eef8fe; border-radius: 999px; padding: 11px 18px; font-size: 13px; color: #39506e; }

.selfdrive-section { position: relative; padding: 72px 0; color: #fff; background: linear-gradient(rgba(8,40,72,.74), rgba(8,40,72,.84)), url('/assets/img/hero-berat.webp') center/cover no-repeat; }
.selfdrive-section h2 { max-width: 720px; }
.selfdrive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.selfdrive-grid > div { border-top: 1px solid rgba(255,255,255,.5); padding-top: 18px; }
.selfdrive-grid strong { display: block; font-size: 19px; margin-bottom: 5px; }
.selfdrive-grid span { display: block; color: rgba(255,255,255,.84); }

.about-section .about-image img { border-radius: 54px 0 0 54px; }
.about-section .feature-copy p { font-size: 16px; line-height: 1.55; }
.brand-pillars { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.brand-pillars span { padding: 9px 14px; border-radius: 999px; background: #f2f9fd; border: 1px solid var(--border); font-weight: 800; font-size: 13px; }
.brand-pillars span:nth-child(1) { color: #8da400; } .brand-pillars span:nth-child(2) { color: var(--pink); } .brand-pillars span:nth-child(3) { color: var(--orange); } .brand-pillars span:nth-child(4) { color: var(--blue); }

.faq-section { background: linear-gradient(180deg, #edf9ff, #e3f5fd); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; }
details { background: #fff; border-radius: 12px; padding: 0 18px; border: 1px solid rgba(16,42,86,.06); }
summary { cursor: pointer; list-style: none; padding: 18px 28px 18px 0; font-weight: 800; position: relative; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 15px; color: var(--green); font-size: 22px; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: 0 0 18px; }

.final-cta { padding: 66px 0; color: #fff; background: linear-gradient(90deg, rgba(16,42,86,.94), rgba(16,42,86,.66)), url('/assets/img/hero-berat.webp') center 55%/cover no-repeat; }
.final-cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.final-cta h2 { margin: 0; }
.final-cta-actions { display: grid; grid-template-columns: auto auto; gap: 12px 18px; align-items: center; }
.final-price { background: #fff; color: var(--blue-dark); padding: 10px 16px; border-radius: 14px; line-height: 1; display: flex; flex-direction: column; align-items: flex-start; }
.final-price span { text-transform: uppercase; font-size: 10px; font-weight: 900; color: var(--pink); }
.final-price strong { font-size: 38px; color: var(--blue); letter-spacing: -.05em; }
.direct-contacts { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 18px; font-size: 13px; color: rgba(255,255,255,.9); }
.direct-contacts a:hover { color: #fff; text-decoration: underline; }

.site-footer { background: #fff; border-top: 1px solid var(--border); }
.footer-main { min-height: 98px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-logo { width: 220px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--border); min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 12px; }
.footer-contact { display: flex; gap: 18px; }
.back-to-top { position: fixed; right: 20px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--blue-dark); color: #fff; font-size: 22px; display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s; z-index: 900; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-sticky-cta { display: none; }

.legal-main { min-height: 65vh; padding: 72px 0; }
.legal-container { max-width: 840px; }
.legal-container h1 { font-size: clamp(42px, 5vw, 64px); line-height: 1; margin: 0 0 24px; }
.legal-container p { color: var(--muted); font-size: 17px; }
.text-link { color: var(--blue); font-weight: 800; }

@media (max-width: 1100px) {
  .primary-nav ul { gap: 15px; }
  .primary-nav a { font-size: 13px; }
  .site-logo { width: 190px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero h1 { font-size: clamp(42px, 5.2vw, 60px); }
  .hero-media img { border-radius: 0 0 0 60px; }
  .itinerary-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  .header-inner { min-height: var(--header-h); }
  .nav-toggle { display: block; }
  .primary-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 16px 30px rgba(16,42,86,.12); display: none; }
  .primary-nav.is-open { display: block; }
  .primary-nav ul { display: block; padding: 12px 20px 20px; }
  .primary-nav a { display: block; padding: 12px 0; font-size: 15px; }
  .header-cta { display: none; }
  .hero-grid { min-height: auto; max-height: none; grid-template-columns: 1fr; padding-top: 36px; padding-bottom: 0; }
  .hero-content { max-width: 680px; }
  .hero-media { margin: 0 -20px; }
  .hero-media img { height: 420px; max-height: none; border-radius: 44px 44px 0 0; }
  .hero::before { width: 260px; height: 260px; left: -145px; bottom: 205px; }
  .offer-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(2) { border-right: 0; }
  .strip-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
  .split-feature { grid-template-columns: 1fr; gap: 30px; }
  .split-feature-reverse .feature-image, .split-feature-reverse .feature-copy { order: initial; }
  .feature-image img, .about-section .about-image img { border-radius: 28px; }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .selfdrive-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .final-cta-grid { grid-template-columns: 1fr; }
  .final-cta-actions { justify-content: start; }
  .direct-contacts { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .site-logo { width: 170px; }
  .hero { padding-bottom: 0; }
  .hero h1 { font-size: 48px; }
  .hero-text { font-size: 17px; }
  .hero-offer { grid-template-columns: 1fr .78fr; }
  .hero-price { padding-left: 16px; }
  .hero-price strong { font-size: 56px; }
  .hero-duration { padding: 14px; }
  .hero-duration strong { font-size: 20px; }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-meta { display: grid; gap: 3px; font-size: 12px; }
  .hero-media img { height: 330px; }
  .offer-strip-grid { grid-template-columns: 1fr; }
  .strip-item { border-right: 0; border-bottom: 1px solid var(--border); padding: 17px 4px; }
  .strip-item:last-child { border-bottom: 0; }
  .section { padding: 62px 0; }
  .section-heading h2, .feature-copy h2, .about-section h2, .final-cta h2, .selfdrive-section h2 { font-size: 36px; }
  .itinerary-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .included-grid article { padding: 20px 10px; }
  .included-grid h3 { font-size: 16px; }
  .included-grid p { font-size: 12px; }
  .offer-note { border-radius: 16px; }
  .final-cta-actions { grid-template-columns: 1fr; }
  .final-cta-actions .btn { width: 100%; }
  .direct-contacts { grid-column: auto; flex-direction: column; gap: 5px; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; padding-top: 24px; padding-bottom: 24px; }
  .footer-links, .footer-contact { flex-direction: column; gap: 10px; }
  .back-to-top { bottom: 78px; right: 14px; }
  .mobile-sticky-cta { display: block; position: fixed; left: 14px; right: 14px; bottom: 12px; z-index: 950; background: linear-gradient(180deg,#25c965,#15aa53); color: #fff; text-align: center; padding: 13px 16px; border-radius: 999px; font-weight: 900; box-shadow: 0 12px 28px rgba(0,0,0,.2); }
}

@media (max-height: 760px) and (min-width: 901px) {
  .hero-grid { min-height: calc(100svh - var(--header-h)); padding-top: 22px; padding-bottom: 22px; }
  .hero h1 { font-size: clamp(40px, 4.6vw, 60px); }
  .hero-text { margin-top: 12px; margin-bottom: 12px; font-size: 17px; }
  .hero-offer { max-width: 420px; }
  .hero-price strong { font-size: 58px; }
  .hero-actions .btn { min-height: 46px; padding-top: 11px; padding-bottom: 11px; }
  .hero-meta { margin-top: 6px; font-size: 11px; }
  .hero-media img { max-height: calc(100svh - var(--header-h) - 44px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
