/* ==========================================================================
   Veyro - Main Stylesheet
   ========================================================================== */

/* ==========================================================================
   1. Reset & Base Styles
   ========================================================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   2. Layout
   ========================================================================== */

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

/* ==========================================================================
   3. Header & Navigation
   ========================================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a1a;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

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

.mobile-menu ul {
    list-style: none;
}

.mobile-menu li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */

.cta-button {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-1px);
}

.cta-button-large {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.cta-button-outline {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}

.cta-button-outline:hover {
    background: #1a1a1a;
    color: white;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: #1a1a1a;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    cursor: pointer;
}

.secondary-button:hover {
    border-color: #1a1a1a;
    transform: translateY(-1px);
}

.back-button {
    background: transparent;
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.back-button:hover {
    border-color: #1a1a1a;
}

/* ==========================================================================
   5. Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p,
.hero-content .subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons,
.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-image {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Trust Items */
.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.trust-item .check {
    color: #22c55e;
    font-weight: 700;
}

/* Hero Badges */
.airport-badge,
.route-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #1a1a1a;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.4;
}

.route-badge span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #999;
}

/* ==========================================================================
   6. Section Styles
   ========================================================================== */

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   7. Features Section
   ========================================================================== */

.features {
    padding: 6rem 2rem;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    text-align: left;
    padding: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-card h3::before {
    content: "✓";
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-card p {
    color: #666;
    font-weight: 300;
    line-height: 1.7;
}

/* ==========================================================================
   8. Benefits Section (Landing Pages)
   ========================================================================== */

.benefits,
.why-choose,
.why-private {
    padding: 6rem 2rem;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.3rem;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   9. Fleet / Vehicle Section
   ========================================================================== */

.fleet,
.vehicles {
    padding: 6rem 2rem;
    background: #fafafa;
}

.vehicles {
    background: white;
}

.fleet-grid,
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.fleet-card,
.vehicle-card {
    background: white;
    border-radius: 12px;
    padding: 0;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    overflow: hidden;
}

.vehicle-card {
    background: #fafafa;
    border: none;
}

.fleet-card:hover,
.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.fleet-card-image,
.vehicle-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #f5f5f5;
}

.vehicle-image {
    height: 200px;
}

.fleet-card-image img,
.vehicle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fleet-card:hover .fleet-card-image img,
.vehicle-card:hover .vehicle-image img {
    transform: scale(1.05);
}

.fleet-card-content,
.vehicle-content {
    padding: 2rem;
}

.fleet-card h3,
.vehicle-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.vehicle-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.fleet-card .subtitle,
.vehicle-content .model {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.vehicle-content .model {
    margin-bottom: 1rem;
}

.fleet-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.fleet-card li {
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.95rem;
}

.fleet-card li:before {
    content: "✓";
    margin-right: 0.75rem;
    color: #1a1a1a;
    font-weight: 600;
}

.vehicle-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.vehicle-price .from {
    font-size: 0.85rem;
    color: #666;
}

.vehicle-price .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.vehicle-features {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.vehicle-feature {
    background: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* ==========================================================================
   10. Trust Bar
   ========================================================================== */

.trust-bar {
    background: #1a1a1a;
    color: white;
    padding: 1.5rem 2rem;
}

.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

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

.trust-stat .number,
.trust-stat .value {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.trust-stat .value {
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.trust-stat .label {
    font-size: 0.85rem;
    color: #999;
}

/* Route Overview (City-to-City) */
.route-overview {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem;
}

.route-overview .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.route-stat {
    padding: 1rem;
}

.route-stat .value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.25rem;
}

.route-stat .label {
    font-size: 0.9rem;
    color: #999;
}

/* ==========================================================================
   11. How It Works / Steps
   ========================================================================== */

.how-it-works {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.steps-grid.steps-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.steps-grid::before {
    content: "";
    position: absolute;
    top: 35px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.steps-grid.steps-4::before {
    left: 12%;
    right: 12%;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    background: white;
    border: 3px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================================================
   12. Routes Section (Landing Pages)
   ========================================================================== */

.routes {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.route-card {
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.route-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.route-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.route-info .duration {
    color: #666;
    font-size: 0.9rem;
}

.route-price {
    text-align: right;
}

.route-price .from {
    font-size: 0.8rem;
    color: #666;
}

.route-price .price {
    font-size: 1.3rem;
    font-weight: 700;
}

/* ==========================================================================
   13. Use Cases Section
   ========================================================================== */

.use-cases {
    padding: 6rem 2rem;
    background: white;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.use-case-card {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #fafafa;
    border-radius: 12px;
    transition: all 0.3s;
}

.use-case-card:hover {
    background: #f5f5f5;
}

.use-case-icon {
    width: 60px;
    height: 60px;
    background: #1a1a1a;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.use-case-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.use-case-content p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================================================
   14. Comparison Section
   ========================================================================== */

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-card {
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
}

.comparison-card.train {
    background: #f5f5f5;
}

.comparison-card.Veyro {
    background: #1a1a1a;
    color: white;
}

.comparison-card.Veyro .card-label {
    background: white;
    color: #1a1a1a;
}

.card-label {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #1a1a1a;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.comparison-list {
    list-style: none;
}

.comparison-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.comparison-card.train .comparison-list li::before {
    content: "−";
    color: #999;
    font-weight: 700;
}

.comparison-card.Veyro .comparison-list li::before {
    content: "✓";
    color: #22c55e;
    font-weight: 700;
}

/* ==========================================================================
   15. Coverage Section
   ========================================================================== */

.coverage {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
}

.cities {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.city-badge {
    padding: 0.75rem 1.5rem;
    background: #fafafa;
    border-radius: 8px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 0.95rem;
}

/* ==========================================================================
   16. FAQ Section
   ========================================================================== */

.faq {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    background: white;
    margin-bottom: 0.5rem;
    border-radius: 8px;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: inherit;
}

.faq-question:hover {
    color: #333;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ==========================================================================
   17. CTA Section
   ========================================================================== */

.cta-section,
.final-cta {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.cta-section h2,
.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-section p,
.final-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .cta-button,
.final-cta .cta-button {
    background: white;
    color: #1a1a1a;
}

.cta-section .cta-button:hover,
.final-cta .cta-button:hover {
    background: #f5f5f5;
}

.contact-info {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #999;
}

.contact-info a {
    color: white;
    text-decoration: none;
}

/* ==========================================================================
   18. Footer
   ========================================================================== */

footer {
    padding: 3rem 2rem 2rem;
    background: white;
    border-top: 1px solid #e0e0e0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #1a1a1a;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 0.85rem;
}

/* Landing Page Simple Footer */
.footer-bottom-simple {
    text-align: center;
    padding: 2rem;
    background: #111;
    color: #999;
    font-size: 0.85rem;
}

.footer-bottom-simple a {
    color: #999;
    text-decoration: none;
}

.footer-bottom-simple a:hover {
    color: white;
}

/* ==========================================================================
   19. Contact Page
   ========================================================================== */

.contact-section {
    padding: 3rem 2rem 6rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: #fafafa;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: #666;
}

.contact-card p {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.support-info {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: #fafafa;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.support-info p {
    color: #666;
    line-height: 1.7;
}

/* ==========================================================================
   20. Legal Page
   ========================================================================== */

.legal-content {
    padding: 4rem 2rem 6rem;
}

.legal-content .container {
    max-width: 800px;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-section p {
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.company-info {
    background: #fafafa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.company-info p {
    margin-bottom: 0.5rem;
}

.company-info strong {
    color: #1a1a1a;
}

/* ==========================================================================
   21. Careers Page
   ========================================================================== */

.culture-section {
    padding: 6rem 2rem;
    background: #fafafa;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.culture-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.culture-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.culture-card p {
    color: #666;
    font-size: 0.95rem;
}

.positions-section {
    padding: 6rem 2rem;
    background: white;
}

.positions-list {
    max-width: 800px;
    margin: 0 auto;
}

.position-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.position-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.position-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
}

.position-header:hover {
    background: #fafafa;
}

.position-title h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.position-meta {
    display: flex;
    gap: 1rem;
    color: #666;
    font-size: 0.9rem;
}

.position-toggle {
    font-size: 1.5rem;
    color: #666;
    transition: transform 0.3s;
}

.position-card.active .position-toggle {
    transform: rotate(45deg);
}

.position-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.position-card.active .position-details {
    max-height: 1000px;
}

.position-content {
    padding: 0 2rem 2rem;
    border-top: 1px solid #e0e0e0;
}

.position-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.position-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    color: #666;
}

.position-content li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* ==========================================================================
   22. Booking Page
   ========================================================================== */

.booking-section {
    padding: 6rem 2rem 2rem;
    min-height: 100vh;
}

.booking-container {
    max-width: 900px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 2rem;
}

.booking-header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: #666;
}

.booking-frame {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* ==========================================================================
   23. About Page
   ========================================================================== */

.mission-section {
    padding: 6rem 2rem;
    background: white;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-section {
    padding: 6rem 2rem;
    background: #fafafa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.value-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   24. Responsive Styles
   ========================================================================== */

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    nav .cta-button,
    nav .back-button {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 7rem 1rem 3rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p,
    .hero-content .subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-ctas {
        flex-direction: column;
        justify-content: center;
    }

    .hero-image {
        order: -1;
        height: 300px;
    }

    .airport-badge,
    .route-badge {
        top: -10px;
        right: 10px;
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
    }

    .section-title,
    .section-header h2 {
        font-size: 1.8rem;
    }

    .features-grid,
    .benefits-grid,
    .vehicles-grid,
    .use-cases-grid,
    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-grid::before {
        display: none;
    }

    .routes-grid {
        grid-template-columns: 1fr;
    }

    .route-overview .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .trust-bar .container {
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section h2,
    .final-cta h2 {
        font-size: 1.8rem;
    }

    .use-case-card {
        flex-direction: column;
        text-align: center;
    }

    .use-case-icon {
        margin: 0 auto;
    }

    .booking-section {
        padding: 6rem 1rem 2rem;
    }

    .culture-section,
    .positions-section,
    .mission-section,
    .values-section {
        padding: 4rem 1rem;
    }

    .legal-content {
        padding: 3rem 1rem 4rem;
    }
}
