/*
 * Style strony głównej (landing) – Taxi 24h Nowy Targ
 * Wczytywane tylko na front page. Tokeny/nawigacja/stopka/przyciski są w style.css.
 */

/* ====== HERO ====== */
#tnt-hero{
  min-height:100vh;padding:68px 0 0;
  display:flex;align-items:stretch;
  position:relative;overflow:hidden;
}
.tnt-hero-bg{
  position:absolute;inset:0;
  background:
    radial-gradient(ellipse 55% 70% at 80% 40%,rgba(245,197,24,.06) 0%,transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 80%,rgba(245,197,24,.04) 0%,transparent 60%);
}
.tnt-hero-dots{
  position:absolute;inset:0;
  background-image:radial-gradient(rgba(245,197,24,.12) 1px, transparent 1px);
  background-size:36px 36px;
  mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,black 30%,transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 80% 80% at 50% 50%,black 30%,transparent 100%);
}
.tnt-hero-inner{
  position:relative;
  max-width:var(--max);margin:0 auto;width:100%;
  padding:clamp(4rem,10vw,7rem) clamp(1.25rem,5vw,3rem) clamp(4rem,8vw,6rem);
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:4rem;align-items:center;
}
.tnt-hero-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'DM Sans',sans-serif;
  font-size:11px;font-weight:500;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--gold);
  border:1px solid rgba(245,197,24,.25);
  border-radius:100px;padding:6px 16px;
  margin-bottom:1.75rem;
}
.tnt-hero-eyebrow::before{
  content:'';width:6px;height:6px;border-radius:50%;
  background:var(--gold);flex-shrink:0;
  animation:pulse-dot 1.8s ease infinite;
}
@keyframes pulse-dot{0%,100%{opacity:1}50%{opacity:.25}}
.tnt-hero-h1{
  font-family:'Syne',sans-serif;
  font-size:clamp(52px,7.5vw,96px);
  font-weight:800;
  line-height:.92;
  letter-spacing:-.02em;
  color:var(--white);
  margin-bottom:1.5rem;
}
.tnt-hero-h1 em{
  font-style:normal;
  color:var(--gold);
  display:block;
}
.tnt-hero-sub{
  font-size:clamp(14px,1.8vw,17px);
  color:var(--silver);
  font-weight:300;
  line-height:1.8;
  max-width:480px;
  margin-bottom:2.5rem;
}
.tnt-hero-actions{display:flex;gap:1rem;flex-wrap:wrap;align-items:center}

/* HERO RIGHT */
.tnt-hero-visual{display:flex;flex-direction:column;align-items:center;gap:2rem}
.tnt-logo-float img{
  width:clamp(200px,28vw,300px);
  filter:drop-shadow(0 0 60px rgba(245,197,24,.2));
  animation:float-y 5s ease-in-out infinite;
}
@keyframes float-y{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}
.tnt-stat-grid{
  display:grid;grid-template-columns:repeat(3,1fr);
  width:100%;
  border:1px solid rgba(245,197,24,.12);
  border-radius:var(--r);overflow:hidden;
}
.tnt-stat{
  background:var(--ink-2);
  padding:1.5rem 1rem;text-align:center;
  border-right:1px solid rgba(245,197,24,.08);
}
.tnt-stat:last-child{border-right:none}
.tnt-stat-n{
  font-family:'Syne',sans-serif;font-weight:800;
  font-size:clamp(22px,3vw,32px);
  color:var(--gold);line-height:1;margin-bottom:5px;
}
.tnt-stat-l{font-size:10px;text-transform:uppercase;letter-spacing:.1em;color:var(--silver-2);font-weight:500;line-height:1.3}

