/* ============================================================
   CYPRUS AIRPORT TRANSFERS — MAIN CSS
   Variables → Reset → Typography → Utilities → Components →
   Topbar → Navbar → Footer → Hero → Sections
   ============================================================ */

/* ── Variables ── */
:root {
  --gold:        #C9A227;
  --gold-dark:   #a88520;
  --gold-light:  #f0d980;
  --dark:        #0d0d0d;
  --dark-2:      #1a1a1a;
  --dark-3:      #222222;
  --white:       #ffffff;
  --off-white:   #f8f8f8;
  --gray-100:    #f0f0f0;
  --gray-200:    #e0e0e0;
  --gray-500:    #888888;
  --gray-700:    #444444;
  --text:        #222222;
  --text-light:  #555555;
  --green-wa:    #25D366;
  --purple-vb:   #7360F2;
  --blue-tg:     #0088cc;

  --font:        'Poppins', sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 20px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.15);
  --transition:  all .3s ease;
  --container:   1200px;
  --nav-height:  96px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

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

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.section-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

.section-title { margin-bottom: 1rem; }

.section-title .dot { color: var(--gold); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--dark);
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,.35);
}
.btn--dark {
  background: var(--dark);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--dark);
}
.btn--lg { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--sm { padding: .5rem 1.2rem; font-size: .85rem; }

/* ── Topbar ── */
.topbar {
  background: var(--dark);
  padding: .5rem 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.topbar__link {
  color: var(--white);
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: color .2s;
}
.topbar__link:hover { color: var(--gold); }
.topbar__link i { color: var(--gold); font-size: .75rem; }

/* ── Navbar ── */
.nav {
  background: transparent;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 10px 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--nav-height);
  max-width: 85%;
  background: var(--white);
  box-shadow: 0 4px 28px rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 0 2rem;
}
.nav.scrolled .nav__inner {
  box-shadow: 0 8px 36px rgba(0,0,0,.2);
}
.nav__logo {
  flex-shrink: 0;
  height: 60px;
}
.nav__logo img {
  height: 60px;
  width: auto;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}
.nav__link {
  padding: .5rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .3rem;
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active { color: var(--gold); }
.nav__caret { font-size: .65rem; transition: transform .2s; }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  overflow: hidden;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown:hover .nav__caret { transform: rotate(180deg); }
.nav__dropdown-menu li a {
  display: block;
  padding: .65rem 1rem;
  font-size: .88rem;
  color: var(--text);
  transition: background .2s, color .2s;
}
.nav__dropdown-menu li a:hover {
  background: var(--off-white);
  color: var(--gold);
}

/* Social icons in nav */
.nav__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav__socials {
  display: flex;
  gap: .4rem;
}
.nav__social {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--white);
  transition: transform .2s, opacity .2s;
}
.nav__social:hover { transform: scale(1.1); opacity: .9; }
.nav__social--whatsapp { background: var(--green-wa); }
.nav__social--viber    { background: var(--purple-vb); }
.nav__social--telegram { background: var(--blue-tg); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero (shared) ── */
.hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background: var(--dark-2);
  overflow: hidden;
  /* Pull up behind the floating nav pill */
  margin-top: calc(-1 * (var(--nav-height) + 20px));
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 1;
}
.hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  /* Extra top padding so content clears the nav pill */
  padding: calc(var(--nav-height) + 3rem) 1rem 4rem;
}
.hero__title {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  margin-bottom: .75rem;
}
.hero__title .dot { color: var(--gold); }
.hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  justify-content: center;
  font-size: .9rem;
  color: rgba(255,255,255,.8);
}
.hero__breadcrumb a:hover { color: var(--gold); }
.hero__breadcrumb i { font-size: .65rem; }
.hero__cta { margin-top: 1.5rem; }

/* ── Section padding ── */
.section { padding: 80px 0; }
.section--sm { padding: 50px 0; }
.section--dark { background: var(--dark); color: var(--white); }
.section--gray { background: var(--off-white); }

/* ── Feature cards (3-column) ── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.feature-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.feature-card__icon {
  width: 52px;
  height: 52px;
  background: var(--gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
  margin-bottom: 1rem;
}
.feature-card__title { font-size: 1.05rem; font-weight: 600; margin-bottom: .5rem; }
.feature-card__desc  { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* Payment logos inside card */
.payment-logos {
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
  flex-wrap: wrap;
}
.payment-logo {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .7;
}

