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

        :root {
            --bg: #ffffff;
            --card-bg: #ffffff;
            --text: #1a1a1a;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --accent: #1e3a5a;
            --accent-hover: #162d47;
            --header-bg: #f8fafc;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.5;
            -webkit-font-smoothing: antialiased;
        }

        /* Sticky Header */
        .sticky-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--header-bg);
            border-bottom: 1px solid #e0ddd4;
            z-index: 1000;
            padding: 0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .sticky-header.header-hidden {
            transform: translateY(-100%);
        }

        .sticky-header.scrolled {
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .sticky-header.no-marquee {
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 64px;
        }

        .header-brand {
            font-family: 'Archivo', sans-serif;
            font-size: 32px;
            font-weight: 900;
            color: var(--text);
            text-decoration: none;
            letter-spacing: -1px;
            cursor: pointer;
            text-transform: lowercase;
        }

        .header-brand .tld {
            font-size: 32px;
            font-weight: 900;
            color: #dc2626;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-tagline {
            font-size: 15px;
            color: var(--text-muted);
            padding-left: 20px;
            border-left: 1px solid #ccc;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .header-link {
            font-size: 16px;
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
        }

        .header-link:hover {
            color: var(--accent);
        }

        .header-cta {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .header-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
        }

        .header-cta-radio {
            animation: radio-pulse 2s ease-in-out infinite;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        @keyframes radio-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(107, 124, 63, 0.4); }
            50% { box-shadow: 0 0 12px 4px rgba(107, 124, 63, 0.3); }
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            gap: 5px;
        }

        .mobile-menu-toggle span {
            display: block;
            width: 20px;
            height: 2px;
            background: var(--text);
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 64px;
            left: 0;
            right: 0;
            bottom: 0;
            background: white;
            z-index: 999;
            padding: 24px;
            flex-direction: column;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
        }

        .mobile-menu-overlay.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu-nav {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-nav-link {
            font-size: 18px;
            font-weight: 500;
            color: var(--text);
            text-decoration: none;
            padding: 16px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .mobile-nav-link:hover {
            background: var(--bg);
        }

        .mobile-nav-link.cta {
            background: var(--accent);
            color: white;
            text-align: center;
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .mobile-nav-link.cta .eq-bar {
            background: white;
        }

        .mobile-nav-link.cta:hover {
            background: var(--accent-hover);
        }

        .mobile-menu-newsletter {
            margin-top: auto;
            padding-top: 24px;
            border-top: 1px solid var(--border);
        }

        .mobile-menu-newsletter p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .mobile-menu-form {
            display: flex;
            gap: 12px;
        }

        .mobile-menu-form input {
            flex: 1;
            padding: 12px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
        }

        .mobile-menu-form input:focus {
            outline: none;
            border-color: var(--accent);
        }

        .mobile-menu-form button {
            padding: 12px 20px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            font-family: 'Inter', sans-serif;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* Mobile Newsletter Section */
        .mobile-newsletter {
            display: none; /* Hidden by default */
        }

        @media (max-width: 768px) {
            .mobile-newsletter {
                display: block;
                padding: 0 0 24px;
                background: var(--bg);
            }
            
            .mobile-newsletter-box {
                background: white;
                border: 1px solid var(--border);
                border-radius: 10px;
                padding: 14px 16px;
            }
            
            .mobile-newsletter-label {
                display: block;
                font-size: 13px;
                font-weight: 600;
                color: var(--text-muted);
                margin-bottom: 10px;
                text-align: center;
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }
            
            .mobile-newsletter-form {
                display: flex;
                flex-direction: row;
                gap: 8px;
            }
            
            .mobile-newsletter-form input {
                flex: 1;
                min-width: 0;
                padding: 12px 14px;
                border: 1px solid var(--border);
                background: var(--bg);
                font-family: 'Inter', sans-serif;
                font-size: 15px;
                border-radius: 8px;
            }
            
            .mobile-newsletter-form input:focus {
                outline: none;
                border-color: var(--accent);
            }
            
            .mobile-newsletter-form button {
                padding: 12px 20px;
                background: var(--text);
                color: white;
                border: none;
                font-family: 'Inter', sans-serif;
                font-size: 15px;
                font-weight: 600;
                cursor: pointer;
                border-radius: 8px;
                white-space: nowrap;
            }
        }

        /* Hero */
        .hero {
            padding: 80px 0 60px;
            text-align: center;
            margin-top: 44px;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        }

        /* New Hero Layout with Side Cards */
        .hero-section {
            padding: 40px 0 30px;
            margin-top: 64px;
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
        }

        .featured-label {
            display: inline-block;
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--text-muted);
            text-decoration: none;
            margin-bottom: 16px;
        }

        .featured-label:hover {
            color: var(--accent);
        }

        .hero-layout {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            align-items: start;
        }

        .hero-side {
            display: flex;
            flex-direction: column;
            gap: 16px;
            grid-column: span 1;
        }

        .hero-center {
            text-align: center;
            padding: 20px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-height: 416px;
            grid-column: span 2;
        }

        .hero-center .hero-headline {
            font-size: 52px;
            margin-bottom: 16px;
        }

        .hero-center .hero-subhead {
            font-size: 17px;
            max-width: 420px;
            margin: 0 auto 28px;
        }

        .hero-center .hero-newsletter {
            flex-direction: column;
            max-width: 340px;
            margin: 0 auto;
        }

        .hero-center .hero-newsletter input {
            width: 100%;
        }

        .hero-center .hero-newsletter button {
            width: 100%;
        }

        .hero-blurb {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 12px;
            text-align: center;
        }

        /* Hide first 4 cards in grid on desktop (they're in hero sides) */
        .business-card.mobile-only {
            display: none;
        }

        .hero-badge {
            display: inline-block;
            padding: 8px 20px;
            border: 1px solid var(--border);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            margin-bottom: 24px;
            background: white;
        }

        .hero-headline {
            font-family: 'Archivo', sans-serif;
            font-size: 52px;
            font-weight: 700;
            line-height: 1.1;
            color: var(--text);
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero-subhead {
            font-size: 18px;
            color: var(--text-muted);
            font-weight: 400;
            max-width: 520px;
            margin: 0 auto 32px;
            line-height: 1.6;
        }

        .hero-newsletter {
            display: flex;
            justify-content: center;
            gap: 12px;
            max-width: 480px;
            margin: 0 auto;
        }

        .hero-newsletter input {
            flex: 1;
            padding: 16px 20px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            background: white;
            min-width: 0;
        }

        .hero-newsletter input:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(107, 124, 63, 0.1);
        }

        .hero-newsletter button {
            padding: 16px 28px;
            background: #2d2d2d;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s ease;
            letter-spacing: 0.5px;
        }

        .hero-newsletter button:hover {
            background: #1a1a1a;
            transform: translateY(-1px);
        }

        .hero-trust {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 16px;
        }

        .hero-radio {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 32px;
            padding: 14px 24px;
            background: rgba(107, 124, 63, 0.1);
            border: 1px solid rgba(107, 124, 63, 0.2);
            border-radius: 50px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .hero-radio:hover {
            background: rgba(107, 124, 63, 0.15);
            border-color: rgba(107, 124, 63, 0.3);
            transform: translateY(-2px);
        }

        .hero-radio-live {
            display: inline-block;
            width: 12px;
            height: 12px;
            background: #ef4444;
            border-radius: 50%;
            animation: live-pulse 1.5s ease-in-out infinite;
            box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
        }

        @keyframes live-pulse {
            0%, 100% { 
                opacity: 1; 
                transform: scale(1);
                box-shadow: 0 0 8px rgba(239, 68, 68, 0.6);
            }
            50% { 
                opacity: 0.8; 
                transform: scale(1.2);
                box-shadow: 0 0 16px rgba(239, 68, 68, 0.8);
            }
        }

        .hero-radio-text {
            font-size: 15px;
            color: var(--text-muted);
        }

        .hero-radio-cta {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
        }

        /* Featured Header */
        .featured-header {
            margin-bottom: 24px;
        }

        .featured-header h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }

        .featured-subtext {
            font-size: 15px;
            color: var(--text-muted);
        }

        /* Section Label */
        .section-label {
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        /* Business Grid */
        .business-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 60px;
            align-items: start;
        }

        .business-card {
            position: relative;
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: block;
            height: 200px;
            cursor: pointer;
        }

        .business-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
        }

        .card-image {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            width: 100%;
            height: 100%;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Gradient overlay */
        .business-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 70%;
            background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
            pointer-events: none;
            z-index: 1;
        }

        .card-body {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 16px;
            z-index: 2;
        }

        .card-category {
            display: none;
        }

        .card-name {
            font-family: 'Archivo', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 4px;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
        }

        .card-description {
            display: none;
        }

        .card-meta {
            display: flex;
            flex-direction: row;
            gap: 12px;
            margin-top: 4px;
            font-size: 13px;
        }

        .card-meta-item {
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: rgba(255,255,255,0.85);
            transition: color 0.2s ease;
            text-shadow: 0 1px 2px rgba(0,0,0,0.5);
        }

        .card-meta-item:hover {
            color: white;
        }

        .card-meta-item svg {
            flex-shrink: 0;
            stroke: rgba(255,255,255,0.8);
            width: 14px;
            height: 14px;
        }

        /* Hover Overlay - Slide up with description */
        .card-hover-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            top: 0;
            background: linear-gradient(to top, rgba(30, 58, 90, 0.98) 0%, rgba(30, 58, 90, 0.95) 100%);
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: center;
            z-index: 10;
        }

        .business-card:hover .card-hover-info {
            transform: translateY(0);
        }

        .hover-business-name {
            font-family: 'Archivo', sans-serif;
            font-size: 16px;
            font-weight: 700;
            color: white;
            margin-bottom: 10px;
        }

        .hover-description {
            font-size: 13px;
            line-height: 1.5;
            color: rgba(255,255,255,0.9);
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hover-info-item {
            display: none;
        }

        .hover-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 16px;
            background: white;
            color: var(--text);
            font-size: 13px;
            font-weight: 600;
            border-radius: 6px;
            margin-top: auto;
            transition: all 0.2s ease;
            align-self: flex-start;
        }

        .hover-cta:hover {
            background: rgba(255,255,255,0.9);
        }

        /* Standard Tier Directory */
        .standard-directory {
            background: var(--bg);
            padding: 80px 0 120px;
            border-top: 1px solid var(--border);
        }

        .directory-header {
            margin-bottom: 48px;
        }

        .directory-header h2 {
            font-family: 'Inter', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .directory-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .directory-summary {
            font-size: 16px;
            color: var(--text-muted);
            font-weight: 400;
            line-height: 1.7;
            margin-top: 16px;
        }

        .directory-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 16px;
        }

        .directory-item {
            position: relative;
            background: white;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
            gap: 8px;
            cursor: pointer;
            overflow: hidden;
        }

        .directory-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.85);
            z-index: 1;
        }

        .directory-item > * {
            position: relative;
            z-index: 2;
        }

        .directory-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            border-color: var(--accent);
        }

        .directory-category {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent);
            font-weight: 600;
        }

        .directory-item h3 {
            font-family: 'Inter', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            letter-spacing: -0.3px;
        }

        .directory-item p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
            margin-bottom: 4px;
        }

        .directory-meta {
            display: flex;
            flex-direction: column;
            gap: 6px;
            padding-top: 10px;
            margin-top: auto;
            border-top: 1px solid var(--border);
            font-size: 14px;
            color: var(--text-muted);
        }

        .directory-meta a {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: var(--text-muted);
            transition: color 0.2s ease;
        }

        .directory-meta a:hover {
            color: var(--accent);
        }

        .directory-meta svg {
            flex-shrink: 0;
            color: var(--accent);
        }

        /* About Page */
        .about-page {
            padding: 120px 0 80px;
        }

        .about-hero {
            text-align: center;
            margin-bottom: 80px;
        }

        .about-hero h1 {
            font-family: 'Archivo', sans-serif;
            font-size: 64px;
            font-weight: 700;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
        }

        .about-hero p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        .about-content p {
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin: 60px 0;
        }

        .feature-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
        }

        .feature-icon {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .feature-card h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .about-contact {
            margin-top: 48px;
            padding-top: 48px;
            border-top: 1px solid var(--border);
            text-align: center;
        }

        .about-contact p {
            margin-bottom: 16px;
        }

        .about-email {
            display: inline-block;
            font-size: 18px;
            font-weight: 600;
            color: var(--accent);
            text-decoration: none;
            padding: 12px 28px;
            border: 2px solid var(--accent);
            border-radius: 8px;
            transition: all 0.2s ease;
        }

        .about-email:hover {
            background: var(--accent);
            color: white;
        }

        /* List Your Business Page */
        .list-page {
            padding: 120px 0 80px;
        }

        .list-hero {
            text-align: center;
            margin-bottom: 80px;
        }

        .list-hero h1 {
            font-family: 'Archivo', sans-serif;
            font-size: 64px;
            font-weight: 700;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
        }

        .list-hero p {
            font-size: 20px;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .pricing-tiers {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 1000px;
            margin: 0 auto 80px;
        }

        .pricing-card {
            background: white;
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 48px 40px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: var(--accent);
        }

        .pricing-card.featured {
            border-color: var(--accent);
            position: relative;
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: white;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .pricing-card h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .pricing-price {
            font-family: 'Archivo', sans-serif;
            font-size: 56px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .pricing-price span {
            font-size: 20px;
            color: var(--text-muted);
            font-weight: 500;
        }

        .pricing-description {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 32px;
            line-height: 1.6;
        }

        .pricing-features {
            list-style: none;
            text-align: left;
            margin-bottom: 32px;
        }

        .pricing-features li {
            font-size: 15px;
            color: var(--text);
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-cta {
            display: inline-block;
            padding: 16px 40px;
            background: var(--text);
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.2s ease;
        }

        .pricing-cta:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }

        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            background: white;
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 48px;
        }

        .contact-form h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 24px;
            text-align: center;
        }

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

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            transition: all 0.2s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

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

        .form-submit {
            width: 100%;
            padding: 16px;
            background: var(--text);
            color: white;
            border: none;
            border-radius: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .form-submit:hover {
            opacity: 0.9;
            transform: translateY(-1px);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* 404 Error Page */
        .error-page {
            min-height: calc(100vh - 64px);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 0;
            margin-top: 64px;
        }

        .error-content {
            text-align: center;
            max-width: 500px;
        }

        .error-code {
            font-family: 'Archivo', sans-serif;
            font-size: 120px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
            display: block;
            margin-bottom: 16px;
        }

        .error-content h1 {
            font-family: 'Archivo', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
        }

        .error-content p {
            font-size: 17px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 32px;
        }

        .error-actions {
            display: flex;
            gap: 12px;
            justify-content: center;
        }

        .error-btn {
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .error-btn.primary {
            background: var(--accent);
            color: white;
        }

        .error-btn.primary:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
        }

        .error-btn.secondary {
            background: white;
            color: var(--text);
            border: 1px solid var(--border);
        }

        .error-btn.secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Header Weather Widget */
        .header-weather {
            display: flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            color: var(--text);
            font-size: 15px;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 20px;
            background: rgba(107, 124, 63, 0.1);
            transition: all 0.2s ease;
        }

        .header-weather:hover,
        .header-weather.active {
            background: rgba(107, 124, 63, 0.2);
        }

        .weather-icon {
            font-size: 18px;
        }

        .weather-temp {
            font-weight: 600;
        }

        /* Weather Page */
        .weather-page {
            padding: 40px 0 80px;
            margin-top: 64px;
        }

        .weather-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .weather-header h1 {
            font-family: 'Archivo', sans-serif;
            font-size: 36px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .weather-updated {
            color: var(--text-muted);
            font-size: 14px;
        }

        .weather-current {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            padding: 40px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-bottom: 24px;
        }

        .weather-current-main {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .weather-current-icon {
            font-size: 72px;
        }

        .weather-current-temp {
            display: flex;
            align-items: flex-start;
        }

        .temp-value {
            font-family: 'Archivo', sans-serif;
            font-size: 72px;
            font-weight: 700;
            color: var(--text);
            line-height: 1;
        }

        .temp-unit {
            font-size: 24px;
            font-weight: 500;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .weather-current-details h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 24px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
        }

        .feels-like {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 16px;
        }

        .weather-stats {
            display: flex;
            gap: 24px;
        }

        .weather-stat {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .stat-icon {
            font-size: 18px;
        }

        .stat-label {
            color: var(--text-muted);
            font-size: 14px;
        }

        .stat-value {
            font-weight: 600;
            color: var(--text);
            font-size: 14px;
        }

        /* Sun Times */
        .weather-sun {
            display: flex;
            justify-content: center;
            gap: 48px;
            padding: 24px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            margin-bottom: 24px;
        }

        .sun-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .sun-icon {
            font-size: 24px;
        }

        .sun-label {
            color: var(--text-muted);
            font-size: 14px;
        }

        .sun-time {
            font-weight: 600;
            font-size: 18px;
            color: var(--text);
        }

        /* Weather Report */
        .weather-report {
            background: linear-gradient(135deg, var(--accent) 0%, #162d47 100%);
            color: white;
            padding: 24px 28px;
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .weather-report p {
            font-size: 18px;
            line-height: 1.6;
            margin: 0;
            font-style: italic;
        }

        /* Wind Chill Alert */
        .weather-alert {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #fef3c7;
            border: 1px solid #f59e0b;
            color: #92400e;
            padding: 16px 20px;
            border-radius: 12px;
            margin-bottom: 24px;
            font-weight: 500;
            font-size: 15px;
        }

        .weather-alert.extreme {
            background: #fee2e2;
            border-color: #ef4444;
            color: #991b1b;
        }

        /* 7-Day Forecast */
        .weather-forecast {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
        }

        .weather-forecast h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 18px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 20px;
        }

        .forecast-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 8px;
        }

        .forecast-day {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            padding: 16px 8px;
            border-radius: 12px;
            transition: background 0.2s ease;
        }

        .forecast-day:hover {
            background: rgba(107, 124, 63, 0.05);
        }

        .forecast-day.today {
            background: rgba(107, 124, 63, 0.1);
        }

        .forecast-day-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
        }

        .forecast-icon {
            font-size: 28px;
        }

        .forecast-temps {
            display: flex;
            gap: 8px;
            font-size: 14px;
        }

        .forecast-high {
            font-weight: 600;
            color: var(--text);
        }

        .forecast-low {
            color: var(--text-muted);
        }

        .forecast-precip {
            font-size: 12px;
            color: var(--text-muted);
        }

        .weather-credit {
            text-align: center;
            font-size: 13px;
            color: var(--text-muted);
        }

        .weather-credit a {
            color: var(--accent);
            text-decoration: none;
        }

        .weather-credit a:hover {
            text-decoration: underline;
        }

        /* Footer */
        .site-footer {
            background: #2d2d2d;
            color: white;
            padding: 60px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-logo {
            font-family: 'Archivo', sans-serif;
            font-size: 28px;
            font-weight: 900;
            color: white;
            text-decoration: none;
            display: block;
            margin-bottom: 16px;
            letter-spacing: -1px;
            text-transform: lowercase;
        }

        .footer-logo span {
            font-size: 28px;
            font-weight: 900;
            color: #dc2626;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .footer-newsletter p {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .footer-newsletter-form {
            display: flex;
            gap: 8px;
        }

        .footer-newsletter-form input {
            flex: 1;
            padding: 10px 14px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 14px;
            font-family: 'Inter', sans-serif;
        }

        .footer-newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-newsletter-form input:focus {
            outline: none;
            border-color: var(--accent);
        }

        .footer-newsletter-form button {
            padding: 10px 16px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            transition: background 0.2s ease;
        }

        .footer-newsletter-form button:hover {
            background: var(--accent-hover);
        }

        .footer-tagline {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 16px;
        }

        .footer-links h4 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            color: white;
        }

        .footer-links a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            padding: 6px 0;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }

        .footer-bottom a:hover {
            color: white;
        }

        /* Page visibility */
        .page {
            display: none;
        }

        .page.active {
            display: block;
        }

        /* Premium Business Detail Page */
        .business-detail {
            padding: 120px 0 80px;
        }

        .back-button {
            position: fixed;
            top: 100px;
            left: 32px;
            z-index: 999;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text);
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            padding: 14px 24px;
            background: white;
            border: 2px solid var(--border);
            border-radius: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .back-button:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateX(-4px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .back-button {
                top: auto;
                bottom: 24px;
                left: 24px;
            }
        }

        .detail-hero {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
        }

        .detail-header {
            margin-bottom: 40px;
        }

        .detail-category {
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 12px;
        }

        .detail-name {
            font-family: 'Archivo', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -1px;
            margin-bottom: 16px;
        }

        .detail-tagline {
            font-size: 20px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .detail-ctas {
            display: flex;
            gap: 12px;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .detail-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 24px;
            background: var(--accent);
            color: white;
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.2s ease;
        }

        .detail-cta:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        .detail-cta.secondary {
            background: white;
            color: var(--text);
            border: 1px solid var(--border);
        }

        .detail-cta.secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .detail-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            margin-top: 60px;
        }

        .detail-main h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            letter-spacing: -0.5px;
        }

        .detail-main p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .detail-services {
            margin-top: 40px;
        }

        .detail-services h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .detail-services ul {
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .detail-services li {
            padding: 16px 20px;
            background: var(--bg);
            border-radius: 10px;
            font-size: 15px;
            font-weight: 500;
        }

        .detail-sidebar {
            position: sticky;
            top: 100px;
            align-self: start;
        }

        .sidebar-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 20px;
        }

        .sidebar-card h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .sidebar-info-item {
            display: flex;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
            text-decoration: none;
            color: inherit;
        }

        .sidebar-info-item.clickable {
            cursor: pointer;
            transition: background 0.2s ease;
            margin: 0 -16px;
            padding: 12px 16px;
            border-radius: 8px;
            border-bottom: none;
        }

        .sidebar-info-item.clickable:hover {
            background: var(--bg);
        }

        .sidebar-info-item.clickable:hover svg {
            color: var(--accent);
        }

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

        .sidebar-info-item svg {
            width: 20px;
            height: 20px;
            color: var(--text-muted);
            flex-shrink: 0;
            margin-top: 2px;
            transition: color 0.2s ease;
        }

        .sidebar-info-content {
            flex: 1;
        }

        .sidebar-info-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 4px;
            font-weight: 600;
        }

        .sidebar-info-value {
            font-size: 15px;
            color: var(--text);
            font-weight: 500;
        }

        .detail-gallery {
            margin-top: 60px;
        }

        .detail-gallery h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .gallery-item {
            aspect-ratio: 1;
            border-radius: 12px;
            position: relative;
            overflow: hidden;
        }

        .gallery-item:nth-child(1) { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
        .gallery-item:nth-child(2) { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
        .gallery-item:nth-child(3) { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
        .gallery-item:nth-child(4) { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
        .gallery-item:nth-child(5) { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
        .gallery-item:nth-child(6) { background: linear-gradient(135deg, #30cfd0 0%, #330867 100%); }


        /* Standard Business Detail Page */
        .business-detail-standard {
            padding: 120px 0 80px;
        }

        .standard-detail-image {
            width: 100%;
            max-width: 900px;
            height: 400px;
            margin: 0 auto 40px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .standard-detail-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .standard-detail-name {
            font-family: 'Archivo', sans-serif;
            font-size: 40px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: -1px;
            margin-bottom: 12px;
        }

        .standard-detail-tagline {
            font-size: 18px;
            color: var(--text-muted);
            line-height: 1.6;
            max-width: 600px;
            margin: 0 auto 24px;
        }

        .standard-detail-ctas {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .standard-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: white;
            color: var(--text);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            border: 1px solid var(--border);
            transition: all 0.2s ease;
        }

        .standard-cta:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-2px);
        }

        .standard-detail-body {
            max-width: 800px;
            margin: 0 auto;
        }

        .standard-info-section {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 32px;
        }

        .standard-info-section h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .standard-info-section p {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.7;
        }

        .standard-info-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }

        .standard-info-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            text-decoration: none;
            color: inherit;
            transition: all 0.2s ease;
        }

        .standard-info-card.clickable:hover {
            border-color: var(--accent);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .info-icon {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .info-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .info-value {
            font-size: 16px;
            color: var(--text);
            font-weight: 600;
        }

        /* ================================================
           ADVERTISE PAGE
           ================================================ */
        .advertise-hero {
            background: linear-gradient(135deg, var(--accent) 0%, #162d47 100%);
            color: white;
            padding: 100px 0 80px;
            margin-top: 64px;
            text-align: center;
        }

        .advertise-hero h1 {
            font-family: 'Archivo', sans-serif;
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .advertise-hero .hero-lead {
            font-size: 20px;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            line-height: 1.6;
        }

        .advertise-value {
            padding: 80px 0;
            background: var(--bg);
        }

        .advertise-value h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 36px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 24px;
            color: var(--text);
        }

        .value-text {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 16px;
            text-align: center;
            line-height: 1.7;
        }

        .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid var(--border);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Archivo', sans-serif;
            font-size: 48px;
            font-weight: 900;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 14px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .advertise-services {
            padding: 80px 0;
            background: #f8fafc;
        }

        .advertise-services h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 36px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 48px;
            color: var(--text);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            padding: 40px 32px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
        }

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

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(220, 38, 38, 0.1);
            border-radius: 16px;
        }

        .service-icon svg {
            stroke: #dc2626;
        }

        .service-card h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }

        .service-card p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .service-price {
            font-size: 16px;
            font-weight: 700;
            color: var(--accent);
        }

        .advertise-proof {
            padding: 80px 0;
            background: var(--accent);
            color: white;
            text-align: center;
        }

        .advertise-proof blockquote {
            font-size: 24px;
            font-style: italic;
            max-width: 800px;
            margin: 0 auto 20px;
            line-height: 1.6;
        }

        .advertise-proof cite {
            font-size: 16px;
            opacity: 0.8;
            font-style: normal;
        }

        .advertise-benefits {
            padding: 80px 0;
            background: var(--bg);
        }

        .advertise-benefits h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 36px;
            font-weight: 800;
            text-align: center;
            margin-bottom: 48px;
            color: var(--text);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
        }

        .benefit-item {
            padding: 32px;
            background: #f8fafc;
            border-radius: 12px;
        }

        .benefit-item h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }

        .benefit-item p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            margin: 0;
        }

        .advertise-cta {
            padding: 100px 0;
            background: var(--bg);
            text-align: center;
        }

        .advertise-cta h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
            color: var(--text);
        }

        .advertise-cta > .container > p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 32px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 24px;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            background: var(--accent);
            color: white;
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            background: white;
            color: var(--text);
            font-size: 16px;
            font-weight: 600;
            border-radius: 8px;
            border: 2px solid var(--border);
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .cta-note {
            font-size: 14px;
            color: var(--text-muted);
        }

        .cta-note a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 600;
        }

        .cta-note a:hover {
            text-decoration: underline;
        }

        /* ================================================
           CONTACT PAGE
           ================================================ */
        .contact-page {
            padding: 100px 0 80px;
            margin-top: 64px;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .contact-header h1 {
            font-family: 'Archivo', sans-serif;
            font-size: 42px;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 12px;
        }

        .contact-header p {
            font-size: 18px;
            color: var(--text-muted);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .contact-form-section {
            background: white;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 48px;
        }

        .contact-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .contact-form .form-group {
            margin-bottom: 24px;
        }

        .contact-form label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid var(--border);
            border-radius: 8px;
            font-size: 15px;
            font-family: inherit;
            transition: border-color 0.2s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: var(--accent);
        }

        .contact-form textarea {
            resize: vertical;
            min-height: 120px;
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 16px;
            background: #f8fafc;
            border: 1px solid var(--border);
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 14px;
        }

        .checkbox-label:hover {
            border-color: var(--accent);
        }

        .checkbox-label input {
            width: auto;
            margin: 0;
        }

        .checkbox-label input:checked + span {
            color: var(--accent);
            font-weight: 600;
        }

        .contact-form .btn-primary {
            width: 100%;
            padding: 16px;
            font-size: 16px;
            cursor: pointer;
            border: none;
        }

        .form-tip {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
            font-style: italic;
        }

        .form-status {
            margin-top: 16px;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 14px;
            text-align: center;
            display: none;
        }

        .form-status.success {
            display: block;
            background: #dcfce7;
            color: #166534;
        }

        .form-status.error {
            display: block;
            background: #fee2e2;
            color: #991b1b;
        }

        .contact-info-section {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-info-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 24px;
        }

        .contact-info-card h3 {
            font-family: 'Archivo', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
        }

        .contact-info-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .contact-info-card a {
            color: var(--accent);
            text-decoration: none;
            font-weight: 500;
        }

        .contact-info-card a:hover {
            text-decoration: underline;
        }

        .contact-method {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 14px;
        }

        .contact-method:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            font-size: 18px;
            line-height: 1;
        }

        .contact-method strong {
            display: block;
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 2px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .contact-method a,
        .contact-method span {
            font-size: 14px;
            color: var(--text);
        }

        .contact-method a {
            color: var(--accent);
            text-decoration: none;
        }

        .contact-method a:hover {
            text-decoration: underline;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .business-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-features {
                grid-template-columns: 1fr;
            }
            .detail-content {
                grid-template-columns: 1fr;
            }
            .standard-info-grid {
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .stats-row {
                grid-template-columns: repeat(2, 1fr);
            }
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .checkbox-group {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .advertise-hero {
                padding: 80px 20px 60px;
            }
            .advertise-hero h1 {
                font-size: 32px;
            }
            .advertise-hero .hero-lead {
                font-size: 16px;
            }
            .stats-row {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .stat-number {
                font-size: 28px;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .service-card {
                padding: 32px 24px;
            }
            .advertise-proof blockquote {
                font-size: 18px;
                padding: 0 20px;
            }
            .benefits-grid {
                gap: 20px;
            }
            .benefit-item {
                padding: 24px;
            }
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            /* Contact page mobile */
            .contact-page {
                padding: 80px 0 60px;
            }
            .contact-header h1 {
                font-size: 32px;
            }
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .contact-form-section {
                padding: 24px;
            }
            .contact-form .form-row {
                grid-template-columns: 1fr;
            }
            .checkbox-group {
                grid-template-columns: 1fr 1fr;
            }
            
            .header-content {
                padding: 0 16px;
                height: 56px;
            }

            .header-brand {
                font-size: 26px;
            }

            .header-brand .tld {
                font-size: 26px;
            }

            .header-tagline {
                display: none;
            }

            .header-link {
                display: none;
            }

            .header-cta {
                display: none;
            }

            .header-weather {
                padding: 4px 10px;
                font-size: 14px;
            }

            .weather-icon {
                font-size: 16px;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            .mobile-menu-overlay {
                top: 56px;
            }

            /* 404 Mobile */
            .error-page {
                margin-top: 56px;
                padding: 60px 16px;
            }

            .error-code {
                font-size: 80px;
            }

            .error-content h1 {
                font-size: 24px;
            }

            .error-content p {
                font-size: 15px;
            }

            .error-actions {
                flex-direction: column;
            }

            .error-btn {
                width: 100%;
                text-align: center;
            }

            /* Weather Page Mobile */
            .weather-page {
                padding: 24px 0 60px;
                margin-top: 56px;
            }

            .weather-header {
                margin-bottom: 24px;
            }

            .weather-header h1 {
                font-size: 24px;
            }

            .weather-current {
                flex-direction: column;
                gap: 24px;
                padding: 24px;
            }

            .weather-current-icon {
                font-size: 56px;
            }

            .temp-value {
                font-size: 56px;
            }

            .weather-current-details {
                text-align: center;
            }

            .weather-current-details h2 {
                font-size: 20px;
            }

            .weather-stats {
                justify-content: center;
            }

            .weather-sun {
                gap: 24px;
                padding: 16px;
            }

            .forecast-grid {
                grid-template-columns: repeat(7, 1fr);
                gap: 4px;
            }

            .forecast-day {
                padding: 12px 4px;
            }

            .forecast-day-name {
                font-size: 11px;
            }

            .forecast-icon {
                font-size: 20px;
            }

            .forecast-temps {
                flex-direction: column;
                gap: 2px;
                font-size: 12px;
            }

            .forecast-precip {
                font-size: 10px;
            }

            /* Footer Mobile */
            .site-footer {
                padding: 40px 0 24px;
            }

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

            .footer-brand {
                text-align: center;
            }

            .footer-newsletter-form {
                flex-direction: column;
            }

            .footer-links {
                text-align: center;
            }

            .footer-links h4 {
                margin-bottom: 12px;
            }

            .footer-links a {
                padding: 8px 0;
            }
            
            .hero {
                padding: 48px 0 40px;
                margin-top: 44px;
            }

            /* Mobile Hero Layout */
            .hero-section {
                padding: 30px 0 30px;
                margin-top: 64px;
            }

            .featured-label {
                display: none;
            }

            .hero-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hero-side {
                display: none; /* Hide side cards on mobile */
                grid-column: span 1;
            }

            .hero-center {
                padding: 0 16px;
                min-height: auto;
                grid-column: span 1;
            }

            .hero-center .hero-headline {
                font-size: 36px;
            }

            .hero-center .hero-subhead {
                font-size: 15px;
            }

            .hero-center .hero-newsletter {
                max-width: 100%;
            }

            /* Show all cards on mobile since hero sides are hidden */
            .business-card.mobile-only {
                display: flex;
            }

            .hero-badge {
                font-size: 13px;
                padding: 6px 16px;
                margin-bottom: 20px;
            }
            
            .hero-headline {
                font-size: 32px;
                margin-bottom: 16px;
                padding: 0 16px;
            }

            .hero-subhead {
                font-size: 16px;
                padding: 0 16px;
                margin-bottom: 28px;
            }

            .hero-newsletter {
                flex-direction: column;
                padding: 0 16px;
                gap: 12px;
            }

            .hero-newsletter input {
                padding: 14px 16px;
                font-size: 16px;
            }

            .hero-newsletter button {
                padding: 14px 20px;
                font-size: 14px;
            }

            .hero-trust {
                font-size: 12px;
                padding: 0 16px;
            }

            .hero-radio {
                flex-direction: column;
                gap: 6px;
                padding: 12px 20px;
                margin-top: 24px;
            }

            .hero-radio-live {
                width: 14px;
                height: 14px;
            }

            .hero-radio-text {
                font-size: 14px;
            }

            .featured-header {
                padding: 0 16px;
            }

            .featured-header h2 {
                font-size: 24px;
            }

            /* ================================
               PREMIUM CARDS - Mobile Compact
               ================================ */
            .business-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                margin-bottom: 50px;
            }

            .business-card {
                height: auto;
                min-height: 260px;
            }

            .card-image {
                height: 150px;
                min-height: 150px;
            }

            .card-body {
                padding: 14px 16px;
            }

            .card-category {
                margin-bottom: 4px;
                font-size: 11px;
            }

            .card-name {
                font-size: 16px;
                margin-bottom: 4px;
            }

            .card-description {
                font-size: 13px;
                margin-bottom: 6px;
                -webkit-line-clamp: 2;
            }

            .card-meta {
                font-size: 13px;
                gap: 5px;
            }

            .card-meta-item svg {
                width: 14px;
                height: 14px;
            }

            /* Hide hover overlay on mobile - info already visible on card */
            .card-hover-info {
                display: none;
            }

            /* ================================
               STANDARD CARDS - Mobile Compact
               ================================ */
            .standard-directory {
                padding: 50px 0 80px;
            }

            .directory-header {
                margin-bottom: 30px;
            }

            .directory-header h2 {
                font-size: 26px;
            }

            .directory-summary {
                font-size: 15px;
                margin-top: 12px;
            }

            .directory-grid {
                gap: 12px;
            }

            .directory-item {
                padding: 14px 16px;
                gap: 6px;
                border-radius: 10px;
            }

            .directory-category {
                font-size: 10px;
            }

            .directory-item h3 {
                font-size: 16px;
            }

            .directory-item p {
                font-size: 13px;
                margin-bottom: 2px;
            }

            .directory-meta {
                font-size: 12px;
                padding-top: 6px;
                gap: 3px;
            }

            /* ================================
               OTHER MOBILE ADJUSTMENTS
               ================================ */
            .about-hero h1,
            .list-hero h1 {
                font-size: 36px;
            }
            
            .detail-name,
            .standard-detail-name {
                font-size: 28px;
            }
            
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .container {
                padding: 0 20px;
            }

            .advertise-benefits {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .benefit-card {
                padding: 24px 20px;
            }

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

        /* ================================================
           EVENTS STYLES
           ================================================ */

        /* MARQUEE TICKER */
        .events-marquee {
            background: #2d2d2d;
            color: white;
            display: flex;
            align-items: center;
            overflow: hidden;
            position: sticky;
            top: 64px;
            z-index: 99;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .marquee-label {
            background: var(--accent);
            color: white;
            padding: 12px 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            white-space: nowrap;
            text-decoration: none;
            transition: background 0.2s;
        }

        .marquee-label:hover {
            background: var(--accent-hover);
        }

        .marquee-track {
            flex: 1;
            overflow: hidden;
            position: relative;
        }

        .marquee-content {
            display: flex;
            align-items: center;
            gap: 8px;
            animation: marquee 40s linear infinite;
            white-space: nowrap;
            padding: 12px 0;
        }

        .marquee-content:hover {
            animation-play-state: paused;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-item {
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
            color: white;
            padding: 4px 8px;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .marquee-item:hover {
            background: rgba(255,255,255,0.1);
        }

        .marquee-date {
            font-size: 12px;
            font-weight: 600;
            opacity: 0.7;
        }

        .marquee-title {
            font-size: 14px;
            font-weight: 500;
        }

        .marquee-divider {
            color: rgba(255,255,255,0.3);
            margin: 0 8px;
        }

        /* FEATURED EVENTS SECTION */
        .featured-events {
            padding: 60px 0;
            background: var(--bg);
        }

        .featured-events-title {
            font-family: 'Archivo', sans-serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--text);
            margin: 0 0 16px 0;
        }

        .featured-events-summary {
            font-size: 16px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .featured-events .see-all-link {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            text-decoration: none;
            margin-bottom: 28px;
        }

        .featured-events .see-all-link:hover {
            text-decoration: underline;
        }

        .swipe-hint {
            display: none;
        }

        .featured-events-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .event-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: var(--text);
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
        }

        .event-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 24px rgba(0,0,0,0.1);
            border-color: var(--accent);
        }

        .see-more-card {
            background: var(--bg);
            border: 2px dashed var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .see-more-card:hover {
            border-color: var(--accent);
            background: white;
        }

        .see-more-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            color: var(--text-muted);
            transition: color 0.2s;
        }

        .see-more-card:hover .see-more-content {
            color: var(--accent);
        }

        .see-more-icon {
            font-size: 32px;
            font-weight: 300;
        }

        .see-more-text {
            font-size: 14px;
            font-weight: 600;
        }

        .event-card-date {
            padding: 16px;
            text-align: center;
            color: white;
        }

        .event-card-day {
            display: block;
            font-size: 32px;
            font-weight: 700;
            line-height: 1;
        }

        .event-card-month {
            display: block;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            opacity: 0.9;
        }

        .event-card-content {
            padding: 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .event-card-category {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }

        .event-card h3 {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .event-card-meta {
            margin-top: auto;
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        /* UPCOMING EVENTS LIST */
        .upcoming-events {
            padding: 60px 0 80px;
            background: white;
        }

        .upcoming-events-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .upcoming-events-header h2 {
            font-family: 'Archivo', sans-serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
        }

        .upcoming-events-header .see-all-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            text-decoration: none;
        }

        .upcoming-events-header .see-all-link:hover {
            text-decoration: underline;
        }

        .upcoming-events-summary {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .upcoming-events-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .upcoming-event-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 16px 20px;
            background: var(--bg);
            border-radius: 10px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.2s;
        }

        .upcoming-event-item:hover {
            background: #e8eef5;
            transform: translateX(4px);
        }

        .upcoming-event-date {
            text-align: center;
            min-width: 50px;
        }

        .upcoming-day {
            display: block;
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            line-height: 1;
        }

        .upcoming-month {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .upcoming-event-info {
            flex: 1;
        }

        .upcoming-event-info h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .upcoming-event-meta {
            font-size: 13px;
            color: var(--text-muted);
        }

        .upcoming-event-category {
            font-size: 11px;
            font-weight: 600;
            color: white;
            padding: 4px 10px;
            border-radius: 20px;
            text-transform: uppercase;
        }

        /* EVENTS PAGE */
        .events-page {
            padding: 100px 0 80px;
        }

        .events-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .events-header h1 {
            font-family: 'Archivo', sans-serif;
            font-size: 48px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .events-header p {
            font-size: 18px;
            color: var(--text-muted);
        }

        .category-filter {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 48px;
        }

        .category-pill {
            padding: 8px 16px;
            border: 1px solid var(--border);
            border-radius: 20px;
            background: white;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            cursor: pointer;
            transition: all 0.2s;
        }

        .category-pill:hover {
            border-color: var(--cat-color, var(--accent));
            color: var(--cat-color, var(--accent));
        }

        .category-pill.active {
            background: var(--text);
            border-color: var(--text);
            color: white;
        }

        .timeline-section {
            margin-bottom: 48px;
        }

        .timeline-heading {
            font-family: 'Archivo', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--border);
        }

        .events-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .event-list-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.2s;
        }

        .event-list-item:hover {
            border-color: var(--accent);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .event-list-date {
            text-align: center;
            min-width: 60px;
            padding: 12px;
            background: var(--bg);
            border-radius: 8px;
        }

        .event-list-day {
            display: block;
            font-size: 28px;
            font-weight: 700;
            color: var(--text);
            line-height: 1;
        }

        .event-list-month {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            text-transform: uppercase;
        }

        .event-list-content {
            flex: 1;
        }

        .event-list-category {
            font-size: 11px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .event-list-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin: 4px 0 6px;
        }

        .event-list-meta {
            font-size: 14px;
            color: var(--text-muted);
            display: flex;
            gap: 16px;
        }

        .event-list-arrow {
            font-size: 20px;
            color: var(--text-muted);
            transition: transform 0.2s;
        }

        .event-list-item:hover .event-list-arrow {
            transform: translateX(4px);
            color: var(--accent);
        }

        .no-events {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-muted);
        }

        /* EVENT DETAIL PAGE */
        .event-detail {
            padding: 100px 0 80px;
        }

        .event-detail-header {
            margin-bottom: 40px;
        }

        .event-category-badge {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: white;
            padding: 6px 14px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
        }

        .event-detail-title {
            font-family: 'Archivo', sans-serif;
            font-size: 42px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.2;
        }

        .event-detail-content {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 48px;
        }

        .event-date-display {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 24px;
            background: var(--bg);
            border-radius: 12px;
            margin-bottom: 32px;
        }

        .event-date-big {
            text-align: center;
            padding: 16px 24px;
            background: var(--accent);
            border-radius: 8px;
            color: white;
        }

        .event-date-day {
            display: block;
            font-size: 42px;
            font-weight: 700;
            line-height: 1;
        }

        .event-date-month {
            display: block;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .event-date-dayname {
            font-size: 20px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 4px;
        }

        .event-date-time {
            font-size: 16px;
            color: var(--text-muted);
        }

        .event-description h2 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .event-description p {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .event-cta-button {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            background: var(--accent);
            color: white;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 8px;
            margin-top: 24px;
            transition: background 0.2s;
        }

        .event-cta-button:hover {
            background: var(--accent-hover);
        }

        /* EVENT PAGE ADS */
        .event-ads {
            padding: 60px 0 80px;
            background: var(--bg);
            border-top: 1px solid var(--border);
        }

        .ads-heading {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .event-ads-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            align-items: stretch;
        }

        .event-ad-card {
            background: white;
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            text-decoration: none;
            color: var(--text);
            transition: all 0.2s ease;
            display: flex;
            flex-direction: column;
        }

        .event-ad-card:hover {
            border-color: var(--accent);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            transform: translateY(-2px);
        }

        .event-ad-card.premium .event-ad-image {
            height: 120px;
            overflow: hidden;
        }

        .event-ad-card.premium .event-ad-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .event-ad-content {
            padding: 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .event-ad-content h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
            line-height: 1.3;
        }

        .event-ad-content p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.4;
            margin-bottom: 8px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .event-ad-phone {
            font-size: 13px;
            color: var(--accent);
            font-weight: 500;
            margin-top: auto;
        }

        .event-ad-card.standard {
            background: var(--bg);
            border-style: dashed;
        }

        /* Stacked standard ads */
        .event-ads-standard-stack {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .event-ads-standard-stack .event-ad-card.standard {
            flex: 1;
            position: relative;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            border-style: solid;
            min-height: 0;
        }

        .event-ads-standard-stack .event-ad-card.standard::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.88);
            border-radius: 11px;
            z-index: 1;
        }

        .event-ads-standard-stack .event-ad-card.standard .event-ad-content {
            position: relative;
            z-index: 2;
            padding: 14px 16px;
        }

        .event-ads-standard-stack .event-ad-card.standard h4 {
            margin-bottom: 4px;
        }

        .event-ads-standard-stack .event-ad-card.standard p {
            display: none;
        }

        /* EVENTS MOBILE STYLES */
        @media (max-width: 1024px) {
            .featured-events-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .event-detail-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .events-marquee {
                top: 56px;
            }

            .marquee-label {
                padding: 10px 14px;
                font-size: 11px;
            }

            .marquee-content {
                padding: 10px 0;
                animation-duration: 15s;
            }

            .marquee-title {
                font-size: 13px;
            }

            .featured-events {
                padding: 40px 0;
            }

            .featured-events-title {
                font-size: 26px;
                margin-bottom: 12px;
            }

            .featured-events-summary {
                font-size: 15px;
                margin-bottom: 12px;
            }

            .featured-events .see-all-link {
                margin-bottom: 20px;
            }

            .featured-events-grid {
                grid-template-columns: 1fr;
                gap: 16px;
                /* Horizontal scroll on mobile */
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 16px;
                margin: 0 -20px;
                padding-left: 20px;
                padding-right: 20px;
            }

            .event-card {
                flex: 0 0 280px;
                scroll-snap-align: start;
            }

            .swipe-hint {
                display: block;
                text-align: center;
                font-size: 13px;
                color: var(--text-muted);
                padding-top: 8px;
            }

            .upcoming-events {
                padding: 40px 0 60px;
            }

            .upcoming-events-header h2 {
                font-size: 22px;
            }

            .upcoming-event-item {
                padding: 14px 16px;
                gap: 14px;
            }

            .upcoming-event-category {
                display: none;
            }

            .events-page {
                padding: 80px 0 60px;
            }

            .events-header h1 {
                font-size: 32px;
            }

            .category-filter {
                justify-content: flex-start;
                overflow-x: auto;
                flex-wrap: nowrap;
                padding-bottom: 8px;
                margin-bottom: 32px;
            }

            .category-pill {
                flex-shrink: 0;
            }

            .event-list-item {
                padding: 16px;
                gap: 14px;
            }

            .event-list-date {
                min-width: 50px;
                padding: 10px;
            }

            .event-list-day {
                font-size: 24px;
            }

            .event-list-content h3 {
                font-size: 16px;
            }

            .event-list-meta {
                flex-direction: column;
                gap: 2px;
                font-size: 13px;
            }

            .event-list-arrow {
                display: none;
            }

            .event-detail {
                padding: 80px 0 60px;
            }

            .event-detail-title {
                font-size: 28px;
            }

            .event-date-display {
                flex-direction: column;
                text-align: center;
                gap: 16px;
            }

            .event-date-day {
                font-size: 36px;
            }

            .event-cta-button {
                width: 100%;
                justify-content: center;
            }

            .event-ads {
                padding: 40px 0 60px;
            }

            .event-ads-grid {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }

            .event-ads-standard-stack {
                grid-column: span 2;
                flex-direction: row;
            }

            .event-ads-standard-stack .event-ad-card.standard {
                flex: 1;
            }

            .event-ad-card.premium .event-ad-image {
                height: 100px;
            }

            .event-ad-content {
                padding: 12px;
            }

            .event-ad-content h4 {
                font-size: 14px;
            }

            .event-ad-content p {
                font-size: 12px;
                -webkit-line-clamp: 2;
            }
        }

        /* ================================================
           EQUALIZER BARS ANIMATION
           ================================================ */
        .eq-bars {
            display: flex;
            align-items: flex-end;
            gap: 2px;
            height: 14px;
        }

        .eq-bar {
            width: 3px;
            background: currentColor;
            border-radius: 1px;
            transform-origin: bottom;
            animation: eq-bounce 0.8s ease-in-out infinite;
        }

        .eq-bar:nth-child(1) { height: 100%; animation-delay: 0s; }
        .eq-bar:nth-child(2) { height: 100%; animation-delay: 0.15s; }
        .eq-bar:nth-child(3) { height: 100%; animation-delay: 0.3s; }
        .eq-bar:nth-child(4) { height: 100%; animation-delay: 0.45s; }

        @keyframes eq-bounce {
            0%, 100% { transform: scaleY(0.3); }
            50% { transform: scaleY(1); }
        }

        /* Header button equalizer - white bars */
        .header-cta-radio .eq-bars {
            height: 12px;
        }

        .header-cta-radio .eq-bar {
            background: white;
        }

        /* ================================================
           FLOATING LISTEN LIVE BUTTON
           ================================================ */
        .floating-listen {
            position: fixed;
            bottom: 72px;
            right: 24px;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background: #1a1a1a;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            z-index: 900;
            transition: all 0.3s ease;
            transform: translateX(150%);
            opacity: 0;
        }

        .floating-listen.visible {
            transform: translateX(0);
            opacity: 1;
        }

        .floating-listen.visible:hover {
            transform: translateX(0) translateY(-2px);
            box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
            background: #2d2d2d;
        }

        .floating-listen .eq-bars {
            height: 14px;
        }

        .floating-listen .eq-bar {
            background: #ef4444;
            width: 3px;
        }

        .floating-listen-text {
            color: white;
        }

        /* ================================================
           WEATHER ALERT MARQUEE (Yellow)
           ================================================ */
        .alert-marquee {
            position: fixed;
            bottom: 52px;
            left: 0;
            right: 0;
            background: #fbbf24;
            color: #1a1a1a;
            z-index: 801;
            overflow: hidden;
            height: 44px;
        }

        .alert-marquee-track {
            display: flex;
            align-items: center;
            height: 100%;
            animation: alert-scroll 30s linear infinite;
            white-space: nowrap;
            width: max-content;
        }

        .alert-marquee-track:hover {
            animation-play-state: paused;
        }

        @keyframes alert-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .alert-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 24px;
            color: #1a1a1a;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .alert-item:hover {
            color: #7c2d12;
        }

        .alert-icon {
            font-size: 16px;
        }

        .alert-text {
            font-size: 14px;
            font-weight: 700;
        }

        .alert-cta {
            font-size: 12px;
            font-weight: 500;
            text-decoration: underline;
            opacity: 0.8;
        }

        .alert-separator {
            color: rgba(0,0,0,0.3);
            padding: 0 12px;
            font-size: 14px;
        }

        /* Adjust bottom marquee when alert is present */
        .bottom-marquee.has-alert {
            /* Already at bottom: 0, alert sits above at bottom: 52px */
        }

        /* Adjust floating button when alert is present */
        .floating-listen.has-alert {
            bottom: 116px; /* 52px marquee + 44px alert + 20px padding */
        }

        .floating-listen.has-alert.visible {
            bottom: 116px;
        }

        /* Adjust footer padding when alert is present */
        body.has-weather-alert .site-footer {
            padding-bottom: 116px;
        }

        /* Add padding to footer so it's not hidden behind bottom marquee */
        .site-footer {
            padding-bottom: 72px;
        }

        /* When alert is present, increase footer padding */
        .bottom-marquee.has-alert ~ .site-footer,
        .alert-marquee ~ .bottom-marquee ~ * .site-footer {
            padding-bottom: 116px;
        }

        /* ================================================
           STICKY BOTTOM MARQUEE
           ================================================ */
        .bottom-marquee {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #1a1a1a;
            color: white;
            z-index: 800;
            overflow: hidden;
            height: 52px;
        }

        .bottom-marquee-track {
            display: flex;
            align-items: center;
            height: 100%;
            animation: bottom-scroll 60s linear infinite;
            white-space: nowrap;
            width: max-content;
        }

        .bottom-marquee-track:hover {
            animation-play-state: paused;
        }

        @keyframes bottom-scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 0 20px;
            color: white;
            text-decoration: none;
            transition: color 0.2s ease;
            position: relative;
        }

        .marquee-item:hover {
            color: var(--accent);
        }

        .marquee-date {
            font-size: 12px;
            font-weight: 700;
            color: #dc2626;
            text-transform: uppercase;
        }

        .marquee-title {
            font-size: 15px;
            font-weight: 500;
        }

        .marquee-separator {
            color: #444;
            padding: 0 12px;
            font-size: 16px;
        }

        /* Tooltip positioned via JS outside marquee */
        .marquee-tooltip-popup {
            position: fixed;
            background: #1a1a1a;
            color: #fff;
            padding: 12px 16px;
            border-radius: 8px;
            font-size: 13px;
            font-weight: 400;
            line-height: 1.5;
            width: 280px;
            max-width: 90vw;
            text-align: left;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            z-index: 10000;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.2s ease;
        }

        .marquee-tooltip-popup.visible {
            opacity: 1;
        }

        .marquee-tooltip-popup::after {
            content: '';
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            border: 8px solid transparent;
            border-top-color: #1a1a1a;
        }

        @media (max-width: 768px) {
            .marquee-tooltip-popup {
                display: none;
            }
        }

        .marquee-alert {
            color: #fbbf24;
            font-weight: 600;
            font-size: 15px;
            padding: 0 20px;
        }

        /* Add padding to footer so it's not hidden behind bottom marquee */
        .site-footer {
            padding-bottom: 72px;
        }

        @media (max-width: 768px) {
            .floating-listen {
                bottom: 64px;
                right: 16px;
                padding: 10px 16px;
                font-size: 11px;
            }

            .floating-listen.has-alert {
                bottom: 104px; /* 48px marquee + 40px alert + 16px */
            }

            .alert-marquee {
                bottom: 48px;
                height: 40px;
            }

            .alert-text {
                font-size: 12px;
            }

            .alert-cta {
                font-size: 10px;
            }

            .bottom-marquee {
                height: 48px;
            }

            .marquee-title {
                font-size: 14px;
            }

            .marquee-date {
                font-size: 11px;
            }

            .site-footer {
                padding-bottom: 64px;
            }

            .bottom-marquee.has-alert ~ .site-footer {
                padding-bottom: 104px;
            }
        }
