/* ============================================
   Quick Cabs - Emerald Luxe Theme
   WCAG AA+ Compliant | Modern | Accessible
   ============================================ */

:root {
  --primary: #00c853;
  --primary-dark: #00a844;
  --primary-light: #69f0ae;
  --secondary: #ff5252;
  --secondary-dark: #e04545;
  --accent: #ffab40;
  --bg-base: #0c0f14;
  --bg-card: #151921;
  --bg-card-hover: #1c2230;
  --bg-elevated: #1e2533;
  --bg-subtle: #101419;
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(0,200,83,0.25);
  --text-primary: #edf0f5;
  --text-secondary: #b8c0ce;
  --text-muted: #8c95a5;
  --text-faint: #7a8494;
  --white: #ffffff;
  --whatsapp: #00c853;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
  --shadow: 0 4px 16px rgba(0,0,0,0.5);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.6);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.6);
  --shadow-xl: 0 25px 60px rgba(0,0,0,0.7);
  --glow-primary: 0 0 20px rgba(0,200,83,0.12);
  --glow-secondary: 0 0 20px rgba(255,82,82,0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.3s ease;
  --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }

body {
  font-family: var(--font-primary);
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; color: var(--white); }
h1 { font-size: clamp(1.8rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.65rem); }
h4 { font-size: clamp(1.05rem, 2.5vw, 1.3rem); }
p { margin-bottom: 1rem; font-size: clamp(0.95rem, 1.5vw, 1.08rem); color: var(--text-secondary); }

strong, b { color: var(--white); font-weight: 700; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ TOP BAR ============ */
.top-bar {
  background: #080a0f;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  padding: 8px 0;
  font-size: 0.85rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: var(--primary-light); font-weight: 600; }
.top-bar a:hover { color: var(--primary); text-decoration: underline; }
.top-bar-info { display: flex; align-items: center; gap: 16px; }
.top-bar-links { display: flex; gap: 16px; }

/* ============ HEADER ============ */
.header {
  background: rgba(12,15,20,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); border-bottom-color: rgba(0,200,83,0.1); }
.header .container { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; padding-bottom: 12px; }

.logo { display: flex; align-items: center; gap: 10px; font-size: 1.5rem; font-weight: 800; color: var(--white); flex-shrink: 0; }
.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-base); font-size: 1.2rem; font-weight: 900;
  box-shadow: 0 2px 12px rgba(0,200,83,0.3);
}
.logo span { color: var(--primary); }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-weight: 600; font-size: 0.93rem; color: var(--text-muted); position: relative; padding: 4px 0; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--primary); transition: var(--transition); border-radius: 2px; }
.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-base) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  box-shadow: 0 2px 12px rgba(0,200,83,0.3);
  white-space: nowrap;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { box-shadow: 0 4px 20px rgba(0,200,83,0.4); transform: translateY(-1px); }

/* Hamburger - RIGHT SIDE */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; margin-left: auto; order: 10; z-index: 10001; }
.hamburger span { width: 26px; height: 2.5px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.75); backdrop-filter: blur(4px); z-index: 9999; opacity: 0; visibility: hidden; transition: var(--transition);
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav-panel {
  position: absolute; top: 0; right: -320px; width: 320px; max-width: 85%; height: 100%;
  background: var(--bg-card); border-left: 1px solid var(--border);
  padding: 28px; transition: right 0.3s ease; overflow-y: auto;
}
.mobile-nav.active .mobile-nav-panel { right: 0; }
.mobile-nav-close { display: flex; justify-content: flex-end; margin-bottom: 20px; }
.mobile-nav-close button { font-size: 1.8rem; color: var(--text-muted); padding: 4px; }
.mobile-nav-close button:hover { color: var(--primary); }

