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

html {
    scroll-padding-top: 80px;
}

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

.header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.logo span {
    color: #00adef;
}

/* Ensure logo link keeps intended colors across states */
.logo a,
.logo a:visited,
.logo a:active {
    color: white;
    text-decoration: none;
}

/* Keep hover consistent without overriding span color */
.logo a:hover {
    color: white;
}

/* Reinforce blue accent for the span inside the logo link */
.logo a span {
    color: #00adef;
}

.logo-sub {
    font-size: 0.75rem;
    color: #00adef;
    font-weight: 400;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #00adef;
}

.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.lang-switch {
    background: transparent;
    border: 1px solid #00adef;
    color: #00adef;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.lang-switch:hover {
    background: #00adef;
    color: white;
}

.lang-switch.active {
    background: #00adef;
    color: white;
}

.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232d2d2d"/><circle cx="900" cy="300" r="200" fill="%231a1a1a" opacity="0.3"/><circle cx="300" cy="400" r="150" fill="%231a1a1a" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #00adef;
    font-weight: 400;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    background: #00adef;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,173,239,0.3);
}

.cta-button:hover {
    background: #0096d6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,173,239,0.4);
}

.cta-button-secondary {
    background: transparent;
    border: 2px solid #00adef;
}

.cta-button-secondary:hover {
    background: #00adef;
}

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

.section-alt {
    background: #f8f9fa;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-prop {
    text-align: center;
    padding: 2rem;
}

.value-prop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-prop h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-prop p {
    color: #666;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00adef, #0096d6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

.how-it-works {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 5rem 2rem;
}

.how-it-works h2 {
    color: white;
}

.how-it-works .section-subtitle {
    color: #ddd;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #00adef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    font-weight: bold;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step p {
    color: #ddd;
    line-height: 1.8;
}

.pricing-section {
    text-align: center;
}

.pricing-highlight {
    background: linear-gradient(135deg, #00adef, #0096d6);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 800px;
    margin: 3rem auto;
    box-shadow: 0 8px 30px rgba(0,173,239,0.3);
}

.pricing-highlight h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-highlight p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: left;
    margin-top: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: start;
    gap: 0.8rem;
}

.pricing-feature:before {
    content: "✓";
    font-size: 1.5rem;
    font-weight: bold;
}

.coverage-area {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 3rem auto;
}

.coverage-area h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.coverage-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.coverage-list li {
    padding: 0.5rem;
    padding-left: 2rem;
    position: relative;
    color: #333;
}

.coverage-list li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #00adef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.contact-item-text p {
    color: #666;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-col {
    flex: 2;
}

.form-col-small {
    flex: 1;
}

