/* ============================================
   TAXI NELI MELLINGEN - Professional Website
   ============================================ */

:root {
  --primary: #0b1c2c;
  --secondary: #123652;
  --accent: #ffb703;
  --accent-hover: #e6a300;
  --gold: #ffb703;
  --gold-light: #ffe38c;
  --text: #14223f;
  --text-light: #5a6f8f;
  --bg: #eff5fb;
  --white: #ffffff;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(9,20,39,0.12);
  --shadow-lg: 0 30px 90px rgba(9,20,39,0.16);
  --radius: 18px;
  --transition: all 0.28s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 28, 44, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  width: 80px;
  height: auto;
  display: block;
}

/* Small logo for mobile menu */
.mobile-logo {
  text-align: center;
  padding: 12px 0 6px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-logo-img {
  width: 64px;
  height: auto;
  display: inline-block;
}

/* Mobile nav tweaks to match logo style */
.mobile-nav {
  background: linear-gradient(180deg, #071422 0%, #0f2638 100%);
  border-top: 2px solid rgba(255,183,3,0.06);
}
.mobile-nav a {
  color: rgba(255,255,255,0.92);
}
.mobile-nav a.active, .mobile-nav a:hover {
  background: rgba(255,183,3,0.06);
  color: var(--white);
}

/* Footer logo and accents */
.footer .logo-img {
  width: 96px;
  height: auto;
  display: block;
  margin-bottom: 12px;
}
.footer-col a:hover { color: var(--gold); }
.footer { box-shadow: 0 -6px 30px rgba(9,20,39,0.06);} 

.logo-text {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-text span { color: var(--gold); }

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

.nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav a:hover, .nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.lang-switch {
  display: flex;
  gap: 4px;
  margin-left: 16px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.15);
}

.lang-switch a {
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 6px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
}

.lang-switch a.active {
  background: var(--accent);
  color: var(--white);
}

.lang-switch a:hover:not(.active) {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #071422 0%, #102a45 55%, #16426f 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 183, 3, 0.14), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.12), transparent 20%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 183, 3, 0.18);
  border: 1px solid rgba(255, 183, 3, 0.35);
  color: var(--accent);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 span { color: var(--gold); }

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 20px 50px rgba(255, 183, 3, 0.18);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(255, 183, 3, 0.22);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.6);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(255,255,255,0.98);
  border-radius: calc(var(--radius) + 4px);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(18, 54, 82, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 72px rgba(9,20,39,0.14);
}

.service-icon {
  width: 60px; height: 60px;
  background: rgba(255, 183, 3, 0.14);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(9,20,39,0.16);
}

.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,20,39,0.18), transparent 55%);
}

.about-content h2 {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-feature-icon {
  width: 40px; height: 40px;
  background: rgba(255, 183, 3, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-feature span {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* ===== FLEET ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.fleet-card {
  background: var(--card);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(18, 54, 82, 0.08);
}

.fleet-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 72px rgba(9,20,39,0.14);
}

.fleet-image {
  height: 220px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fleet-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 183, 3, 0.14), transparent 55%);
}

.fleet-info {
  padding: 28px;
}

.fleet-info h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.fleet-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.fleet-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
  background: rgba(18, 54, 82, 0.06);
  padding: 8px 14px;
  border-radius: 12px;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: #071422;
  padding: 100px 24px;
}

.reviews-section .section-title,
.reviews-section .section-desc {
  color: var(--white);
}

.reviews-section .section-desc {
  opacity: 0.85;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: calc(var(--radius) + 4px);
  padding: 32px;
  backdrop-filter: blur(12px);
}

.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.review-text {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
}

.review-name {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}

.review-badge {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px; height: 48px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

/* ===== MAP ===== */
.map-section {
  padding: 0;
}

.map-container {
  width: 100%;
  height: 400px;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.5);
}

.map-placeholder-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* ===== FOOTER ===== */
.footer {
  background: #071422;
  color: rgba(255,255,255,0.78);
  padding: 60px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-brand .logo-text { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-stats { gap: 24px; }
  .hero-stat-number { font-size: 1.8rem; }
}

@media (max-width: 600px) {
  .section { padding: 60px 20px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ===== MOBILE MENU ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--primary);
  padding: 20px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav.active { display: block; }

.mobile-nav a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: var(--transition);
}

.mobile-nav a:hover, .mobile-nav a.active {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ===== BOOKING PAGE ===== */
.booking-section {
  padding-top: 120px;
  min-height: 100vh;
}

.booking-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.booking-form-wrapper h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 8px;
}

.booking-form-wrapper .subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
}

.booking-type-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.booking-type-btn {
  flex: 1;
  min-width: 120px;
  padding: 16px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  text-align: center;
  transition: var(--transition);
}

.booking-type-btn.active {
  border-color: var(--accent);
  background: rgba(233,69,96,0.05);
}

.booking-type-btn .icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.booking-type-btn .label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card:hover {
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin: 16px 0;
}

.pricing-card .price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin: 24px 0;
}

.pricing-card ul li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}
