/* ==========================================================================
   Эвакуатор04 — Authentic iOS / Apple Human Interface Design System
   ========================================================================== */

:root {
    --apple-bg: #090a0e;
    --apple-card-bg: rgba(24, 26, 36, 0.65);
    --apple-card-hover: rgba(34, 37, 50, 0.8);
    --apple-card-border: rgba(255, 255, 255, 0.16);
    
    --apple-blue: #007aff;
    --apple-blue-light: #0a84ff;
    --apple-blue-gradient: linear-gradient(135deg, #0a84ff 0%, #0066cc 100%);
    
    --apple-green: #34c759;
    --apple-green-gradient: linear-gradient(135deg, #30d158 0%, #248a3d 100%);
    
    --apple-orange: #ff9500;
    --apple-amber-gradient: linear-gradient(135deg, #ff9f0a 0%, #d97706 100%);
    
    --text-primary: #ffffff;
    --text-secondary: rgba(235, 235, 245, 0.65);
    --text-tertiary: rgba(235, 235, 245, 0.4);
    
    --glass-blur: blur(30px) saturate(180%);
    --radius-card: 28px;
    --radius-input: 16px;
    --radius-pill: 30px;
    
    --apple-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    --font-apple: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Inter', system-ui, sans-serif;
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-apple);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--apple-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
    background-image: 
        radial-gradient(circle at 10% 15%, rgba(10, 132, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 90% 60%, rgba(48, 209, 88, 0.08) 0%, transparent 45%);
    background-attachment: fixed;
    padding-bottom: 80px;
}

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

.text-accent {
    background: linear-gradient(135deg, #0a84ff 0%, #64d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* iOS Glass Card Utility */
.glass-card {
    background: var(--apple-card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--apple-card-border);
    border-radius: var(--radius-card);
    box-shadow: var(--apple-shadow);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

/* Section Common Styling */
.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 45px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.section-title span {
    background: linear-gradient(135deg, #0a84ff 0%, #64d2ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(9, 10, 14, 0.7);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 14px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.logo-img {
    height: 38px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(10, 132, 255, 0.5));
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone-number {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.phone-number i {
    color: var(--apple-blue-light);
    font-size: 1.3rem;
}

.phone-number:hover {
    background: var(--apple-blue-gradient);
    border-color: var(--apple-blue-light);
    box-shadow: 0 4px 20px rgba(10, 132, 255, 0.5);
    transform: scale(1.02);
}

.nav-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--apple-green-gradient);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.45rem;
    box-shadow: 0 4px 18px rgba(48, 209, 88, 0.4);
    transition: all 0.3s ease;
}

.nav-wa-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 22px rgba(48, 209, 88, 0.6);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 135px 0 85px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.65;
    z-index: 1;
    pointer-events: none;
}

.ymap-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(9, 10, 14, 0.35) 0%, rgba(9, 10, 14, 0.88) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-bg-glow {
    position: absolute;
    top: 15%;
    left: 10%;
    width: 450px;
    height: 450px;
    background: rgba(10, 132, 255, 0.15);
    filter: blur(140px);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 45px;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(255, 159, 10, 0.15);
    border: 1px solid rgba(255, 159, 10, 0.4);
    color: var(--apple-orange);
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.02em;
}

.hero-text h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 520px;
}

.features-mini {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.feature-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
}

.feature-mini i {
    color: var(--apple-blue-light);
    font-size: 1.25rem;
}

/* iOS Calculator Card & Form Styling */
.calculator-card {
    padding: 36px;
    background: var(--apple-card-bg);
}

.calculator-card h2 {
    font-size: 1.65rem;
    font-weight: 800;
    margin-bottom: 22px;
    text-align: center;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.form-group {
    margin-bottom: 20px;
}

/* iOS Segmented Control */
.radio-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    background: rgba(118, 118, 128, 0.24);
    padding: 4px;
    border-radius: 14px;
    border: none;
    backdrop-filter: blur(15px);
}

.radio-label {
    cursor: pointer;
}

.radio-label input {
    display: none;
}

.radio-custom {
    display: block;
    text-align: center;
    padding: 9px 12px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 11px;
    color: var(--text-secondary);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.radio-label input:checked + .radio-custom {
    background: rgba(255, 255, 255, 0.28);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 7px;
    color: #ffffff;
}

.label-optional {
    font-weight: 400;
    color: var(--text-tertiary);
    font-size: 0.8rem;
}

/* Map Picker & Form Rows */
.form-row-addresses {
    display: flex;
    flex-direction: column !important;
    gap: 16px;
    width: 100% !important;
}

.form-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.form-label-row label {
    margin-bottom: 0 !important;
}

.map-picker-btn {
    background: var(--apple-blue) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--radius-pill) !important;
    padding: 5px 14px !important;
    font-size: 0.8rem !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.35) !important;
    transition: all 0.25s ease !important;
}

.map-picker-btn:hover {
    background: #0066cc !important;
    transform: scale(1.03) !important;
}

/* Inputs & Wrappers */
.input-wrapper, .select-wrapper, .textarea-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon, .select-icon, .textarea-icon {
    position: absolute;
    left: 16px;
    color: var(--apple-blue-light);
    font-size: 1.25rem;
    pointer-events: none;
    z-index: 2;
}

.select-arrow {
    position: absolute;
    right: 16px;
    color: var(--text-secondary);
    font-size: 1.2rem;
    pointer-events: none;
}

input[type="text"], input[type="number"], input[type="tel"], select, textarea {
    width: 100%;
    padding: 13px 16px 13px 46px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-input);
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    outline: none;
    transition: all 0.25s ease;
}

select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

textarea {
    padding-left: 46px;
    resize: vertical;
}

input:focus, select:focus, textarea:focus {
    border-color: var(--apple-blue-light);
    box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.3);
    background: rgba(255, 255, 255, 0.12);
}

/* Price Display */
.price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 159, 10, 0.1);
    border: 1px solid rgba(255, 159, 10, 0.3);
    padding: 15px 20px;
    border-radius: var(--radius-input);
    margin: 24px 0;
}

