/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Ensure all elements inherit the same font */
* {
    font-family: inherit;
}

/* Explicitly set font for all text elements */
h1, h2, h3, h4, h5, h6, p, span, div, a, button, input, textarea, label {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Color Variables */
:root {
    --primary-blue: #003DA5;
    --secondary-blue: #0047AB;
    --accent-yellow: #FFD700;
    --bright-yellow: #FFED4E;
    --white: #FFFFFF;
    --black: #000000;
    --dark-gray: #333333;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
}

/* Header + hero background */
.header-hero-bg {
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    overflow: hidden;
}

.header-hero-bg > .hero-road {
    position: absolute;
    left: 68%;
    bottom: 0;
    transform: translateX(-50%);
    width: 195%;
    max-width: 1200px;
    height: auto;
    z-index: 0;
    pointer-events: none;
    object-fit: contain;
    object-position: center bottom;
}

.header-hero-bg > .header,
.header-hero-bg > .hero {
    position: relative;
    z-index: 1;
}

.header-hero-bg > .header {
    background: transparent;
}

.header-hero-bg > .header .container,
.header-hero-bg > .header .nav {
    position: relative;
    z-index: 2;
}

/* Header */
.header {
    color: var(--white);
    padding: 0.35rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 2rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--white);
    flex-shrink: 0;
}

.site-brand:hover {
    color: var(--white);
    opacity: 0.92;
}

.site-logo {
    display: block;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.site-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.site-brand-name {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.site-brand-sub {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-yellow);
}

.hero-service-area {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
}

.nav ul,
.nav .nav-actions {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-wrap: wrap;
}

.nav-label-short {
    display: none;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav a:hover::before {
    left: 100%;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.nav .btn {
    margin: 0;
    padding: 6px 14px;
    font-size: 0.85rem;
}

.nav li {
    display: flex;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--white);
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--white);
    padding: 58px 0 24px;
    margin-top: 0;
    position: relative;
    overflow: visible;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: end;
    position: relative;
    z-index: 1;
}

.hero-content {
    order: 1;
    align-self: center;
    padding-bottom: 0.25rem;
}

.hero-image {
    order: 2;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 250px;
    padding: 0;
    margin: 0;
    overflow: visible;
    z-index: 2;
}

.hero-car-image {
    max-width: 400px;
    width: 68%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 0;
    background: transparent;
    margin-bottom: 2%;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.4));
}

.hero-car-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1), transparent);
    transition: left 1.5s ease;
    z-index: 999;
    pointer-events: none;
    border-radius: 0;
    opacity: 0.9;
}

