/* =========================================================
   Taxivba.sk — design system
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --yellow:#F5C518;
  --yellow-dark:#DDA900;
  --yellow-soft:#FCEDB0;
  --black:#0A0A0B;
  --charcoal:#151519;
  --charcoal-2:#1E1E24;
  --white:#FFFFFF;
  --grey-50:#F8F7F4;
  --grey-100:#F1F0EC;
  --grey-300:#D8D7D2;
  --grey-500:#8A8A8F;
  --grey-600:#5B5B60;
  --ink:#141416;
  --line-dark:rgba(255,255,255,.12);
  --line-light:rgba(10,10,11,.10);
  --shadow:0 10px 30px rgba(10,10,11,.08);
  --shadow-lg:0 20px 50px rgba(10,10,11,.16);
  --radius-s:10px;
  --radius-m:16px;
  --radius-l:24px;
  --container:1200px;
  --header-h:78px;
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:'Manrope',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
img,svg{display:block;max-width:100%;}
a{color:inherit;text-decoration:none;cursor:pointer;}
ul,ol{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4,p{margin:0;}
button{font:inherit;cursor:pointer;}
label{cursor:default;}
.icon{width:1em;height:1em;flex:none;}

.container{max-width:var(--container);margin:0 auto;padding:0 24px;}

.skip-link{
  position:absolute;left:-999px;top:auto;
  background:var(--yellow);color:var(--black);padding:12px 18px;
  border-radius:0 0 10px 0;font-weight:700;z-index:1000;
}
.skip-link:focus{left:0;top:0;}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;align-items:center;gap:9px;justify-content:center;
  padding:14px 24px;border-radius:999px;font-weight:700;font-size:.98rem;
  border:2px solid transparent;transition:transform .15s ease,background .2s ease,color .2s ease,border-color .2s ease;
  white-space:nowrap;
}
.btn .icon{width:19px;height:19px;}
.btn-primary{background:var(--yellow);color:var(--black);}
.btn-primary:hover{background:var(--yellow-dark);transform:translateY(-2px);}
.btn-dark{background:var(--black);color:var(--white);}
.btn-dark:hover{background:var(--charcoal-2);transform:translateY(-2px);}
.btn-outline{background:transparent;color:var(--white);border-color:rgba(255,255,255,.5);}
.btn-outline:hover{border-color:var(--white);transform:translateY(-2px);}
.btn-outline-dark{background:transparent;color:var(--ink);border-color:var(--grey-300);}
.btn-outline-dark:hover{border-color:var(--ink);transform:translateY(-2px);}
.btn-block{width:100%;}
.btn-sm{padding:10px 18px;font-size:.9rem;}

/* ---------- Header ---------- */
.site-header{position:sticky;top:0;z-index:200;background:var(--black);}
.header-inner{
  display:flex;align-items:center;gap:20px;justify-content:space-between;
  height:var(--header-h);
}
.logo{
  font-size:1.5rem;font-weight:800;color:var(--white);letter-spacing:-.02em;flex:none;
}
.logo-accent{color:var(--yellow);}
.logo-dot{color:var(--grey-500);font-weight:600;font-size:1rem;}

.main-nav ul{display:flex;gap:18px;}
.main-nav a{
  color:var(--grey-300);font-weight:600;font-size:.95rem;padding:8px 2px;white-space:nowrap;
  border-bottom:2px solid transparent;transition:color .15s ease,border-color .15s ease;
}
.main-nav a:hover,.main-nav a[aria-current="page"]{color:var(--white);border-color:var(--yellow);}

