/* Customer website styles — colors injected via Jinja2 */
:root {
    --color-primary: #1B3A5C;
    --color-accent: #00203F;
    --color-bg: #FFFFFF;
    --color-text: #1A1A1A;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --- Header --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--color-bg);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-text);
}

.logo-img {
    height: 2.5rem;
    width: auto;
    object-fit: contain;
}

.business-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--color-primary);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
    transition: color 0.15s;
}

.header-nav a:hover { color: var(--color-primary); text-decoration: none; }

.lang-switch {
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    font-size: 0.8125rem;
    color: var(--color-primary) !important;
    font-weight: 600;
}

.lang-switch:hover { background: var(--color-primary); color: #fff !important; }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 1rem 1.25rem;
        gap: 1rem;
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 4px 6px rgba(0,0,0,0.08);
    }
    .header-nav.open { display: flex; }
    .mobile-menu-btn { display: block; }
}

/* --- Hero --- */
.hero {
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    width: 100%;
    background: rgba(0,0,0,0.55);
    padding: 4rem 0;
}

.hero:not([style*="background-image"]) .hero-overlay {
    background: var(--color-primary);
}

.hero-content {
    text-align: center;
    color: #fff;
}

.hero-logo {
    height: 5rem;
    width: auto;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 1.75rem; }
    .hero-tagline { font-size: 1rem; }
    .hero { min-height: 300px; }
    .hero-overlay { padding: 3rem 0; }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.15s;
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn:hover { text-decoration: none; }

.btn-primary {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.btn-primary:hover { filter: brightness(1.1); }

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline:hover { background: rgba(255,255,255,0.15); }

/* --- Sections --- */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: #f8f9fa;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
}

@media (max-width: 768px) {
    .section { padding: 2.5rem 0; }
    .section-title { font-size: 1.375rem; }
}

/* --- Services --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.service-body {
    padding: 1.25rem;
}

.service-body h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.service-body p {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.6;
}

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

/* --- About --- */
.about-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #444;
}

/* --- Contact --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    color: var(--color-primary);
}

.contact-item a { color: var(--color-text); }
.contact-item a:hover { color: var(--color-primary); }

.hours-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.375rem 0;
    font-size: 0.9375rem;
    border-bottom: 1px solid #f0f0f0;
}

.hours-day { font-weight: 500; }
.hours-time { color: #666; }

/* --- Map --- */
.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .map-container { height: 220px; }
}

/* --- Showcase Slideshow --- */
.showcase-slideshow {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    background: #000;
}

.showcase-slide {
    display: none;
    position: relative;
}

.showcase-slide.active {
    display: block;
    animation: showcaseFade 0.5s ease;
}

@keyframes showcaseFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.showcase-slide img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 0.9375rem;
    text-align: center;
}

.showcase-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.85);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.15s;
    color: #333;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.showcase-btn:hover { background: #fff; }
.showcase-prev { left: 0.75rem; }
.showcase-next { right: 0.75rem; }

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.15s;
}

.showcase-dot.active {
    background: #fff;
}

.showcase-dot:hover {
    background: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
    .showcase-btn { width: 32px; height: 32px; }
    .showcase-btn svg { width: 18px; height: 18px; }
    .showcase-prev { left: 0.5rem; }
    .showcase-next { right: 0.5rem; }
    .showcase-slide img { aspect-ratio: 4/3; }
}

/* --- Footer --- */
.site-footer {
    background: var(--color-primary);
    color: #fff;
    padding: 1.5rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-name {
    font-weight: 600;
}

.footer-info a {
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
}

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

.footer-powered a {
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    text-decoration: none;
}

.footer-powered a:hover { color: rgba(255,255,255,0.7); }

.bilingual-badge span {
    font-style: italic;
    color: #666;
}

@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-info { justify-content: center; }
}

/* --- Schedule / Contact Page --- */
.schedule-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 1rem 0;
    background: #f9fafb;
}


.schedule-page-inner {
    width: 100%;
    max-width: 480px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Trust header row */
.schedule-trust-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.schedule-logo {
    max-width: 140px;
    height: auto;
}

@media (min-width: 480px) {
    .schedule-logo {
        max-width: 180px;
    }
}

.schedule-brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.schedule-trust-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    flex-shrink: 0;
}

.schedule-review-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    text-decoration: none;
    color: inherit;
}

.schedule-review-link:hover {
    text-decoration: none;
    opacity: 0.85;
}

