/* ─── PX Taxis – Styles ─── */
:root {
  --sun: #FFB800;
  --ocean: #0095B6;
  --sky: #E0F7FA;
  --green: #2ECC71;
  --dark: #1A2332;
  --mid: #4A5568;
  --light: #F7FBFF;
  --white: #FFFFFF;
  --radius: 20px;
  --shadow: 0 8px 32px rgba(0,149,182,0.13);
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; }

/* ── FLASH ALERTS ── */
.form-alert {
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  animation: fadeUp 0.4s ease both;
}
.form-alert-success {
  background: #E8F5E9;
  color: #2E7D32;
  border: 2px solid #A5D6A7;
}
.form-alert-error {
  background: #FFEBEE;
  color: #C62828;
  border: 2px solid #EF9A9A;
}
.contact-section .form-alert-success {
  background: rgba(46,204,113,0.15);
  color: #2ECC71;
  border-color: rgba(46,204,113,0.3);
}
.contact-section .form-alert-error {
  background: rgba(231,76,60,0.15);
  color: #E74C3C;
  border-color: rgba(231,76,60,0.3);
}

/* ── HONEYPOT ── */
.ohnohoney { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ── LANG SWITCHER ── */
.lang-bar {
  background: var(--dark);
  text-align: right;
  padding: 8px 32px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.lang-btn {
  background: none; border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7); font-family: 'Nunito', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 12px; border-radius: 20px; cursor: pointer;
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--sun); border-color: var(--sun); color: var(--dark);
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 40px; height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 900; color: var(--dark);
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--sun), #FF8C00);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 4px 12px rgba(255,184,0,0.35);
}
.nav-logo span { color: var(--ocean); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--mid);
  font-weight: 700; font-size: 14px; letter-spacing: 0.5px;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2.5px; background: var(--sun);
  border-radius: 2px; transition: width 0.25s;
}
.nav-links a:hover { color: var(--ocean); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--sun); color: var(--dark);
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 14px; padding: 10px 24px;
  border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 4px 14px rgba(255,184,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,184,0,0.5); }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  background: linear-gradient(160deg, #E0F7FA 0%, #FFF8E1 55%, #E8F5E9 100%);
  display: flex; align-items: center;
  padding: 60px 40px; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,184,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -60px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,149,182,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { max-width: 580px; z-index: 2; animation: fadeUp 0.7s ease both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 2px solid var(--sun);
  color: var(--dark); font-weight: 800; font-size: 13px;
  padding: 6px 16px; border-radius: 50px;
  margin-bottom: 22px; box-shadow: 0 2px 10px rgba(255,184,0,0.2);
}
.hero-badge span { font-size: 16px; }
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 900; line-height: 1.1;
  color: var(--dark); margin-bottom: 18px;
}
.hero h1 em { color: var(--ocean); font-style: normal; }
.hero p {
  font-size: 17px; line-height: 1.7; color: var(--mid);
  margin-bottom: 32px; max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--ocean); color: var(--white);
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 15px; padding: 14px 32px;
  border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,149,182,0.35);
  transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,149,182,0.45); }
.btn-outline {
  background: transparent; color: var(--dark);
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: 15px; padding: 13px 28px;
  border-radius: 50px; border: 2.5px solid var(--dark);
  cursor: pointer; transition: all 0.2s; text-decoration: none; display: inline-block;
}
.btn-outline:hover { background: var(--dark); color: var(--white); }
.hero-visual {
  flex: 1; display: flex; justify-content: center; align-items: center;
  z-index: 2; animation: fadeUp 0.9s ease both;
}
.hero-card {
  background: var(--white);
  border-radius: 28px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  max-width: 340px; width: 100%;
  position: relative;
}
.hero-card::before {
  content: '🚖';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-size: 48px; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; margin-bottom: 18px;
  text-align: center; padding-top: 16px;
}
.booking-form label {
  display: block; font-size: 12px; font-weight: 800;
  color: var(--mid); letter-spacing: 0.8px;
  text-transform: uppercase; margin-bottom: 5px; margin-top: 14px;
}
.booking-form input, .booking-form select {
  width: 100%; padding: 11px 14px;
  border: 2px solid #E8EDF2; border-radius: 12px;
  font-family: 'Nunito', sans-serif; font-size: 14px;
  color: var(--dark); background: var(--light);
  transition: border-color 0.2s;
}
.booking-form input:focus, .booking-form select:focus {
  outline: none; border-color: var(--ocean);
}
.booking-form .submit-btn {
  width: 100%; margin-top: 20px;
  background: linear-gradient(135deg, var(--sun), #FF8C00);
  color: var(--dark); font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 15px;
  padding: 13px; border-radius: 50px; border: none;
  cursor: pointer; box-shadow: 0 6px 18px rgba(255,184,0,0.4);
  transition: all 0.2s;
}
.booking-form .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(255,184,0,0.5); }
.booking-form .submit-btn:disabled,
.contact-form-wrap .form-submit:disabled {
  cursor: wait;
  opacity: 0.88;
  transform: none;
  box-shadow: none;
}
.submit-btn.is-submitting,
.form-submit.is-submitting {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn.is-submitting::before,
.form-submit.is-submitting::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: buttonSpin 0.8s linear infinite;
}

