/* ========================================
   Ashe County Airport Shuttle — Shared Styles
   ======================================== */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

/* ========== Navigation ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.6rem;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
    color: #000;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.8rem;
    align-items: center;
}

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

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

.nav-links a.active {
    color: #000;
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
}

.nav-cta {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: #000;
    color: #fff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #000;
    transition: all 0.3s ease;
    letter-spacing: 0.03em;
}

.nav-cta:hover {
    background: transparent;
    color: #000 !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #000;
    padding: 0.2rem;
    line-height: 1;
}

/* ========== Section Basics ========== */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: #0a0a0a;
    color: #fff;
}

.section-light {
    background: #f8f9fa;
}

.section-white {
    background: #fff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-weight: 300;
}

.section-dark .section-subtitle {
    color: #aaa;
}

/* ========== Buttons ========== */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 3px solid #000;
    transition: all 0.4s ease;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #333;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 3px solid #000;
    transition: all 0.4s ease;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.btn-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 3px solid #fff;
    transition: all 0.4s ease;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
}

/* ========== Feature Cards ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #000;
    transition: height 0.4s ease;
}

.feature-card:hover::before {
    height: 100%;
}

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

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #000;
}

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

/* ========== Fleet Grid ========== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fleet-item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.fleet-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.fleet-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    filter: grayscale(20%);
}

.fleet-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.fleet-item figcaption {
    padding: 1.2rem;
    font-weight: 600;
    color: #000;
    font-size: 0.95rem;
}

.fleet-item .fleet-desc {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.9rem;
    color: #666;
}

/* ========== Value List ========== */
.value-list {
    max-width: 800px;
    margin: 2rem auto;
    list-style: none;
    display: grid;
    gap: 1.2rem;
}

.value-list li {
    background: #f8f9fa;
    padding: 1.3rem 1.5rem;
    border-left: 4px solid #000;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.value-list li::before {
    content: "✓";
    color: #000;
    font-weight: bold;
    margin-right: 1rem;
}

.value-list li:hover {
    transform: translateX(5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.section-dark .value-list li {
    background: rgba(255,255,255,0.05);
    border-left-color: #fff;
    color: #ddd;
}

.section-dark .value-list li::before {
    color: #fff;
}

.section-dark .value-list li:hover {
    background: rgba(255,255,255,0.1);
    box-shadow: none;
}

/* ========== County / City Grid ========== */
.county-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.county-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 2rem;
    transition: all 0.3s ease;
}

.county-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.county-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    border-bottom: 2px solid #000;
    padding-bottom: 0.8rem;
}

.city-list {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.city-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.city-list li:last-child {
    border-bottom: none;
}

.city-list li strong {
    color: #000;
}

/* ========== Airports Grid ========== */
.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.airport-card {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.airport-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.airport-card .airport-code {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: #000;
    display: block;
    margin-bottom: 0.3rem;
}

.airport-card .airport-name {
    font-size: 0.95rem;
    color: #666;
}

/* ========== Explore / Attraction Cards ========== */
.attraction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.attraction-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.attraction-card .card-body {
    padding: 2rem;
}

.attraction-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #000;
}

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

.attraction-card .card-tag {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

/* ========== Cross-sell Service Blocks ========== */
.crosssell-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.crosssell-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.crosssell-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.crosssell-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    display: block;
}

.crosssell-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #fff;
}

.crosssell-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.crosssell-card a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #fff;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.crosssell-card a:hover {
    opacity: 0.7;
}

/* ========== Reviews ========== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #fff;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.review-stars {
    color: #f5a623;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.review-card blockquote {
    font-style: italic;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.review-author {
    font-weight: 600;
    color: #000;
    font-size: 0.95rem;
}

.review-location {
    color: #888;
    font-size: 0.85rem;
}

/* ========== FAQ ========== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #e8e8e8;
}

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #000;
    transition: color 0.3s;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.open .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

/* ========== Stats Bar ========== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    padding: 3rem 0;
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    display: block;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.section-dark .stat-item .stat-number {
    color: #fff;
}

.section-dark .stat-item .stat-label {
    color: #aaa;
}

/* ========== How It Works ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.step-card {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step-card::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #000;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #000;
}

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

/* ========== Safety Badge ========== */
.safety-banner {
    background: #000;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
    border: 3px solid #333;
}

.safety-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.safety-banner p {
    max-width: 800px;
    margin: 0 auto;
    color: #ccc;
    line-height: 1.8;
    font-size: 1rem;
}

.safety-banner .badge-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.safety-banner .badge {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ========== CTA Strip ========== */
.cta-strip {
    background: #000;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-strip h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 0.8rem;
}

.cta-strip p {
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.cta-strip .cta-phone {
    display: block;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.cta-strip .cta-phone:hover {
    opacity: 0.8;
}

/* ========== Footer ========== */
footer {
    background: #f8f9fa;
    padding: 4rem 0 2rem;
    border-top: 1px solid #e8e8e8;
}

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

.footer-col h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
    font-size: 1rem;
}

.footer-col a {
    display: block;
    color: #666;
    text-decoration: none;
    padding: 0.3rem 0;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #000;
}

.footer-col p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #000;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s;
    padding: 0;
}

.footer-social a:hover {
    background: #333;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 20px 0;
    margin-top: 2rem;
    border-top: 1px solid #e8e8e8;
    color: #888;
    font-size: 0.85rem;
}

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

/* ========== City SEO Sections ========== */
.city-section {
    padding: 2rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.city-section:last-child {
    border-bottom: none;
}

.city-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #000;
}

.city-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 900px;
}

/* ========== Licensing Section ========== */
.license-section {
    background: #fef3cd;
    border: 2px solid #f0c36d;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
}

.license-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #000;
}

.license-section p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.license-section .warning-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1rem 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        gap: 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links a {
        padding: 0.8rem 0;
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

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

    .section {
        padding: 3rem 0;
    }

    .feature-grid,
    .fleet-grid,
    .county-grid,
    .attraction-grid,
    .reviews-grid,
    .crosssell-grid {
        grid-template-columns: 1fr;
    }

    .airports-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .btn-primary,
    .btn-outline,
    .btn-white {
        display: block;
        text-align: center;
        margin: 0.5rem auto;
    }

    .safety-banner .badge-row {
        flex-direction: column;
        align-items: center;
    }

    .cta-strip .cta-phone {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 2.5rem 0;
    }

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

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

    .stats-bar {
        grid-template-columns: 1fr;
    }
}

/* ========== Accessibility ========== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus {
    outline: 2px solid #000;
    outline-offset: 2px;
}

/* ========== Book/Form page ========== */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row.single {
    grid-template-columns: 1fr;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #000;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e0e0e0;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #000;
    outline: none;
    background: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 1.5rem;
    }
}

/* ===== Associations Badge Bar ===== */
.associations-bar {
    background: #f8f9fa;
    border-top: 1px solid #e8e8e8;
    padding: 2rem 0;
    text-align: center;
}

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

.associations-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.associations-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.badge-item:hover {
    opacity: 1;
}

.badge-item span {
    font-size: 0.65rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-text-logo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: #fff;
}

.nla { background: linear-gradient(135deg, #1a1a2e, #16213e); }
.tta { background: linear-gradient(135deg, #0d47a1, #1565c0); }