.hero-car-image:hover::before {
    left: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.hero-vehicle {
    display: none;
}

.hero-need {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-content h2 {
    font-size: 2.75rem;
    color: var(--white);
    margin-bottom: 0.65rem;
    font-weight: 700;
    line-height: 1.15;
}

.hero-content p {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: var(--white);
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Glassmorphism Button Styles */
.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.btn-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-glass:hover::before {
    left: 100%;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn-glass:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Glassmorphism Primary Button */
.btn-primary {
    background: rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(255, 215, 0, 0.2);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Cards Section */
.cards-section {
    padding: 32px 0 16px;
    background: var(--light-gray);
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.cards-grid > .card {
    display: flex;
    flex-direction: column;
}

/* Compact home page action cards (roadside + booking) */
.cards-grid > .card .card-top {
    padding: 1.25rem 1.35rem 1rem;
    min-height: 0;
}

.cards-grid > .card .card-heading {
    font-size: 0.78rem;
    margin-bottom: 0.25rem;
}

.cards-grid > .card .card-title {
    font-size: 1.35rem;
    margin-bottom: 0.65rem;
    line-height: 1.15;
}

.cards-grid > .card .card-graphic {
    right: 0.75rem;
    top: 1.1rem;
    transform: none;
}

.cards-grid > .card .service-card-item {
    width: 88px;
    height: 58px;
    padding: 6px;
    font-size: 0.62rem;
}

.cards-grid > .card .card-chip {
    font-size: 0.85rem;
}

.cards-grid > .card .card-number {
    font-size: 0.68rem;
    letter-spacing: 0.5px;
}

.cards-grid > .card .card-label {
    font-size: 0.55rem;
}

.cards-grid > .card .card-top-desc,
.cards-grid > .card .booking-card-desc {
    font-size: 0.82rem;
    line-height: 1.4;
    margin: 0;
    max-width: calc(100% - 5.5rem);
}

.cards-grid > .card .card-bottom {
    padding: 1.1rem 1.35rem 1.25rem;
}

.cards-grid > .card .card-offer {
    font-size: 1.25rem;
    margin-bottom: 0.65rem;
    line-height: 1.15;
}

.cards-grid > .card .card-promo-btn {
    margin-top: 0;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
}

.cards-grid > .promotional-card .card-top,
.cards-grid > .booking-card-cta .card-top {
    padding-right: 6.25rem;
}

.booking-card-cta .card-top {
    padding-bottom: 1rem;
}

/* Promotional Card */
.promotional-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.promotional-card .card-top {
    flex: 1;
}

.card-top {
    background: var(--white);
    padding: 2rem;
    position: relative;
    min-height: 200px;
}

.card-heading {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.card-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.card-btn:hover::before {
    left: 100%;
}

.card-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.card-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

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

.card-graphic {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.service-cards {
    display: flex;
    gap: -10px;
}

.service-card-item {
    width: 120px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 8px;
    padding: 8px;
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
}

.card-2 {
    z-index: 1;
    margin-right: 0;
}

.card-chip {
    font-size: 1rem;
    align-self: flex-start;
}

.card-number {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.card-label {
    font-size: 0.6rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.card-bottom {
    background: var(--primary-blue);
    padding: 2rem;
    color: var(--white);
}

.card-offer {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.promo-highlight,
.offer-highlight {
    color: var(--accent-yellow);
}

.promo-text,
.offer-text {
    color: var(--white);
}

.card-description {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

.card-bottom .card-description + .card-description {
    margin-top: 0.75rem;
}

.card-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.card-bottom .card-promo-btn.btn-glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.card-bottom .card-promo-btn.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

/* Booking Card */
.booking-card {
    position: relative;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.booking-card-top {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.booking-card-top .card-heading {
    margin-bottom: 0.5rem;
}

.booking-card-top .card-title {
    margin-bottom: 0.65rem;
}

.booking-card-cta .card-top {
    position: relative;
    padding-right: 6.25rem;
}

.booking-card-cta .card-top .booking-card-desc {
    margin-top: 0.5rem;
}

.booking-card-interactive {
    margin-top: 0.65rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.cards-grid .booking-card-services-label {
    margin: 0 0 0.3rem;
    font-size: 0.68rem;
}

.cards-grid .booking-service-chips {
    gap: 0.3rem;
}

.cards-grid .booking-chip {
    padding: 0.28rem 0.5rem;
    font-size: 0.65rem;
}

.cards-grid .booking-chip-icon {
    font-size: 0.75rem;
}

.cards-grid .booking-section-label {
    font-size: 0.68rem;
    margin: 0;
}

.cards-grid .booking-day-tabs {
    gap: 0.3rem;
    padding-bottom: 0;
}

.cards-grid .booking-day-tab {
    min-width: 3.6rem;
    padding: 0.35rem 0.4rem;
    border-radius: 8px;
}

.cards-grid .booking-day-tab-main {
    font-size: 0.68rem;
}

.cards-grid .booking-day-tab-sub {
    font-size: 0.58rem;
    margin-top: 0;
}

.cards-grid .booking-time-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.3rem;
}

.cards-grid .booking-time-slot {
    padding: 0.4rem 0.25rem;
    border-radius: 8px;
}

.cards-grid .booking-time-value {
    font-size: 0.72rem;
}

.cards-grid .booking-time-cta {
    display: none;
}

.cards-grid .booking-no-slots {
    font-size: 0.75rem;
    padding: 0.5rem 0;
}

.cards-grid .booking-card-footer {
    padding-top: 0.35rem;
    margin-top: 0.15rem;
    border-top: 1px solid #eee;
    gap: 0.5rem;
}

.cards-grid .booking-footer-btn {
    padding: 0.45rem 0.6rem;
    font-size: 0.72rem;
}

.cards-grid .booking-footer-link {
    font-size: 0.65rem;
}

.booking-card-top .card-description {
    opacity: 1;
    color: #555;
}

.booking-card-bottom {
    padding: 2rem;
}

.booking-card-bottom .card-offer {
    margin-bottom: 1.25rem;
}

.booking-card-bottom .booking-start-btn {
    margin-top: 0;
}

.booking-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-section-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.booking-service-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.booking-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    border: 1.5px solid #e2e8f0;
    background: var(--white);
    color: var(--dark-gray);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.booking-chip-icon {
    font-size: 0.85rem;
    line-height: 1;
}

.booking-chip:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 61, 165, 0.04);
}

.booking-chip.is-active {
    border-color: var(--primary-blue);
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 61, 165, 0.25);
}

.booking-day-tabs {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding-bottom: 0.15rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.booking-day-tabs::-webkit-scrollbar {
    display: none;
}

.booking-day-tab {
    flex: 1 0 auto;
    min-width: 4.5rem;
    padding: 0.5rem 0.6rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    font-family: inherit;
}

.booking-day-tab-main {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.booking-day-tab-sub {
    display: block;
    font-size: 0.65rem;
    color: #888;
    margin-top: 0.1rem;
}

.booking-day-tab:hover {
    border-color: var(--primary-blue);
}

.booking-day-tab.is-active {
    border-color: var(--primary-blue);
    background: rgba(0, 61, 165, 0.08);
    box-shadow: 0 2px 8px rgba(0, 61, 165, 0.12);
}

.booking-day-tab.is-active .booking-day-tab-main {
    color: var(--primary-blue);
}

.booking-section-slots {
    flex: 1;
    min-height: 0;
}

.booking-time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.45rem;
}

.booking-time-slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.65rem 0.5rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.booking-time-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-gray);
}

.booking-time-cta {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(2px);
    transition: all 0.2s ease;
}

.booking-time-slot:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 61, 165, 0.06);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 61, 165, 0.15);
}

.booking-time-slot:hover .booking-time-cta {
    opacity: 1;
    transform: translateY(0);
}

.booking-no-slots {
    grid-column: 1 / -1;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    padding: 1rem 0.5rem;
    margin: 0;
    line-height: 1.45;
}

.booking-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.5rem;
    border-top: 1px solid #eee;
    margin-top: auto;
}

.booking-footer-btn {
    flex: 1;
    padding: 0.55rem 0.75rem;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.booking-footer-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 61, 165, 0.35);
}

.booking-footer-link {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    white-space: nowrap;
}

.booking-footer-link:hover {
    text-decoration: underline;
}

.booking-card-cta .booking-card-desc {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.55;
    color: #555;
    opacity: 1;
}

.booking-card-services-label {
    margin: 1rem 0 0.45rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.booking-card-steps {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 1rem 0 0;
    padding: 0;
}

.booking-card-steps li {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: rgba(0, 61, 165, 0.08);
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
}

.promotional-card .card-top {
    padding-right: 8.5rem;
}

.promotional-card .card-top .card-top-desc {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.55;
    color: #555;
    opacity: 1;
}

.booking-start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking-start-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.booking-start-btn:hover::before {
    left: 100%;
}

.booking-start-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.booking-start-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.booking-card-phone {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
}

/* Booking wizard — Flat Rate Auto theme (matches site) */
.booking-modal-overlay.wizard-open {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    align-items: stretch;
    justify-content: stretch;
    padding: 0;
}

.wizard-modal {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-height: 100%;
    min-height: 100dvh;
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
    background: transparent;
    color: var(--white);
    -webkit-font-smoothing: antialiased;
}

.booking-modal-overlay.wizard-open .wizard-modal {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    min-height: 100dvh;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.wiz-ios-nav {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 0.65rem 1rem;
    background: rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.wiz-ios-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 14px;
    border-radius: 25px;
    text-align: left;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.wiz-ios-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.wiz-ios-nav-btn:hover::before {
    left: 100%;
}

.wiz-ios-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.wiz-ios-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 0.1rem;
    font-weight: 400;
}

.wiz-ios-nav-back span {
    font-size: 1.35rem;
    line-height: 1;
    margin-top: -2px;
}

.wiz-ios-nav-close {
    width: 2.25rem;
    height: 2.25rem;
    min-width: 2.25rem;
    padding: 0;
    border-radius: 50%;
    justify-self: start;
}

.wiz-ios-nav-close span {
    display: block;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 400;
    margin-top: -2px;
}

.wiz-ios-nav-step {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    text-align: right;
    justify-self: end;
}

.wiz-ios-nav--step-only {
    grid-template-columns: 1fr;
}

.wiz-ios-nav--step-only .wiz-ios-nav-step {
    grid-column: 1;
}

.wiz-title-back-row {
    padding: 0 1rem 0.75rem;
    flex-shrink: 0;
}

.wiz-ios-large-title + .wiz-title-back-row {
    margin-top: -0.15rem;
}

.wiz-ios-progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.wiz-ios-progress-fill {
    height: 100%;
    background: var(--accent-yellow);
    border-radius: 0 2px 2px 0;
    transition: width 0.35s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.wiz-ios-large-title {
    padding: 0.5rem 1.25rem 0.75rem;
    flex-shrink: 0;
}

.wiz-ios-large-title h1 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.15;
}

.wiz-ios-large-title p {
    margin: 0.35rem 0 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.35;
}

.wizard-modal .wizard-content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 1rem 1rem !important;
    height: auto !important;
    max-width: none !important;
    -webkit-overflow-scrolling: touch;
}

.wiz-step-animate {
    animation: wizSlideIn 0.32s cubic-bezier(0.25, 0.1, 0.25, 1);
}

@keyframes wizSlideIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.wiz-error {
    display: none;
    background: rgba(255, 59, 48, 0.12);
    color: #ff3b30;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    margin: 0 0 0.75rem;
}

.wiz-ios-section {
    margin-bottom: 1.25rem;
}

.wiz-ios-section-header {
    margin: 0 0 0.45rem 1rem;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.wiz-ios-footnote {
    margin: 0.5rem 1rem 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

.wizard-content:has([data-step="services"]) {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
}

.wizard-content:has([data-step="services"]) #wizStepMount,
.wizard-content:has([data-step="services"]) #rsStepMount {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.wiz-step[data-step="services"] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.wiz-services-section {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1;
}

.wiz-services-count {
    margin: 0 0.15rem 0.4rem;
    font-size: clamp(0.75rem, 2.2vmin, 0.82rem);
    font-weight: 600;
    color: var(--accent-yellow);
    flex-shrink: 0;
}

.wiz-services-footnote {
    margin-top: 0.45rem;
    flex-shrink: 0;
    font-size: clamp(0.72rem, 2vmin, 0.82rem);
    color: rgba(255, 255, 255, 0.75);
}

.wiz-ios-ticket-pending {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.02em;
}

.wizard-modal .wiz-sync-status {
    color: rgba(255, 255, 255, 0.8);
}

.wizard-modal .rs-map-touch-hint {
    color: rgba(255, 255, 255, 0.7);
}

/* Roadside Help — reuses booking service card grid */
.rs-wizard .wiz-service-card-title .rs-price-tag {
    display: inline-block;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-blue);
    font-size: 0.78rem;
    font-weight: 700;
    vertical-align: middle;
    margin-left: 0.25rem;
}

.rs-location-box {
    padding: 1rem;
    background: #fff;
    border-radius: 12px;
    text-align: left;
}

.rs-coord-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.rs-coord-row:last-of-type {
    border-bottom: none;
}

.rs-coord-row span {
    color: #666;
}

.rs-coord-row strong {
    font-variant-numeric: tabular-nums;
    color: #111;
    word-break: break-all;
    text-align: right;
}

.rs-required {
    color: #c0392b;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.rs-location-required {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.45;
}

.wizard-modal .rs-location-required strong {
    color: var(--white);
    font-weight: 700;
}

.rs-location-coords {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
    color: #111;
    word-break: break-all;
}

.rs-location-coords.is-empty {
    color: #8e8e93;
    font-weight: 500;
}

.rs-location-accuracy {
    margin: 0.35rem 0 0;
    font-size: 0.8rem;
    color: #666;
}

.rs-maps-link {
    display: inline-block;
    margin-top: 0.65rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

.rs-locate-btn {
    margin-top: 0.75rem;
    width: 100%;
}

.wizard-modal .rs-pin-map-btn {
    width: 100%;
}

.rs-leaflet-map {
    height: min(320px, 42vh);
    min-height: 260px;
    z-index: 1;
}

.rs-leaflet-map.leaflet-container {
    font-family: inherit;
}

.rs-wizard .rs-leaflet-map .leaflet-control-zoom a {
    min-width: 44px;
    min-height: 44px;
    line-height: 44px;
    font-size: 1.25rem;
}

#rsDropoffEstimate {
    margin-top: 0.75rem;
}

.rs-map-touch-block {
    margin-top: 0.75rem;
}

.rs-map-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #e5e5ea;
    min-height: 260px;
    touch-action: pan-x pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
    isolation: isolate;
    transform: translateZ(0);
}

.rs-map-frame {
    display: block;
    width: 100%;
    height: min(320px, 42vh);
    min-height: 260px;
    border: 0;
    touch-action: pan-x pan-y pinch-zoom;
}

.rs-map-touch-hint {
    margin: 0.5rem 0 0;
    text-align: center;
    font-size: 0.82rem;
    color: #8e8e93;
}

.wizard-content.rs-map-scroll-lock {
    overflow: hidden !important;
    overscroll-behavior: contain;
}

.rs-map-placeholder {
    margin: 0.75rem 0 0;
    padding: 2rem 1rem;
    border-radius: 12px;
    background: #f2f2f7;
    border: 1px dashed rgba(0, 0, 0, 0.12);
    text-align: center;
    color: #666;
    font-size: 0.92rem;
}

.wiz-booking-map-wrap {
    margin: 0.75rem 0 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.wiz-booking-map {
    display: block;
    width: 100%;
    height: 180px;
    border: 0;
}

.rs-passenger-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    margin-top: 0.5rem;
}

.rs-passenger-btn {
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 12px;
    padding: 0.85rem 0.5rem;
    font: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    cursor: pointer;
}

.rs-passenger-btn.selected {
    border-color: var(--primary-blue);
    background: rgba(0, 61, 165, 0.1);
    color: var(--primary-blue);
}

.rs-passenger-btn-wide {
    grid-column: span 3;
}

.rs-fuel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.55rem;
    margin-top: 0.5rem;
}

.rs-fuel-btn {
    appearance: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    border-radius: 12px;
    padding: 0.85rem 0.65rem;
    font: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.rs-fuel-btn.selected {
    border-color: var(--primary-blue);
    background: rgba(0, 61, 165, 0.1);
}

.rs-fuel-btn-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
}

.rs-fuel-btn.selected .rs-fuel-btn-title {
    color: var(--primary-blue);
}

.rs-fuel-btn-desc {
    font-size: 0.82rem;
    color: #666;
}

.rs-address-label {
    display: block;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #3c3c43;
    letter-spacing: 0.01em;
}

.rs-dropoff-address-row {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.rs-dropoff-address-row .rs-address-input {
    flex: 1;
    min-width: 0;
    margin: 0;
}

.rs-dropoff-address-row .rs-pin-map-btn {
    flex-shrink: 0;
    width: auto;
    min-height: 48px;
    padding: 0.65rem 0.85rem;
    font-size: 0.88rem;
    white-space: nowrap;
}

.rs-address-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    min-height: 48px;
    padding: 0.75rem 0.85rem;
    border: 1.5px solid rgba(0, 0, 0, 0.18);
    border-radius: 10px;
    background: #fff;
    color: #111;
    font: inherit;
    font-size: 1rem;
    line-height: 1.35;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.06);
    -webkit-appearance: none;
    appearance: none;
}

.rs-address-input::placeholder {
    color: #8e8e93;
}

.rs-address-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 61, 165, 0.22);
}

.rs-pin-map-btn {
    margin-top: 0;
    margin-bottom: 0;
    width: 100%;
}

.rs-dropoff-reset-btn {
    width: 100%;
    margin-top: 0.55rem;
    background: #fff;
    color: var(--primary-blue);
    border: 1.5px solid rgba(0, 61, 165, 0.45);
    box-shadow: none;
}

.rs-dropoff-reset-btn:disabled,
.rs-pin-map-btn:disabled {
    opacity: 0.65;
}

.rs-lift-estimate {
    margin-top: 0.85rem;
    padding: 0.75rem 0.85rem;
    background: rgba(0, 61, 165, 0.08);
    border-radius: 10px;
    font-size: 0.92rem;
    color: #333;
}

.rs-lift-estimate .rs-coord-row {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

.rs-lift-estimate .rs-lift-total strong {
    color: var(--primary-blue);
    font-size: 1.05rem;
}

.rs-gas-out-of-range {
    color: #c0392b;
    background: rgba(192, 57, 43, 0.08) !important;
}

.rs-notes-field {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
    padding: 0.85rem 1rem !important;
    gap: 0.5rem;
    cursor: default;
    border-bottom: none !important;
}

.rs-notes-field .wiz-ios-field-label {
    flex: none !important;
    width: 100%;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
}

.rs-notes-field textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    flex: none;
    min-width: 0;
    min-height: 6.5rem;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    background: #f8f9fb;
    font: inherit;
    font-size: 1rem;
    line-height: 1.45;
    color: #111;
    text-align: left;
    resize: vertical;
    padding: 0.75rem 0.85rem;
    outline: none;
}

.rs-notes-field textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 61, 165, 0.15);
    background: #fff;
}