/* ====== USP STRIP ====== */
#tnt-usp{
  background:var(--gold);
  padding:1.25rem clamp(1.25rem,5vw,3rem);
  overflow:hidden;
}
.tnt-usp-track{
  display:flex;gap:3rem;align-items:center;
  width:max-content;
  animation:marquee 28s linear infinite;
}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.tnt-usp-item{
  display:flex;align-items:center;gap:10px;
  white-space:nowrap;
  font-family:'Syne',sans-serif;font-weight:700;
  font-size:13px;color:#000;letter-spacing:.06em;text-transform:uppercase;
}
.tnt-usp-dot{width:5px;height:5px;border-radius:50%;background:#000;opacity:.4;flex-shrink:0}

/* ====== WHY ====== */
#tnt-why{background:var(--ink-2)}
.tnt-why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:1px;background:rgba(245,197,24,.08);
  border-radius:var(--r);overflow:hidden;
  border:1px solid rgba(245,197,24,.08);
  margin-top:3rem;
}
.tnt-why-card{
  background:var(--ink-2);padding:2rem 1.75rem;
  transition:background .25s;
}
.tnt-why-card:hover{background:var(--ink-3)}
.tnt-why-icon{
  width:46px;height:46px;border-radius:var(--r2);
  background:rgba(245,197,24,.09);border:1px solid rgba(245,197,24,.2);
  display:flex;align-items:center;justify-content:center;
  margin-bottom:1.1rem;
}
.tnt-why-icon svg{width:22px;height:22px;fill:var(--gold)}
.tnt-why-card h3{font-family:'Syne',sans-serif;font-weight:700;font-size:15px;color:var(--white);margin-bottom:.5rem}
.tnt-why-card p{font-size:13px;color:var(--silver-2);line-height:1.7;font-weight:300}

/* ====== CTA BANNER ====== */
#tnt-cta{
  background:var(--gold);
  padding:clamp(3rem,6vw,5rem) clamp(1.25rem,5vw,3rem);
}
.tnt-cta-inner{
  max-width:var(--max);margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;gap:2rem;flex-wrap:wrap;
}
.tnt-cta-inner h2{
  font-family:'Syne',sans-serif;font-weight:800;
  font-size:clamp(30px,4.5vw,52px);
  letter-spacing:-.02em;line-height:1.05;color:#000;
}
.tnt-cta-inner p{font-size:15px;color:rgba(0,0,0,.55);margin-top:.5rem}

/* ====== REVIEWS ====== */
#tnt-reviews{background:var(--ink)}
.tnt-reviews-header{
  display:flex;align-items:flex-end;justify-content:space-between;
  gap:1.5rem;flex-wrap:wrap;margin-bottom:3rem;
}
.tnt-rating-badge{
  display:flex;align-items:center;gap:14px;
  background:var(--ink-2);
  border:1px solid rgba(245,197,24,.15);
  border-radius:var(--r);padding:1rem 1.5rem;
  flex-shrink:0;
}
.tnt-rating-big{
  font-family:'Syne',sans-serif;font-weight:800;font-size:42px;
  color:var(--gold);line-height:1;
}
.tnt-rating-stars{color:var(--gold);font-size:18px;letter-spacing:2px;margin-bottom:2px}
.tnt-rating-sub{font-size:12px;color:var(--silver-2);font-weight:300}

/* Masonry-style grid */
.tnt-reviews-grid{
  columns:3;column-gap:16px;
}
@media(max-width:900px){.tnt-reviews-grid{columns:2}}
@media(max-width:560px){.tnt-reviews-grid{columns:1}}
.tnt-review-card{
  break-inside:avoid;
  background:var(--ink-2);
  border:1px solid rgba(255,255,255,.05);
  border-radius:var(--r);
  padding:1.25rem 1.4rem;
  margin-bottom:16px;
  transition:border-color .2s,transform .2s;
  position:relative;
}
.tnt-review-card:hover{border-color:rgba(245,197,24,.2);transform:translateY(-3px)}
.tnt-review-stars{color:var(--gold);font-size:13px;letter-spacing:2px;margin-bottom:.6rem}
.tnt-review-text{
  font-size:13px;color:var(--silver);line-height:1.7;
  font-weight:300;margin-bottom:1rem;font-style:italic;
}
.tnt-review-footer{
  display:flex;align-items:center;gap:10px;
  border-top:1px solid rgba(255,255,255,.05);
  padding-top:.85rem;
}
.tnt-review-av{
  width:34px;height:34px;border-radius:50%;flex-shrink:0;
  background:rgba(245,197,24,.14);border:1px solid rgba(245,197,24,.2);
  display:flex;align-items:center;justify-content:center;
  font-family:'Syne',sans-serif;font-weight:700;font-size:12px;color:var(--gold);
}
.tnt-review-name{font-size:13px;font-weight:600;color:var(--white);line-height:1.2}
.tnt-review-when{font-size:11px;color:var(--silver-2);font-weight:300}
.tnt-google-icon{
  position:absolute;top:1.1rem;right:1.2rem;
  width:16px;height:16px;opacity:.45;
}

