/* ========================================
   High Country Wedding Transportation — Shared Styles
   Palette: Black, White, Warm Gray, Gold accents
   ======================================== */

* {
    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;
}

a {
    color: inherit;
    text-decoration: none;
}

.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: 0.95rem;
    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 {
    background: #000 !important;
    color: #fff !important;
    padding: 0.65rem 1.3rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: #333 !important;
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ========== Hero (Home) ========== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.65)),
                url('./assets/weddings-hero-6.webp') center/cover no-repeat;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-logo {
    width: 140px;
    margin-bottom: 1.5rem;
}

/* ========== Page Hero (subpages) ========== */
.page-hero {
    background: #000;
    color: #fff;
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(30,30,30,0.9) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.breadcrumb {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

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

.breadcrumb a:hover {
    opacity: 1;
}

/* ========== Buttons ========== */
.btn-primary {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    color: #fff;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 1rem 2.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #fff;
    cursor: pointer;
}

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

.btn-white {
    display: inline-block;
    background: #fff;
    color: #000;
    padding: 1rem 2.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.section-alt {
    background: #f8f9fa;
}

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

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

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

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* ========== Stats Bar ========== */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.3rem;
}

/* ========== Card Grid ========== */
.card-grid {
    display: grid;
    gap: 1.5rem;
}

.card-grid-2 {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
}

.card-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.card-grid-4 {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* ========== Venue Cards ========== */
.venue-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.venue-card:hover {
    border-color: #000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.venue-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #000;
}

.venue-card .venue-location {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.6rem;
}

.venue-card .venue-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #555;
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-right: 0.3rem;
    margin-bottom: 0.3rem;
}

.venue-card .venue-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
}

.venue-card .venue-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* ========== Planner Cards ========== */
.planner-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 1.2rem 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.planner-card:hover {
    border-color: #000;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.planner-icon {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.planner-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
}

/* ========== Service Cards ========== */
.service-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: #000;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

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

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

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

.service-card:hover p {
    color: rgba(255,255,255,0.8);
}

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

.fleet-item {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.fleet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.fleet-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.fleet-item:hover img {
    transform: scale(1.03);
}

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

/* ========== Value Proposition ========== */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

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

.value-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #000;
}

.value-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ========== Steps ========== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #000;
    color: #fff;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    opacity: 0.4;
}

.step h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.step p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ========== Testimonials ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

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

.testimonial .stars {
    color: #000;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.testimonial p {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #444;
}

.testimonial-author {
    margin-top: 1rem;
    font-weight: 700;
    font-style: normal;
    text-align: right;
    font-size: 0.9rem;
    color: #000;
}

/* ========== FAQ ========== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
}

.faq-item {
    background: #f8f9fa;
    border-left: 4px solid #000;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #000;
    color: #fff;
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: inherit;
}

.faq-item p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ========== Region Sections ========== */
.region-header {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #000;
    margin: 3rem 0 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #000;
}

.region-header:first-of-type {
    margin-top: 0;
}

/* ========== Tabs ========== */
.tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.9rem 2.5rem;
    background: #f0f0f0;
    border: 2px solid #e0e0e0;
    color: #666;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:first-child {
    border-radius: 4px 0 0 4px;
}

.tab-btn:last-child {
    border-radius: 0 4px 4px 0;
}

.tab-btn.active {
    background: #000;
    border-color: #000;
    color: #fff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ========== Forms ========== */
.form-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-group {
    margin-bottom: 1.2rem;
}

label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: #333;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="time"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fff;
    border-radius: 0;
    -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #000;
}

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

/* ========== Two-Column Form Layout ========== */
.form-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 3rem;
    align-items: start;
}