.rs-notes-field textarea::placeholder {
    color: #8e8e93;
    line-height: 1.45;
}

.wiz-service-grid-scroll {
    flex: 1;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 0.15rem 0.25rem;
    margin: 0 -0.15rem;
}

.wiz-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(0.5rem, 2vw, 0.75rem);
    width: 100%;
    align-content: start;
}

.wiz-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 0;
    padding: 0;
    min-width: 0;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: clamp(10px, 2vmin, 14px);
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    font-family: inherit;
    overflow: hidden;
    transition: border-color 0.15s, background 0.15s, box-shadow 0.15s, transform 0.12s;
    -webkit-tap-highlight-color: transparent;
}

.wiz-service-card:active {
    transform: scale(0.98);
}

.wiz-service-card.selected {
    border-color: var(--primary-blue);
    border-width: 2px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 61, 165, 0.22);
}

.wiz-service-card .wiz-ios-check {
    position: absolute;
    top: clamp(0.3rem, 1vmin, 0.45rem);
    right: clamp(0.3rem, 1vmin, 0.45rem);
    transform: none;
    z-index: 2;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
}

.wiz-service-card-media {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e5e5ea;
}

.wiz-service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.wiz-service-card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
    flex-shrink: 0;
    min-width: 0;
    padding: clamp(0.35rem, 1.2vmin, 0.55rem) clamp(0.35rem, 1.2vmin, 0.5rem) clamp(0.4rem, 1.4vmin, 0.65rem);
}

.wiz-service-card-title {
    font-size: clamp(0.72rem, 2.4vmin, 0.92rem);
    font-weight: 600;
    color: #000;
    line-height: 1.2;
}