/* Google CTA */
.tnt-google-cta{
  margin-top:2.5rem;
  display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;
}
.tnt-google-btn{
  display:inline-flex;align-items:center;gap:12px;
  background:#fff;color:#333;
  font-family:'Syne',sans-serif;font-weight:600;font-size:14px;
  padding:13px 22px;border-radius:var(--r2);
  border:1px solid rgba(0,0,0,.1);
  transition:box-shadow .2s,transform .15s;
}
.tnt-google-btn:hover{box-shadow:0 6px 24px rgba(0,0,0,.35);transform:translateY(-2px)}
.tnt-google-btn--primary{
  background:var(--gold);color:var(--ink);border-color:var(--gold);
  font-size:15px;padding:15px 26px;
}
.tnt-google-btn--primary:hover{box-shadow:0 8px 28px rgba(245,197,24,.35)}
.tnt-google-btn svg{width:20px;height:20px;flex-shrink:0}
.tnt-google-note{font-size:12px;color:var(--silver-2);font-weight:300;line-height:1.6}

/* ====== MAP / CONTACT ====== */
#tnt-contact{background:var(--ink-3);padding:0}
.tnt-contact-grid{
  max-width:var(--max);margin:0 auto;
  display:grid;grid-template-columns:1fr 1.3fr;
  min-height:480px;
}
.tnt-contact-info{padding:clamp(3rem,6vw,5rem) clamp(1.5rem,5vw,3rem)}
.tnt-contact-info .tnt-h2{font-size:clamp(30px,4vw,48px)}
.tnt-contact-list{list-style:none;margin-top:2rem;display:flex;flex-direction:column;gap:1.25rem}
.tnt-ci{display:flex;align-items:flex-start;gap:14px}
.tnt-ci-icon{
  width:40px;height:40px;flex-shrink:0;border-radius:var(--r2);
  background:rgba(245,197,24,.09);border:1px solid rgba(245,197,24,.18);
  display:flex;align-items:center;justify-content:center;
}
.tnt-ci-icon svg{width:18px;height:18px;fill:var(--gold)}
.tnt-ci-label{font-size:10px;text-transform:uppercase;letter-spacing:.12em;color:var(--silver-2);font-weight:500}
.tnt-ci-val{font-size:15px;color:var(--white);font-weight:500;margin-top:2px}
.tnt-ci-val a{color:var(--gold)}
.tnt-ci-val a:hover{text-decoration:underline}
.tnt-map-wrap{position:relative;min-height:380px}
.tnt-map-wrap iframe{
  position:absolute;inset:0;width:100%;height:100%;
  border:none;display:block;
  filter:contrast(1.03) brightness(.97);
}
.tnt-map-badge{
  position:absolute;left:16px;bottom:16px;z-index:2;
  display:flex;align-items:center;gap:10px;
  padding:11px 16px;border-radius:var(--r);
  background:rgba(8,8,8,.9);border:1px solid rgba(245,197,24,.35);
  box-shadow:0 8px 24px rgba(0,0,0,.4);backdrop-filter:blur(6px);
  transition:border-color .3s ease,transform .3s ease;
}
.tnt-map-badge:hover{border-color:var(--gold);transform:translateY(-2px)}
.tnt-map-badge-g{width:22px;height:22px;flex-shrink:0}
.tnt-map-badge-score{font-family:'Syne',sans-serif;font-weight:800;
  font-size:22px;color:var(--white);line-height:1}
.tnt-map-badge-stars{color:var(--gold);font-size:14px;letter-spacing:1px}
.tnt-map-badge-count{font-size:12px;color:var(--silver);font-weight:500}
@media(max-width:768px){
  .tnt-contact-grid{grid-template-columns:1fr}
  .tnt-map-wrap{min-height:300px}
  .tnt-map-badge{left:12px;bottom:12px;padding:9px 13px;gap:8px}
  .tnt-map-badge-score{font-size:19px}
}

