/* ===================================================================
   AEROPORT TRANSFER — Modern 2026 Design Override
   Aplicat peste Bootstrap 3 + style.css existente
   =================================================================== */

/* ---- Design Tokens ------------------------------------------------ */
:root {
  --at-navy:        #0b1b35;
  --at-navy-mid:    #1a3460;
  --at-navy-light:  #1e4080;
  --at-accent:      #f59e0b;
  --at-accent-dark: #d97706;
  --at-text:        #1e293b;
  --at-muted:       #64748b;
  --at-bg:          #f8fafc;
  --at-border:      #e2e8f0;
  --at-radius:      8px;
  --at-shadow:      0 4px 24px rgba(11,27,53,0.12);
  --at-trans:       all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Typography --------------------------------------------------- */
body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  color: var(--at-text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

h2         { font-size: 36px; color: var(--at-navy); }
h4         { color: var(--at-navy); }
p          { color: var(--at-muted); }
a          { transition: var(--at-trans); }
ul         { list-style: none; margin: 0; padding: 0; }

/* ---- Navbar — single row ------------------------------------------ */
.navbar-inverse {
  background: var(--at-navy);
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  min-height: 56px;
}

/* Force single row on desktop, center menu between logo and right */
@media (min-width: 768px) {
  .navbar-inverse .navbar-collapse {
    display: flex !important;
    align-items: center;
    padding: 0;
  }
  .navbar-inverse .navbar-nav {
    margin: 0;
    flex: 1;
    justify-content: center;
    display: flex;
    float: none;
  }
  .navbar-inverse .navbar-nav.navbar-right {
    flex: 0 0 auto;
    margin-left: 0;
    margin-right: 0;
    float: none;
    justify-content: flex-end;
  }
}

.navbar-inverse .navbar-brand {
  padding: 6px 12px;
  height: 56px;
}
.navbar-inverse .navbar-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.navbar-inverse .navbar-nav > li > a {
  color: rgba(255,255,255,0.82) !important;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 18px 10px;
  line-height: 20px;
  transition: var(--at-trans);
}
.navbar-inverse .navbar-nav > li > a:hover,
.navbar-inverse .navbar-nav > li > a:focus {
  color: var(--at-accent) !important;
  background: transparent !important;
}
.navbar-inverse .navbar-nav > li.active > a {
  color: var(--at-accent) !important;
  background: transparent !important;
  border-bottom: 2px solid var(--at-accent);
}

/* Phone */
.at-nav-phone {
  color: var(--at-accent) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  padding: 18px 10px !important;
  white-space: nowrap;
}
.at-nav-phone:hover { color: var(--at-accent-dark) !important; }

/* CTA button */
.at-nav-cta {
  background: var(--at-accent) !important;
  color: #fff !important;
  border-radius: var(--at-radius) !important;
  font-weight: 700 !important;
  font-size: 11.5px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  padding: 8px 16px !important;
  margin: 10px 6px 10px 6px !important;
  line-height: 1.4 !important;
  height: auto !important;
  display: inline-block !important;
  transition: var(--at-trans) !important;
  white-space: nowrap;
}
.at-nav-cta:hover {
  background: var(--at-accent-dark) !important;
  color: #fff !important;
}

/* Email icon-only */
.at-nav-email-icon {
  color: rgba(255,255,255,0.55) !important;
  font-size: 15px !important;
  padding: 18px 8px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
}
.at-nav-email-icon:hover { color: var(--at-accent) !important; }

/* Language dropdown */
.at-lng-dropdown { }
.at-lng-toggle {
  padding: 18px 10px !important;
  line-height: 1;
}
.at-lng-toggle img { border-radius: 3px; vertical-align: middle; }
.at-lng-toggle .caret { margin-left: 4px; vertical-align: middle; }

.at-lng-menu {
  min-width: 140px;
  padding: 6px 0;
  border-radius: var(--at-radius);
  border: 1px solid rgba(255,255,255,0.08);
  background: var(--at-navy);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.at-lng-menu > li > a {
  color: rgba(255,255,255,0.8) !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.at-lng-menu > li > a:hover,
.at-lng-menu > li > a:focus {
  background: rgba(255,255,255,0.08) !important;
  color: var(--at-accent) !important;
}
.at-lng-menu > li.active > a {
  background: rgba(245,158,11,0.12) !important;
  color: var(--at-accent) !important;
}
.at-lng-menu img { border-radius: 3px; flex-shrink: 0; }

@media (min-width: 768px) { body { padding-top: 56px; } }

/* Mobile navbar */
.navbar-toggle { margin-top: 11px; border-color: rgba(255,255,255,0.25); }
.navbar-toggle .icon-bar { background: rgba(255,255,255,0.8); }
.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form { border-top-color: rgba(255,255,255,0.08); }

@media (max-width: 767px) {
  body { padding-top: 60px; padding-bottom: 56px; }
  .navbar-inverse .navbar-nav > li > a { padding: 12px 15px; }
  .at-lng-toggle { padding: 12px 15px !important; }
  .at-lng-menu { position: static !important; float: none; box-shadow: none; border: none; background: rgba(255,255,255,0.05) !important; }
}

/* Sticky mobile bottom bar — hidden on desktop, flex row on mobile */
.at-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  z-index: 9998;
}
@media (max-width: 767px) {
  .at-mobile-bar { display: flex; }
}
.at-mobile-bar-phone,
.at-mobile-bar-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  letter-spacing: 0.02em;
}
.at-mobile-bar-phone {
  background: var(--at-navy-mid);
  color: rgba(255,255,255,0.92) !important;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.at-mobile-bar-phone i { color: var(--at-accent); }
.at-mobile-bar-phone:hover { background: var(--at-navy-light); }
.at-mobile-bar-cta {
  background: var(--at-accent);
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}
.at-mobile-bar-cta:hover { background: var(--at-accent-dark); }

/* ---- Buttons ------------------------------------------------------ */
button.custom-btn,
span.custom-btn,
a.custom-btn,
.custom-btn,
input[type="submit"].base-bg {
  background: var(--at-navy);
  color: #fff;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: var(--at-radius);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  transition: var(--at-trans);
  border: none;
  cursor: pointer;
}
.custom-btn:hover,
input[type="submit"].base-bg:hover {
  background: var(--at-accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,158,11,0.4);
}
a.custom-btn.base,
input.base { background: var(--at-accent); color: #fff; }
a.custom-btn.base:hover { background: var(--at-accent-dark); }

/* ---- Section head ------------------------------------------------- */
.section-head h2 {
  font-size: 36px;
  color: var(--at-navy);
  position: relative;
  padding-bottom: 16px;
}
.section-head h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  background: var(--at-accent);
  margin: 12px auto 0;
}
.section-head:not(.text-center) h2::after { margin-left: 0; }

/* ---- Service items (no card borders — original style) ------------- */
.single-item {
  padding: 0 0 8px 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.single-item h4 { margin-bottom: 6px; font-size: 16px; }
.single-item p  { color: var(--at-muted); margin: 0; font-size: 14px; }
.single-item a  { color: var(--at-navy); }
.single-item a:hover { color: var(--at-accent); }

/* ---- Fleet section ----------------------------------------------- */
#fleets { background: var(--at-bg); }

/* ---- Contact form section ---------------------------------------- */
.contact-section { background: var(--at-navy); }
.contact-section .form-control {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: var(--at-radius);
  padding: 12px 16px;
  height: auto;
  font-size: 14px;
  box-shadow: none;
}
.contact-section .form-control::placeholder { color: rgba(255,255,255,0.4); }
.contact-section .form-control:focus {
  border-color: var(--at-accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.2);
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.contact-section textarea.form-control { min-height: 120px; resize: vertical; }
.contact-section input[type="submit"],
.contact-section .base-bg {
  background: var(--at-accent);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 13px 44px;
  border-radius: var(--at-radius);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  transition: var(--at-trans);
}
.contact-section input[type="submit"]:hover { background: var(--at-accent-dark); transform: translateY(-1px); }

/* ---- Footer ------------------------------------------------------- */
footer.footer-top,
footer.footer-top.black-bg {
  background: var(--at-navy) !important;
  color: rgba(255,255,255,0.72);
}
footer.footer-top .footer-widget { padding: 60px 0 40px; background: var(--at-navy) !important; }
footer.footer-top h2,
footer.footer-top h2.rounded {
  color: #fff !important;
  font-size: 16px !important;
  margin-bottom: 20px !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
footer.footer-top p  { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; }
footer.footer-top a  { color: rgba(255,255,255,0.65) !important; }
footer.footer-top a:hover { color: var(--at-accent) !important; }

footer.footer-top .list-items ul li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
footer.footer-top .icon.base { color: var(--at-accent) !important; width: auto; height: auto; float: none; font-size: 16px; }
footer.footer-top .mm-small-box { overflow: hidden; }

/* Footer contact form */
footer .contact-form .form-control {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  border-radius: var(--at-radius);
  margin-bottom: 10px;
  padding: 10px 14px;
  height: auto;
}
footer .contact-form .form-control::placeholder { color: rgba(255,255,255,0.38); }
footer .contact-form button.custom-btn {
  background: var(--at-accent);
  color: #fff;
  width: 100%;
  text-align: center;
  border-radius: var(--at-radius);
  margin-top: 6px;
}
footer .contact-form button.custom-btn:hover { background: var(--at-accent-dark); }

.copyright.dark-bg,
.copyright-footer {
  background: rgba(0,0,0,0.3) !important;
  padding: 18px 0;
}
.copyright-text p,
.copyright-footer p {
  color: rgba(255,255,255,0.45);
  margin: 0;
  font-size: 13px;
}
.copyright-text a,
.copyright-footer a { color: var(--at-accent) !important; }

.footer-menu ul { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; margin: 0; }
.footer-menu li a { color: rgba(255,255,255,0.45); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-menu li a:hover { color: var(--at-accent); }

/* ---- Footer bottom strip ------------------------------------------ */
.at-footer-bottom-strip {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
  margin-top: 8px;
  display: flex;
  align-items: center;
}
.at-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}
.at-footer-links li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  border: none !important;
  padding: 2px 0 !important;
}
.at-footer-links li i { color: var(--at-accent); font-size: 12px; }
.at-footer-links li a { color: rgba(255,255,255,0.7) !important; text-decoration: none; }
.at-footer-links li a:hover { color: var(--at-accent) !important; }

.at-footer-social { display: flex; align-items: center; justify-content: flex-end; gap: 6px; flex-wrap: wrap; }
@media (max-width: 767px) {
  .at-footer-social { justify-content: flex-start; margin-top: 12px; }
  .at-footer-bottom-strip { display: block; }
}
.at-social-btn {
  width: 34px; height: 34px;
  line-height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65) !important;
  text-align: center;
  font-size: 14px;
  transition: var(--at-trans);
  display: inline-block;
  text-decoration: none !important;
}
.at-social-btn:hover { background: var(--at-accent); color: #fff !important; }

/* ---- Social icons (legacy) ---------------------------------------- */
.social-btn li  { float: left; margin-right: 4px; }
.social-btn a   { width: 36px; height: 36px; line-height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6) !important; text-align: center; font-size: 15px; transition: var(--at-trans); }
.social-btn a:hover { background: var(--at-accent); color: #fff !important; }

/* ---- HERO SECTION (index.php only) -------------------------------- */
.at-hero {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}
.at-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,27,53,0.92) 0%, rgba(11,27,53,0.72) 55%, rgba(11,27,53,0.45) 100%);
  z-index: 1;
}
.at-hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 0 50px;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 56px);
}

