/* Vehicle Make Page Styles - GEICO Design System */
.vmk-page {
    font-family: 'GEICO Roobert', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.vmk-page * {
    box-sizing: border-box;
}

/* Full Hero Section */
.vmk-full-hero {
    background-color: #f0f4fb;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 64px 24px;
}

@media (max-width: 768px) {
    .vmk-full-hero {
        padding: 32px 24px;
    }
}

.vmk-hero-inner {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
}

.vmk-hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    max-width: 920px;
}

/* Header + Sub Section */
.vmk-header-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.vmk-hero-title {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 700;
    font-size: 43.2px;
    line-height: 1.2;
    color: #1c1c1e;
    margin: 0;
}

@media (max-width: 768px) {
    .vmk-hero-title {
        font-size: 32px;
    }
}

.vmk-hero-subtitle {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 700;
    font-size: 21.6px;
    line-height: 1.2;
    color: #1c1c1e;
    margin: 0;
}

@media (max-width: 768px) {
    .vmk-hero-subtitle {
        font-size: 18px;
    }
}

.vmk-hero-description {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #1c1c1e;
    margin: 0;
}

/* ZIP Code Form Section */
.vmk-quote-form {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.vmk-quote-form > * {
    margin-bottom: 0 !important;
}

.vmk-zip-input {
    width: 335px;
    max-width: 100%;
    height: 48px;
    padding: 12px 16px;
    margin: 0;
    border: 1px solid #878787;
    border-radius: 8px;
    background: white;
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1c1c1e;
    box-sizing: border-box;
}

.vmk-zip-input::placeholder {
    color: #878787;
}

.vmk-zip-input:focus {
    outline: none;
    border-color: #004b9b;
    box-shadow: 0 0 0 2px rgba(0, 75, 155, 0.2);
}

/* Primary Button */
.vmk-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 48px;
    padding: 0 24px;
    margin: 0;
    background-color: #004b9b;
    border: 2px solid #004b9b;
    border-radius: 100px;
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #fafafa;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
    white-space: nowrap;
    box-sizing: border-box;
}

.vmk-btn-primary:visited {
    color: #fafafa;
}

.vmk-btn-primary:hover {
    background-color: #003d7a;
    border-color: #003d7a;
}

.vmk-btn-primary:active {
    background-color: #003060;
    border-color: #003060;
}

/* Disclaimer Text */
.vmk-disclaimer {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #1c1c1e;
    margin: 0;
}

/* Models Section - Figma Design */
.vmk-models-section {
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding: 64px 24px;
}

.vmk-models-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 920px;
}

.vmk-models-title {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 700;
    font-size: 33.6px;
    line-height: 1.2;
    color: black;
    margin: 0;
}

@media (max-width: 768px) {
    .vmk-models-title {
        font-size: 28px;
    }
}

.vmk-models-subtitle {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: #1c1c1e;
    margin: 0;
}

/* Model Cards Grid */
.vmk-models-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    width: 100%;
    max-width: 920px;
}

/* Model Card */
.vmk-model-card {
    background: white;
    border: 1px solid #ededed;
    border-radius: 16px;
    width: min(100%, 285px);
    height: auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
    box-sizing: border-box;
}

.vmk-model-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Card Top Section */
.vmk-card-top {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
    flex: 1 1 auto;
}

/* Popular Badge */
.vmk-popular-badge {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.vmk-popular-badge svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.vmk-popular-badge span {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.22;
    color: #1c1c1e;
    white-space: nowrap;
}

/* Card Content - vertical stacked layout */
.vmk-card-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.vmk-card-name-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    width: 100%;
}

.vmk-model-name {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 700;
    font-size: 26.4px;
    line-height: 1.2;
    color: #1c1c1e;
    margin: 0;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vmk-model-type {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.32;
    color: #1c1c1e;
    margin: 0;
}

/* Secondary/Outline Button */
.vmk-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 48px;
    padding: 0 24px;
    margin: 0;
    background: transparent;
    border: 2px solid #004b9b;
    border-radius: 100px;
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #004b9b;
    text-transform: capitalize;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
}

.vmk-btn-secondary:visited {
    color: #004b9b;
}

.vmk-btn-secondary:hover {
    background-color: #004b9b;
    color: white;
}

.vmk-btn-secondary:active {
    background-color: #003d7a;
    color: white;
}

/* Models Section Disclaimer */
.vmk-models-disclaimer {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: black;
    margin: 0;
    width: 100%;
    max-width: 920px;
}

/* Insurance Details Section */
.vmk-details-section {
    background: #f0f4fb;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    padding: 64px 24px;
}

.vmk-details-header {
    width: 100%;
    max-width: 920px;
}

.vmk-details-title {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 700;
    font-size: 33.6px;
    line-height: 1.2;
    color: black;
    margin: 0;
}

@media (max-width: 768px) {
    .vmk-details-title {
        font-size: 28px;
    }
}

