/* =============================================
   REAL TAXI ALBANIA - Main Stylesheet
   ============================================= */

/* ===== RESET & VARIABLES ===== */
*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }

:root {
  --navy: #0c1a33;
  --navy-l: #142747;
  --navy-m: #1a3260;
  --gold: #c9a84c;
  --gold-l: #e8cc6e;
  --gold-d: #a8872e;
  --cyan: #4ecdc4;
  --cyan-d: #38b2a9;
  --white: #fff;
  --off: #f5f6f8;
  --gray: #6b7b95;
  --gray-l: #e2e6ed;
  --green: #25d366;
  --font: 'Poppins', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

html, body { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }

body {
  font-family: var(--font);
  background: var(--off);
  color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.gold { color: var(--gold); }


/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white);
  padding: 0 clamp(16px, 4vw, 60px);
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy);
}

.nav-logo img {
  height: 56px; width: 56px;
  border-radius: 50%; object-fit: cover;
  background: rgba(201,168,76,.2);
  padding: 2px;
  border: 2px solid var(--gold);
}

.nav-logo-text {
  font-weight: 800; font-size: 1.25rem; letter-spacing: 1.5px;
}

.nav-links {
  display: flex; align-items: center; gap: 24px; list-style: none;
}

.nav-links a {
  color: var(--navy); text-decoration: none;
  font-size: .85rem; font-weight: 500; transition: color .3s;
}
.nav-links a:hover { color: var(--gold); }

.nav-right {
  display: flex; align-items: center; gap: 14px;
}

..lang-sw {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(12,26,51,.15);
  border-radius: 16px;
  background: rgba(255,255,255,.98);
  box-shadow: 0 3px 12px rgba(0,0,0,.08);
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 56px;
  padding: 6px 10px;
  border: none;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: all .25s ease;
}
.lang-btn span {
  display: inline-block;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
}
.lang-btn img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.lang-btn.active {
  background: var(--gold);
}
.lang-btn:hover:not(.active) {
  background: rgba(201,168,76,.12);
}
.lang-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201,168,76,.25);
}

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 22px; background: var(--gold); color: var(--navy);
  font-size: .82rem; font-weight: 700; border-radius: 8px;
  text-decoration: none; transition: all .3s;
}
.nav-cta:hover { background: var(--gold-l); transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; }

.mob-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px;
}
.mob-btn span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); margin: 5px 0;
  border-radius: 2px; transition: all .3s;
}


/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}

.hero-img {
  position: absolute; inset: 0; z-index: 0;
  display: none;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: #BA993E;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 100px clamp(16px, 4vw, 60px) 60px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
}

.hero-left { animation: slideR .8s ease-out; }

@keyframes slideR {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: rgba(12,26,51,.25);
  border: 1px solid rgba(12,26,51,.4);
  border-radius: 8px; margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--navy); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero-badge span {
  font-size: .65rem; font-weight: 700;
  color: var(--navy); letter-spacing: 1.5px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white); margin-bottom: 18px;
}

.hero-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.65); line-height: 1.6;
  margin-bottom: 32px; max-width: 480px;
}

.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px;
  justify-content: flex-start;
}

.hero-accent { color: var(--navy); }
.hero-search { max-width: 100%; margin-bottom: 24px; }
.hero-stats { display: flex; gap: 32px; }
.hero-stat .num { font-size: 1.8rem; font-weight: 900; color: var(--navy); }
.hero-stat .label { font-size: .75rem; color: rgba(12,26,51,.7); font-weight: 500; margin-top: 2px; }

.hero-right {
  animation: slideL .8s ease-out .2s both;
  display: flex; align-items: center; justify-content: center;
}