.form-col label,
.form-col-small label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-col input,
.form-col-small input {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-col input:focus,
.form-col-small input:focus {
    outline: none;
    border-color: #00adef;
}

/* ── Location Picker Modal ───────────────────────────────────────────────── */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    width: 100%;
    max-width: 520px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    position: relative;
    animation: modalSlideIn 0.2s ease;
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}
.modal-header h2 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin: 0;
}
.modal-close-x {
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: #999;
    line-height: 1;
    padding: 0 0.25rem;
    transition: color 0.2s;
}
.modal-close-x:hover { color: #333; }

.location-picker-modal {
    max-width: 560px;
}
.location-picker-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 360px;
    overflow-y: auto;
}
.location-picker-option {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fafafa;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s, border-color 0.15s;
    width: 100%;
    font-family: inherit;
}
.location-picker-option:hover {
    background: #e8f5ff;
    border-color: #00adef;
}
.location-picker-option .loc-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}
.location-picker-option .loc-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.location-picker-option .loc-details strong {
    font-size: 0.95rem;
    color: #1a1a1a;
}
.location-picker-option .loc-details small {
    font-size: 0.8rem;
    color: #666;
}
.location-picker-option .loc-details code {
    background: #f0f0f0;
    border-radius: 3px;
    padding: 1px 4px;
    font-size: 0.78rem;
    color: #333;
}
.location-picker-skip {
    width: 100%;
    padding: 0.75rem;
    border: 1px dashed #ccc;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    color: #666;
    font-size: 0.9rem;
    transition: background 0.15s;
}
.location-picker-skip:hover { background: #f5f5f5; }

/* Success Modal (kept inline-compatible) */
.modal-icon { font-size: 3rem; margin-bottom: 1rem; text-align: center; }
.booking-id { font-weight: bold; font-size: 1.1rem; margin: 0.75rem 0; text-align: center; }
.payment-warning { background: #fff3cd; border: 1px solid #ffc107; border-radius: 6px; padding: 0.75rem 1rem; margin: 0.75rem 0; }
.modal-buttons { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.modal-button { padding: 0.75rem 1.5rem; border-radius: 6px; border: none; cursor: pointer; font-size: 0.95rem; font-weight: 600; text-decoration: none; display: inline-block; }
.modal-button-primary { background: #00adef; color: white; }
.modal-button-primary:hover { background: #0099d4; }
.modal-button-secondary { background: #e0e0e0; color: #333; }
.modal-button-secondary:hover { background: #ccc; }

/* Input feedback line under location fields */
.input-feedback { margin-top: 0.4rem; font-size: 0.88rem; min-height: 1.2em; }

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-col,
    .form-col-small {
        flex: 1;
        margin-bottom: 1.5rem;
    }
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #00adef;
}

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

.submit-button {
    background: #00adef;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-button:hover {
    background: #0096d6;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Success Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.modal-icon.success {
    color: #28a745;
}

.modal-icon.warning {
    color: #ffc107;
}

.modal-content h2 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.modal-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.booking-id {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.2rem;
    color: #00adef;
    text-align: center;
    margin: 1.5rem 0;
    font-weight: bold;
}

.payment-warning {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.payment-warning strong {
    color: #856404;
    display: block;
    margin-bottom: 0.5rem;
}

.pricing-breakdown {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 1rem;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.pricing-breakdown h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    color: #495057;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid #e9ecef;
}

.pricing-item:last-child {
    border-bottom: none;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
    color: #000;
}

.pricing-item .label {
    color: #6c757d;
}

.pricing-item .amount {
    font-weight: 500;
    color: #212529;
}

/* Severity indicator styles */
.severity-indicator {
    background: #f8f9fa !important;
    border-left: 4px solid #6c757d !important;
    padding: 1rem !important;
    margin: 1rem 0 !important;
    border-radius: 4px !important;
    font-size: 0.95rem !important;
}

.severity-indicator.low {
    background: #d1ecf1 !important;
    border-left-color: #17a2b8 !important;
    color: #0c5460 !important;
}

.severity-indicator.medium {
    background: #fff3cd !important;
    border-left-color: #ffc107 !important;
    color: #856404 !important;
}

.severity-indicator.high {
    background: #f8d7da !important;
    border-left-color: #dc3545 !important;
    color: #721c24 !important;
}

.severity-indicator strong {
    display: block !important;
    margin-bottom: 0.25rem !important;
    color: inherit !important;
}

.severity-indicator small {
    display: block !important;
    margin-top: 0.5rem !important;
    opacity: 0.9 !important;
    font-style: italic !important;
    color: inherit !important;
}

/* Severity-adjusted pricing items */
.pricing-item.subtotal {
    border-top: 1px solid #dee2e6;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
}

.pricing-item.severity-adjustment {
    font-style: italic;
    color: #495057;
}

.pricing-item.severity-adjustment .amount.discount {
    color: #28a745;
}

.pricing-item.severity-adjustment .amount.premium {
    color: #dc3545;
}

.pricing-item.total {
    border-top: 2px solid #495057;
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    font-weight: bold;
    font-size: 1.1rem;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-button {
    flex: 1;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
}

.modal-button-primary {
    background: #00adef;
    color: white;
}

.modal-button-primary:hover {
    background: #0096d6;
    transform: translateY(-2px);
}

.modal-button-secondary {
    background: #f8f9fa;
    color: #333;
    border: 2px solid #ddd;
}

.modal-button-secondary:hover {
    background: #e9ecef;
}

.footer {
    background: #1a1a1a;
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #00adef;
    text-decoration: none;
    transition: color 0.3s;
}

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

.legal-card {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 2rem auto 0 auto;
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.legal-section {
    margin-bottom: 1rem;
}

.legal-text h3 {
    color: #00adef;
    margin-bottom: 0.5rem;
}

.page-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232d2d2d"/><circle cx="900" cy="300" r="200" fill="%231a1a1a" opacity="0.3"/><circle cx="300" cy="400" r="150" fill="%231a1a1a" opacity="0.2"/></svg>');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

/* Legal/secondary hero typography */
.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: #dddddd;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #1a1a1a;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 1.5rem;
        border-bottom: 1px solid #333;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .coverage-list {
        grid-template-columns: 1fr;
    }
}

/* ── Partner Quote Matrix (shared) ──────────────────────────────────────── */
.matrix-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.matrix-table th { background: #f8f9fa; padding: 0.75rem 1rem; text-align: center; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: #666; border-bottom: 2px solid #e0e0e0; white-space: nowrap; }
.matrix-table td { padding: 0.75rem 1rem; border-bottom: 1px solid #f0f0f0; vertical-align: middle; text-align: center; }
.matrix-table tr:last-child td { border-bottom: none; }
.matrix-table tr:hover td { background: #fafafa; }
.matrix-table .partner-name { font-weight: 600; font-size: 0.9rem; text-align: left; min-width: 120px; }
.matrix-table .total-cell { font-weight: 700; font-size: 1.05rem; }

.vehicle-class-header td { background: #f0f4f8; font-weight: 700; font-size: 0.95rem; color: #1a1a1a; border-bottom: 2px solid #dce3ea; padding: 0.6rem 1rem; text-align: left; }
.vehicle-class-header td .sipp-badge { display: inline-block; background: #e0e7ef; color: #3b5068; font-size: 0.72rem; font-weight: 700; padding: 2px 6px; border-radius: 3px; margin-right: 0.5rem; font-family: monospace; letter-spacing: 0.5px; }
.vehicle-class-header td .vehicle-desc { color: #555; font-weight: 400; font-size: 0.85rem; margin-left: 0.25rem; }

.partner-indicator { display: inline-block; padding: 2px 8px; border-radius: 3px; font-size: 0.75rem; font-weight: 700; }
.partner-indicator-abg { background: #e8f4fd; color: #1a5276; }
.partner-indicator-avis { background: #fde8e8; color: #8b1a1a; }
.partner-indicator-budget { background: #e8fde8; color: #1a5c1a; }
.partner-indicator-dollar { background: #f0e8fd; color: #4a1a8b; }
.partner-indicator-hertz { background: #fff8e1; color: #7a5c00; }
.partner-indicator-simulated { background: #f0f0f0; color: #666; }

.best-value td { background: #f0fff4 !important; }
.best-value-label { display: inline-block; background: #28a745; color: white; font-size: 0.65rem; padding: 1px 5px; border-radius: 8px; margin-left: 0.4rem; vertical-align: middle; font-weight: 600; letter-spacing: 0.3px; }
.price-strikethrough { text-decoration: line-through; color: #999; font-weight: 400; font-size: 0.85rem; margin-right: 0.3rem; }
.discount-badge { display: inline-block; background: #ff6b35; color: white; font-size: 0.6rem; padding: 1px 5px; border-radius: 8px; margin-left: 0.4rem; vertical-align: middle; font-weight: 600; }
img.vehicle-thumb { height: 60px !important; max-height: 60px !important; width: auto !important; vertical-align: middle; margin-right: 0.5rem; border-radius: 3px; object-fit: contain; }
.policy-good { color: #155724; font-weight: 600; }
.policy-warn { color: #b45309; font-weight: 600; }
.policy-bad  { color: #dc2626; font-weight: 600; }
.btn-terms { background: none; border: none; color: #856404; text-decoration: underline; cursor: pointer; font-size: inherit; padding: 0; font-family: inherit; }
.btn-terms:hover { color: #533f03; }
.terms-section { border-bottom: 1px solid #e8e8e8; padding: 0.75rem 0; }
.terms-section:last-child { border-bottom: none; }
.terms-section summary { cursor: pointer; font-weight: 600; color: #1a1a1a; font-size: 0.95rem; padding: 0.25rem 0; user-select: none; }
.terms-section summary:hover { color: #00adef; }
.terms-section-body { padding: 0.75rem 0 0.25rem; font-size: 0.875rem; color: #333; line-height: 1.6; }
.terms-section-body font { font-size: inherit !important; }
.cdw-included { color: #155724; font-weight: 600; }
.quote-spinner { display: inline-block; width: 32px; height: 32px; border: 4px solid #e0e0e0; border-top-color: #00adef; border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.email-btn { font-size: 0.8rem; padding: 0.35rem 0.8rem; }
.btn-confirm { font-size: 0.8rem; padding: 0.35rem 0.9rem; border: none; border-radius: 4px; cursor: pointer; font-weight: 600; transition: all 0.2s; white-space: nowrap; }
.btn-confirm-abg { background: #1a5276; color: #fff; }
.btn-confirm-abg:hover:not(:disabled) { background: #154360; }
.btn-confirm-avis { background: #d32f2f; color: #fff; }
.btn-confirm-avis:hover:not(:disabled) { background: #b71c1c; }
.btn-confirm-budget { background: #388e3c; color: #fff; }
.btn-confirm-budget:hover:not(:disabled) { background: #1b5e20; }
.btn-confirm-dollar { background: #e65100; color: #fff; }
.btn-confirm-dollar:hover:not(:disabled) { background: #bf360c; }
.btn-confirm-hertz { background: #DAA520; color: #000; }
.btn-confirm-hertz:hover:not(:disabled) { background: #b8860b; }
.btn-confirm:disabled { opacity: 0.65; cursor: not-allowed; }
.total-cell { font-weight: 700; }
.no-quote-cell { color: #bbb; font-style: italic; font-size: 0.85rem; }

/* ── Partner status bar (compare page) ──────────────────────────────────── */
#partner-status { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 0.75rem; }
.partner-status-item { display: inline-flex; align-items: center; gap: 0.3rem; font-size: 0.8rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 12px; background: rgba(255,255,255,0.15); }
.partner-status-pending { color: #888; }
.partner-status-fetching { color: #ccc; }
.partner-status-done { color: #5cb85c; }
.partner-status-error { color: #d9534f; }
.partner-status-login { color: #f0ad4e; }
.status-spinner { display: inline-block; width: 10px; height: 10px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; animation: spin 0.8s linear infinite; }
.status-pending { font-weight: bold; }
.status-done { font-weight: bold; }
.status-error { font-weight: bold; }
.status-login { font-weight: bold; }
.status-detail { font-weight: 400; font-size: 0.7rem; opacity: 0.8; }

/* ── Compact pivot mode (compare page) ──────────────────────────────────── */
.compact-matrix th { font-size: 0.8rem; padding: 0.6rem 0.75rem; }
.compact-cell { vertical-align: middle; padding: 0.6rem 0.75rem; text-align: center; }
.compact-cell.best-value-cell { background: #f0fff4; }
.compact-price-row { font-weight: 700; font-size: 1.05rem; }
.compact-pills { margin-top: 0.25rem; }
.compact-pills .best-value-label { margin-left: 0; margin-right: 0.25rem; }
.compact-pills .discount-badge { margin-left: 0; }
.compact-country-code { display: inline-block; font-size: 0.7rem; font-weight: 700; color: #666; text-transform: uppercase; letter-spacing: 0.5px; }
.price-was { text-decoration: line-through; color: #999; font-weight: 400; font-size: 0.85rem; margin-right: 0.3rem; }