.price-display span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.price-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--apple-orange);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-input);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-block {
    width: 100%;
    margin-bottom: 12px;
}

.btn-primary {
    background: var(--apple-blue-gradient);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(10, 132, 255, 0.4);
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(10, 132, 255, 0.6);
}

.btn-whatsapp {
    background: var(--apple-green-gradient);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(48, 209, 88, 0.4);
}

.btn-whatsapp:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(48, 209, 88, 0.6);
}

/* Services Grid Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 26px;
}

.service-card {
    padding: 32px 26px;
    background: var(--apple-card-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--apple-card-border);
    border-radius: var(--radius-card);
    transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card:hover {
    transform: translateY(-6px);
    background: var(--apple-card-hover);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.7);
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(10, 132, 255, 0.15);
    border: 1px solid rgba(10, 132, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--apple-blue-light);
    margin-bottom: 22px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* SEO Content Section */
.seo-section {
    padding: 70px 0;
}

.seo-content {
    padding: 44px;
    line-height: 1.75;
}

.seo-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.seo-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 26px 0 12px;
    color: var(--apple-blue-light);
}

.seo-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 1rem;
}

.seo-content ul {
    list-style: none;
    margin-bottom: 22px;
}

.seo-content ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.seo-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--apple-green);
    font-weight: bold;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.25);
}

.gallery-title {
    font-size: 2.4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}

.gallery-wrapper {
    position: relative;
    overflow: hidden;
    padding: 15px 0;
}

.gallery-track {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 18px;
    -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar {
    height: 6px;
}

.gallery-track::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
}

.gallery-img {
    flex: 0 0 330px;
    height: 230px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--apple-card-border);
    scroll-snap-align: start;
    transition: all 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.03);
    border-color: var(--apple-blue-light);
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(24, 26, 36, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--apple-card-border);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.gallery-btn:hover {
    background: var(--apple-blue-light);
}

.prev-btn { left: 12px; }
.next-btn { right: 12px; }

/* Floating iOS Mobile Action Dock */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 420px;
    background: rgba(28, 28, 38, 0.82);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 35px;
    padding: 8px 10px;
    z-index: 9999;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.75);
}

.mobile-sticky-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 8px;
}

.mobile-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    color: #ffffff;
}

.mobile-call-btn {
    background: var(--apple-blue-gradient);
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.4);
}

.mobile-wa-btn {
    background: var(--apple-green-gradient);
    box-shadow: 0 4px 15px rgba(48, 209, 88, 0.4);
}