@keyframes slideL {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-car-wrap { position: relative; }

.hero-car-img {
  width: 100%; max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  border: 3px solid rgba(201,168,76,.2);
}

.hero-car-overlay {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  background: rgba(12,26,51,.85);
  backdrop-filter: blur(10px);
  border-radius: 12px; padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(201,168,76,.2);
}
.hco-left { display: flex; align-items: center; gap: 10px; }
.hco-name { font-size: .82rem; font-weight: 700; color: #fff; }
.hco-sub { font-size: .7rem; color: rgba(255,255,255,.5); }
.hco-badge {
  background: var(--gold); color: var(--navy);
  padding: 6px 14px; border-radius: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: 1px;
}


/* ===== BUTTONS ===== */
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; background: var(--navy); color: var(--white);
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  border: none; border-radius: 12px; cursor: pointer;
  text-decoration: none; transition: all .3s;
  box-shadow: 0 4px 20px rgba(201,168,76,.4);
}
.btn-call:hover {
  background: var(--navy-m); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(12,26,51,.4);
}
.btn-call svg { width: 20px; height: 20px; }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 32px; background: var(--green); color: var(--white);
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  border: none; border-radius: 12px; cursor: pointer;
  text-decoration: none; transition: all .3s;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #2be672; transform: translateY(-2px); }
.btn-wa svg { width: 20px; height: 20px; }


/* ===== SEARCH ===== */
.search-sec {
  background: transparent;
  padding: 0;
  margin: -28px auto 0;
  max-width: 760px;
  position: relative; z-index: 10;
}

.search-bar {
  width: 100%; max-width: 720px; margin: 0 auto;
  background: var(--white); border-radius: 18px;
  border: 1px solid rgba(12,26,51,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
}
.search-bar svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }

.search-input {
  flex: 1; min-width: 0; border: none; outline: none;
  font-family: var(--font); font-size: 0.95rem;
  color: var(--navy); background: transparent;
}
.search-input::placeholder { color: var(--gray); }

.search-btn {
  padding: 10px 20px; background: var(--navy); color: var(--white);
  font-family: var(--font); font-size: .75rem; font-weight: 700;
  border: none; border-radius: 8px; cursor: pointer;
  transition: all .3s; white-space: nowrap; flex-shrink: 0;
}
.search-btn:hover { background: var(--navy-m); }

.search-results {
  max-width: 800px; margin: 0 auto;
  background: var(--white); border-radius: 0 0 16px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,.1);
  display: none; max-height: 300px; overflow-y: auto;
}
.search-results.open { display: block; }

.sr-item {
  padding: 12px 16px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--gray-l);
  cursor: pointer; transition: background .2s;
  font-size: .85rem;
}
.sr-item:last-child { border-bottom: none; border-radius: 0 0 16px 16px; }
.sr-item:hover { background: rgba(201,168,76,.06); }
.sr-route { font-size: .9rem; font-weight: 500; }
.sr-route .arrow { color: var(--gold); margin: 0 8px; }
.sr-price {
  font-family: var(--mono); font-weight: 600; color: var(--gold-d);
  background: rgba(201,168,76,.1); padding: 4px 12px;
  border-radius: 6px; font-size: .85rem;
}


/* ===== FEATURES ===== */
.features {
  padding: 80px clamp(16px, 4vw, 60px); background: var(--white);
}

.features-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.feat {
  background: var(--off); border-radius: 16px;
  padding: 32px 24px; text-align: center;
  transition: all .3s; border: 2px solid transparent;
}
.feat:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201,168,76,.12);
}

.feat-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(12,26,51,.2);
}

.feat h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.feat p { font-size: .82rem; color: var(--gray); line-height: 1.5; }


/* ===== ABOUT ===== */
.about {
  padding: 80px clamp(16px, 4vw, 60px); background: var(--off);
}

.about-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}

.about-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.about-imgs img {
  width: 100%; border-radius: 14px; object-fit: cover;
  aspect-ratio: 1;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  transition: transform .3s;
}
.about-imgs img:hover { transform: scale(1.03); }
.about-imgs img:first-child { grid-column: 1 / -1; aspect-ratio: 2 / 1; }

.about-text .overline {
  font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  margin-bottom: 16px; line-height: 1.2;
}
.about-text p {
  font-size: .92rem; color: var(--gray); line-height: 1.7; margin-bottom: 14px;
}
.about-text .slogan {
  font-style: italic; font-weight: 600; color: var(--navy);
  font-size: 1rem; border-left: 3px solid var(--gold);
  padding-left: 16px; margin-top: 20px;
}


