/*
Theme Name: Tirana Transfer
Theme URI: https://tiranaairportshuttle.example
Author: Tirana Transfer
Description: Custom one-page theme for a fixed-price airport transfer / taxi booking site, built around a departures-board hero and a WordPress-native booking form.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tirana-transfer
*/

/* ============================================================
   Design tokens
   ============================================================ */
:root{
  --ink:        #10151c;
  --ink-2:      #171f29;
  --paper:      #eef0f3;
  --paper-2:    #ffffff;
  --red:        #d81e2c;
  --red-dark:   #a91520;
  --amber:      #f2a63f;
  --steel:      #4c5a6b;
  --steel-light:#8b97a6;
  --line:       #d7dce2;
  --line-dark:  #2a333f;

  --display: "Big Shoulders", "Arial Narrow", sans-serif;
  --body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --radius: 4px;
  --container: 1180px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--body);
  color:var(--ink);
  background:var(--paper);
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ margin:0; font-family:var(--display); font-weight:700; letter-spacing:.01em; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }

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

.eyebrow{
  font-family:var(--mono);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--red);
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--red);
  display:inline-block;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:15px 28px;
  border-radius:var(--radius);
  font-family:var(--body);
  font-weight:600;
  font-size:15px;
  border:1.5px solid transparent;
  transition:transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:active{ transform:translateY(1px); }
.btn-primary{
  background:var(--red);
  color:#fff;
}
.btn-primary:hover{ background:var(--red-dark); }
.btn-ghost{
  background:transparent;
  border-color:rgba(255,255,255,.35);
  color:#fff;
}
.btn-ghost:hover{ border-color:#fff; }
.btn-dark{
  background:var(--ink);
  color:#fff;
}
.btn-dark:hover{ background:var(--ink-2); }
.btn-block{ width:100%; }

:focus-visible{
  outline:3px solid var(--amber);
  outline-offset:2px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header{
  position:sticky; top:0; z-index:50;
  background:var(--ink);
  border-bottom:1px solid var(--line-dark);
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
}
.brand{
  display:flex;
  align-items:baseline;
  gap:8px;
  color:#fff;
  font-family:var(--display);
  font-size:24px;
  font-weight:700;
  letter-spacing:.01em;
  line-height:1;
}
.brand .brand-mark{
  color:var(--red);
}
.brand small{
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:.16em;
  color:var(--steel-light);
  font-weight:400;
  text-transform:uppercase;
}
.main-nav{ display:flex; gap:34px; }
.main-nav a{
  color:#cfd6de;
  font-size:14px;
  font-weight:500;
  transition:color .15s ease;
}
.main-nav a:hover{ color:#fff; }
.header-cta{ display:flex; align-items:center; gap:14px; }
.header-phone{
  color:#fff;
  font-family:var(--mono);
  font-size:14px;
  display:flex;
  align-items:center;
  gap:8px;
}
.header-phone svg{ width:16px; height:16px; stroke:var(--amber); }
.nav-toggle{
  display:none;
  background:none; border:none; color:#fff;
  width:40px; height:40px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  background:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(216,30,44,.20), transparent 60%),
    var(--ink);
  color:#fff;
  padding:64px 0 0;
  position:relative;
  overflow:hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
  padding-bottom:70px;
}
.hero h1{
  font-size:clamp(40px,5.2vw,68px);
  line-height:.98;
  text-transform:uppercase;
  margin:0 0 22px;
}
.hero h1 em{
  font-style:normal;
  color:var(--amber);
}
.hero-sub{
  font-size:17px;
  line-height:1.6;
  color:#c3ccd6;
  max-width:480px;
  margin-bottom:32px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom:38px; }
.hero-trust{
  display:flex;
  gap:28px;
  flex-wrap:wrap;
  font-family:var(--mono);
  font-size:12px;
  color:var(--steel-light);
  letter-spacing:.04em;
  text-transform:uppercase;
}
.hero-trust span{ display:flex; align-items:center; gap:8px; }
.hero-trust span::before{
  content:"";
  width:6px; height:6px;
  background:var(--amber);
  border-radius:50%;
  display:inline-block;
}

/* --- Split-flap departure board (signature element) --- */
.board{
  background:#0a0d12;
  border:1px solid #2a333f;
  border-radius:6px;
  padding:22px 22px 14px;
  box-shadow:0 30px 60px -20px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.02);
}
.board-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--amber);
  padding-bottom:14px;
  margin-bottom:10px;
  border-bottom:1px dashed #2a333f;
}
.board-head .dot{ color:var(--red); animation:blink 1.4s steps(1) infinite; }
@keyframes blink{ 50%{ opacity:.2; } }
.board-cols{
  display:grid;
  grid-template-columns:1.5fr 3fr 1.4fr 1.6fr;
  font-family:var(--mono);
  font-size:10px;
  letter-spacing:.1em;
  color:var(--steel-light);
  text-transform:uppercase;
  padding:0 4px 8px;
}
.board-row{
  display:grid;
  grid-template-columns:1.5fr 3fr 1.4fr 1.6fr;
  align-items:center;
  padding:9px 4px;
  border-top:1px solid #1b222c;
  font-family:var(--mono);
}
.flap{
  background:#141b24;
  color:#f4f1e6;
  padding:6px 8px;
  border-radius:2px;
  font-size:13px;
  letter-spacing:.06em;
  overflow:hidden;
  position:relative;
  min-height:14px;
}
.flap.code{ color:var(--amber); font-size:12px; }
.flap.price{ color:#8be08b; font-size:12px; text-align:right; }
.flap.status{ font-size:10px; color:var(--steel-light); text-transform:uppercase; }
.board-foot{
  margin-top:12px;
  padding-top:12px;
  border-top:1px dashed #2a333f;
  font-family:var(--mono);
  font-size:10px;
  color:var(--steel-light);
  letter-spacing:.08em;
  text-transform:uppercase;
  display:flex;
  justify-content:space-between;
}

/* ============================================================
   BOOKING PANEL (floats over hero bottom edge)
   ============================================================ */
.booking-panel{
  position:relative;
  z-index:5;
  margin-top:-56px;
  margin-bottom:64px;
}
.booking-card{
  background:var(--paper-2);
  border-radius:8px;
  box-shadow:0 24px 60px -20px rgba(16,21,28,.35);
  padding:30px;
  display:grid;
  grid-template-columns:repeat(4,1fr) auto;
  gap:16px;
  align-items:end;
  border:1px solid var(--line);
}
.field{ display:flex; flex-direction:column; gap:7px; }
.field label{
  font-family:var(--mono);
  font-size:10.5px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--steel);
}
.field input, .field select{
  border:1.5px solid var(--line);
  border-radius:4px;
  padding:12px 12px;
  font-family:var(--body);
  font-size:14.5px;
  color:var(--ink);
  background:#fff;
}
.field input:focus, .field select:focus{
  border-color:var(--red);
  outline:none;
}
.booking-card .btn{ height:46px; padding:0 26px; white-space:nowrap; }