/* Footer */
.footer {
    background: #050608;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 65px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-info p {
    color: var(--text-tertiary);
    max-width: 380px;
    margin-top: 12px;
}

.footer-contacts h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-phone {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--apple-blue-light);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.footer-contacts p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

.seo-tags {
    margin-top: 12px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.25);
    line-height: 1.5;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 6, 8, 0.82);
    backdrop-filter: blur(20px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 480px;
    width: 100%;
    padding: 40px;
    text-align: center;
    border: 1px solid var(--apple-card-border);
}

.close-btn, .close-map-btn {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.8rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.modal-icon {
    font-size: 4.2rem;
    color: var(--apple-green);
    margin-bottom: 16px;
}

/* Map Picker Modal */
.map-modal-content {
    max-width: 800px;
    width: 95%;
    text-align: left;
}

.map-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.address-preview {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .mobile-sticky-bar {
        display: block; /* Show floating iOS dock on phones */
    }

    .hero {
        padding: 95px 0 55px;
        min-height: auto;
    }

    .hero-bg-video {
        height: 380px !important;
        bottom: auto !important;
        top: 0 !important;
        object-fit: cover !important;
        object-position: center 80% !important;
        opacity: 0.65 !important;
        -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 100%);
    }

    .ymap-overlay {
        height: 380px !important;
        bottom: auto !important;
        top: 0 !important;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

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

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .features-mini {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-bg-video {
        height: 340px !important;
        object-position: center 85% !important;
    }

    .ymap-overlay {
        height: 340px !important;
    }

    .hero-text h1 {
        font-size: 1.85rem;
    }

    .calculator-card {
        padding: 24px 18px;
    }

    .phone-text {
        display: none;
    }

    .phone-number {
        padding: 9px;
        border-radius: 50%;
    }

    .section {
        padding: 55px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }
}

/* ==========================================================================
   SEO Content Expansion — Route Details, Pricing, FAQ, Cross-Links
   ========================================================================== */

/* Route Info Blocks */
.seo-content h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.seo-content h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 28px 0 12px 0;
}

.seo-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 0.97rem;
}

.seo-content ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.seo-content ul li {
    color: var(--text-secondary);
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.seo-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: var(--apple-blue);
    border-radius: 50%;
}

/* Pricing Table */
.seo-price-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px 0;
    border-radius: 16px;
    overflow: hidden;
}

.seo-price-table thead th {
    background: rgba(10, 132, 255, 0.15);
    color: var(--apple-blue-light);
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-price-table tbody td {
    padding: 12px 16px;
    color: var(--text-secondary);
    font-size: 0.93rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.seo-price-table tbody tr:last-child td {
    border-bottom: none;
}

.seo-price-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.seo-price-table .price-cell {
    color: var(--text-primary);
    font-weight: 600;
    white-space: nowrap;
}

/* FAQ Accordion */
.seo-faq {
    margin: 20px 0 24px 0;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 16px 40px 16px 0;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    position: relative;
    line-height: 1.4;
    transition: color 0.2s;
    font-family: var(--font-apple);
}

.faq-question:hover {
    color: var(--apple-blue-light);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--text-tertiary);
    transition: transform 0.3s, color 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
    color: var(--apple-blue-light);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 16px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.93rem;
}

/* Cross-Links Section */
.seo-crosslinks {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-crosslinks h3 {
    margin-top: 0;
}

.crosslinks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.crosslink-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s;
}

.crosslink-item:hover {
    background: rgba(10, 132, 255, 0.1);
    border-color: rgba(10, 132, 255, 0.3);
    color: var(--apple-blue-light);
    transform: translateY(-1px);
}

.crosslink-item i {
    color: var(--apple-blue-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Route info highlight box */
.route-highlight {
    background: rgba(10, 132, 255, 0.08);
    border: 1px solid rgba(10, 132, 255, 0.2);
    border-radius: 16px;
    padding: 20px 24px;
    margin: 16px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.route-stat {
    flex: 1;
    min-width: 120px;
    text-align: center;
}

.route-stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.route-stat-label {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .crosslinks-grid {
        grid-template-columns: 1fr;
    }
    
    .route-highlight {
        gap: 12px;
        padding: 16px;
    }
    
    .route-stat-value {
        font-size: 1.3rem;
    }
    
    .seo-content h2 {
        font-size: 1.3rem;
    }
}