/* ===== PRICING ===== */
.pricing {
  padding: 80px clamp(16px, 4vw, 60px);
  background: var(--navy); color: var(--white);
}

.pricing-header { text-align: center; margin-bottom: 48px; }
.pricing-header .overline {
  font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.pricing-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
}

.tab-nav {
  display: flex; justify-content: center; gap: 6px;
  margin-bottom: 36px; flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  font-family: var(--font); font-size: .84rem; font-weight: 600;
  color: rgba(255,255,255,.6); cursor: pointer;
  transition: all .3s; white-space: nowrap;
}
.tab-btn.active {
  background: var(--gold); color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(201,168,76,.3);
}
.tab-btn:hover:not(.active) {
  background: rgba(255,255,255,.1); color: var(--white);
}

.tab-panel { display: none; max-width: 1100px; margin: 0 auto; }
.tab-panel.active { display: block; animation: fadeUp .4s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.routes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 8px;
}

.route {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px; transition: all .3s;
}
.route:hover {
  background: rgba(201,168,76,.08);
  border-color: rgba(201,168,76,.2);
  transform: translateX(4px);
}

.route-name { font-size: .88rem; font-weight: 500; }
.route-name .arr { color: var(--gold); margin: 0 8px; font-weight: 700; }

.route-price {
  font-family: var(--mono); font-size: .88rem; font-weight: 600;
  color: var(--gold-l);
  background: rgba(201,168,76,.1);
  padding: 6px 14px; border-radius: 8px; white-space: nowrap;
}
.route-price.no-price {
  font-family: var(--font); font-size: .78rem; font-weight: 500;
  color: var(--gray); background: rgba(0,0,0,.04);
  font-style: italic;
}


/* ===== GALLERY ===== */
.gallery {
  padding: 80px clamp(16px, 4vw, 60px);
  background: var(--white); overflow: hidden;
}

.gallery-header { text-align: center; margin-bottom: 40px; }
.gallery-header .overline {
  font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.gallery-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800;
}

.carousel-wrap { position: relative; max-width: 100%; margin: 0 auto; overflow: hidden; }

.carousel-track {
  display: flex; gap: 20px;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: 16px;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-item {
  flex: 0 0 300px; scroll-snap-align: start;
  border-radius: 20px; overflow: hidden;
  position: relative; aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,.2);
  transition: all .4s ease-out;
}
.carousel-item:hover { transform: scale(1.02); }
.carousel-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.carousel-item:hover img { transform: scale(1.05); }

.carousel-item .caption {
  display: none;
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: var(--white); font-size: .85rem; font-weight: 600;
}

.carousel-nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 24px;
}
.carousel-nav button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--gold); background: var(--white);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s; color: var(--navy);
}
.carousel-nav button:hover { background: var(--gold); color: var(--white); }


/* ===== CONTACT ===== */
.contact {
  padding: 80px clamp(16px, 4vw, 60px); background: var(--off);
}

.contact-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}

.contact-info .overline {
  font-size: .75rem; font-weight: 700; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 16px;
}

.contact-logo {
  display: flex; align-items: center; justify-content: center;
  margin-top: 24px; padding: 16px;
  background: var(--white); border-radius: 16px;
  border: 1px solid var(--gray-l);
}
.contact-logo img { width: 120px; height: 120px; object-fit: contain; }
.contact-logo-text, .contact-logo-sub { display: none; }
.contact-info p { color: var(--gray); line-height: 1.6; margin-bottom: 28px; }

.contact-detail {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; padding: 16px 20px;
  background: var(--white); border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  transition: all .3s;
}
.contact-detail:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(201,168,76,.12);
}

.cd-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-m));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cd-icon svg { width: 20px; height: 20px; color: var(--gold); }
.cd-label {
  font-size: .72rem; color: var(--gray); font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
}
.cd-value { font-size: .95rem; font-weight: 600; margin-top: 2px; }
.cd-value a { color: var(--navy); text-decoration: none; }

