/* Taxi Child Theme — Overrides */

:root {
    --accent: #f59e0b;
    --accent-hover: #d97706;
    --accent-light: #fffbeb;
    --accent-subtle: #fefcf3;
}

/* === Pricing Zones Section === */
.pricing-zones-section {
    padding: 80px 0;
    background: var(--surface);
}

.zone-table {
    max-width: 780px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.zone-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 16px 24px;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zone-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background var(--transition);
}

.zone-row:last-child {
    border-bottom: none;
}

.zone-row:hover {
    background: var(--accent-light);
}

.zone-route {
    font-weight: 600;
    color: var(--heading);
}

.zone-distance {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.zone-price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.125rem;
}

.zone-base-info {
    max-width: 780px;
    margin: 24px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.zone-base-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.zone-base-card strong {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.zone-base-card span {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent);
}

.zone-supplement {
    max-width: 780px;
    margin: 24px auto 0;
}

.zone-supplement h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    color: var(--heading);
}

.supplement-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px;
}

.supplement-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.9375rem;
}

.supplement-list li span:first-child {
    color: var(--text);
}

.supplement-list li span:last-child {
    font-weight: 700;
    color: var(--accent);
}

/* === Booking CTA Section === */
.booking-cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(180deg, var(--bg) 0%, var(--accent-subtle) 100%);
}

.booking-cta-section h2 {
    margin-bottom: 16px;
}

.booking-cta-section p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 500px;
    margin: 0 auto 32px;
}

.booking-phone {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    margin-bottom: 24px;
    line-height: 1.2;
}

.booking-phone a {
    color: var(--accent);
}

.booking-phone a:hover {
    color: var(--accent-hover);
}

.booking-form {
    max-width: 600px;
    margin: 32px auto 0;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: left;
}

.booking-form h3 {
    text-align: center;
    margin-bottom: 24px;
    color: var(--heading);
}

.booking-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.booking-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--heading);
}

.booking-field input {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9375rem;
    font-family: inherit;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.booking-field input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-light);
}

.booking-field.full-width {
    grid-column: 1 / -1;
}

/* === App Download Links === */
.booking-apps {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
}

.booking-apps a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--heading);
    color: #fff;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all var(--transition);
}

.booking-apps a:hover {
    background: var(--text);
    color: #fff;
    transform: translateY(-1px);
}

/* === Responsive for taxi-specific === */
@media (max-width: 768px) {
    .zone-table-header,
    .zone-row {
        grid-template-columns: 1.5fr 0.8fr 0.8fr;
        padding: 12px 16px;
        font-size: 0.875rem;
    }

    .zone-table-header {
        font-size: 0.75rem;
    }

    .booking-phone {
        font-size: 1.75rem;
    }

    .booking-fields {
        grid-template-columns: 1fr;
    }

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