.header-cta{display:flex;align-items:center;gap:10px;flex:none;}
.badge-nonstop{
  display:none;align-items:center;gap:6px;
  background:var(--charcoal);color:var(--yellow);font-weight:700;font-size:.78rem;
  padding:7px 12px;border-radius:999px;letter-spacing:.03em;border:1px solid var(--line-dark);
}
.badge-nonstop::before{content:"";width:7px;height:7px;border-radius:50%;background:#3DDC7A;box-shadow:0 0 0 3px rgba(61,220,122,.2);}

.lang-switch{display:flex;gap:2px;background:var(--charcoal);border:1px solid var(--line-dark);border-radius:999px;padding:3px;flex:none;}
.lang-switch a{padding:5px 9px;border-radius:999px;font-size:.72rem;font-weight:800;letter-spacing:.03em;color:var(--grey-500);}
.lang-switch a:hover{color:var(--white);}
.lang-switch a.is-active{background:var(--yellow);color:var(--black);}
.lang-switch a.is-active:hover{color:var(--black);}
.mobile-nav .lang-switch{margin:14px auto 0;width:max-content;background:var(--charcoal-2);}

.nav-toggle{
  display:none;background:transparent;border:1px solid var(--line-dark);color:var(--white);
  width:44px;height:44px;border-radius:10px;flex:none;align-items:center;justify-content:center;
}
.nav-toggle .icon{width:22px;height:22px;}

.mobile-nav{display:none;background:var(--charcoal);border-top:1px solid var(--line-dark);}
.mobile-nav.is-open{display:block;}
.mobile-nav ul{padding:10px 24px 20px;display:flex;flex-direction:column;gap:2px;}
.mobile-nav a{display:block;color:var(--grey-300);font-weight:600;padding:13px 4px;border-bottom:1px solid var(--line-dark);}
.mobile-nav a:hover{color:var(--yellow);}
.mobile-nav .mobile-call{margin-top:14px;}
.mobile-nav .btn-primary{display:inline-flex;color:var(--black);border-bottom:none;padding:14px 24px;}
.mobile-nav .btn-primary:hover{color:var(--black);}

.checker-strip{
  height:9px;
  background:repeating-linear-gradient(90deg,var(--yellow) 0 18px,var(--black) 18px 36px);
}

@media (max-width:900px){
  .main-nav{display:none;}
  .header-cta .lang-switch{display:none;}
  .nav-toggle{display:inline-flex;}
}
@media (max-width:520px){
  .header-cta .btn span.btn-text{display:none;}
  .header-cta .btn{padding:12px 14px;}
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call{
  display:none;position:fixed;left:16px;right:16px;bottom:16px;z-index:250;
  background:var(--yellow);color:var(--black);text-align:center;font-weight:800;
  padding:15px;border-radius:999px;box-shadow:var(--shadow-lg);
  align-items:center;justify-content:center;gap:10px;
}
@media (max-width:900px){.sticky-call{display:flex;}}

/* ---------- Sections / rhythm ---------- */
section{padding:clamp(52px,8vw,96px) 0;}
.section-black{background:var(--black);color:var(--white);}
.section-charcoal{background:var(--charcoal);color:var(--white);}
.section-light{background:var(--grey-50);}
.section-white{background:var(--white);}
.section-yellow{background:var(--yellow);color:var(--black);}

.eyebrow{
  display:inline-flex;align-items:center;gap:8px;font-weight:800;font-size:.8rem;
  letter-spacing:.08em;text-transform:uppercase;color:var(--yellow-dark);margin-bottom:14px;
}
.section-black .eyebrow,.section-charcoal .eyebrow{color:var(--yellow);}
.section-yellow .eyebrow{color:var(--charcoal);}

h1{font-size:clamp(2.1rem,4.6vw,3.4rem);font-weight:800;line-height:1.1;letter-spacing:-.02em;}
h2{font-size:clamp(1.6rem,3vw,2.35rem);font-weight:800;line-height:1.18;letter-spacing:-.015em;}
h3{font-size:1.2rem;font-weight:700;}
.section-head{max-width:720px;margin-bottom:44px;}
.section-head p{margin-top:14px;color:var(--grey-600);font-size:1.05rem;}
.section-black .section-head p,.section-charcoal .section-head p{color:var(--grey-300);}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center;}

/* ---------- Hero ---------- */
.hero{background:var(--black);color:var(--white);position:relative;padding-top:clamp(56px,9vw,100px);padding-bottom:60px;overflow:hidden;}
.hero-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:48px;align-items:center;}
.hero p.lead{margin-top:20px;font-size:1.15rem;color:var(--grey-300);max-width:560px;}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:32px;}
.hero-badges{display:flex;flex-wrap:wrap;gap:12px 22px;margin-top:40px;}
.hero-badge{display:flex;align-items:center;gap:9px;color:var(--grey-300);font-weight:600;font-size:.92rem;}
.hero-badge .icon{color:var(--yellow);width:20px;height:20px;}
.hero-art{
  background:var(--charcoal);border:1px solid var(--line-dark);border-radius:var(--radius-l);
  padding:34px;display:flex;flex-direction:column;gap:18px;
}
.hero-art .icon{color:var(--yellow);width:34px;height:34px;}
.hero-art-row{display:flex;gap:16px;align-items:flex-start;padding:14px 0;border-bottom:1px solid var(--line-dark);}
.hero-art-row:last-child{border-bottom:none;}
.hero-art-row strong{display:block;font-size:1rem;}
.hero-art-row span{color:var(--grey-300);font-size:.88rem;}