.mobile-nav-links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-links a {
  display: block; padding: 14px 18px; font-weight: 600; color: var(--text-secondary);
  border-radius: var(--radius); font-size: 1rem; transition: var(--transition);
}
.mobile-nav-links a:hover, .mobile-nav-links a.active { background: rgba(0,200,83,0.1); color: var(--primary); }
.mobile-nav-links .nav-cta { text-align: center; margin-top: 20px; color: var(--bg-base) !important; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 500px; display: flex; align-items: center;
  overflow: hidden; background: var(--bg-base);
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(12,15,20,0.88) 0%, rgba(12,15,20,0.5) 60%, rgba(12,15,20,0.75) 100%); }
.hero[style*="background-image"] { background-size: cover; background-position: center; }
.hero[style*="background-image"] .hero-content { background: rgba(12,15,20,0.7); padding: 40px; border-radius: var(--radius-lg); backdrop-filter: blur(8px); border: 1px solid var(--border); }

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,200,83,0.1); border: 1px solid rgba(0,200,83,0.25);
  color: var(--primary-light); padding: 8px 18px; border-radius: var(--radius-full);
  font-size: 0.85rem; font-weight: 600; margin-bottom: 20px;
}

.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero h1 .highlight { color: var(--primary-light); }
.hero p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; line-height: 1.8; }
.hero p strong { color: var(--primary-light); }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat, .stat-item { text-align: center; }
.hero-stat-number, .stat-number { font-size: 2rem; font-weight: 800; color: var(--primary); display: block; }
.hero-stat-label, .stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: var(--radius-full); font-weight: 700; font-size: 1rem;
  transition: var(--transition); text-align: center; white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-base); box-shadow: 0 4px 18px rgba(0,200,83,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,200,83,0.4); }
.btn-secondary {
  background: rgba(255,255,255,0.08); color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover { background: var(--white); color: var(--bg-base); border-color: var(--white); }
.btn-green { background: var(--whatsapp); color: var(--bg-base); box-shadow: 0 4px 18px rgba(0,200,83,0.3); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,200,83,0.4); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--bg-base); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }

/* ============ SECTIONS ============ */
section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--primary); font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-label::before, .section-label::after { content: ''; width: 30px; height: 2px; background: var(--primary); border-radius: 2px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { max-width: 640px; margin: 0 auto; color: var(--text-muted); font-size: 1.02rem; }

.bg-gray { background: var(--bg-subtle); }
.bg-light { background: var(--bg-subtle); }
.bg-dark-section { background: var(--bg-base); }
.bg-dark-section h2, .bg-dark-section h3 { color: var(--white); }
.bg-dark-section p { color: var(--text-secondary); }

/* ============ FEATURES / CARDS ============ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 36px 28px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition); text-align: center;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }
.feature-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(0,200,83,0.12), rgba(0,200,83,0.04));
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem;
}
.feature-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* ============ ABOUT / SPLIT ============ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; border: 1px solid var(--border); }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-label { justify-content: flex-start; }
.about-content .section-label::before { display: none; }
.about-content h2 { margin-bottom: 20px; }
.about-content p { color: var(--text-secondary); margin-bottom: 16px; }
.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--text-secondary); }
.about-list .check {
  width: 24px; height: 24px; background: var(--primary); color: var(--bg-base);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; flex-shrink: 0;
}

/* ============ SERVICES GRID ============ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }
.service-card-img { height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { color: var(--text-muted); font-size: 0.95rem; }
.service-card-link, .service-link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  color: var(--primary); font-weight: 700; font-size: 0.9rem;
}
.service-card-link:hover, .service-link:hover { gap: 10px; color: var(--primary-light); }

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(0,200,83,0.12), rgba(0,200,83,0.04));
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2rem;
}

/* ============ ROUTES TABLE ============ */
.routes-table-wrapper, .table-responsive, .fare-table-wrapper {
  overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--border);
}
.routes-table, .fare-table {
  width: 100%; border-collapse: collapse; background: var(--bg-card); font-size: 0.95rem;
}
.routes-table thead, .fare-table thead { background: var(--bg-elevated); }
.routes-table th, .fare-table th {
  padding: 16px 20px; text-align: left; font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.5px; color: var(--primary); border-bottom: 1px solid var(--border);
}
.routes-table td, .fare-table td {
  padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--text-secondary);
}
.routes-table tbody tr, .fare-table tbody tr { transition: var(--transition); }
.routes-table tbody tr:hover, .fare-table tbody tr:hover { background: var(--bg-card-hover); }
.routes-table .price, .fare-table .price { font-weight: 800; color: var(--secondary); font-size: 1.05rem; }
.routes-table .book-btn {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-base); border-radius: var(--radius-full); font-weight: 600; font-size: 0.85rem; transition: var(--transition);
}
.routes-table .book-btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,200,83,0.3); }
.routes-description { margin-top: 32px; }
.routes-description p { color: var(--text-secondary); line-height: 1.8; }
.fare-note { text-align: center; margin-top: 20px; color: var(--text-muted); font-size: 0.9rem; }
.fare-note a, .routes-description a { color: var(--primary); font-weight: 600; }
.fare-note a:hover, .routes-description a:hover { color: var(--primary-light); }