.review-count {
    font-size: 0.75rem;
    color: #666;
}

.review-gmaps-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 1px;
    font-size: 1.125rem;
    line-height: 1;
}

.review-rating {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #333;
}

.review-stars .star { color: #ddd; }
.review-stars .star.full { color: #f5a623; }
.review-stars .star.partial {
    position: relative;
    color: #ddd;
}
.review-stars .star.partial .star-fill {
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    color: #f5a623;
}

.trust-badge-pill {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: var(--color-primary);
    color: #fff;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Headline */
.schedule-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 0.375rem;
}

.schedule-subtitle {
    text-align: center;
    color: #555;
    margin: 0 0 1.5rem;
    font-size: 0.875rem;
}

/* Form */
.schedule-form {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 1rem;
    font-family: var(--font-family);
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    color: var(--color-text);
    transition: border-color 0.15s;
    -webkit-appearance: none;
}

gmp-place-autocomplete {
    display: block;
    width: 100%;
    background-color: #fff;
    color-scheme: light;
    border: 1.5px solid #d1d5db;
    border-radius: 6px;
}

.form-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
    cursor: pointer;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(27,58,92,0.1);
}

.form-textarea { resize: vertical; }

/* Address field with pin icon */
.address-input-wrap {
    position: relative;
}

.address-pin-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    pointer-events: none;
    z-index: 1;
}

.form-input-with-icon {
    padding-left: 2.25rem;
}

.form-hint {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.375rem;
}

/* ZIP code input — large, centered, prominent */
.form-input-zip {
    max-width: 180px;
    font-size: 1.25rem;
    text-align: center;
    letter-spacing: 0.1em;
    padding: 0.625rem 0.875rem;
}

.form-input-zip::placeholder {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}

.form-error {
    font-size: 0.75rem;
    color: #e53e3e;
    margin-top: 0.375rem;
}

.form-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-accent, #2563eb);
    background: color-mix(in srgb, var(--color-accent, #2563eb) 10%, transparent);
    padding: 0.1875rem 0.5rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.form-step-heading {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text);
}

/* Step number badges */
.step-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.375rem;
    height: 1.375rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50%;
    background: var(--color-accent, #2563eb);
    color: #fff;
    flex-shrink: 0;
}


/* Progressive disclosure — Steps 2 and 3 hidden until activated */
.form-step-slots,
.form-step-details {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.5s ease;
    pointer-events: none;
}

.form-step-slots.form-step-visible,
.form-step-details.form-step-visible {
    opacity: 1;
    max-height: 2000px;
    overflow: visible;
    pointer-events: auto;
}

/* Buttons */
.schedule-btn {
    width: 100%;
    margin-top: 0.75rem;
    justify-content: center;
    padding: 0.875rem;
    font-size: 1.0625rem;
}

.schedule-btn:disabled {
    opacity: 0.7;
    background-color: color-mix(in srgb, var(--color-accent) 80%, #000);
    cursor: not-allowed;
}

/* Slot section */
.slot-section {
    margin-top: 0.25rem;
    padding-top: 0.5rem;
}

.slot-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.875rem;
}

.slot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

@media (min-width: 480px) {
    .slot-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) {
    .slot-grid { grid-template-columns: repeat(4, 1fr); }
}

.slot-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 1rem 0.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
    font-family: var(--font-family);
    font-size: 0.875rem;
    color: var(--color-text);
}

.slot-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.slot-card.selected {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #fff;
}

.slot-card-other {
    border-style: dashed;
    opacity: 0.7;
}

.slot-card-other:hover {
    opacity: 1;
}

.slot-card strong {
    font-size: 0.9375rem;
}

/* Shimmer loading */
.slot-card.shimmer {
    cursor: default;
    pointer-events: none;
    border-color: #f0f0f0;
    background: #fafafa;
    padding: 1.25rem 0.5rem;
}

.shimmer-line {
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmerAnim 1.5s infinite;
}

.shimmer-day {
    width: 60%;
    height: 1rem;
    margin: 0 auto 0.5rem;
}

.shimmer-time {
    width: 80%;
    height: 0.875rem;
    margin: 0 auto;
}