@media (max-width:900px){
  .hero-grid{grid-template-columns:1fr;}
}

/* Phone: surface the call-to-action right after the headline, before the
   descriptive copy, so a visitor can act within the very first screen. */
@media (max-width:680px){
  .hero{padding-top:32px;}
  .hero-copy{display:flex;flex-direction:column;}
  .hero-copy .eyebrow{order:1;}
  .hero-copy h1{order:2;font-size:1.7rem;}
  .hero-copy .hero-actions{order:3;margin-top:18px;}
  .hero-copy p.lead{order:4;margin-top:16px;font-size:1rem;}
  .hero-copy .hero-badges{order:5;margin-top:22px;}
}

/* ---------- Anchor offset for sticky header ---------- */
section[id],
main [id]{scroll-margin-top:calc(var(--header-h) + 24px);}

/* ---------- Scroll-reveal animation ---------- */
.reveal{
  opacity:0;transform:translateY(26px);
  transition:opacity .7s cubic-bezier(.22,.61,.36,1),transform .7s cubic-bezier(.22,.61,.36,1);
  transition-delay:var(--reveal-delay,0ms);
  will-change:opacity,transform;
}
.reveal.is-visible{opacity:1;transform:translateY(0);}
.grid.reveal-group>*{opacity:0;transform:translateY(26px);transition:opacity .7s cubic-bezier(.22,.61,.36,1),transform .7s cubic-bezier(.22,.61,.36,1);}
.grid.reveal-group.is-visible>*{opacity:1;transform:translateY(0);}
.grid.reveal-group.is-visible>*:nth-child(1){transition-delay:0ms;}
.grid.reveal-group.is-visible>*:nth-child(2){transition-delay:80ms;}
.grid.reveal-group.is-visible>*:nth-child(3){transition-delay:160ms;}
.grid.reveal-group.is-visible>*:nth-child(4){transition-delay:240ms;}
.grid.reveal-group.is-visible>*:nth-child(5){transition-delay:320ms;}
.grid.reveal-group.is-visible>*:nth-child(6){transition-delay:400ms;}
@media (prefers-reduced-motion: reduce){
  .reveal,.grid.reveal-group>*{opacity:1;transform:none;transition:none;}
}

/* ---------- Progress-aware header shadow ---------- */
.site-header.is-scrolled{box-shadow:0 8px 24px rgba(0,0,0,.35);}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs{background:var(--grey-50);border-bottom:1px solid var(--line-light);}
.breadcrumbs ol{display:flex;flex-wrap:wrap;gap:8px;padding:16px 0;font-size:.86rem;color:var(--grey-600);}
.breadcrumbs li::after{content:"/";margin-left:8px;color:var(--grey-300);}
.breadcrumbs li:last-child::after{content:"";}
.breadcrumbs a{font-weight:600;color:var(--grey-600);}
.breadcrumbs a:hover{color:var(--ink);text-decoration:underline;}
.breadcrumbs li[aria-current="page"]{font-weight:700;color:var(--ink);}