/* ── STATS BAND ── */
.stats-band {
  background: var(--dark);
  padding: 36px 40px;
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 40px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-weight: 900;
  color: var(--sun); line-height: 1;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 600; margin-top: 4px; }

/* ── SERVICES ── */
.section { padding: 90px 40px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block; background: var(--sky);
  color: var(--ocean); font-weight: 800; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 14px;
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px); font-weight: 900;
  color: var(--dark); margin-bottom: 12px;
}
.section-header p { font-size: 16px; color: var(--mid); max-width: 520px; margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid #EDF2F7;
  transition: all 0.3s; cursor: default;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute;
  inset: 0; opacity: 0;
  background: linear-gradient(135deg, var(--sky), #FFF8E1);
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--ocean); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-card > * { position: relative; z-index: 1; }
.service-icon {
  font-size: 42px; margin-bottom: 16px;
  display: block; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.1));
}
.service-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--dark); }
.service-card p { font-size: 14px; color: var(--mid); line-height: 1.65; }
.service-tag {
  display: inline-block; margin-top: 14px;
  background: var(--sky); color: var(--ocean);
  font-size: 11px; font-weight: 800; letter-spacing: 0.8px;
  padding: 4px 12px; border-radius: 20px;
}

/* ── WHY US ── */
.why-section {
  background: linear-gradient(160deg, #E0F7FA 0%, #FFF8E1 100%);
  padding: 90px 40px;
}
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; max-width: 1000px; margin: 0 auto;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-dot {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--white); box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.why-item h4 { font-size: 15px; font-weight: 800; margin-bottom: 3px; }
.why-item p { font-size: 13.5px; color: var(--mid); line-height: 1.6; }
.why-visual {
  background: var(--white); border-radius: 28px;
  padding: 36px; box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.why-visual h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; margin-bottom: 22px; color: var(--dark);
}
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; border-bottom: 1.5px dashed #E8EDF2;
}
.price-row:last-child { border-bottom: none; }
.price-from { font-size: 13px; color: var(--mid); }
.price-from strong { display: block; font-size: 14px; color: var(--dark); font-weight: 800; }
.price-val { font-size: 18px; font-weight: 900; color: var(--ocean); }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 90px 40px; background: var(--white); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; max-width: 1000px; margin: 0 auto;
}
.review-card {
  background: var(--light); border-radius: var(--radius);
  padding: 28px; border: 2px solid #EDF2F7;
}
.stars { color: var(--sun); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--mid); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: var(--white);
}
.reviewer-name { font-weight: 800; font-size: 14px; }
.reviewer-flag { font-size: 13px; color: var(--mid); }

/* ── CONTACT ── */
.contact-section {
  background: var(--dark); padding: 90px 40px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; max-width: 960px; margin: 0 auto; align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: var(--white); margin-bottom: 14px;
}
.contact-info p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-item span { color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; }
.contact-form-wrap {
  background: rgba(255,255,255,0.05); border-radius: 24px;
  padding: 36px; border: 1.5px solid rgba(255,255,255,0.1);
}
.contact-form-wrap h3 { color: var(--white); font-size: 20px; font-weight: 800; margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 800; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 12px; color: var(--white);
  font-family: 'Nunito', sans-serif; font-size: 14px;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--sun);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select option { background: var(--dark); }
.form-submit {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, var(--sun), #FF8C00);
  color: var(--dark); font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 15px;
  border: none; border-radius: 50px; cursor: pointer;
  box-shadow: 0 6px 20px rgba(255,184,0,0.3);
  transition: all 0.2s; margin-top: 6px;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(255,184,0,0.45); }

/* ── FOOTER ── */
footer {
  background: #111827; padding: 32px 40px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 900; color: var(--white);
}
.footer-logo span { color: var(--sun); }
footer p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--sun); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes buttonSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { flex-direction: column; padding: 40px 20px; gap: 40px; min-height: auto; }
  .hero-content { text-align: center; }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .why-section { padding: 60px 20px; }
  .testimonials-section { padding: 60px 20px; }
  .contact-section { padding: 60px 20px; }
  footer { flex-direction: column; text-align: center; padding: 24px 20px; }
  .stats-band { padding: 28px 20px; gap: 24px; }
}
