/* Landing Pages Stylesheet - Black & White Minimal Design */
/* Extends main styles.css for SEO landing page templates */
/* Design: Black/white dominant with minimal orange accents */

:root {
    --landing-primary: #FF6B35;
    --landing-dark: #1a1a1a;
    --landing-gray-50: #f8f9fa;
    --landing-gray-100: #f0f0f0;
    --landing-gray-600: #666;
    --landing-gray-900: #333;
    --landing-white: #ffffff;
    --landing-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Mobile Menu - Always visible on mobile, hidden on desktop */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: 0.3s;
    display: block;
}

.mobile-menu-overlay {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-overlay a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Responsive Navigation - Hide hamburger on desktop, show on mobile */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none !important;
    }
    nav > div > div:nth-child(2) {
        display: flex !important;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex !important;
    }
    nav > div > div:nth-child(2) {
        display: none !important;
    }
}

/* Hero Section - Background image with dark overlay */
.landing-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.landing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 0;
}

.landing-hero .container {
    position: relative;
    z-index: 1;
}

.landing-hero h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.landing-hero .subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb - Orange links only */
.breadcrumb {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: #999;
}

.breadcrumb a {
    color: #FF6B35;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Features Grid - White cards, black icons */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.feature-card {
    background: white;
    padding: 36px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
    border-color: #FF6B35;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    color: #FF6B35;
    font-size: 2rem;
}

.feature-icon svg {
    width: 60px;
    height: 60px;
    fill: currentColor;
}

.feature-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.feature-description {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Routes Table - Minimal black/white */
.routes-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 32px 0;
}

.routes-table table {
    width: 100%;
    border-collapse: collapse;
}

.routes-table th {
    background: #f8f9fa;
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #e0e0e0;
}

.routes-table td {
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.routes-table tr:last-child td {
    border-bottom: none;
}

.routes-table tr:hover {
    background: #fafafa;
}

.price-badge {
    display: inline-block;
    background: #E8F5E9;
    color: #2E7D32;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Landmarks Grid - White cards, minimal hover */
.landmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 32px 0;
}

.landmark-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    transition: all 0.3s ease;
}

.landmark-card:hover {
    border-color: #FF6B35;
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.15);
}

.landmark-card h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.landmark-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Service Areas Map */
.service-areas-map {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.area-tag {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    color: #333;
    text-decoration: none;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    font-weight: 500;
}

.area-tag:hover {
    border-color: #FF6B35;
    color: #FF6B35;
    transform: scale(1.05);
}

/* FAQ Section - Clean white cards */
.faq-section {
    max-width: 900px;
    margin: 60px auto;
}

.faq-item {
    background: white;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 2px solid #f0f0f0;
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.faq-answer {
    color: #666;
    line-height: 1.7;
}

/* CTA Banner - Black background, orange button */
.cta-banner {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px;
    text-align: center;
    border-radius: 12px;
    margin: 60px 0;
}

.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 32px;
    color: #e0e0e0;
}

.cta-button {
    display: inline-block;
    background: #FF6B35;
    color: white;
    padding: 14px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #e55a25;
    transform: translateY(-2px);
}

/* Pricing Disclaimer */
.pricing-disclaimer {
    background: #FFF3E0;
    border-left: 4px solid #FF6B35;
    padding: 16px;
    margin: 20px 0;
    border-radius: 8px;
    font-size: 0.95rem;
}

.pricing-disclaimer a {
    color: #FF6B35;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-hero h1 {
        font-size: 2rem;
    }
    
    .landing-hero {
        background-attachment: scroll;
    }
    
    .routes-table {
        overflow-x: auto;
    }
    
    .landmarks-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
