
/* FUNNEL SPECIFIC STYLES */
.funnel-hero {
    padding: 60px 24px 80px;
    background: radial-gradient(circle at top right, rgba(220, 38, 38, 0.15), transparent 60%),
                radial-gradient(circle at bottom left, rgba(251, 191, 36, 0.1), transparent 50%),
                var(--bg);
    border-bottom: 1px solid var(--line);
}
.funnel-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.funnel-content h1 {
    font-family: var(--display);
    font-size: clamp(48px, 6vw, 72px);
    line-height: 1;
    margin-bottom: 24px;
}
.funnel-content p {
    font-size: 18px;
    color: var(--ink-2);
    margin-bottom: 32px;
}

/* Live Dispatch Status Tracker */
.status-tracker {
    background: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(22, 163, 74, 0.3);
    padding: 16px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    box-shadow: 0 0 20px rgba(22, 163, 74, 0.1);
}
.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
    100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.status-text strong {
    display: block;
    color: var(--green);
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.status-text span {
    font-size: 14px;
    color: var(--ink-2);
}

/* Service Badges */
.badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 40px;
}
.service-badge {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 16px;
    border-radius: 6px;
    text-align: center;
    transition: transform 0.2s;
}
.service-badge:hover {
    transform: translateY(-2px);
    border-color: var(--red);
}
.badge-icon {
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}
.badge-text {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--ink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Booking Card widget */
.booking-card {
    background: var(--bg-2);
    border: 2px solid var(--line);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.booking-card h3 {
    font-family: var(--display);
    font-size: 32px;
    margin-bottom: 8px;
    color: var(--yellow);
}
.booking-card p {
    font-size: 14px;
    color: var(--ink-2);
    margin-bottom: 24px;
}
.booking-card .form-group {
    margin-bottom: 16px;
}
.booking-card input, .booking-card select {
    width: 100%;
    padding: 14px;
    background: var(--bg);
    border: 1px solid var(--line-2);
    color: var(--ink);
    border-radius: 6px;
    font-family: var(--sans);
    outline: none;
}
.booking-card input:focus, .booking-card select:focus {
    border-color: var(--red);
}
.booking-card .btn {
    width: 100%;
    padding: 16px;
    margin-top: 8px;
    font-size: 16px;
    text-align: center;
}

/* Pricing Grid */
.pricing-section {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}
.pricing-header h2 {
    font-family: var(--display);
    font-size: 48px;
    margin-bottom: 12px;
}
.pricing-header p {
    color: var(--ink-2);
    max-width: 600px;
    margin: 0 auto;
}
.pricing-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.pricing-tier {
    background: var(--bg-2);
    border: 1px solid var(--line);
    padding: 40px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.pricing-tier.featured {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.1);
}
.pricing-tier.featured::before {
    content: "POPULAR";
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--red);
    color: #fff;
    padding: 4px 40px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 0.1em;
}
.tier-name {
    font-family: var(--mono);
    font-size: 14px;
    color: var(--yellow);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.tier-price {
    font-family: var(--display);
    font-size: 56px;
    margin-bottom: 24px;
    color: var(--ink);
}
.tier-price span {
    font-size: 20px;
    color: var(--ink-3);
    font-family: var(--sans);
}
.tier-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}
.tier-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-2);
    display: flex;
    align-items: center;
    gap: 12px;
}
.tier-list li::before {
    content: "✓";
    color: var(--red);
    font-weight: bold;
}

/* Original Cards styling for city specific info */
.city-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 40px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.info-card {
    background: var(--bg-2);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--yellow);
}
.info-card h4 {
    font-family: var(--display);
    font-size: 24px;
    margin-bottom: 12px;
}
.info-card p {
    color: var(--ink-2);
    font-size: 15px;
    line-height: 1.6;
}

/* Sticky Bottom Mobile Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 12, 13, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--red);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999;
    box-shadow: 0 -10px 30px rgba(239, 68, 68, 0.2);
    display: none;
}
.sticky-bar-text {
    color: #fff;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.sticky-bar-text span {
    display: block;
    color: var(--yellow);
    font-size: 10px;
    margin-top: 4px;
}
.sticky-bar-btn {
    background: var(--red);
    color: #fff;
    padding: 12px 24px;
    border-radius: 99px;
    font-weight: 900;
    font-family: var(--mono);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 14px;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
    animation: pulse-red 2s infinite;
}
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@media (max-width: 768px) {
    .funnel-hero-inner {
        grid-template-columns: 1fr;
    }
    .pricing-table {
        grid-template-columns: 1fr;
    }
    .sticky-bottom-bar {
        display: flex;
    }
    body {
        padding-bottom: 80px; /* space for sticky bar */
    }
}
