
/* =========================================
   TRANSPORT PLATFORM - GLOBAL STYLES v1.0
========================================= */

:root{
  --primary:#37d4d4;
  --secondary:#111111;
  --accent:#d71a1a;
  --button:#37d4d4;
  --button-text:#111111;
  --background:#0b0b0b;
  --card:#1a1a1a;
  --text:#ffffff;
  --muted:#bdbdbd;
  --header-background:#111111;
  --footer-background:#080808;
  --radius:18px;
  --shadow:0 15px 40px rgba(0,0,0,.35);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  background:var(--background);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

.container{
  width:min(1200px,92%);
  margin:auto;
}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

/* Header */

header{
  position:sticky;
  top:0;
  background:var(--header-background);
  border-bottom:1px solid #222;
  z-index:1000;
}

header .container{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 0;
  gap:20px;
  flex-wrap:wrap;
}

.logo-area{
  display:flex;
  align-items:center;
  gap:15px;
}

.company-logo-fallback{
  width:55px;
  height:55px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 55px;
  border-radius:12px;
  background:var(--primary);
  color:#111;
  font-size:1.15rem;
  font-weight:700;
  letter-spacing:.04em;
}

.company-logo-fallback[hidden]{display:none}

nav{
  display:flex;
  gap:25px;
  flex-wrap:wrap;
}
.public-menu-toggle{display:none;background:var(--button);color:var(--button-text);border:0;border-radius:10px;width:46px;height:44px;font-size:22px;cursor:pointer}
.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}
.logo-area{min-width:0}.logo-area>div{min-width:0}.logo-area h1{overflow-wrap:anywhere;line-height:1.15}.logo-area img{max-width:min(160px,32vw);max-height:60px;object-fit:contain}

nav a:hover{
  color:var(--primary);
}

.call-btn,
.book-btn{
  display:inline-block;
  background:var(--button);
  color:var(--button-text);
  padding:14px 26px;
  border-radius:999px;
  font-weight:bold;
  transition:.3s;
}

.call-btn:hover,
.book-btn:hover{
  transform:translateY(-2px);
}

/* Hero */

.hero {
  padding: 90px 0;

  background:
      linear-gradient(
          rgba(0, 0, 0, 0.48),
          rgba(0, 0, 0, 0.48)
      ),
      url("../assets/home-hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: white;
}

.hero-content{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:40px;
  align-items:center;
}

.hero-text h2{
  font-size:3rem;
  margin-bottom:15px;
}

.hero-text p{
  color:var(--muted);
  margin-bottom:25px;
}

/* Cards */

.booking-card,
.airport-card{
  background:var(--card);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

.booking-card h2{
  color:var(--primary);
  margin-bottom:20px;
}

label{
  display:block;
  margin:12px 0 6px;
}

input,
select,
textarea{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid #333;
  background:#242424;
  color:#fff;
}

.radio-row{
  display:flex;
  gap:16px;
  margin-bottom:12px;
}

.radio-row label{
  display:flex;
  gap:8px;
  align-items:center;
}

.price-box{
  margin:20px 0;
  padding:18px;
  text-align:center;
  border:2px solid var(--primary);
  border-radius:12px;
}

.price-box h3{
  color:var(--primary);
  font-size:2rem;
}

/* Sections */

section{
  padding:70px 0;
}

section h2{
  text-align:center;
  margin-bottom:35px;
  color:var(--primary);
}

.airport-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:25px;
}

.airport-card{
  text-align:center;
}

footer{
  background:var(--footer-background);
  padding:40px 0;
  text-align:center;
  border-top:1px solid #222;
}

footer p{
  color:var(--muted);
}

.fleet-card{display:flex;flex-direction:column;gap:8px;align-items:center;height:100%}
.fleet-card img{width:100%;aspect-ratio:16/10;object-fit:cover;object-position:50% 50%;border-radius:12px}
.fleet-card small{color:var(--muted)}
.top-bar{padding:14px 0}
.home-selling-points{display:flex;align-items:center;justify-content:center;gap:0;flex-wrap:wrap;text-align:center}
.home-selling-point{display:inline-flex;align-items:center}
.home-selling-point::before{content:"✔";margin-right:.4em}
.home-selling-point:not(:last-child)::after{content:"|";margin:0 1em;color:var(--muted)}
.opening-hours-list{display:grid;gap:6px;text-align:left}
.opening-hours-list>div{display:flex;justify-content:space-between;gap:14px;border-bottom:1px solid color-mix(in srgb,var(--text) 16%,transparent);padding:5px 0}
.opening-hours-list span{color:var(--muted)}
.opening-hours-list strong{text-align:right}

/* Responsive */

@media(max-width:900px){

.hero-content{
  grid-template-columns:1fr;
}

header .container{
  justify-content:space-between;
  flex-wrap:wrap;
}

.public-menu-toggle{display:grid;place-items:center;margin-left:auto}
nav{display:none;order:10;flex:0 0 100%;width:100%;padding:8px 0 2px;gap:0;flex-direction:column}
nav.open{display:flex}
nav a{display:block;padding:12px 8px;border-top:1px solid rgba(255,255,255,.12);min-height:44px}
header .container>.call-btn{display:none}

}

@media(max-width:600px){

.container{width:min(100% - 28px,1200px)}
.logo-area{gap:10px;max-width:calc(100% - 58px)}
.company-logo-fallback{width:44px;height:44px;flex-basis:44px}
.logo-area h1{font-size:clamp(1rem,5.5vw,1.35rem)}
.logo-area small{font-size:.78rem}
section{padding:45px 0}
.top-bar{padding:12px 0}
.home-selling-points{row-gap:8px}
.home-selling-point:not(:last-child)::after{margin:0 .6em}

.hero-text h2{
  font-size:2rem;
}

.call-btn,
.book-btn{
  width:100%;
  text-align:center;
}

.radio-row{
  flex-direction:column;
}

}