.wiz-service-card-desc {
    font-size: clamp(0.62rem, 2vmin, 0.72rem);
    color: #8e8e93;
    line-height: 1.25;
}

@media (min-width: 540px) {
    .wiz-service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .wiz-service-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    /* Desktop: cards grow wide — cap image height so all services fit without scroll */
    .wizard-modal:has([data-step="services"]) .wiz-ios-large-title {
        padding: 0.35rem 2rem 0.45rem;
    }

    .wizard-modal:has([data-step="services"]) .wiz-ios-large-title h1 {
        font-size: 1.65rem;
    }

    .wizard-modal:has([data-step="services"]) .wiz-service-grid-scroll {
        overflow-y: hidden;
    }

    .wizard-modal:has([data-step="services"]) .wiz-service-grid {
        height: 100%;
        grid-auto-rows: 1fr;
        align-content: stretch;
    }

    .wizard-modal:has([data-step="services"]) .wiz-service-card {
        min-height: 0;
        height: 100%;
    }

    .wizard-modal:has([data-step="services"]) .wiz-service-card-media {
        aspect-ratio: auto;
        flex: 1 1 auto;
        min-height: 0;
    }
}

@media (max-height: 520px) {
    .wizard-modal:has([data-step="services"]) .wiz-ios-large-title {
        padding: 0.25rem 1.25rem 0.35rem;
    }

    .wizard-modal:has([data-step="services"]) .wiz-ios-large-title h1 {
        font-size: 1.35rem;
    }

    .wizard-modal:has([data-step="services"]) .wiz-ios-large-title p {
        display: none;
    }

    .wiz-services-footnote {
        display: none;
    }
}

.wiz-ios-group {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.04);
}

.wiz-step[data-step="location"] .wiz-ios-group,
.wiz-step[data-step="dropoff"] .wiz-ios-group {
    padding: 0.85rem;
    background: linear-gradient(135deg, rgba(0, 45, 120, 0.96), rgba(0, 71, 171, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.wiz-step[data-step="location"] .rs-locate-btn,
.wiz-step[data-step="dropoff"] .rs-pin-map-btn,
.wiz-step[data-step="dropoff"] .rs-locate-btn {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
    border-radius: 25px !important;
}

.wiz-step[data-step="location"] .rs-locate-btn:hover:not(:disabled),
.wiz-step[data-step="dropoff"] .rs-pin-map-btn:hover:not(:disabled),
.wiz-step[data-step="dropoff"] .rs-locate-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.wiz-step[data-step="location"] .rs-lift-estimate,
.wiz-step[data-step="dropoff"] .rs-lift-estimate {
    margin-top: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
}

.wiz-step[data-step="location"] .rs-lift-estimate .rs-coord-row,
.wiz-step[data-step="dropoff"] .rs-lift-estimate .rs-coord-row {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.wiz-step[data-step="location"] .rs-lift-estimate .rs-coord-row span,
.wiz-step[data-step="dropoff"] .rs-lift-estimate .rs-coord-row span {
    color: rgba(255, 255, 255, 0.75);
}

.wiz-step[data-step="location"] .rs-lift-estimate .rs-coord-row strong,
.wiz-step[data-step="dropoff"] .rs-lift-estimate .rs-coord-row strong {
    color: var(--white);
}

.wiz-step[data-step="location"] .rs-lift-estimate .rs-lift-total strong,
.wiz-step[data-step="dropoff"] .rs-lift-estimate .rs-lift-total strong {
    color: var(--accent-yellow);
    font-size: 1.05rem;
}

.wiz-step[data-step="dropoff"] .rs-dropoff-reset-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

.wiz-ios-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.85rem 1rem;
    border: none;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    border-bottom: 0.5px solid rgba(60, 60, 67, 0.12);
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}

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

.wiz-ios-row:active {
    background: #e5e5ea;
}

.wiz-ios-row-icon {
    font-size: 1.35rem;
    width: 2rem;
    text-align: center;
    flex-shrink: 0;
}

.wiz-ios-row-body {
    flex: 1;
    min-width: 0;
}

.wiz-ios-row-title {
    display: block;
    font-size: 1.05rem;
    font-weight: 400;
    color: #000;
    line-height: 1.25;
}

.wiz-ios-row-sub {
    display: block;
    font-size: 0.82rem;
    color: #8e8e93;
    margin-top: 0.1rem;
}

.wiz-ios-check {
    flex-shrink: 0;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    border: 2px solid #c7c7cc;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: transparent;
    transition: all 0.2s;
}

.wiz-ios-check.is-on {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
}

.wiz-ios-picker-row.is-active {
    background: rgba(0, 61, 165, 0.08);
}

.wiz-ios-field-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-bottom: 0.5px solid rgba(60, 60, 67, 0.12);
    cursor: text;
}

.wiz-ios-field-row-last {
    border-bottom: none;
}

.wiz-ios-field-label {
    flex: 0 0 5.5rem;
    font-size: 1.05rem;
    color: #000;
}

.wiz-ios-field-row input,
.wiz-ios-field-row select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.05rem;
    color: #000;
    text-align: right;
    font-family: inherit;
    min-width: 0;
    padding: 0.25rem 0;
}

.wiz-ios-field-row select {
    cursor: pointer;
    color: var(--primary-blue);
    -webkit-appearance: menulist;
    appearance: menulist;
    min-height: 44px;
    padding-right: 0.5rem;
}

.wiz-ios-field-row input:focus,
.wiz-ios-field-row select:focus {
    outline: none;
}

.wiz-ios-field-row input::placeholder {
    color: #c7c7cc;
}

.wiz-step[data-step="customer"] .wiz-ios-group {
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wiz-notes-group {
    margin-top: 0.85rem;
}

.wiz-step[data-step="customer"] .wiz-vehicle-picker-row {
    min-height: 3.5rem;
    padding: 0.9rem 1rem;
}

.wiz-step[data-step="customer"] .wiz-ios-field-label {
    font-weight: 600;
    color: #000;
}

.wiz-contact-ad {
    margin-top: 1rem;
    padding: 1.1rem 1.15rem;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid rgba(0, 61, 165, 0.2);
    box-shadow: 0 2px 10px rgba(0, 61, 165, 0.1);
}

.wiz-contact-ad-title {
    margin: 0 0 0.45rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #003da5;
    line-height: 1.25;
}

.wiz-contact-ad-text {
    margin: 0 0 0.65rem;
    font-size: 0.9rem;
    color: #3c3c43;
    line-height: 1.45;
}

.wiz-contact-ad-tag {
    margin: 0;
    padding-top: 0.65rem;
    border-top: 0.5px solid rgba(0, 61, 165, 0.15);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-align: center;
}

.wiz-step[data-step="customer-picker"] .wiz-vehicle-grid-wrap:not(.wiz-phone-dial-wrap) {
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Phone dial — ~2× size, scales down to fit any viewport */
.wizard-content:has([data-step="customer-picker"]) {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom)) !important;
}

.wizard-content:has([data-step="customer-picker"]) #wizStepMount,
.wizard-content:has([data-step="customer-picker"]) #rsStepMount {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.wiz-step[data-step="customer-picker"] {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    --dial-gap: clamp(0.4rem, 1.2vmin, 1.1rem);
    --dial-key: min(
        6.5rem,
        14vmin,
        calc((100dvh - 17rem - 3 * var(--dial-gap)) / 4),
        calc((100vw - 2.5rem - 2 * var(--dial-gap)) / 3)
    );
}

.wiz-step[data-step="customer-picker"] .wiz-ios-section {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
}

