/* Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
    --dark-bg: #1a1a1a;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--dark-bg);
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.background-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-position: top center;
    background-repeat: no-repeat;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

/* Navigation Styles - Multi-Level Horizontal */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand a {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-brand a:hover {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.dropdown-arrow {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    opacity: 0.7;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Multi-Level Horizontal Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
    padding: 1rem 0;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-top: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0;
    border-left: 3px solid transparent;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
    border-left-color: var(--secondary-color);
    padding-left: 1.75rem;
}

.dropdown-menu a:before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    margin-right: 0.75rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dropdown-menu a:hover:before {
    opacity: 1;
}

.nav-button {
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    margin-left: 1rem;
}

.nav-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav-menu {
        display: none !important;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        z-index: 999;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-bottom-width: 1px;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--light-bg);
        border-radius: 0;
        margin-left: 1rem;
    }
    
    .nav-button {
        margin: 1rem 1.5rem;
        text-align: center;
    }
}

/* Header Styles */
.header {
    min-height: 300px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0 0 0; /* Add top padding for fixed nav */
    z-index: 2;
}

.header-content {
    color: white;
    padding: 2rem;
    max-width: 800px;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.header-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.header-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Header Top Styles */
.header-top {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Services Section */
.services {
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    box-sizing: border-box;
}

.services h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 0;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .services {
        padding: 3rem 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Changed from min-width: 300px to be fully responsive */
    margin: 0.25rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.service-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.vehicle {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.service-details {
    padding: 1.5rem;
}

.detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail:last-child {
    border-bottom: none;
}

.label {
    color: var(--primary-color);
    font-weight: 500;
}

.value {
    color: var(--text-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.features h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.feature-card {
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Tips Section */
.tips {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.tips h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.tips-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tips-content ul {
    list-style-position: inside;
    padding-left: 1rem;
}

.tips-content li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Footer Styles */
.footer {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-color);
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer p {
    margin: 0;
}

.footer a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer a:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Contact Section Styles */
.contact-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 800px;
}

.contact-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.contact-section a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content h2 {
        font-size: 1.8rem;
    }

    .header-content p {
        font-size: 1rem;
    }

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

    .services h2,
    .features h2,
    .tips h2 {
        font-size: 2rem;
    }

    .service-header h3 {
        font-size: 1.3rem;
    }
    
    .services {
        padding: 1rem 0;
    }

    .detail {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

main {
    flex: 1 0 auto;
}

/* CTA Button Styles */
.cta-container {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Process Steps Styles */
.process {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 60px;
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-cta {
    text-align: center;
}

/* Airport Cards Styles */
.airports {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.airports h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.airport-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.airport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.airport-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.airport-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.airport-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.airport-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.airport-card li:last-child {
    border-bottom: none;
}

.airport-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.airport-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .cta-container {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .airports-grid {
        grid-template-columns: 1fr;
    }
}

/* Quote Form Styles */
.quote-form-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.quote-form-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.quote-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.form-preview {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-step {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-step:last-of-type {
    border-bottom: none;
}

.form-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-group label {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.field-example {
    padding: 0.75rem;
    background: var(--light-bg);
    border: 2px dashed var(--border-color);
    border-radius: 6px;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.form-cta {
    text-align: center;
    margin-top: 2rem;
}

.form-disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.quote-benefits {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 2rem;
}

.quote-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.benefit-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Pricing Guide Styles */
.pricing-guide {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.pricing-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

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

.price-range {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.pricing-card li:last-child {
    border-bottom: none;
}

.pricing-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.step-details ul {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.step-details li {
    padding: 0.25rem 0;
    color: #666;
    font-size: 0.9rem;
}

.step-details li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
}

/* Responsive Quote Form */
@media (max-width: 768px) {
    .quote-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .field-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* Airport Specific Page Styles */
.airport-info {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.airport-info h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.airport-details {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.airport-overview {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.airport-overview p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.key-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.fact {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.fact h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.fact p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Transfer Options Styles */
.transfer-options {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.transfer-options h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.option-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.option-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.option-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 0.5rem;
}

.capacity {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.option-card .features {
    list-style: none;
    margin-bottom: 2rem;
}

.option-card .features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.option-card .features li:last-child {
    border-bottom: none;
}

.option-card .features li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.option-cta {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.option-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Popular Destinations Styles */
.popular-destinations {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.popular-destinations h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

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

.destination-card {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-3px);
}

.destination-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.destination-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.destination-details .time {
    color: #666;
    font-size: 0.9rem;
}

.destination-details .price {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Terminal Guide Styles */
.terminal-guide {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.terminal-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.terminal-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.terminal {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terminal h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terminal p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Travel Tips Styles */
.travel-tips {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.travel-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.travel-tips .tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tip-category {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tip-category h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tip-category ul {
    list-style: none;
}

.tip-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
}

.tip-category li:last-child {
    border-bottom: none;
}

.tip-category li:before {
    content: "💡 ";
    margin-right: 0.5rem;
}

/* Public Transport Styles */
.public-transport {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.public-transport h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.transport-options {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.transport-option {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.transport-option h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.transport-option p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive Airport Pages */
@media (max-width: 768px) {
    .key-facts {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .travel-tips .tips-content {
        grid-template-columns: 1fr;
    }
}

/* Comparison Page Styles */
.comparison-intro {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.comparison-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.intro-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

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

.comparison-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.comparison-benefits .benefit {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comparison-benefits .benefit h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.comparison-benefits .benefit p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Comparison Table Styles */
.comparison-table-section {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.comparison-table-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.table-wrapper {
    overflow-x: auto;
    margin: 0 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table td:first-child {
    font-weight: 500;
    background: var(--light-bg);
    color: var(--primary-color);
}

.comparison-table tr:hover {
    background: rgba(52, 152, 219, 0.05);
}

/* Operator Categories Styles */
.operator-categories {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.operator-categories h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

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

.category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.02);
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.category-price {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.category-description p {
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.category-description ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.category-description li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: #666;
}

.category-description li:before {
    content: "✓ ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.example-operators {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.category-cta {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.category-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Factors and Tips Styles */
.factors-to-consider,
.booking-tips {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.factors-to-consider h2,
.booking-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

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

.factor-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.factor-card:hover {
    transform: translateY(-3px);
}

.factor-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.factor-card p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Get Quotes Section */
.get-quotes-section {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    z-index: 2;
}

.get-quotes-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.quotes-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.quotes-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.quotes-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.quotes-features .feature {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-weight: 500;
}

.quotes-cta {
    margin-top: 2rem;
}

.quotes-cta .cta-button {
    background: var(--secondary-color);
}

.quotes-cta .cta-button:hover {
    background: #2980b9;
}

.quotes-cta .disclaimer {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* FAQ Page Styles */
.faq-intro {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.faq-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.faq-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.faq-intro a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.faq-intro a:hover {
    text-decoration: underline;
}

.faq-sections {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.faq-category {
    max-width: 1000px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
}

.faq-category h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

.faq-items {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    min-width: 30px;
    text-align: center;
}

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

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 1000px;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--primary-color);
}

/* Contact Support Section */
.contact-support {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.contact-support h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.support-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

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

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-method {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.support-method h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.support-method p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.support-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.support-link:hover {
    text-decoration: underline;
}

.support-note {
    font-style: italic;
    color: #888;
    font-size: 0.8rem;
}

.get-started {
    margin-top: 3rem;
}

.get-started p {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Comparison Note Section */
.comparison-note {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.comparison-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comparison-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.comparison-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.comparison-content ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.comparison-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.comparison-content strong {
    color: var(--primary-color);
}

/* Responsive FAQ and Comparison */
@media (max-width: 768px) {
    .table-wrapper {
        margin: 0 0.5rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .quotes-features {
        grid-template-columns: 1fr;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* Reviews Page Styles */
.reviews-intro {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.reviews-intro .intro-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.reviews-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Review Filters */
.review-filters {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.review-filters h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2rem;
}

.filter-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background: white;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Reviews Grid */
.reviews-grid {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-meta span {
    font-size: 0.9rem;
    color: #666;
}

.rating {
    color: #ffa500;
}

.operator-badge {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.review-content p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
    font-style: italic;
}

.review-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.highlight {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.highlight.positive {
    background: #d4edda;
    color: #155724;
}

.highlight.negative {
    background: #f8d7da;
    color: #721c24;
}

.highlight.neutral {
    background: #fff3cd;
    color: #856404;
}

/* Review Insights */
.review-insights {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.review-insights h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.insight-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.insight-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.insight-card ul {
    list-style: none;
}

.insight-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.6;
    font-size: 0.9rem;
}

.insight-card li:last-child {
    border-bottom: none;
}

/* Review Guidelines */
.review-guidelines {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.review-guidelines h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.guidelines-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.guideline-section {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guideline-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.guideline-section p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
}

.guideline-section ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.guideline-section li {
    padding: 0.5rem 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.guideline-section li:before {
    content: "• ";
    color: var(--secondary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.review-cta {
    text-align: center;
    margin-top: 1rem;
}

.review-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .guidelines-content {
        grid-template-columns: 1fr;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .operator-badge {
        align-self: flex-start;
    }
}

/* Partners section removed */


/* Updated Transfer Options Styles */
.shuttle-options {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.shuttle-options h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.transfer-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    padding: 0 1rem;
}

.transfer-type {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.transfer-type:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.transfer-type.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.transfer-type.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.type-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.transfer-type h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.transfer-type p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.type-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.type-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.type-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.main-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button-large {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #2980b9);
    color: white;
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(52, 152, 219, 0.4);
}

.cta-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Blog Page Styles */
.blog-intro {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.blog-intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.blog-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.blog-posts {
    padding: 2rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-post.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.post-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.blog-post.featured .post-image {
    height: auto;
    min-height: 300px;
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 2rem;
}

.blog-post.featured .post-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-content h2,
.post-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-content h2 {
    font-size: 1.8rem;
}

.post-content h3 {
    font-size: 1.4rem;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.post-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.post-highlights .highlight {
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.post-cta,
.read-more {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.post-cta:hover,
.read-more:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Travel Resources */
.travel-resources {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.travel-resources h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.resource-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.resource-card ul {
    list-style: none;
}

.resource-card li {
    margin-bottom: 0.5rem;
}

.resource-card a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Newsletter Signup */
.newsletter-signup {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    z-index: 2;
}

.newsletter-signup h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-btn:hover {
    background: #2980b9;
}

.newsletter-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Blog */
@media (max-width: 768px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-post.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .transfer-types {
        grid-template-columns: 1fr;
    }
}

/* Attractions Page Styles */
.attractions-intro {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.attractions-intro .intro-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.attractions-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.top-attractions {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.top-attractions h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.attraction-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.attraction-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.attraction-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.attraction-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
}

.attraction-image h3,
.attraction-image .attraction-badge {
    position: relative;
    z-index: 1;
}

.attraction-card.featured .attraction-image {
    height: auto;
    min-height: 350px;
}

/* Specific classes retained for potential per-card tweaks if needed */
.sacre-coeur { color: #fff; }

.attraction-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.attraction-details {
    padding: 2rem;
}

.attraction-card.featured .attraction-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.attraction-info {
    margin-bottom: 1.5rem;
}

.attraction-info p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #666;
}

.transfer-options,
.insider-tips {
    margin-bottom: 1.5rem;
}

.transfer-options h4,
.insider-tips h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.transfer-options ul,
.insider-tips ul {
    list-style: none;
}

.transfer-options li,
.insider-tips li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.transfer-options li:before {
    content: "🚗 ";
    margin-right: 0.5rem;
}

.insider-tips li:before {
    content: "💡 ";
    margin-right: 0.5rem;
}

.attraction-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.attraction-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.attraction-actions {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.attraction-link {
    display: inline-block;
    background: #34495e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 3px 8px rgba(52, 73, 94, 0.2);
}

.attraction-link:hover {
    background: #2c3e50;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.3);
}

/* Districts Guide */
.districts-guide {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.districts-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

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

.district-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.district-card:hover {
    transform: translateY(-5px);
}

.district-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.district-card p {
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.district-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.district-card li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.district-card li:before {
    content: "📍 ";
    margin-right: 0.5rem;
}

.district-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.district-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Transport Tips */
.transport-tips {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.transport-tips h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.tip-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.tip-card ul {
    list-style: none;
}

.tip-card li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.tip-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Booking Guide */
.booking-guide {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.booking-guide h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.booking-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

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

.booking-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.booking-option {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.booking-option:hover {
    transform: translateY(-5px);
}

.booking-option h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.booking-option p {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.booking-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.booking-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.main-booking-cta {
    text-align: center;
    margin-top: 2rem;
}

.booking-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Attractions */
@media (max-width: 768px) {
    .attractions-grid {
        grid-template-columns: 1fr;
    }
    
    .attraction-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .districts-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
}

/* Neighborhoods Page Styles */
.neighborhoods-intro {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.neighborhoods-intro .intro-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.neighborhoods-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.central-neighborhoods,
.iconic-neighborhoods {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.central-neighborhoods h2,
.iconic-neighborhoods h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.neighborhood-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.neighborhood-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.neighborhood-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.neighborhood-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    position: relative;
}

.neighborhood-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.neighborhood-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.neighborhood-content {
    padding: 2rem;
}

.neighborhood-card.featured .neighborhood-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.neighborhood-overview {
    margin-bottom: 1.5rem;
}

.neighborhood-overview p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #666;
}

.transport-info,
.highlights,
.transport-tips {
    margin-bottom: 1.5rem;
}

.transport-info h4,
.highlights h4,
.transport-tips h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.transport-info ul,
.highlights ul,
.transport-tips ul {
    list-style: none;
}

.transport-info li,
.highlights li,
.transport-tips li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}

.transport-info li:before {
    content: "🚇";
    position: absolute;
    left: 0;
}

.highlights li:before {
    content: "🏛️";
    position: absolute;
    left: 0;
}

.transport-tips li:before {
    content: "💡";
    position: absolute;
    left: 0;
}

.neighborhood-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    margin-top: auto;
}

.neighborhood-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.neighborhood-actions {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.neighborhood-link {
    display: inline-block;
    background: #34495e;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 3px 8px rgba(52, 73, 94, 0.2);
}

.neighborhood-link:hover {
    background: #2c3e50;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 73, 94, 0.3);
}

/* Neighborhood Comparison Table */
.neighborhood-comparison {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.neighborhood-comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 0 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.neighborhood-comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 700px;
}

.neighborhood-comparison-table th,
.neighborhood-comparison-table td {
    padding: 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.neighborhood-comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.neighborhood-comparison-table tr:hover {
    background: rgba(52, 152, 219, 0.05);
}

.neighborhood-comparison-table td:first-child {
    font-weight: 600;
    color: var(--primary-color);
}

/* Transport Guide */
.transport-guide {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.transport-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.transport-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.transport-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.transport-card:hover {
    transform: translateY(-5px);
}

.transport-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.transport-card p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Neighborhood Finder */
.neighborhood-finder {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.neighborhood-finder h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.finder-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

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

.finder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.finder-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
}

.finder-card:hover {
    transform: translateY(-5px);
}

.finder-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.finder-card p {
    color: #666;
    margin-bottom: 1rem;
    font-weight: 500;
}

.finder-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.finder-card li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 1.25rem;
    position: relative;
}

.finder-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.finder-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.finder-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.main-finder-cta {
    text-align: center;
    margin-top: 2rem;
}

.finder-note {
    margin-top: 1rem;
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}

/* Responsive Neighborhoods */
@media (max-width: 768px) {
    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }
    
    .neighborhood-card.featured {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .comparison-table-wrapper {
        margin: 0 0.5rem;
    }
    
    .neighborhood-comparison-table th,
    .neighborhood-comparison-table td {
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .transport-cards {
        grid-template-columns: 1fr;
    }
    
    .finder-grid {
        grid-template-columns: 1fr;
    }
}

/* Budget Landing Page Styles */
.budget-intro {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.budget-intro .intro-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.budget-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.savings-highlight {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-left: 4px solid var(--secondary-color);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.savings-highlight h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Budget Options Grid */
.budget-options {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.budget-options h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

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

.budget-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.budget-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.budget-card.winner {
    border: 3px solid #28a745;
    transform: scale(1.05);
}

.budget-card.winner:hover {
    transform: scale(1.05) translateY(-8px);
}

.budget-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.budget-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.budget-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.budget-details p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.pros-cons {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pros-cons li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.pros-cons .pro {
    color: #28a745;
}

.pros-cons .con {
    color: #ffc107;
}

.travel-time {
    background: var(--light-bg);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.budget-cta {
    display: block;
    background: var(--secondary-color);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.budget-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

/* Airport Budget Cards */
.airport-specifics {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.airport-specifics h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.airport-budget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.airport-budget-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.airport-budget-card:hover {
    transform: translateY(-5px);
}

.airport-budget-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.budget-breakdown {
    margin-bottom: 2rem;
}

.budget-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.budget-option:last-child {
    border-bottom: none;
}

.option-name {
    font-weight: 500;
    color: #333;
}

.option-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.budget-tips h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.budget-tips ul {
    list-style: none;
    margin-bottom: 2rem;
}

.budget-tips li {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: 1.5rem;
    position: relative;
}

.budget-tips li:before {
    content: "💰";
    position: absolute;
    left: 0;
}

.airport-budget-cta {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.airport-budget-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Money Saving Guide */
.money-saving-guide {
    padding: 4rem 0;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    z-index: 2;
}

.money-saving-guide h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

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

.tip-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tip-section:hover {
    transform: translateY(-5px);
}

.tip-section h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.tip-section li {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.tip-section li:before {
    content: "💡";
    position: absolute;
    left: 0;
}

/* Budget Comparison */
.budget-comparison {
    padding: 4rem 0;
    background: var(--light-bg);
    position: relative;
    z-index: 2;
}

.budget-comparison h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-size: 2.5rem;
}

.comparison-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

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

.cost-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.cost-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cost-card:hover {
    transform: translateY(-5px);
}

.cost-card h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.cost-options {
    margin-bottom: 1.5rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.cost-item:last-child {
    border-bottom: none;
}

.best-choice {
    background: #e8f5e8;
    color: #28a745;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

/* Budget Booking Section */
.budget-booking {
    padding: 4rem 0;
    background: var(--primary-color);
    color: white;
    position: relative;
    z-index: 2;
}

.budget-booking h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.budget-booking .booking-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.budget-booking .booking-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.booking-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.budget-booking-btn {
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.budget-booking-btn.primary {
    background: var(--secondary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.budget-booking-btn.primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(52, 152, 219, 0.4);
}

.budget-booking-btn.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.budget-booking-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.booking-guarantee {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.booking-guarantee h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.booking-guarantee p {
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Budget Page */
@media (max-width: 768px) {
    .budget-grid {
        grid-template-columns: 1fr;
    }
    
    .airport-budget-grid {
        grid-template-columns: 1fr;
    }
    
    .savings-tips {
        grid-template-columns: 1fr;
    }
    
    .cost-breakdown {
        grid-template-columns: 1fr;
    }
    
    .booking-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .budget-booking-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Article Page Styles */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.article-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.article-date,
.article-read-time,
.article-category {
    background: var(--light-bg);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-color);
}

.article-category {
    background: var(--secondary-color);
    color: white;
}

.article-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.article-intro p {
    margin-bottom: 1.5rem;
}

.mistake-section {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.mistake-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 24px;
}

.mistake-content {
    display: grid;
    gap: 1.5rem;
}

.what-not-to-do,
.what-to-do-instead {
    padding: 1.5rem;
    border-radius: 8px;
}

.what-not-to-do {
    background: #fff5f5;
    border-left: 3px solid #e53e3e;
}

.what-to-do-instead {
    background: #f0fff4;
    border-left: 3px solid #38a169;
}

.what-not-to-do h4,
.what-to-do-instead h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.what-not-to-do h4 {
    color: #e53e3e;
}

.what-to-do-instead h4 {
    color: #38a169;
}

.bonus-tips {
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    color: white;
}

.bonus-tips h2 {
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.bonus-tip {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.bonus-tip h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bonus-tip p {
    line-height: 1.6;
}

.article-conclusion {
    margin: 3rem 0;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-conclusion h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.article-conclusion p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cta-section {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-align: center;
}

.cta-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.article-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.related-articles {
    margin: 4rem 0;
}

.related-articles h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
}

.related-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.related-card p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.related-link {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background 0.3s ease;
}

.related-link:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .blog-article {
        padding: 1rem;
    }

    .mistake-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .mistake-section h2 {
        font-size: 20px;
    }

    .article-intro {
        font-size: 16px;
    }

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

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

    .article-ctas {
        flex-direction: column;
        align-items: center;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .what-not-to-do,
    .what-to-do-instead {
        padding: 1rem;
    }
}