/* ── Stats ── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat__label {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin-top: .25rem;
}

/* ── WhatsApp Float Button ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }

/* ── Footer ── */
.footer { background: var(--dark); color: var(--white); }
.footer__main { padding: 64px 0 40px; }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
}
.footer__logo img { height: 70px; width: auto; margin-bottom: 1rem; }
.footer__desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer__socials {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}
.footer__socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  transition: var(--transition);
}
.footer__socials a:hover { transform: translateY(-2px); opacity: .85; }
.footer__socials a.wa { background: var(--green-wa);  border-color: var(--green-wa); }
.footer__socials a.vb { background: var(--purple-vb); border-color: var(--purple-vb); }
.footer__socials a.tg { background: var(--blue-tg);   border-color: var(--blue-tg); }
.footer__socials a.em { background: rgba(255,255,255,.08); }
.footer__socials a.ph { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer__heading {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--white);
}
.footer__links li { margin-bottom: .5rem; }
.footer__links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__phone {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.footer__contact-list li {
  display: flex;
  gap: .6rem;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: .6rem;
  line-height: 1.5;
}
.footer__contact-list i { color: var(--gold); margin-top: .2rem; flex-shrink: 0; }
.footer__contact-list a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ── Checklist ── */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .5rem .75rem;
  margin: 1.25rem 0;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
}
.checklist li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold);
  font-size: .75rem;
  flex-shrink: 0;
}

/* ── Testimonial card ── */
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}
.review-card__quote {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.review-card__name { font-weight: 600; font-size: .9rem; }
.review-card__stars { color: var(--gold); font-size: .8rem; margin-top: .1rem; }

/* ── Form elements ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .4rem;
}
.form-control {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,39,.12);
}
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: .9rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: .75rem;
  color: var(--gray-500);
}
.form-select-wrap select { padding-right: 2.5rem; }

/* ── Footer Weather Widget ── */
.footer__weather {
  margin-top: 1.25rem;
  padding: .9rem 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 54px;
}
.footer__weather-loading {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.footer__weather-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
}
.footer__weather-info { flex: 1; }
.footer__weather-temp {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.footer__weather-desc {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin-top: .1rem;
}
.footer__weather-location {
  font-size: .7rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer__weather-wind {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  margin-top: .15rem;
  display: flex;
  align-items: center;
  gap: .25rem;
}

/* ── FAQ ── */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: .95rem;
  color: var(--text);
  gap: 1rem;
  user-select: none;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding-bottom: 1rem;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-cta-box {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: sticky;
  top: calc(var(--nav-height) + 30px);
}
.faq-cta-box p { color: var(--text-light); font-size: .9rem; line-height: 1.7; margin-bottom: 1.5rem; }
.faq-cta-box__btns { display: flex; flex-direction: column; gap: .75rem; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .nav__socials { display: none; }
  .cards-3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-cta-box { position: static; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  .nav { padding: 8px 0; }
  .nav__inner {
    max-width: calc(100% - 24px);
    border-radius: 12px;
    padding: 0 1.25rem;
  }
  .nav__hamburger { display: flex; }
  .nav__links {
    display: none;
    position: absolute;
    top: calc(var(--nav-height) + 16px); /* pill height + nav top-padding */
    left: 12px; right: 12px;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    border-radius: 12px;
    padding: 1rem 0;
  }
  .nav__links.open { display: flex; }
  .nav__link { padding: .75rem 1.5rem; border-radius: 0; }
  .nav__dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding-left: 1rem;
  }
  .nav__dropdown.open .nav__dropdown-menu { display: block; }
  /* Hide the whole actions wrapper (not just its children) so it
     doesn't leave a residual flex gap that pushes the hamburger
     away from the true right edge. */
  .nav__actions { display: none; }

  .cards-3 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .checklist { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .section { padding: 50px 0; }
  /* Slightly smaller CTAs on very small screens */
  .btn--lg { padding: .85rem 1.5rem; font-size: .95rem; }
  /* Hide topbar on phones to save vertical space */
  .topbar { display: none; }
}