.contact-form {
  background: var(--white); border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  border: 1px solid var(--gray-l);
}
.contact-form h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }

.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 14px;
}

.form-group label {
  font-size: .78rem; font-weight: 600; color: var(--gray);
  margin-bottom: 6px; text-transform: uppercase;
  letter-spacing: .5px; display: block;
}

.form-group input,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 2px solid var(--gray-l); border-radius: 10px;
  font-family: var(--font); font-size: .9rem; color: var(--navy);
  transition: border-color .3s; outline: none;
  background: var(--off); resize: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }

.form-group.full { grid-column: 1 / -1; }

.form-submit {
  width: 100%; padding: 16px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font); font-size: 1rem; font-weight: 700;
  border: none; border-radius: 12px; cursor: pointer;
  transition: all .3s; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover {
  background: var(--gold-l); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.3);
}
.form-submit svg { width: 20px; height: 20px; }

.form-success {
  display: none; text-align: center; padding: 40px;
  color: var(--green); font-weight: 700; font-size: 1.1rem;
}


/* ===== BOOKING CTA ===== */
.booking {
  padding: 80px clamp(16px, 4vw, 60px);
  background: linear-gradient(135deg, var(--gold), var(--gold-d));
  position: relative; overflow: hidden;
}
.booking::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23000' fill-opacity='.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.booking-inner {
  max-width: 800px; margin: 0 auto;
  text-align: center; position: relative; z-index: 1;
}
.booking h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; color: var(--navy); margin-bottom: 12px;
}
.booking p {
  font-size: 1rem; color: rgba(12,26,51,.7);
  margin-bottom: 36px; font-weight: 500;
}