.wiz-step[data-step="customer-picker"] .wiz-phone-dial-wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vh, 1.35rem);
    gap: clamp(0.75rem, 2vh, 1.25rem);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.wiz-step[data-step="customer-picker"] .wiz-phone-dial-display {
    flex-shrink: 0;
    margin: 0 0 clamp(0.5rem, 2vh, 1.25rem);
    font-size: clamp(1.35rem, calc(var(--dial-key) * 0.38), 3.5rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.06em;
    min-height: clamp(1.75rem, calc(var(--dial-key) * 0.45), 3rem);
    text-align: center;
    line-height: 1.2;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.wiz-step[data-step="customer-picker"] .wiz-phone-dial-display.is-empty {
    color: rgba(255, 255, 255, 0.55);
    font-size: clamp(1rem, calc(var(--dial-key) * 0.28), 2.2rem);
    font-weight: 500;
    text-shadow: none;
}

.wiz-step[data-step="customer-picker"] .wiz-phone-dial-grid {
    display: grid;
    grid-template-columns: repeat(3, var(--dial-key));
    grid-template-rows: repeat(4, var(--dial-key));
    gap: var(--dial-gap);
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
}

.wiz-step[data-step="customer-picker"] .wiz-dial-key {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--dial-key);
    height: var(--dial-key);
    min-height: 0;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: clamp(14px, calc(var(--dial-key) * 0.2), 24px);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--white);
    font-size: clamp(1.5rem, calc(var(--dial-key) * 0.42), 2.9rem);
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: background 0.15s, transform 0.1s, border-color 0.15s, box-shadow 0.15s;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    position: relative;
    overflow: hidden;
}

.wiz-step[data-step="customer-picker"] .wiz-dial-key:active:not(.wiz-dial-key--spacer) {
    background: rgba(255, 255, 255, 0.28);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(0.96);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.wiz-step[data-step="customer-picker"] .wiz-dial-key--delete {
    font-size: clamp(1.25rem, calc(var(--dial-key) * 0.36), 2.5rem);
    color: var(--accent-yellow);
    font-weight: 700;
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.35);
}

.wiz-step[data-step="customer-picker"] .wiz-dial-key--delete:active {
    background: rgba(255, 215, 0, 0.28);
}

.wiz-step[data-step="customer-picker"] .wiz-dial-key--spacer {
    background: transparent;
    pointer-events: none;
}

.wiz-step[data-step="customer-picker"] .wiz-phone-dial-confirm {
    flex-shrink: 0;
    width: 100%;
    max-width: calc(3 * var(--dial-key) + 2 * var(--dial-gap));
    margin: clamp(0.25rem, 1vh, 0.5rem) auto 0;
    padding: clamp(0.85rem, 2vh, 1rem) 1.25rem;
    font-size: clamp(1rem, calc(var(--dial-key) * 0.22), 1.05rem);
}

.wiz-step[data-step="customer-picker"] .wiz-phone-dial-confirm:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.wiz-step[data-step="customer-picker"] .wiz-phone-dial-confirm:active:not(:disabled) {
    transform: scale(0.98);
}

@media (min-width: 768px) {
    .wiz-step[data-step="customer-picker"] {
        --dial-key: min(
            6.5rem,
            11vmin,
            calc((100dvh - 17.5rem - 3 * var(--dial-gap)) / 4),
            calc((min(100vw, 720px) - 4rem - 2 * var(--dial-gap)) / 3)
        );
    }
}

.wiz-step[data-step="vehicle"] .wiz-ios-group {
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wiz-step[data-step="vehicle"] .wiz-vehicle-picker-row {
    min-height: 3.5rem;
    padding: 0.9rem 1rem;
}

.wiz-step[data-step="vehicle"] .wiz-ios-field-label {
    font-weight: 600;
    color: #000;
}

.wiz-vehicle-thanks {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 61, 165, 0.08), rgba(0, 122, 255, 0.12));
    border: 1.5px solid rgba(0, 61, 165, 0.18);
    box-shadow: 0 2px 8px rgba(0, 61, 165, 0.08);
    text-align: center;
}

.wiz-vehicle-thanks p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #003da5;
    line-height: 1.45;
}

.wiz-vehicle-picker-row {
    width: 100%;
    border: none;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: background 0.15s;
    -webkit-tap-highlight-color: transparent;
}

.wiz-vehicle-picker-row:active:not(.is-disabled) {
    background: #e5e5ea;
}

.wiz-vehicle-picker-row.is-disabled {
    opacity: 0.45;
    cursor: default;
}

.wiz-vehicle-value {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    text-align: right;
    min-width: 0;
}

.wiz-vehicle-value.is-placeholder {
    color: #1c1c1e;
    font-weight: 500;
}

.wiz-vehicle-chevron {
    flex-shrink: 0;
    color: #000;
    font-size: 1.35rem;
    line-height: 1;
    margin-left: 0.25rem;
    opacity: 0.55;
}

.wiz-step[data-step="vehicle-picker"] .wiz-vehicle-grid-wrap {
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wiz-vehicle-grid-wrap {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.04);
    padding: 0.85rem;
}

.wiz-step[data-step="customer-picker"] .wiz-vehicle-grid-wrap.wiz-phone-dial-wrap {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    overflow: visible;
}

.wiz-vehicle-grid-wrap--years {
    padding: 0.75rem 0.85rem 0.85rem;
}

.wiz-year-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0 0.15rem;
}

.wiz-year-range {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
}

.wiz-year-nav-btn {
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.wiz-year-nav-btn:active:not(.is-disabled) {
    background: #e5e5ea;
}

.wiz-year-nav-btn.is-disabled {
    opacity: 0.35;
    cursor: default;
}

.wiz-year-hint {
    margin: 0.75rem 0.15rem 0;
    font-size: 0.78rem;
    color: #8e8e93;
    text-align: center;
    line-height: 1.35;
}

.wiz-vehicle-grid {
    display: grid;
    gap: 0.45rem;
}

.wiz-vehicle-grid--years {
    grid-template-columns: repeat(4, 1fr);
}

.wiz-vehicle-grid--makes,
.wiz-vehicle-grid--models {
    grid-template-columns: repeat(3, 1fr);
}

.wiz-vehicle-grid-item {
    border: 1.5px solid rgba(0, 0, 0, 0.14);
    border-radius: 10px;
    background: #fff;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    padding: 0.8rem 0.4rem;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s, border-color 0.15s;
    -webkit-tap-highlight-color: transparent;
    min-height: 2.85rem;
}

.wiz-vehicle-grid-item:active {
    background: #f2f2f7;
}

.wiz-vehicle-grid-item.is-selected {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 61, 165, 0.35);
}

@media (max-width: 480px) {
    .wiz-vehicle-grid--years {
        grid-template-columns: repeat(3, 1fr);
    }

    .wiz-vehicle-grid--makes,
    .wiz-vehicle-grid--models {
        grid-template-columns: repeat(2, 1fr);
    }
}

.wiz-google-box {
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.wiz-ios-google-text {
    margin: 0 0 0.65rem;
    font-size: 0.9rem;
    color: #3c3c43;
    line-height: 1.4;
}

.wiz-ios-link-btn {
    background: none;
    border: none;
    color: var(--primary-blue);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    padding: 0.25rem;
}

.wiz-ios-loading,
.wiz-ios-empty {
    padding: 1.25rem 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: #8e8e93;
    margin: 0;
}

.wiz-cal-wrap {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.04);
}

.wiz-cal {
    padding: 0.85rem 0.75rem 1rem;
}

.wiz-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0 0.25rem;
}

.wiz-cal-month {
    font-size: 1.05rem;
    font-weight: 600;
    color: #000;
}

.wiz-cal-nav {
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    border-radius: 50%;
    background: rgba(0, 61, 165, 0.08);
    color: var(--primary-blue);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.wiz-cal-nav:active:not(.is-disabled) {
    background: #e5e5ea;
}

.wiz-cal-nav.is-disabled {
    opacity: 0.35;
    cursor: default;
}

.wiz-cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    margin-bottom: 0.35rem;
    padding: 0 0.15rem;
}

.wiz-cal-weekdays span {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #8e8e93;
}

.wiz-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.35rem;
    padding: 0 0.15rem;
}