/* ============ ROUTE CARDS ============ */
.route-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.route-card {
  background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.route-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-hover); }
.route-card-img { height: 180px; overflow: hidden; }
.route-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.route-card:hover .route-card-img img { transform: scale(1.05); }
.route-card-body { padding: 24px; }
.route-card-body h3 { margin-bottom: 8px; font-size: 1.1rem; }
.route-card-meta { display: flex; gap: 20px; margin-bottom: 12px; }
.route-card-meta span { display: flex; align-items: center; gap: 6px; font-size: 0.85rem; color: var(--text-muted); }
.route-card-price { font-size: 1.3rem; font-weight: 800; color: var(--secondary); }
.route-card-price small { font-size: 0.8rem; font-weight: 400; color: var(--text-faint); }

/* ============ PRICING CARDS ============ */
.pricing-grid, .pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.pricing-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 40px 32px;
  box-shadow: var(--shadow); border: 2px solid var(--border);
  transition: var(--transition); text-align: center; position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--glow-primary); }
.pricing-card.featured::before,
.pricing-card-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-base); padding: 4px 20px; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 700;
}
.pricing-card-icon {
  width: 72px; height: 72px; background: rgba(0,200,83,0.08);
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 2rem;
}
.pricing-card h3 { margin-bottom: 8px; }
.pricing-card .subtitle, .pricing-card-info, .pricing-card-car { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 8px; }
.pricing-card-rate { color: var(--text-secondary); }
.pricing-card-rate { font-size: 1.5rem; font-weight: 800; color: var(--primary); margin: 12px 0 4px; }
.pricing-card-range { font-size: 0.9rem; color: var(--text-faint); margin-bottom: 20px; }
.pricing-card-features, .pricing-features {
  text-align: left; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px;
}
.pricing-card-features li, .pricing-features li {
  display: flex; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 0.95rem;
}
.pricing-features .tick { color: var(--primary); font-weight: 700; }

/* ============ TESTIMONIALS ============ */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-hover); }
.testimonial-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; display: flex; gap: 2px; }
.testimonial-card p, .testimonial-text { color: var(--text-secondary); font-style: italic; margin-bottom: 20px; font-size: 0.95rem; }
.testimonial-author, .testimonial-meta { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--bg-base); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; }
.testimonial-author-info strong, .testimonial-meta strong { display: block; color: var(--white); font-size: 0.95rem; }
.testimonial-author-info span, .testimonial-meta span { color: var(--text-faint); font-size: 0.85rem; }

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: var(--transition); background: var(--bg-card); }
.faq-item:hover { border-color: var(--border-hover); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 24px; font-weight: 700; font-size: 1rem;
  color: var(--text-primary); display: flex; justify-content: space-between; align-items: center;
  background: transparent; transition: var(--transition); font-family: inherit;
  border: none; cursor: pointer; color: var(--white);
}
.faq-question:hover { color: var(--primary); }
.faq-question .faq-toggle { font-size: 1.3rem; transition: transform 0.3s ease; color: var(--primary); flex-shrink: 0; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-item.active { border-color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-secondary); line-height: 1.8; }
.faq-answer-inner p { margin-bottom: 0; }