/* ---------- Page hero (subpages) ---------- */
.page-hero{background:var(--black);color:var(--white);padding:52px 0 60px;}
.page-hero .eyebrow{color:var(--yellow);}
.page-hero p.lead{margin-top:16px;font-size:1.08rem;color:var(--grey-300);max-width:680px;}
.page-hero .hero-actions{margin-top:28px;}

/* ---------- Feature / service cards ---------- */
.grid{display:grid;gap:24px;}
.grid-2{grid-template-columns:repeat(2,1fr);}
.grid-3{grid-template-columns:repeat(3,1fr);}
.grid-4{grid-template-columns:repeat(4,1fr);}
/* When a grid ends on an odd item in a 2-column layout, let it span both
   columns instead of leaving an orphaned card with empty space beside it.
   grid-2 is 2 columns natively, so this applies at any width ≥641px; for
   grid-3/grid-4 it only matters once the tablet breakpoint below forces
   them down to 2 columns. */
.grid-2>:last-child:nth-child(odd){grid-column:1 / -1;}
@media (max-width:980px){
  .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-3{grid-template-columns:repeat(2,1fr);}
  .grid-3>:last-child:nth-child(odd),
  .grid-4>:last-child:nth-child(odd){grid-column:1 / -1;}
}
@media (max-width:640px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr;}}

.card{
  background:var(--white);border:1px solid var(--line-light);border-radius:var(--radius-m);
  padding:30px;box-shadow:var(--shadow);
}
.card-icon{
  width:52px;height:52px;border-radius:14px;background:var(--black);color:var(--yellow);
  display:flex;align-items:center;justify-content:center;margin-bottom:18px;
}
.card-icon .icon{width:26px;height:26px;}
.card h3{margin-bottom:10px;}
.card p{color:var(--grey-600);font-size:.96rem;}
.card .card-link{
  display:inline-flex;align-items:center;gap:6px;margin-top:16px;font-weight:700;color:var(--ink);
  font-size:.92rem;border-bottom:2px solid var(--yellow);
}
.card .card-link .icon{width:16px;height:16px;}

.feature{display:flex;gap:16px;}
.feature .card-icon{margin-bottom:0;}
.feature h3{margin-bottom:6px;font-size:1.05rem;}
.feature p{color:var(--grey-600);font-size:.94rem;}
.section-black .feature p,.section-charcoal .feature p{color:var(--grey-300);}
.section-black .card-icon,.section-charcoal .card-icon{background:var(--yellow);color:var(--black);}

/* ---------- Route / highlight cards (dark section) ---------- */
.route-card{
  background:var(--charcoal);border:1px solid var(--line-dark);border-radius:var(--radius-l);
  padding:34px;display:flex;flex-direction:column;gap:16px;
}
.route-card .tag{
  align-self:flex-start;background:var(--yellow);color:var(--black);font-weight:800;font-size:.75rem;
  letter-spacing:.05em;text-transform:uppercase;padding:6px 12px;border-radius:999px;
}
.route-card p{color:var(--grey-300);}
.route-card .route-path{display:flex;align-items:center;gap:10px;font-weight:700;font-size:1.15rem;margin-top:2px;}
.route-card .route-path .icon{width:20px;height:20px;color:var(--yellow);}
.route-card .route-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px;}