.wiz-cal-day {
    aspect-ratio: 1;
    min-height: 2.5rem;
    border: none;
    border-radius: 10px;
    background: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    color: #000;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.wiz-cal-day.is-available {
    background: #f2f2f7;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.wiz-cal-day.is-available:active {
    background: #e5e5ea;
}

.wiz-cal-day.is-available.is-selected {
    background: var(--primary-blue);
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 61, 165, 0.35);
}

.wiz-cal-day.is-available.is-today:not(.is-selected) {
    box-shadow: inset 0 0 0 2px var(--primary-blue);
}

.wiz-cal-day.is-spacer {
    visibility: hidden;
    pointer-events: none;
    background: transparent;
}

.wiz-cal-day.is-unavailable,
.wiz-cal-day.is-muted {
    background: #f2f2f7;
    color: #c7c7cc;
    cursor: default;
    pointer-events: none;
}

.wiz-cal-day.is-unavailable {
    text-decoration: line-through;
    text-decoration-color: rgba(142, 142, 147, 0.55);
}

.wiz-cal-legend {
    margin: 0.85rem 0.25rem 0;
    font-size: 0.78rem;
    color: #8e8e93;
    text-align: center;
    line-height: 1.35;
}

.wiz-ios-ticket {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.wiz-ios-ticket-top {
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: #fff;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.wiz-ios-ticket-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.85;
}

.wiz-ios-ticket-id {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.wiz-ios-ticket-rows {
    padding: 0.25rem 0;
}

.wiz-ios-ticket-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-bottom: 0.5px solid rgba(60, 60, 67, 0.12);
    font-size: 0.95rem;
}

.wiz-ios-ticket-row:last-child {
    border-bottom: none;
}

.wiz-ios-ticket-row span {
    color: #8e8e93;
    flex-shrink: 0;
}

.wiz-ios-ticket-row strong {
    color: #000;
    font-weight: 500;
    text-align: right;
}

.wiz-sync-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
    color: #8e8e93;
    line-height: 1.45;
    padding: 0 0.5rem;
}

.wiz-sync-status.success {
    color: #34c759;
}

.wiz-sync-status.error {
    color: #ff3b30;
}