/* ============ CTA SECTION ============ */
.cta-section {
  background: linear-gradient(135deg, #071a14 0%, #0a2e22 40%, #0d4432 100%);
  text-align: center; padding: 80px 20px; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(0,200,83,0.08) 0%, transparent 60%);
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============ CONTACT ============ */
.contact-grid, .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info-cards, .contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-info-card, .contact-card {
  display: flex; flex-direction: column; gap: 8px; padding: 24px;
  background: var(--bg-card); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.contact-info-card:hover, .contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-hover); }
.contact-icon, .contact-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,200,83,0.12), rgba(0,200,83,0.04));
  border: 1px solid rgba(0,200,83,0.2);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.contact-info-card h4, .contact-card h3 { margin-bottom: 4px; font-size: 1rem; }
.contact-info-card p, .contact-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }
.contact-info-card a, .contact-card a { color: var(--primary); font-weight: 600; }
.contact-info-card a:hover, .contact-card a:hover { color: var(--primary-light); }

/* Contact Form */
.contact-form-wrapper, .form-left {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow); border: 1px solid var(--border);
}
.contact-form-wrapper h3, .form-left h2 { margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: var(--radius);
  font-size: 0.95rem; font-family: inherit; color: var(--text-primary);
  transition: var(--transition); background: var(--bg-elevated);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0,200,83,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-card); color: var(--text-primary); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-right img { border-radius: var(--radius-lg); border: 1px solid var(--border); margin-bottom: 24px; }
.form-right h3 { margin-bottom: 16px; }
.form-right ul { margin: 0 0 20px; padding: 0; }
.form-right ul li { padding: 8px 0 8px 24px; position: relative; color: var(--text-secondary); line-height: 1.7; }
.form-right ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.form-right p { font-size: 0.95rem; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.step-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--border); transition: var(--transition); position: relative;
}
.step-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-md); }
.step-number {
  width: 48px; height: 48px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg-base); border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; margin-bottom: 16px;
}

.map-container { border: 1px solid var(--border) !important; border-radius: var(--radius-lg) !important; overflow: hidden; }

.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.hours-card {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border); text-align: center; transition: var(--transition);
}
.hours-card:hover { border-color: var(--border-hover); }
.hours-card h3 { font-size: 1rem; margin-bottom: 8px; }
.hours-time { font-size: 1.4rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.hours-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }

.included-grid, .guarantee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.included-item, .guarantee-item {
  background: var(--bg-card); border-radius: var(--radius-lg); padding: 28px;
  border: 1px solid var(--border); transition: var(--transition);
}
.included-item:hover, .guarantee-item:hover { border-color: var(--border-hover); }
.included-icon { font-size: 1.4rem; margin-bottom: 8px; display: block; }
.included-item h3, .guarantee-item h3, .included-item h4, .guarantee-item h4 { margin-bottom: 8px; font-size: 1.05rem; }
.included-item p, .guarantee-item p { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 0; }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split-content h2 { margin-bottom: 20px; }
.split-content p { color: var(--text-secondary); margin-bottom: 16px; }
.split-content a { color: var(--primary); font-weight: 600; }
.split-content a:hover { color: var(--primary-light); }
.split-image img { border-radius: var(--radius-lg); border: 1px solid var(--border); }

/* ============ FOOTER ============ */
.footer { background: #080a0f; padding: 60px 0 0; border-top: 1px solid var(--border); }
.footer-grid, .footer .container > .grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }

.footer .footer-col { margin-bottom: 0; }
.footer-col h3, .footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a:hover { color: var(--primary); transform: translateX(4px); }
.footer-col ul li span { color: var(--text-muted); font-size: 0.9rem; }

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { color: #9aa3b2; font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; background: var(--bg-elevated); color: var(--text-muted);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); border: 1px solid var(--border);
}
.footer-social a:hover { background: var(--primary); color: var(--bg-base); border-color: var(--primary); }