/* ---------- Pricing ---------- */
.price-card{
  background:var(--white);border:1px solid var(--line-light);border-radius:var(--radius-l);
  padding:32px;box-shadow:var(--shadow);position:relative;
}
.price-card.is-featured{border:2px solid var(--yellow);box-shadow:var(--shadow-lg);}
.price-card .tag{
  position:absolute;top:-13px;left:28px;background:var(--black);color:var(--yellow);
  font-weight:800;font-size:.72rem;letter-spacing:.05em;text-transform:uppercase;
  padding:6px 12px;border-radius:999px;
}
.price-card h3{margin-bottom:4px;}
.price-card .time{color:var(--grey-600);font-size:.9rem;margin-bottom:22px;display:block;}
.price-list{display:flex;flex-direction:column;gap:0;}
.price-list li{
  display:flex;justify-content:space-between;align-items:baseline;padding:13px 0;border-bottom:1px solid var(--line-light);
  font-size:.98rem;
}
.price-list li:last-child{border-bottom:none;}
.price-list li strong{font-size:1.05rem;font-weight:800;}
.price-note{margin-top:20px;font-size:.85rem;color:var(--grey-500);}

.surcharge-box{
  background:var(--grey-50);border:1px solid var(--line-light);border-radius:var(--radius-m);
  padding:26px 28px;
}
.surcharge-box h3{margin-bottom:12px;}
.surcharge-box ul{display:flex;flex-direction:column;gap:10px;}
.surcharge-box li{display:flex;gap:10px;font-size:.95rem;color:var(--grey-600);}
.surcharge-box li .icon{flex:none;width:19px;height:19px;color:var(--yellow-dark);margin-top:2px;}
.chip-list{display:flex;flex-wrap:wrap;gap:10px;margin-top:14px;}
.chip{background:var(--white);border:1px solid var(--line-light);border-radius:999px;padding:7px 14px;font-size:.85rem;font-weight:600;color:var(--grey-600);}

.warn-box{
  display:flex;gap:14px;align-items:flex-start;background:#FBEAEA;border:1px solid #F2C6C6;
  border-radius:var(--radius-m);padding:20px 22px;color:#7A2222;
}
.warn-box .icon{width:22px;height:22px;flex:none;margin-top:1px;}
.warn-box strong{display:block;margin-bottom:3px;}

/* ---------- Areas served ---------- */
.area-tags{display:flex;flex-wrap:wrap;gap:12px;margin-top:8px;}
.area-tag{
  background:rgba(10,10,11,.06);color:var(--ink);font-weight:700;font-size:.9rem;
  padding:10px 18px;border-radius:999px;border:1px solid rgba(10,10,11,.12);
}
.section-yellow .area-tag{background:rgba(10,10,11,.08);}

/* ---------- FAQ ---------- */
.faq-list{display:flex;flex-direction:column;gap:14px;max-width:860px;}
.faq-item{
  background:var(--grey-50);border:1px solid var(--line-light);border-radius:var(--radius-m);
  padding:6px 24px;
}
.faq-q-heading{margin:0;font-size:1em;font-weight:400;}
.faq-question{
  all:unset;
  box-sizing:border-box;cursor:pointer;display:flex;justify-content:space-between;align-items:center;
  gap:16px;width:100%;padding:20px 0;font-weight:700;font-size:1.02rem;font-family:inherit;color:inherit;
  border-radius:6px;
}
.faq-question:focus-visible{outline:2px solid var(--yellow-dark);outline-offset:4px;}
.faq-question .icon{flex:none;width:20px;height:20px;color:var(--grey-500);transition:transform .35s cubic-bezier(.22,.61,.36,1);}
.faq-item.is-open .faq-question .icon{transform:rotate(180deg);}
.faq-panel{
  display:grid;grid-template-rows:0fr;
  transition:grid-template-rows .38s cubic-bezier(.22,.61,.36,1);
}
.faq-item.is-open .faq-panel{grid-template-rows:1fr;}
.faq-panel-inner{overflow:hidden;}
.faq-item .faq-answer{
  padding:0 0 22px;color:var(--grey-600);font-size:.98rem;max-width:760px;
  opacity:0;transform:translateY(-6px);
  transition:opacity .28s ease .05s,transform .28s ease .05s;
}
.faq-item.is-open .faq-answer{opacity:1;transform:translateY(0);}
@media (prefers-reduced-motion: reduce){
  .faq-question .icon,.faq-panel,.faq-item .faq-answer{transition:none;}
}

