/* ========================================
   Ashe County Livery — Service Pages
   Shared styles for /weddings/, /wine-tours/,
   /airport-shuttles/, /night-on-the-town/,
   /corporate-transportation/
   ======================================== */

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

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: #111;
    background: #fff;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* ========== Navigation ========== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 0;
    transition: box-shadow 0.3s;
}

.site-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: #fff;
}

.nav-brand img {
    height: 44px;
    width: auto;
}

.nav-brand span {
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

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

.nav-links a {
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.7rem;
    border-radius: 4px;
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-cta {
    background: #fff !important;
    color: #000 !important;
    font-weight: 600 !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 6px !important;
}

.nav-cta:hover {
    background: #f0f0f0 !important;
    transform: scale(1.03);
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s;
}

/* ========== Hero ========== */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    background: #fff;
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.hero-btn:hover {
    background: #000;
    color: #fff;
    transform: scale(1.05);
}

.hero-phone {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
}

.hero-phone a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========== Section Common ========== */
.section {
    padding: 80px 20px;
}

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

.section-alt {
    background: #f8f8f8;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

.section-header .label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 0.5rem;
}

.section-dark .section-header .label {
    color: rgba(255,255,255,0.5);
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
}

.section-header p {
    font-weight: 300;
    font-size: 1.05rem;
    max-width: 700px;
    margin: 1rem auto 0;
    opacity: 0.8;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    transition: all 0.3s;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.section-dark .service-card {
    background: #1a1a1a;
    border-color: #333;
}

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.service-card p {
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* ========== Feature List ========== */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-weight: 400;
    font-size: 1rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    color: #000;
}

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

/* ========== Two Column Layout ========== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.two-col-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.two-col-text p {
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.two-col-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.two-col-img img {
    display: block;
    width: 100%;
    height: 350px;
    object-fit: cover;
}

/* ========== Venue / Location Lists ========== */
.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.venue-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.venue-item:hover {
    border-color: #000;
    transform: translateY(-2px);
}

.section-dark .venue-item {
    background: #1a1a1a;
    border-color: #333;
}

.section-dark .venue-item:hover {
    border-color: #fff;
}

.venue-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.venue-item p {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.7;
}

/* ========== CTA Banner ========== */
.cta-banner {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}

.cta-banner h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.cta-banner p {
    font-weight: 300;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.cta-banner .hero-btn {
    background: #fff;
    color: #000;
}

.cta-banner .hero-btn:hover {
    background: #ddd;
}

.cta-phone {
    display: block;
    margin-top: 1.2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.cta-phone a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.cta-phone a:hover { opacity: 0.7; }

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

.testimonial {
    background: #f8f8f8;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid #000;
}

.section-dark .testimonial {
    background: #1a1a1a;
    border-left-color: #fff;
}

.testimonial .stars {
    color: #f5c518;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.testimonial blockquote {
    font-weight: 300;
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.9rem;
}

/* ========== Footer ========== */
.site-footer {
    background: #111;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-col p,
.footer-col a {
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    transition: color 0.3s;
}

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

.footer-col ul {
    list-style: none;
    padding: 0;
}

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

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

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    max-width: 1100px;
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.footer-bottom a:hover { color: #fff; }

.footer-partners {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-partners img {
    height: 45px;
    width: auto;
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
}

.footer-partners img:hover { opacity: 1; }

/* ========== Responsive ========== */
@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .two-col.reverse {
        direction: ltr;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
        padding: 0.8rem 1rem;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .nav-toggle { display: block; }
    .page-hero { min-height: 50vh; }
    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .service-grid { grid-template-columns: 1fr; }
    .venue-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .section { padding: 50px 15px; }
}