/* ====== FAQ ====== */
#tnt-faq{background:var(--ink);padding:clamp(60px,9vw,120px) 0}
.tnt-faq-inner{max-width:900px;margin:0 auto;padding:0 clamp(20px,5vw,40px)}
.tnt-faq-head{text-align:center;margin-bottom:clamp(40px,6vw,64px)}
.tnt-faq-head .tnt-lead{max-width:640px;margin:1.25rem auto 0}
.tnt-faq-head .tnt-lead a{color:var(--gold);text-decoration:none;font-weight:600;white-space:nowrap}
.tnt-faq-list{display:flex;flex-direction:column;gap:14px}
.tnt-faq-item{
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--r2);
  overflow:hidden;
  transition:border-color .2s,background .2s;
}
.tnt-faq-item[open]{border-color:rgba(245,197,24,.4);background:rgba(245,197,24,.04)}
.tnt-faq-q{
  list-style:none;cursor:pointer;
  display:flex;align-items:center;justify-content:space-between;gap:18px;
  padding:22px clamp(20px,3vw,28px);
  font-family:'Syne',sans-serif;font-weight:700;
  font-size:clamp(15px,2vw,18px);line-height:1.35;color:var(--white);
}
.tnt-faq-q::-webkit-details-marker{display:none}
.tnt-faq-q::marker{content:""}
.tnt-faq-ico{position:relative;flex:0 0 20px;width:20px;height:20px}
.tnt-faq-ico::before,.tnt-faq-ico::after{
  content:"";position:absolute;top:50%;left:50%;
  width:12px;height:2px;background:var(--gold);border-radius:2px;
  transform:translate(-50%,-50%);transition:transform .25s ease;
}
.tnt-faq-ico::after{transform:translate(-50%,-50%) rotate(90deg)}
.tnt-faq-item[open] .tnt-faq-ico::after{transform:translate(-50%,-50%) rotate(0)}
.tnt-faq-a{padding:0 clamp(20px,3vw,28px) 24px}
.tnt-faq-a p{margin:0;color:rgba(255,255,255,.75);line-height:1.75;font-size:15px}

/* ====== GALERIA FLOTY ====== */
.tnt-gallery-inner{max-width:1080px;margin:0 auto}
.tnt-gallery-grid{columns:2;column-gap:18px;margin-top:clamp(28px,4vw,44px)}
.tnt-gallery-item{
  break-inside:avoid;margin:0 0 18px;overflow:hidden;
  border-radius:var(--r2);border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.02);
  transition:border-color .3s ease,transform .3s ease;
}
.tnt-gallery-item img{
  display:block;width:100%;height:auto;
  transition:transform .5s ease;
}
.tnt-gallery-item:hover{border-color:var(--gold)}
.tnt-gallery-item:hover img{transform:scale(1.05)}

/* ====== USŁUGI / LANDINGI ====== */
.tnt-services-grid{margin-top:clamp(28px,4vw,44px);display:grid;
  grid-template-columns:repeat(3,1fr);gap:18px}
.tnt-service-card{display:flex;flex-direction:column;background:var(--ink-2);
  border:1px solid rgba(255,255,255,.08);border-radius:var(--r);
  padding:clamp(24px,3vw,32px);transition:border-color .3s ease,transform .3s ease}
.tnt-service-card:hover{border-color:rgba(245,197,24,.5);transform:translateY(-4px)}
.tnt-service-ico{display:inline-flex;align-items:center;justify-content:center;
  width:52px;height:52px;border-radius:var(--r2);
  background:var(--gold-pale);color:var(--gold);margin-bottom:18px}
.tnt-service-ico svg{width:26px;height:26px}
.tnt-service-card h3{font-family:'Syne',sans-serif;font-weight:700;font-size:19px;
  color:var(--white);margin:0 0 10px;line-height:1.25}
.tnt-service-card p{margin:0;color:var(--silver);line-height:1.65;font-size:14.5px}
.tnt-service-more{margin-top:auto;padding-top:18px;display:inline-flex;align-items:center;
  gap:7px;color:var(--gold);font-weight:600;font-size:14px}
.tnt-service-more svg{width:17px;height:17px;transition:transform .3s ease}
.tnt-service-card:hover .tnt-service-more svg{transform:translateX(4px)}

/* ====== RESPONSYWNOŚĆ LANDINGU ====== */
@media(max-width:768px){
  .tnt-hero-inner{grid-template-columns:1fr;gap:2.5rem;text-align:center}
  .tnt-hero-visual{order:-1}
  .tnt-hero-actions{justify-content:center}
  .tnt-hero-sub{margin:0 auto 2.5rem}
  .tnt-hero-eyebrow{margin:0 auto 1.75rem}
  .tnt-cta-inner{flex-direction:column;text-align:center}
  .tnt-reviews-header{flex-direction:column;align-items:flex-start}
  .tnt-gallery-grid{columns:1}
  .tnt-services-grid{grid-template-columns:1fr}
}