/* Hero row: flex on desktop (side by side), normal stack on mobile */
@media (min-width: 768px) {
  .at-hero-row { display: flex !important; align-items: center; flex: 1; }
}
@media (max-width: 767px) {
  .at-hero-inner { padding: 24px 0 32px; min-height: auto; }
  .at-hero-row { display: block; }
}

.at-hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--at-accent);
  margin-bottom: 14px;
}
.at-hero h1 {
  font-size: 52px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin: 0 0 10px;
}
.at-hero h2 {
  font-size: 28px;
  color: rgba(255,255,255,0.8);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.at-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.at-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
}
.at-badge i { color: var(--at-accent); font-size: 11px; }
.at-hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.at-hero-cta .custom-btn {
  background: var(--at-accent);
  padding: 14px 36px;
  font-size: 14px;
  border-radius: var(--at-radius);
}
.at-hero-cta .custom-btn:hover {
  background: var(--at-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245,158,11,0.5);
}
.at-outline-btn {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--at-radius);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  transition: var(--at-trans);
}
.at-outline-btn:hover {
  border-color: var(--at-accent);
  color: var(--at-accent);
  background: rgba(245,158,11,0.08);
}

/* Booking panel */
.at-booking-panel {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 28px;
}
.at-booking-panel h3 {
  color: #fff !important;
  font-size: 18px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'Oswald', sans-serif;
}
.at-booking-panel p { font-size: 13px; }
.at-booking-panel iframe { border: none; border-radius: var(--at-radius); }