.booking-contacts {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.book-link {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; background: var(--navy); color: var(--white);
  font-family: var(--font); font-size: .95rem; font-weight: 700;
  border: none; border-radius: 12px; text-decoration: none;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.book-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.3);
}
.book-link svg { width: 22px; height: 22px; flex-shrink: 0; }
.book-link .bl-label { display: flex; flex-direction: column; text-align: left; }
.book-link .bl-sub { font-size: .68rem; font-weight: 500; opacity: .75; margin-top: 1px; }
.book-link.wa { background: #25D366; box-shadow: 0 4px 20px rgba(37,211,102,.35); }
.book-link.wa:hover { background: #1ebe5a; }
.book-link.email { background: var(--white); color: var(--navy); box-shadow: 0 4px 20px rgba(0,0,0,.12); }


/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  padding: 40px clamp(16px, 4vw, 60px);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  border-top: 3px solid var(--gold);
}
.footer p {
  font-size: .8rem;
  white-space: normal;
  margin: 0;
}
.footer p a {
  color: inherit;
  text-decoration: underline;
}
.footer-tag {
  font-family: var(--mono); font-size: .7rem;
  letter-spacing: 3px; color: var(--gold-d);
}


/* ===== LIGHTBOX ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
  cursor: zoom-out; animation: lbIn .2s ease;
}
.lightbox.open { display: flex; }
@keyframes lbIn { from { opacity:0 } to { opacity:1 } }
.lightbox img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  pointer-events: none;
}
.lb-close {
  position: absolute; top: 18px; right: 22px;
  background: rgba(255,255,255,.15); border: none;
  color: #fff; font-size: 1.4rem; width: 42px; height: 42px;
  border-radius: 50%; cursor: pointer; display: flex;
  align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-close:hover { background: rgba(255,255,255,.3); }


/* ===== FLOATING WHATSAPP ===== */
.wa-float {
  position: fixed; bottom: 100px; right: 28px; z-index: 999;
  width: 60px; height: 60px; background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .3s; text-decoration: none;
  animation: waF 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

@keyframes waF {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: all .7s cubic-bezier(.4,0,.2,1);
}
.reveal.vis { opacity: 1; transform: translateY(0); }


/* ===== MOBILE MENU ===== */
.mob-menu {
  display: none; position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: var(--navy); z-index: 999;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 28px;
}
.mob-menu.open { display: flex; }
.mob-menu a {
  color: var(--white); text-decoration: none;
  font-size: 1.4rem; font-weight: 700;
  transition: color .3s;
}
.mob-menu a:hover { color: var(--gold); }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-left { display: flex; flex-direction: column; align-items: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-right { margin-top: 32px; }
  .nav-links, .nav-cta { display: none; }
  .mob-btn { display: block; }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 24px; }
  .contact { padding: 48px clamp(16px, 4vw, 40px); }
  .contact-detail { padding: 12px 14px; }
  .cd-icon { width: 38px; height: 38px; flex-shrink: 0; }
  .contact-form { padding: 24px 16px; border-radius: 16px; }
  .contact-info h2 { font-size: 1.4rem; margin-bottom: 10px; }
  .contact-info p { margin-bottom: 18px; font-size: .9rem; }
}

@media (max-width: 600px) {
  .hero { min-height: auto; }
  .hero-inner { padding-top: 80px; padding-bottom: 40px; }
  .nav { height: 65px; padding: 0 12px; }
  .nav-logo img { height: 48px; width: 48px; }
  .nav-logo-text { font-size: 0.9rem; letter-spacing: 0.5px; }
  .hero-title { font-size: 1.8rem; }
  .features-inner { grid-template-columns: 1fr; }
  .hero-btns { display: grid; grid-template-columns: repeat(2, minmax(140px, 1fr)); gap: 8px; justify-content: center; max-width: 380px; margin: 0 auto 22px; }
  .btn-call, .btn-wa { width: 100%; padding: 12px 16px; font-size: .88rem; min-height: 48px; justify-content: center; }
  .btn-call svg, .btn-wa svg { width: 18px; height: 18px; min-width: 18px; display: block; }
  .btn-call span, .btn-wa span { white-space: nowrap; }
  .hero-stats { flex-direction: row; gap: 24px; align-items: center; justify-content: center; }
  .hero-stat .num { font-size: 1.4rem; }
  .hero-stat .label { font-size: .65rem; }
  .nav-logo-text { font-size: 0.9rem; }
  .search-sec { padding: 14px 10px; margin-top: -24px; }
  .search-bar { flex-direction: row; gap: 8px; padding: 8px 10px; align-items: center; flex-wrap: wrap; }
  .search-input { font-size: 0.92rem; padding: 0; }
  .search-btn { padding: 10px 18px; font-size: .78rem; border-radius: 14px; }
  .search-results { max-width: 100%; border-radius: 8px; }
  .sr-item { padding: 10px 12px; font-size: .78rem; }
  .lang-sw { display: inline-flex; gap: 2px; border: 1px solid rgba(12,26,51,.12); padding: 3px; border-radius: 10px; background: rgba(255,255,255,.98); box-shadow: 0 2px 8px rgba(0,0,0,.10); }
  .lang-btn { padding: 4px 6px; min-width: unset; width: auto; height: auto; border: none; display: inline-flex; align-items: center; gap: 4px; justify-content: center; background: transparent; border-radius: 7px; }
  .lang-btn span { display: inline-block; font-size: .6rem; font-weight: 700; color: var(--navy); }
  .lang-btn img { width: 18px; height: 12px; object-fit: cover; border-radius: 2px; box-shadow: 0 1px 2px rgba(0,0,0,.2); }
  .lang-btn.active { background: var(--gold); }
  .lang-btn.active span { color: var(--white); }
  .wa-float { bottom: 90px; right: 20px; }
  .routes-grid { grid-template-columns: 1fr; }
  .booking-contacts { flex-direction: column; align-items: center; }
  .book-link { width: 100%; max-width: 320px; justify-content: flex-start; padding: 14px 20px; }
  .footer { flex-direction: column; text-align: center; gap: 10px; }
  .footer p { max-width: 100%; }
  .tab-nav { gap: 4px; }
  .tab-btn { padding: 10px 16px; font-size: .78rem; }
  .form-row { grid-template-columns: 1fr; }
  .carousel-item { flex: 0 0 220px; }
  .about-imgs { grid-template-columns: 1fr; }
  .about-imgs img:first-child { aspect-ratio: 16/9; }
}