.form-sidebar h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.sidebar-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sidebar-step-num {
    width: 40px;
    height: 40px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.sidebar-step h4 {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.sidebar-step p {
    color: #555;
    font-size: 0.9rem;
}

/* ========== Service Areas ========== */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.areas-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #000;
}

.areas-column ul {
    list-style: none;
}

.areas-column li {
    padding: 0.4rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
    color: #555;
}

/* ========== Contact Info Grid ========== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
}

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

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

.contact-card a {
    color: #000;
    font-weight: 600;
    text-decoration: underline;
}

/* ========== Map Section ========== */
.map-container {
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
}

.map-container img {
    max-width: 100%;
    height: auto;
}

/* ========== Footer ========== */
footer {
    background: #000;
    color: #fff;
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-col h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p,
.footer-col a {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.8;
    display: block;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 0.8rem;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1000;
        gap: 2rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        font-size: 1.3rem;
    }

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .page-hero {
        padding: 7rem 0 3rem;
    }

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

    .card-grid-2,
    .card-grid-3,
    .card-grid-4 {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

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

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

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

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

    .tab-btn {
        width: 100%;
        max-width: 300px;
        border-radius: 4px !important;
    }

    .section {
        padding: 3.5rem 0;
    }
}

/* ========== Smooth Scroll + Fade-in ========== */
html {
    scroll-behavior: smooth;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ========== Search/Filter ========== */
.search-bar {
    max-width: 500px;
    margin: 0 auto 2rem;
    position: relative;
}

.search-bar input {
    width: 100%;
    padding: 0.9rem 1.2rem 0.9rem 2.8rem;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.search-bar input:focus {
    border-color: #000;
}

.search-bar::before {
    content: '🔍';
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    opacity: 0.5;
}

.venue-count {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2rem;
}

/* ===== Associations & Memberships Badge Bar ===== */
.associations-bar {
    background: #fafafa;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 2.5rem 0;
}

.associations-bar .container {
    text-align: center;
}

.associations-bar h3 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.badge-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.badge-item:hover {
    border-color: #000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transform: translateY(-1px);
}

.badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.badge-icon.theknot { background: #00B2A9; }
.badge-icon.weddingwire { background: #00A6A0; }
.badge-icon.zola { background: #0F3059; }
.badge-icon.ourday { background: #D4AF37; }
.badge-icon.hcep { background: #2C5F2D; }
.badge-icon.nla { background: #1B2A4A; color: #C9A84C; }
.badge-icon.tta { background: #003366; }
.badge-icon.ycc { background: #1B5E20; }
.badge-icon.yvc { background: #4A148C; }
.badge-icon.ncwga { background: #722F37; color: #C9A84C; }

@media (max-width: 768px) {
    .badge-grid {
        gap: 0.75rem;
    }
    .badge-item {
        padding: 0.5rem 0.8rem;
        font-size: 0.78rem;
    }
    .badge-icon {
        width: 24px;
        height: 24px;
        font-size: 0.65rem;
    }
}

/* ===== Preferred Vendor Spotlight ===== */
.preferred-vendors {
    margin-bottom: 2.5rem;
}

.preferred-header {
    text-align: center;
    margin-bottom: 2rem;
}

.preferred-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f6d365, #fda085);
    color: #333;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.preferred-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.preferred-header p {
    color: #666;
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto;
}

.preferred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.preferred-card {
    background: #fff;
    border: 2px solid #f0d060;
    border-radius: 12px;
    padding: 1.8rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(246, 211, 101, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preferred-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(246, 211, 101, 0.25);
}

.preferred-tag {
    position: absolute;
    top: -10px;
    right: 16px;
    background: linear-gradient(135deg, #f6d365, #fda085);
    color: #333;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.preferred-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.preferred-contact-name {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-bottom: 0.75rem;
}

.preferred-desc {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.preferred-links {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.preferred-links a {
    font-size: 0.85rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.preferred-links a:hover {
    color: #c9a84c;
}

@media (max-width: 992px) {
    .preferred-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .preferred-grid {
        grid-template-columns: 1fr;
    }
    .preferred-card {
        padding: 1.4rem;
    }
}