.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--primary); transform: translateX(4px); }
.footer-links span { color: var(--text-muted); font-size: 0.9rem; }
.footer-contact p { color: #9aa3b2; font-size: 0.9rem; margin-bottom: 6px; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.85rem; }
.footer-bottom p { color: #8d96a8; margin-bottom: 0; font-size: 0.85rem; }

/* ============ FIXED BOTTOM BAR ============ */
.fixed-bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
  display: flex; background: var(--bg-card);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.7); border-top: 1px solid var(--border);
}
.fixed-bottom-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 16px; font-weight: 700; font-size: 0.95rem;
  text-align: center; transition: var(--transition);
}
/* Call: white bg + dark text = 21:1 contrast (WCAG AAA) */
.call-btn { background: #ffffff; color: #12151a; }
.call-btn:hover { box-shadow: 0 4px 16px rgba(255,255,255,0.2); }
.call-btn svg { width: 22px; height: 22px; }
/* WhatsApp: green bg + dark text = 8.5:1 contrast (WCAG AAA) */
.whatsapp-btn { background: var(--whatsapp); color: var(--bg-base); }
.whatsapp-btn:hover { background: var(--primary-dark); }
.whatsapp-btn svg { width: 22px; height: 22px; }
.bottom-spacer { height: 60px; }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed; bottom: 80px; right: 20px; width: 44px; height: 44px;
  background: var(--primary); color: var(--bg-base);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; box-shadow: var(--shadow-md); transition: var(--transition);
  opacity: 0; visibility: hidden; z-index: 9997;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,200,83,0.4); }

/* ============ ANIMATIONS ============ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============ CONTENT SECTION ============ */
.content-section, .seo-content, .seo-content-section { padding: 80px 0; }
.content-section .container, .seo-content { max-width: 900px; }
.content-section h2, .seo-content h2, .seo-content-section h2 { margin-bottom: 20px; margin-top: 40px; }
.content-section h2:first-child, .seo-content h2:first-child { margin-top: 0; }
.content-section h3, .seo-content h3, .seo-content-section h3 { margin-bottom: 12px; margin-top: 28px; }
.content-section p, .seo-content p, .seo-content-section p { color: var(--text-secondary); font-size: 1rem; line-height: 1.85; }
.content-section ul, .seo-content ul { margin: 16px 0; padding-left: 0; }
.content-section ul li, .seo-content ul li { padding: 6px 0 6px 28px; position: relative; color: var(--text-secondary); line-height: 1.7; }
.content-section ul li::before, .seo-content ul li::before { content: '✓'; position: absolute; left: 0; color: var(--primary); font-weight: 700; }

/* ============ BREADCRUMB ============ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.breadcrumb { padding: 16px 0; font-size: 0.9rem; color: var(--text-muted); }
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid, .footer .container > .grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .split-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid, .form-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links { display: none !important; }
  .header .nav-cta { display: none !important; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .hero { min-height: 400px; }
  .hero-content { padding: 40px 0; }
  .hero-stats, .stat-item { gap: 24px; flex-wrap: wrap; justify-content: center; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  section { padding: 50px 0; }
  .section-header { margin-bottom: 40px; }
  .footer-grid, .footer .container > .grid { grid-template-columns: 1fr; gap: 32px; }
  .fixed-bottom-bar a { font-size: 0.85rem; gap: 8px; padding: 12px 10px; }
  .fixed-bottom-bar a svg { width: 18px; height: 18px; }
  .routes-description, .seo-content, .content-section, .seo-content-section { padding: 50px 0; }
}

@media (max-width: 480px) {
  .hero-stat-number, .stat-number { font-size: 1.5rem; }
  .features-grid, .services-grid, .route-cards-grid, .testimonials-grid, .pricing-grid, .pricing-cards,
  .included-grid, .guarantee-grid, .hours-grid, .steps-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; }
  .contact-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .logo { font-size: 1.2rem; }
  .logo-icon { width: 38px; height: 38px; font-size: 1rem; }
}