.wiz-ios-footer {
    padding: 0.85rem 1rem max(1rem, env(safe-area-inset-bottom));
    background: rgba(0, 28, 74, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 2px solid rgba(255, 215, 0, 0.5);
    box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
    position: sticky;
    bottom: 0;
    z-index: 30;
}

.wizard-modal .wizard-footer {
    margin-top: auto;
}

.wiz-ios-cta {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.12s, background 0.3s, box-shadow 0.3s;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.wizard-modal .wizard-footer .wiz-ios-cta {
    min-height: 3.25rem;
    padding: 0.95rem 1.25rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.wiz-ios-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.wiz-ios-cta:hover::before {
    left: 100%;
}

.wiz-ios-cta:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.wiz-ios-cta:active:not(:disabled) {
    transform: scale(0.98);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.wiz-ios-cta:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}

/* Inline CTAs (location share, etc.) — not the sticky footer */
.wizard-modal .wiz-ios-cta:not(.wiz-ios-cta-primary) {
    min-height: auto;
}

.setup-test-results {
    list-style: none;
    padding: 0;
    margin: 0;
}

.setup-test-row {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.65rem 0;
    border-bottom: 0.5px solid #e5e5ea;
    font-size: 0.95rem;
}

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

.setup-test-ok strong {
    color: #198754;
}

.setup-test-fail strong {
    color: #ff3b30;
}

.setup-test-detail {
    font-size: 0.85rem;
    color: #666;
    padding-left: 1.35rem;
}

@media (min-width: 768px) {
    .wiz-ios-large-title h1 {
        font-size: 2.25rem;
    }

    .wiz-ios-large-title {
        padding: 0.75rem 2rem 1rem;
    }

    .wizard-modal .wizard-content {
        padding: 0 2rem 1.5rem !important;
    }

    .wiz-ios-nav {
        padding: 0.75rem 2rem;
    }

    .wiz-ios-footer {
        padding: 0.85rem 1.25rem max(1rem, env(safe-area-inset-bottom));
    }

    .wizard-modal .wizard-footer .wiz-ios-cta {
        min-height: 3.5rem;
        font-size: 1.1rem;
    }
}

/* New Promotional Section */
.new-promotional-section {
    padding: 0 0 80px 0;
    background: var(--light-gray);
}

.promotional-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-card {
    width: 100%;
}

.bottom-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.promotional-card-new {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-top-section {
    background: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.promotional-card-new .card-top-photo {
    padding: 0;
    display: block;
    background: #e8e8ed;
}

.promo-card-photo {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center 40%;
}

.card-content {
    flex: 1;
}

.apply-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.main-headline {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.book-now-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.book-now-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.book-now-btn:hover::before {
    left: 100%;
}

.book-now-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--white);
}

.learn-more-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.learn-more-link:hover {
    text-decoration: underline;
}

.service-indicator-box {
    background: var(--primary-blue);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    min-width: 200px;
    box-shadow: 0 4px 16px rgba(0, 61, 165, 0.2);
}

.service-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.wrench-icon {
    font-size: 1.5rem;
    color: var(--white);
}

.service-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.availability-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.availability-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.availability-text {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--white);
}

.card-bottom-section {
    background: var(--primary-blue);
    padding: 2rem;
    color: var(--white);
}

.promo-headline {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* promo-highlight / promo-text defined above */

.promo-description {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Services Cards Section */
.services-cards-section {
    padding: 0 0 80px 0;
    background: var(--light-gray);
}

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

.services-title {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 400;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

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

.service-image {
    height: 200px;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
}

.product-visual {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.oil-change-visual {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="35" y="35" width="30" height="30" fill="%23FFD700" rx="3"/><circle cx="50" cy="50" r="3" fill="%23333"/></svg>');
}

.battery-visual {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="30" y="30" width="40" height="40" fill="%23666" rx="3"/><rect x="35" y="35" width="30" height="30" fill="%23999" rx="2"/><rect x="45" y="25" width="10" height="8" fill="%23666" rx="1"/></svg>');
}

.tire-visual {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="20" fill="%23666" stroke="%23999" stroke-width="2"/><circle cx="50" cy="50" r="12" fill="none" stroke="%23999" stroke-width="1"/><circle cx="50" cy="50" r="6" fill="%23999"/></svg>');
}

.favorite-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.favorite-icon:hover {
    transform: scale(1.1);
}

.discount-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #dc3545;
    color: var(--white);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
}

.service-info {
    padding: 2rem;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header {
        padding: max(0.25rem, env(safe-area-inset-top)) 0 0;
    }
    
    .header .container {
        padding: 0.5rem 1rem;
        justify-content: center;
        position: relative;
        width: 100%;
        max-width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 0;
    }

    .site-brand {
        align-self: center;
        gap: 0.5rem;
    }

    .site-logo {
        width: 34px;
        height: 34px;
    }

    .site-brand-name {
        font-size: 0.95rem;
    }

    .site-brand-sub {
        font-size: 0.65rem;
    }

    /* Header nav moves to bottom dock on mobile */
    .header .nav {
        display: none !important;
    }

    .site-brand {
        align-self: center;
    }

    .header-hero-bg > .hero {
        padding-top: 3rem !important;
    }

    .hero {
        padding: 3rem 0 0 !important;
        min-height: auto !important;
        display: block !important;
        margin-top: 0 !important;
    }

    .hero::after {
        display: none;
    }

    .hero-image {
        min-height: 190px;
        padding-bottom: 0;
    }

    .header-hero-bg > .hero-road {
        left: 50%;
        bottom: 0;
        width: 220%;
        max-width: 620px;
    }

    .hero-car-image {
        max-width: 260px;
        width: 62%;
        margin-bottom: 1%;
    }
    
    .hero .container {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 0;
        padding: 12px 1rem 0 1rem;
    }
    
    /* Mobile Layout Order: Car Image → Hero Text */
    .hero-content {
        order: 2;
        padding: 0;
        margin-top: -5px;
        text-align: center;
    }
    
    .hero-image {
        order: 1;
        margin: 0;
        padding: 0;
        margin-bottom: -10px;
    }
    
    .hero-car-image {
        max-width: 100%;
        height: auto;
        width: 100%;
        max-width: 400px;
        margin: 0 0 2% 0;
        display: block;
        position: relative;
        overflow: hidden;
        border-radius: 0;
    }
    
    .hero-car-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 1), transparent);
        transition: left 1.5s ease;
        z-index: 999;
        pointer-events: none;
        border-radius: 0;
        opacity: 0.9;
    }
    
    .hero-car-image:hover::before {
        left: 100%;
    }
    
    
    /* Hero text optimization */
    .hero-need {
        margin: 0;
        margin-top: -10px;
        font-size: 1.2rem;
        font-weight: 400;
        color: var(--white);
        opacity: 0.9;
    }
    
    .hero-content h2 {
        margin: 0;
        font-size: 1.85rem;
        line-height: 1.15;
        color: var(--white);
    }
    
    .hero-content p {
        margin: 0.35rem 0 0;
        font-size: 0.92rem;
        color: var(--white);
        opacity: 0.9;
        line-height: 1.4;
    }
    
    /* CTA buttons optimization */
    .cta-buttons {
        display: flex;
        flex-direction: row;
        gap: 0.8rem;
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
    }
    
    .mobile-cta {
        margin-top: 2rem;
        text-align: center;
    }
    
    .mobile-cta .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 8px;
        background: var(--primary-blue);
        border: 2px solid var(--accent-yellow);
        color: var(--white);
    }
    
    .mobile-cta .btn:hover {
        background: var(--primary-blue);
        color: var(--white);
    }
    
    /* Cards Section Mobile */
    .cards-section {
        padding: 28px 0 12px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .cards-grid > .card .card-top,
    .card-top {
        padding: 1.1rem 1.15rem 0.9rem;
        min-height: auto;
    }
    
    .cards-grid > .card .card-title,
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-graphic {
        position: static;
        transform: none;
        margin-top: 0.5rem;
        display: flex;
        justify-content: flex-start;
    }

    .cards-grid > .promotional-card .card-top,
    .cards-grid > .booking-card-cta .card-top,
    .promotional-card .card-top,
    .booking-card-cta .card-top {
        padding-right: 1.15rem;
    }
    
    .service-cards {
        justify-content: flex-start;
    }
    
    .cards-grid > .card .card-bottom,
    .card-bottom {
        padding: 1rem 1.15rem 1.1rem;
    }
    
    .cards-grid > .card .card-offer,
    .card-offer {
        font-size: 1.15rem;
    }

    .promotional-card .card-top .card-top-desc,
    .booking-card-cta .booking-card-desc {
        font-size: 1rem;
    }

    .promotional-card .card-top {
        padding-right: 1.5rem;
    }

    .booking-card-cta .card-top {
        padding-right: 1.5rem;
    }
    
    .promotional-card .card-top {
        flex: 0 1 auto;
    }

    .booking-card-bottom {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .booking-time-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-card-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .booking-footer-link {
        text-align: center;
    }
    
    /* Services Cards Mobile */
    .services-cards-section {
        padding: 40px 0;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-grid {
        padding: 0 1rem;
    }
    
    .bottom-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-image {
        height: 120px;
    }
    
    .service-name {
        font-size: 0.8rem;
        height: 2rem;
    }
    
    .current-price {
        font-size: 1rem;
    }
    
    .original-price {
        font-size: 0.8rem;
    }
    
    /* New Promotional Section Mobile */
    .new-promotional-section {
        padding: 40px 0;
    }
    
    .promotional-cards-grid {
        padding: 0 1rem;
    }
    
    .bottom-cards-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-top-section {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .promotional-card-new .card-top-photo {
        gap: 0;
    }

    .promo-card-photo {
        height: 220px;
    }
    
    .service-indicator-box {
        align-self: center;
    }
    
    .main-headline {
        font-size: 1.5rem;
    }
    
    .promo-headline {
        font-size: 1.5rem;
    }
}

/* Desktop navigation styles */
@media (min-width: 769px) {
    .nav {
        display: flex !important;
        position: static;
        top: auto;
        right: auto;
        z-index: auto;
    }
    
    .nav ul,
    .nav .nav-actions {
        display: flex;
        gap: 2rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav li {
        display: flex;
        align-items: center;
    }
    
    .nav a, .nav button {
        padding: 8px 16px;
        font-size: 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        color: var(--white);
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .nav a::before, .nav button::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }
    
    .nav a:hover, .nav button:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        color: var(--white);
    }
    
    .nav a:hover::before, .nav button:hover::before {
        left: 100%;
    }
    
    .mobile-cta {
        display: none;
    }
}

/* Homepage — large text everywhere except footer */
.page-home .header-hero-bg .nav .btn,
.page-home .header-hero-bg .nav a,
.page-home .header-hero-bg .nav button {
    font-size: 1.1rem;
}

.page-home .hero-content p {
    font-size: 1.35rem;
    line-height: 1.45;
}

.page-home .cards-section .card-heading {
    font-size: 0.78rem;
    font-weight: 500;
}

.page-home .new-promotional-section .apply-text {
    font-size: 1.35rem;
    font-weight: 600;
}

.page-home .cards-section .service-card-item {
    width: 88px;
    height: 58px;
    padding: 6px;
    font-size: 0.62rem;
}

.page-home .cards-section .card-chip {
    font-size: 0.85rem;
}

.page-home .cards-section .card-number {
    font-size: 0.68rem;
}

.page-home .cards-section .card-label {
    font-size: 0.55rem;
    opacity: 0.9;
}

.page-home .cards-section .card-promo-btn,
.page-home .cards-section .booking-footer-btn {
    font-size: 0.9rem;
}

.page-home .new-promotional-section .service-text {
    font-size: 1.15rem;
}

.page-home .new-promotional-section .availability-text {
    font-size: 1.05rem;
}

.page-home .new-promotional-section .promo-description {
    font-size: 1.35rem;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .page-home .hero-content p {
        font-size: 1.2rem;
    }

    .page-home .header-hero-bg .nav a,
    .page-home .header-hero-bg .nav button {
        font-size: 0.72rem;
    }

    .page-home .cards-section .card-heading {
        font-size: 0.9rem;
    }

    .page-home .new-promotional-section .apply-text {
        font-size: 1.2rem;
    }

    .page-home .new-promotional-section .promo-description {
        font-size: 1.2rem;
    }
}

@media (min-width: 769px) {
    .page-home .nav a,
    .page-home .nav button {
        font-size: 1.1rem;
    }
}

/* Footer */
.trust-section {
    background: #f4f7fb;
    padding: 2.75rem 0 3rem;
    border-top: 1px solid rgba(0, 61, 165, 0.08);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.trust-item.trust-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.5rem 1.35rem 1.45rem;
    text-align: left;
    box-shadow: 0 4px 24px rgba(0, 61, 165, 0.08);
    border: 1px solid rgba(0, 61, 165, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.trust-item.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 61, 165, 0.14);
}

.trust-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 14px;
    margin-bottom: 1rem;
    flex-shrink: 0;
    color: #fff;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.trust-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 48%);
    pointer-events: none;
}

.trust-icon svg {
    position: relative;
    z-index: 1;
    width: 1.65rem;
    height: 1.65rem;
    display: block;
}

.trust-icon--location {
    background: linear-gradient(180deg, #5ac8fa 0%, #007aff 100%);
}

.trust-icon--pricing {
    background: linear-gradient(180deg, #63e085 0%, #34c759 100%);
}

.trust-icon--roadside {
    background: linear-gradient(180deg, #ffb340 0%, #ff9500 100%);
}

.trust-item h3 {
    margin: 0 0 0.55rem;
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.25;
}

.trust-item p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #4a5568;
    flex: 1;
}

.privacy-section {
    background: var(--white);
    padding: 2.5rem 0 2.75rem;
    border-top: 1px solid #e8edf3;
}

.privacy-inner {
    max-width: 720px;
}

.privacy-title {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.privacy-text {
    margin: 0 0 0.85rem;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #4a5568;
}

.privacy-text:last-child {
    margin-bottom: 0;
}

.privacy-text a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

.privacy-text a:hover {
    text-decoration: underline;
}

/* San Antonio local SEO section */
.hero-seo-line {
    margin: 0.35rem 0 0.65rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
}

.local-seo-section {
    background: var(--white);
    padding: 2.75rem 0 3rem;
    border-top: 1px solid #e8edf3;
}

.local-seo-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.local-seo-title {
    margin: 0 0 0.75rem;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.25;
}

.local-seo-lead {
    margin: 0 0 2rem;
    max-width: 720px;
    font-size: 1rem;
    line-height: 1.65;
    color: #4a5568;
}

.local-seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.local-seo-block {
    background: #f4f7fb;
    border: 1px solid rgba(0, 61, 165, 0.1);
    border-radius: 14px;
    padding: 1.25rem 1.2rem;
}

.local-seo-block h3 {
    margin: 0 0 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.local-seo-block ul {
    margin: 0;
    padding-left: 1.15rem;
    color: #4a5568;
    font-size: 0.92rem;
    line-height: 1.65;
}

.local-seo-block li {
    margin-bottom: 0.35rem;
}

.local-seo-block p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.65;
    color: #4a5568;
}

.local-seo-faq-title {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.local-seo-faq-item {
    border: 1px solid #e8edf3;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.65rem;
    background: #fafbfd;
}

.local-seo-faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: #1a2332;
    list-style: none;
}

.local-seo-faq-item summary::-webkit-details-marker {
    display: none;
}

.local-seo-faq-item p {
    margin: 0.65rem 0 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #4a5568;
}

.local-seo-faq-item a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 768px) {
    .local-seo-section {
        padding: 2rem 0 2.25rem;
    }

    .local-seo-title {
        font-size: 1.35rem;
    }

    .local-seo-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-seo-line {
        font-size: 0.95rem;
    }
}

.footer-service-area {
    margin: 0.85rem 0 0;
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
}

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

.footer-bar a:hover {
    color: var(--accent-yellow);
}

@media (max-width: 768px) {
    .trust-section {
        padding: 2rem 0 2.25rem;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.25rem;
    }

    .trust-item.trust-card {
        padding: 1.25rem 1.15rem 1.2rem;
    }

    .trust-icon {
        width: 3rem;
        height: 3rem;
        border-radius: 13px;
        margin-bottom: 0.85rem;
    }

    .trust-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .trust-item h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .trust-item p {
        font-size: 0.88rem;
    }

    .privacy-section {
        padding: 2rem 0;
    }

    .privacy-title {
        font-size: 1.2rem;
    }
}

.footer-section {
    background: linear-gradient(180deg, #0a2d6e 0%, #062052 100%);
    color: rgba(255, 255, 255, 0.92);
    padding: 0;
    border-top: none;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    padding: 3rem 0 2.5rem;
    align-items: start;
}

.footer-logo {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--white);
    line-height: 1.15;
}

.footer-service-line {
    margin: 0.15rem 0 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-yellow);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.footer-tagline {
    margin: 0;
    max-width: 340px;
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
}

.footer-heading {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-list li {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.footer-contact-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.footer-contact-list a,
.footer-contact-value {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    line-height: 1.35;
}

.footer-contact-list a:hover {
    color: var(--accent-yellow);
}

.footer-cta-group {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: inherit;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    border: 1px solid transparent;
}

.footer-cta-primary {
    background: var(--accent-yellow);
    color: #1a1a1a;
    border-color: var(--accent-yellow);
}

.footer-cta-primary:hover {
    background: #ffe44d;
    border-color: #ffe44d;
}

.footer-cta-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}

.footer-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.55);
}

.footer-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.15rem 0 1.35rem;
}

.footer-bar p {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    text-align: center;
}

/* Legacy footer classes (setup pages) */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: #424245;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.footer-content-simple {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 2rem 3rem;
}

.footer-brand {
    max-width: 420px;
}

.footer-name {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
    color: #1d1d1f;
}

.footer-tagline {
    margin: 0;
    font-size: 0.85rem;
    color: #6e6e73;
    line-height: 1.45;
}

.footer-bottom-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #6e6e73;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #d2d2d7;
    margin-top: 2rem;
    padding-top: 1rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left p {
    color: #424245;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-left a {
    color: var(--primary-blue);
    text-decoration: none;
}

.footer-bottom-left a:hover {
    text-decoration: underline;
}

.footer-bottom-right {
    text-align: center;
}

.footer-bottom-right p {
    color: #424245;
    font-size: 0.85rem;
    margin: 0 0 0.5rem 0;
}

.footer-legal-links {
    font-size: 0.8rem;
}

.footer-legal-links a {
    color: #424245;
    text-decoration: none;
    margin: 0 0.2rem;
}

.footer-legal-links a:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Footer — mobile */
@media (max-width: 768px) {
    .footer-inner {
        padding: 0 1.25rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.25rem 0 1.75rem;
    }

    .footer-tagline {
        max-width: none;
    }

    .footer-cta-group {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-cta {
        flex: 1 1 calc(50% - 0.35rem);
        min-width: 140px;
    }

    .footer-cta-secondary {
        flex: 1 1 100%;
    }

    .footer-content,
    .footer-content-simple {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0 1rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        justify-content: center;
        padding: 0 1rem;
    }
}

/* ===== Mobile bottom dock (iOS / Android tab bar) ===== */
.mobile-dock {
    display: none;
}

@media (max-width: 768px) {
    body.has-mobile-dock {
        padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    }

    body.has-mobile-dock .footer-section {
        padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
    }

    body:has(.booking-modal-overlay.wizard-open) .mobile-dock {
        display: none !important;
    }

    #deploy-health-banner {
        bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
    }

    .mobile-dock {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9990;
        align-items: stretch;
        justify-content: space-around;
        gap: 0;
        margin: 0;
        padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-top: 1px solid rgba(0, 61, 165, 0.12);
        box-shadow: 0 -4px 24px rgba(0, 30, 80, 0.12);
    }

    .mobile-dock-item {
        flex: 1 1 0;
        min-width: 0;
        max-width: 5.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.15rem;
        padding: 0.25rem 0.15rem;
        margin: 0;
        border: none;
        background: transparent;
        color: #6b7280;
        text-decoration: none;
        font-family: inherit;
        font-size: 0.62rem;
        font-weight: 600;
        line-height: 1.1;
        letter-spacing: 0.01em;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: color 0.15s ease, transform 0.12s ease;
    }

    .mobile-dock-item:active {
        transform: scale(0.92);
    }

    .mobile-dock-item.is-active {
        color: var(--primary-blue);
    }

    .mobile-dock-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 1.75rem;
        height: 1.75rem;
    }

    .mobile-dock-icon svg {
        width: 1.35rem;
        height: 1.35rem;
        display: block;
    }

    .mobile-dock-label {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .mobile-dock-item--call {
        color: var(--primary-blue);
    }

    .mobile-dock-item--call .mobile-dock-icon--call {
        width: 2.75rem;
        height: 2.75rem;
        margin-top: -1.1rem;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
        color: #fff;
        box-shadow: 0 4px 16px rgba(0, 61, 165, 0.45);
        border: 3px solid rgba(255, 255, 255, 0.95);
    }

    .mobile-dock-item--call .mobile-dock-icon--call svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .mobile-dock-item--call .mobile-dock-label {
        font-weight: 700;
        color: var(--primary-blue);
    }

    .mobile-dock-item--call:active .mobile-dock-icon--call {
        transform: scale(0.94);
    }
}