/* Prices strip below hero */
.at-prices-strip {
  background: var(--at-navy-mid);
  padding: 14px 0;
  text-align: center;
}
.at-prices-strip span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  padding: 0 22px;
  display: inline-block;
}
.at-prices-strip strong { color: var(--at-accent); }
.at-prices-strip i { margin-right: 5px; opacity: 0.7; }
.at-prices-strip a { color: var(--at-accent) !important; font-weight: 700; text-decoration: none; }
.at-prices-strip a:hover { color: #fff !important; }

/* ---- Page sections backgrounds ----------------------------------- */
.service-section { background: var(--at-bg); }

/* ---- Bootstrap 3 compat shims ----------------------------------- */
.img-responsive { max-width: 100%; height: auto; display: block; }
.text-right  { text-align: right; }
.pull-right  { float: right; }
.pull-left   { float: left; }
.visible-xs  { display: none; }
@media (max-width: 767px) { .visible-xs { display: block !important; } }

/* ---- Responsive -------------------------------------------------- */
@media (max-width: 991px) {
  .at-hero h1       { font-size: 38px; }
  .at-hero h2       { font-size: 22px; }
  .at-booking-panel { margin-top: 40px; }
}
@media (max-width: 767px) {
  .at-hero h1          { font-size: 30px; }
  .at-hero h2          { font-size: 18px; }
  .at-hero-inner       { padding: 32px 0 40px; }
  h2, .section-head h2 { font-size: 26px; }
  .section-padding     { padding-top: 60px; padding-bottom: 60px; }
  .footer-menu ul      { justify-content: center; }
  .copyright-text      { text-align: center; margin-bottom: 8px; }
  .at-prices-strip span { display: block; padding: 3px 0; }

  /* Booking panel full width on mobile */
  .at-booking-panel {
    padding: 16px;
    border-radius: 8px;
    margin: 0 -5px;
  }
  .at-booking-panel iframe {
    width: 100% !important;
    max-width: 100% !important;
  }
  /* Hero container no side padding on xs */
  .at-hero .container { padding-left: 10px; padding-right: 10px; }
}
