/* Black Car Service - Master Stylesheet */
:root {
  --primary: #ffffff;
  --secondary: #f8fafc;
  --accent: #1e40af;
  --accent-hover: #1e3a8a;
  --accent-light: #3b82f6;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --card-bg: #ffffff;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--primary);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 { font-weight: 600; line-height: 1.3; color: var(--text); }
h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; color: var(--accent); }
h3 { font-size: 1.4rem; margin-bottom: 1rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }

.header {
  background: #ffffff;
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.header-content { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.1rem; font-weight: 700; font-style: italic; text-transform: uppercase; color: #000000; letter-spacing: 1px; }
.nav { display: flex; gap: 25px; align-items: center; }
.nav a { color: var(--text); font-size: 0.95rem; }
.nav a:hover { color: var(--accent); }

/* Dropdown Navigation */
.nav-dropdown { position: relative; }
.nav-link { cursor: pointer; padding: 10px 0; }
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 12px 0;
  z-index: 1000;
  border: 1px solid var(--border);
}
.dropdown-content a {
  display: block;
  padding: 10px 20px;
  color: var(--text);
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.dropdown-content a:hover {
  background: var(--secondary);
  color: var(--accent);
}
.nav-dropdown:hover .dropdown-content { display: block; }
.nav-cta { margin-left: 10px; }

.phone-btn {
  background: var(--accent);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 600;
}
.phone-btn:hover { background: var(--accent-hover); }

.hero { background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); padding: 120px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero-content { text-align: left; }
.hero h1 { color: var(--text); font-size: 2.5rem; margin-bottom: 20px; }
.hero-subtitle { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 25px; }
.hero-ctas { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 25px; }

.hero-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--border);
  max-height: 520px;
  overflow-y: auto;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.hero-form .booking-wrapper { min-height: 480px; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--accent); color: #ffffff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
.btn-secondary:hover { background: var(--accent); color: #ffffff; }

.trust-badges { display: flex; gap: 30px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 0.9rem; }

section { padding: 80px 0; }
section:nth-child(even) { background: var(--secondary); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-label { color: var(--accent); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); }
.card h3 { color: var(--text); }

.vehicle-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--border);
}
.vehicle-card img { width: 100%; height: 180px; object-fit: contain; background: #f8fafc; padding: 20px; }
.vehicle-card-content { padding: 20px; }
.vehicle-card h3 { font-size: 1.1rem; margin-bottom: 5px; }
.vehicle-card .passengers { color: var(--accent); font-size: 0.9rem; font-weight: 600; }

.airport-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.airport-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); }
.airport-code { font-size: 1.5rem; font-weight: 700; color: var(--accent); min-width: 60px; }
.airport-info h3 { font-size: 1.1rem; margin-bottom: 5px; }
.airport-info p { font-size: 0.9rem; margin: 0; }
.airport-price { margin-left: auto; text-align: right; }
.airport-price .from { font-size: 0.8rem; color: var(--text-muted); }
.airport-price .price { font-size: 1.3rem; font-weight: 700; color: var(--accent); }

.location-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
}
.location-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); }
.location-card h3 { margin-bottom: 10px; }
.location-card p { font-size: 0.9rem; }
.location-card .popular { display: inline-block; background: var(--accent); color: #ffffff; font-size: 0.75rem; padding: 3px 8px; border-radius: 3px; margin-top: 10px; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature { text-align: center; padding: 20px; }
.feature-icon { font-size: 2.5rem; margin-bottom: 15px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature p { font-size: 0.9rem; }

.content { padding: 60px 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.content-main h2 { margin-top: 40px; }
.content-main h2:first-child { margin-top: 0; }
.content-main ul { margin: 20px 0; padding-left: 25px; }
.content-main li { margin-bottom: 10px; color: var(--text-muted); }

.sidebar-card { background: #ffffff; border-radius: 10px; padding: 25px; margin-bottom: 25px; border: 1px solid var(--border); }
.sidebar-card h4 { margin-bottom: 15px; color: var(--accent); }

.data-table { width: 100%; border-collapse: collapse; margin: 25px 0; }
.data-table th, .data-table td { padding: 15px; text-align: left; border-bottom: 1px solid var(--border); }
.data-table th { background: var(--secondary); color: var(--accent); font-weight: 600; }
.data-table td { color: var(--text-muted); }

.faq-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.faq-answer { color: var(--text-muted); }

.cta-banner {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-banner h2 { color: #ffffff; margin-bottom: 15px; }
.cta-banner p { color: #ffffff; opacity: 0.9; margin-bottom: 25px; }
.cta-banner .btn { background: #ffffff; color: var(--accent); }
.cta-banner .btn:hover { background: #f8fafc; }

/* FOOTER - Clean Modern Design with Map */
.footer { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%); color: #ffffff; }
/* Footer map removed - now using mini map in location section */
.footer-main { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 60px; }
.footer-brand-section .footer-logo { font-size: 1.15rem; font-weight: 700; font-style: italic; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 20px; display: block; }
.footer-brand-section .footer-desc { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.8; margin-bottom: 25px; }
.footer-address { color: rgba(255,255,255,0.9); font-size: 0.9rem; line-height: 1.9; }
.footer-address strong { color: #fff; font-weight: 600; }
.footer-column h4 { color: #fff; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 25px; font-weight: 600; position: relative; padding-bottom: 12px; }
.footer-column h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: rgba(255,255,255,0.5); }
.footer-column ul { list-style: none; padding: 0; margin: 0; }
.footer-column li { margin-bottom: 14px; }
.footer-column a { color: rgba(255,255,255,0.85); font-size: 0.9rem; transition: color 0.2s ease, transform 0.2s ease; display: inline-block; }
.footer-column a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%); padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.2); }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { color: #ffffff; font-size: 0.85rem; margin: 0; opacity: 0.9; }
.footer-bottom-links { display: flex; gap: 25px; }
.footer-bottom-links a { color: #ffffff; font-size: 0.85rem; opacity: 0.9; }
.footer-bottom-links a:hover { opacity: 1; }
.footer-mini-map { width: 100%; height: 120px; border-radius: 6px; margin-top: 15px; border: none; }
.footer-contact-item { margin-bottom: 8px; color: rgba(255,255,255,0.9); font-size: 0.9rem; }
.footer-contact-item a { color: rgba(255,255,255,0.9); }
.footer-contact-item a:hover { color: #fff; }
.footer ul { list-style: none; }
.footer li { margin-bottom: 10px; }
.footer a { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.footer a:hover { color: #ffffff; }

.breadcrumbs a { color: var(--text-muted); font-size: 0.9rem; }
.breadcrumbs span { color: var(--text-muted); margin: 0 10px; }
.breadcrumbs .current { color: var(--accent); }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { text-align: center; }
  .hero-ctas { justify-content: center; }
}

@media (max-width: 768px) {
  .header-content { flex-direction: column; gap: 15px; }
  .nav { gap: 15px; flex-wrap: wrap; justify-content: center; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: 2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .footer-main { padding: 50px 0 40px; }
  .footer-mini-map { height: 100px; }
  .footer-bottom-content { flex-direction: column; gap: 15px; text-align: center; }
  section { padding: 50px 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .nav { flex-direction: column; gap: 10px; }
  .hero h1 { font-size: 1.7rem; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-column h4::after { left: 50%; transform: translateX(-50%); }
  .footer-column a:hover { transform: none; }
}