/* Promo Cards Grid */
.vmk-promo-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    width: 100%;
    max-width: 920px;
}

@media (max-width: 920px) {
    .vmk-promo-cards {
        flex-direction: column;
        align-items: center;
    }
}

/* Promo Card */
.vmk-promo-card {
    background: white;
    border: 1px solid #ededed;
    border-radius: 16px;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 0;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

@media (max-width: 920px) {
    .vmk-promo-card {
        width: 100%;
        max-width: 400px;
    }
}

.vmk-promo-icon {
    width: 24px;
    height: 24px;
    color: #004b9b;
}

.vmk-promo-icon svg {
    width: 100%;
    height: 100%;
}

.vmk-promo-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.vmk-promo-title {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5;
    color: #1c1c1e;
    margin: 0;
}

.vmk-promo-text {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1c1c1e;
    margin: 0;
}

.vmk-promo-text a {
    font-weight: 700;
    color: #005ccc;
    text-decoration: underline;
}

.vmk-promo-text a:hover {
    color: #004b9b;
}

.vmk-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 48px;
    padding: 0 24px;
    margin: 0;
    background: transparent;
    border: 2px solid #004b9b;
    border-radius: 100px;
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #004b9b;
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    white-space: nowrap;
    box-sizing: border-box;
    width: 100%;
}

.vmk-promo-btn:visited {
    color: #004b9b;
}

.vmk-promo-btn:hover {
    background-color: #004b9b;
    color: white;
}

.vmk-promo-btn:active {
    background-color: #003d7a;
    color: white;
}

.vmk-promo-disclaimer {
    font-family: 'GEICO Roobert', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    color: #616161;
    margin: 0;
}

/* Content Section */
.vmk-section {
    padding: 64px 24px;
}

.vmk-section-white {
    background: white;
}

.vmk-container {
    max-width: 920px;
    margin: 0 auto;
}

/* ========================================
   Dark Mode Support
   ======================================== */

/* Hero Section background */
/* Dark mode */
.dark .vmk-page .vmk-full-hero {
    background-color: #14224a;
    border-bottom-color: #2d3f74;
}

.dark .vmk-page .vmk-models-section {
    background: #0f1838;
}

.dark .vmk-page .vmk-details-section {
    background: #14224a;
}

.dark .vmk-page .vmk-section-white {
    background: #0f1838;
}

.dark .vmk-page .vmk-hero-title,
.dark .vmk-page .vmk-models-title,
.dark .vmk-page .vmk-details-title {
    color: #fafafa;
}

.dark .vmk-page .vmk-hero-subtitle,
.dark .vmk-page .vmk-hero-description,
.dark .vmk-page .vmk-models-subtitle {
    color: #c8d2ea;
}

.dark .vmk-page .vmk-disclaimer,
.dark .vmk-page .vmk-models-disclaimer,
.dark .vmk-page .vmk-promo-disclaimer {
    color: #8a94b5;
}

.dark .vmk-page .vmk-model-card {
    background: #1b2a57;
    border-color: #2d3f74;
}

.dark .vmk-page .vmk-model-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dark .vmk-page .vmk-model-name {
    color: #fafafa;
}

.dark .vmk-page .vmk-model-type {
    color: #c8d2ea;
}

.dark .vmk-page .vmk-popular-badge span {
    color: #d9e2f5;
}

.dark .vmk-page .vmk-btn-secondary {
    color: #eef3ff;
    border-color: #8ec5ff;
}

.dark .vmk-page .vmk-btn-secondary:hover {
    background: #8ec5ff;
    color: #10214a;
}

.dark .vmk-page .vmk-zip-input {
    background: #1b2a57;
    border-color: #4a5a8a;
    color: #fafafa;
}

.dark .vmk-page .vmk-zip-input::placeholder {
    color: #8a94b5;
}

.dark .vmk-page .vmk-zip-input:focus {
    border-color: #8ec5ff;
    box-shadow: 0 0 0 2px rgba(142, 197, 255, 0.25);
}

.dark .vmk-page .vmk-btn-primary {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #fafafa;
}

.dark .vmk-page .vmk-btn-primary:hover {
    background-color: #2563eb;
    border-color: #2563eb;
}

.dark .vmk-page .vmk-promo-card {
    background: #1b2a57;
    border-color: #2d3f74;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.15);
}

.dark .vmk-page .vmk-promo-icon {
    color: #8ec5ff;
}

.dark .vmk-page .vmk-promo-title {
    color: #fafafa;
}

.dark .vmk-page .vmk-promo-text {
    color: #d9e2f5;
}

.dark .vmk-page .vmk-promo-text a {
    color: #8ec5ff;
}

.dark .vmk-page .vmk-promo-btn {
    color: #eef3ff;
    border-color: #8ec5ff;
}

.dark .vmk-page .vmk-promo-btn:hover {
    background: #8ec5ff;
    color: #10214a;
}