@media (max-width:980px){
  .booking-card{ grid-template-columns:1fr 1fr; }
  .booking-card .btn{ grid-column:1 / -1; height:50px; }
}
@media (max-width:560px){
  .booking-card{ grid-template-columns:1fr; }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip{
  background:var(--paper-2);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.trust-strip .wrap{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
}
.trust-item{
  padding:36px 28px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  border-left:1px solid var(--line);
}
.trust-item:first-child{ border-left:none; padding-left:0; }
.trust-item svg{
  flex:none;
  width:30px; height:30px;
  stroke:var(--red);
}
.trust-item h4{ font-family:var(--body); font-size:16px; margin-bottom:5px; }
.trust-item p{ font-size:14px; color:var(--steel); line-height:1.5; }

@media (max-width:800px){
  .trust-strip .wrap{ grid-template-columns:1fr; }
  .trust-item{ border-left:none; border-top:1px solid var(--line); padding:24px 0; }
  .trust-item:first-child{ border-top:none; }
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
section{ padding:88px 0; }
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:44px;
}
.section-head h2{
  font-size:clamp(28px,3.4vw,42px);
  text-transform:uppercase;
  line-height:1;
}
.section-head p{
  max-width:420px;
  color:var(--steel);
  font-size:15px;
  line-height:1.6;
}
.section-alt{ background:var(--paper-2); }

/* Services */
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.service-card{
  background:var(--paper-2);
  padding:34px 30px;
}
.service-card .num{
  font-family:var(--mono);
  color:var(--red);
  font-size:13px;
  margin-bottom:18px;
  display:block;
}
.service-card h3{ font-size:20px; margin-bottom:10px; text-transform:uppercase; }
.service-card p{ font-size:14px; color:var(--steel); line-height:1.6; }

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

/* Fleet */
.fleet-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}
.fleet-card{
  background:var(--ink);
  color:#fff;
  border-radius:6px;
  padding:22px 18px 20px;
  min-height:210px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  position:relative;
  overflow:hidden;
}
.fleet-card .pax{
  font-family:var(--mono);
  font-size:11px;
  color:var(--amber);
  letter-spacing:.08em;
}
.fleet-card h4{
  font-size:22px;
  text-transform:uppercase;
  margin-top:30px;
}
.fleet-card p{ font-size:12.5px; color:var(--steel-light); margin-top:8px; line-height:1.5; }
.fleet-card .car-icon{ position:absolute; right:-10px; bottom:-10px; width:90px; height:90px; opacity:.10; stroke:#fff; fill:none; }

@media (max-width:980px){
  .fleet-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .fleet-grid{ grid-template-columns:1fr; }
}

/* Routes */
.routes-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
}
.route-card{
  background:var(--paper-2);
  padding:24px 22px;
  transition:background .15s ease;
}
.route-card:hover{ background:#fff; box-shadow:inset 0 0 0 1px var(--red); }
.route-card .code{
  font-family:var(--mono);
  font-size:11px;
  color:var(--steel);
  letter-spacing:.08em;
  display:flex;
  justify-content:space-between;
  margin-bottom:14px;
}
.route-card .code b{ color:var(--red); }
.route-card h4{ font-size:19px; text-transform:uppercase; margin-bottom:6px; }
.route-card .price{
  font-family:var(--mono);
  font-size:13px;
  color:var(--steel);
}
.route-card .price b{ color:var(--ink); font-size:16px; }

@media (max-width:860px){
  .routes-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:520px){
  .routes-grid{ grid-template-columns:1fr; }
}

/* Reviews */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.review-card{
  background:var(--paper-2);
  border:1px solid var(--line);
  border-radius:6px;
  padding:26px;
}
.review-stars{ color:var(--amber); font-size:14px; letter-spacing:2px; margin-bottom:14px; }
.review-card p{ font-size:14.5px; line-height:1.65; color:var(--ink); margin-bottom:18px; }
.review-name{
  font-family:var(--mono);
  font-size:12px;
  color:var(--steel);
  text-transform:uppercase;
  letter-spacing:.05em;
}
@media (max-width:860px){
  .reviews-grid{ grid-template-columns:1fr; }
}

/* FAQ */
.faq-list{ max-width:820px; }
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-q{
  width:100%;
  background:none;
  border:none;
  text-align:left;
  padding:22px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  font-family:var(--body);
  font-size:16.5px;
  font-weight:600;
  color:var(--ink);
}
.faq-q .plus{
  font-family:var(--mono);
  font-size:20px;
  color:var(--red);
  transition:transform .2s ease;
  flex:none;
}
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .25s ease;
}
.faq-a p{
  font-size:14.5px;
  color:var(--steel);
  line-height:1.7;
  padding-bottom:22px;
  max-width:640px;
}

/* CTA band */
.cta-band{
  background:var(--ink);
  color:#fff;
  text-align:center;
  padding:80px 0;
  position:relative;
  overflow:hidden;
}
.cta-band::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(ellipse 700px 300px at 50% 0%, rgba(216,30,44,.25), transparent 70%);
}
.cta-band h2{
  position:relative;
  font-size:clamp(30px,4.5vw,52px);
  text-transform:uppercase;
  margin-bottom:16px;
}
.cta-band p{
  position:relative;
  color:var(--steel-light);
  margin-bottom:30px;
  font-size:15px;
}
.cta-band .btn{ position:relative; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer{
  background:var(--ink-2);
  color:var(--steel-light);
  padding:64px 0 28px;
  font-size:13.5px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.6fr repeat(3,1fr);
  gap:40px;
  padding-bottom:44px;
  border-bottom:1px solid var(--line-dark);
}
.footer-brand .brand{ margin-bottom:14px; }
.footer-brand p{ line-height:1.6; max-width:280px; margin-bottom:18px; }
.footer-contact{ display:flex; flex-direction:column; gap:10px; font-family:var(--mono); font-size:13px; }
.footer-contact a:hover{ color:#fff; }
.footer-col h5{
  color:#fff;
  font-family:var(--mono);
  font-size:11px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:16px;
  font-weight:500;
}
.footer-col ul{ display:flex; flex-direction:column; gap:11px; }
.footer-col a{ transition:color .15s ease; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:24px;
  flex-wrap:wrap;
  gap:12px;
}
.footer-legal{ display:flex; gap:22px; }

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

/* ============================================================
   RESPONSIVE — hero & nav
   ============================================================ */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; padding-bottom:90px; }
  .board{ order:-1; }
  .booking-panel{ margin-top:-40px; }
}
@media (max-width:860px){
  .main-nav{ display:none; }
  .header-phone{ display:none; }
  .nav-toggle{ display:block; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  .board-head .dot{ animation:none; }
  * { transition-duration:.001ms !important; animation-duration:.001ms !important; }
}

/* Toast (form feedback) */
.toast{
  position:fixed;
  bottom:24px; left:50%;
  transform:translateX(-50%) translateY(20px);
  background:var(--ink);
  color:#fff;
  padding:14px 22px;
  border-radius:6px;
  font-size:14px;
  border-left:4px solid var(--amber);
  box-shadow:0 20px 40px -10px rgba(0,0,0,.4);
  z-index:200;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.toast.show{ opacity:1; transform:translateX(-50%) translateY(0); pointer-events:auto; }
.toast.error{ border-left-color:var(--red); }