@keyframes shimmerAnim {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Confirmation / Error card */
.schedule-confirm {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.confirm-icon {
    color: #16a34a;
    margin: 0 auto 1rem;
    display: block;
}

.schedule-confirm h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.schedule-confirm p {
    font-size: 1.0625rem;
    color: #555;
}

.schedule-fallback-msg {
    text-align: center;
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.schedule-fallback-call {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

/* Add to calendar button */
.calendar-add-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 1.25rem;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--color-accent);
    color: #fff;
    text-decoration: none;
    border: none;
}

.calendar-add-btn:hover {
    opacity: 0.9;
    text-decoration: none;
}

.calendar-add-btn svg {
    flex-shrink: 0;
}

/* Phone fallback */
.schedule-phone-fallback {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.schedule-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    color: #666;
    text-decoration: none;
}

.schedule-phone-link:hover {
    color: var(--color-primary);
}

/* Below-the-fold: Gallery strip */
.contact-gallery {
    margin-top: 1.5rem;
}

.contact-section-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.gallery-wrap {
    position: relative;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: #fff;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: opacity 0.15s;
}

.gallery-nav:hover {
    background: #f3f4f6;
}

.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }

@media (max-width: 767px) {
    .gallery-nav { display: none !important; }
}

.gallery-strip {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-strip::-webkit-scrollbar {
    display: none;
}

.gallery-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-radius: 8px;
    overflow: hidden;
    height: 264px;
    min-width: 160px;
}

@media (min-width: 480px) {
    .gallery-card { height: 312px; min-width: 180px; }
}

@media (min-width: 768px) {
    .gallery-card { height: 336px; min-width: 200px; }
}

.gallery-card img {
    height: 100%;
    width: auto;
    display: block;
}

.gallery-caption {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    color: #555;
}

/* Below-the-fold: Testimonials */
.contact-testimonials {
    margin-top: 2rem;
    padding-top: 1.5rem;
}

.testimonial-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.testimonial-stars {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.testimonial-stars .star.full { color: #f5a623; }
.testimonial-stars .star.empty { color: #ddd; }

.testimonial-quote {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #333;
    margin-bottom: 0.75rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #666;
}

.more-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
}

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

.more-reviews-link .review-gmaps-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Below-the-fold: Trust & Credentials */
.contact-trust-section {
    margin-top: 2rem;
    padding: 1.5rem 0;
    text-align: center;
}

.license-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f0fe 100%);
    border: 1.5px solid var(--color-primary);
    border-radius: 10px;
    padding: 0.875rem 1.25rem;
    margin: 0 auto 1.25rem;
    max-width: 400px;
}

.license-badge-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.license-badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.license-badge-label {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary);
}

.license-badge-number {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

.trust-badges-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 400px;
    margin: 0 auto;
}

.trust-badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 1rem 0.75rem;
    text-align: center;
}

.trust-badge-card-icon {
    color: var(--color-primary);
}

.trust-badge-card span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #444;
    line-height: 1.3;
}

/* Below-the-fold: Contact Info & Map */
.contact-info-section {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.contact-info-block {
    max-width: 480px;
}

.contact-info-section .contact-section-heading {
    text-align: left;
}

/* Social links */
.social-links-block {
    margin-top: 1.25rem;
    text-align: center;
}

.social-links-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
}

.social-links-list {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link-item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border-radius: 6px;
    background: #f3f4f6;
    color: #444;
    font-size: 0.8125rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.social-link-item:hover {
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
}

.social-link-item:hover .social-icon {
    fill: #fff;
}

.social-icon {
    flex-shrink: 0;
    transition: fill 0.15s;
}

.contact-page-map {
    margin-top: 1.25rem;
    height: 220px;
}

@media (min-width: 768px) {
    .contact-page-map { height: 260px; }
}

/* Secondary CTA */
.contact-secondary-cta {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem 0;
}

.contact-secondary-cta p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.schedule-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.schedule-secondary-btn:hover {
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
}

/* Footer links */
.schedule-site-link {
    text-align: center;
    padding: 1.25rem 0 0;
    margin-top: 1.5rem;
}

.schedule-site-link a {
    font-size: 0.9375rem;
    color: var(--color-primary);
    text-decoration: none;
    opacity: 0.8;
}

.schedule-site-link a:hover {
    text-decoration: underline;
    opacity: 1;
}

.schedule-footer {
    text-align: center;
    padding: 0.75rem 0;
    margin-top: auto;
    font-size: 0.8125rem;
}

.schedule-footer a {
    color: #999;
    text-decoration: none;
}

.schedule-footer a:hover {
    color: #666;
}