/* ---------- CTA band ---------- */
.cta-band{background:var(--black);color:var(--white);text-align:center;}
.cta-band h2{max-width:640px;margin:0 auto;}
.cta-band p{color:var(--grey-300);margin-top:14px;max-width:560px;margin-left:auto;margin-right:auto;}
.cta-band .hero-actions{justify-content:center;margin-top:30px;}

/* ---------- Contact page ---------- */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:28px;align-items:start;}
@media (max-width:900px){.contact-grid{grid-template-columns:1fr;}}
.contact-card{
  background:var(--white);border:1px solid var(--line-light);border-radius:var(--radius-l);
  padding:30px;box-shadow:var(--shadow);display:flex;gap:16px;align-items:flex-start;
}
.contact-card>div:not(.card-icon){flex:1;min-width:0;}
.form-card{background:var(--grey-50);border:1px solid var(--line-light);border-radius:var(--radius-l);padding:32px;}
.form-row{display:flex;flex-direction:column;gap:6px;margin-bottom:18px;}
.form-row label{font-weight:700;font-size:.9rem;}
.form-row input,.form-row select,.form-row textarea{
  border:1px solid var(--grey-300);border-radius:10px;padding:13px 14px;font:inherit;background:var(--white);
}
.form-row input:focus,.form-row select:focus,.form-row textarea:focus{outline:2px solid var(--yellow);outline-offset:1px;}
.form-two{display:grid;grid-template-columns:1fr 1fr;gap:18px;}
@media (max-width:520px){.form-two{grid-template-columns:1fr;}}
.form-hint{font-size:.82rem;color:var(--grey-500);margin-top:-6px;margin-bottom:16px;}
.map-frame{border-radius:var(--radius-m);overflow:hidden;border:1px solid var(--line-light);}
.map-frame iframe{width:100%;height:320px;border:0;display:block;}
.hours-list{display:flex;flex-direction:column;gap:10px;margin-top:6px;}
.hours-list li{display:flex;justify-content:space-between;font-size:.95rem;padding:8px 0;border-bottom:1px solid var(--line-light);}
.hours-list li:last-child{border-bottom:none;}

/* ---------- Footer ---------- */
.site-footer{background:var(--charcoal);color:var(--grey-300);padding-top:64px;}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1.3fr 1fr;gap:36px;padding-bottom:44px;}
@media (max-width:900px){.footer-grid{grid-template-columns:1fr 1fr;}}
@media (max-width:560px){.footer-grid{grid-template-columns:1fr;}}
.footer-grid h3{color:var(--white);font-size:.95rem;margin-bottom:16px;}
.footer-grid p{font-size:.92rem;color:var(--grey-500);max-width:320px;}
.footer-grid ul{display:flex;flex-direction:column;gap:10px;}
.footer-grid a{font-size:.92rem;color:var(--grey-300);}
.footer-grid a:hover{color:var(--yellow);}
.footer-contact{display:flex;align-items:center;gap:8px;font-weight:700;color:var(--white);}
.footer-contact .icon{width:17px;height:17px;color:var(--yellow);}
.footer-bottom{
  border-top:1px solid var(--line-dark);padding:22px 0 30px;display:flex;justify-content:space-between;
  flex-wrap:wrap;gap:12px;font-size:.85rem;color:var(--grey-500);
}
.footer-bottom ul{display:flex;gap:20px;}
.footer-bottom a{color:var(--grey-500);}
.footer-bottom a:hover{color:var(--yellow);}
/* Leave room so the fixed mobile call bar never permanently covers the
   last line of the footer once the page is scrolled all the way down. */
@media (max-width:900px){.footer-bottom{padding-bottom:96px;}}

/* ---------- Misc ---------- */
.visually-hidden{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap;}
.mt-0{margin-top:0;}
.text-center{text-align:center;}
