/* Toyota Font Face Declarations */
@font-face {
    font-family: 'Toyota Type';
    src: url('asset/font/ToyotaType-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Toyota Type';
    src: url('asset/font/ToyotaType-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Toyota Type';
    src: url('asset/font/ToyotaType-Book.woff2') format('woff2');
    font-weight: 450;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Toyota Type';
    src: url('asset/font/ToyotaType-Semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Toyota Type';
    src: url('asset/font/ToyotaType-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Toyota Type';
    src: url('asset/font/ToyotaType-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Toyota Type', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #EB0A1E 0%, #C40818 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.header-info {
    flex: 1;
}

.sales-name {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Toyota Type', sans-serif;
}

.company-name {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 5px;
    opacity: 0.95;
}

.location {
    font-size: 1em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.phone-link {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Carousel Styles */
.carousel-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 113px);
    min-height: 500px;
    overflow: hidden;
    background: #000;
    touch-action: pan-x pan-y;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    position: absolute;
    bottom: 80px;
    left: 60px;
    z-index: 5;
    color: white;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    max-width: 500px;
}

.carousel-slide.active .carousel-caption {
    opacity: 1;
}

.carousel-caption-title {
    font-size: 4.5em;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 15px 0;
    font-family: 'Toyota Type', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.carousel-caption-title span {
    font-size: 0.75em;
    display: inline-block;
    margin-right: 8px;
}

.carousel-caption-subtitle {
    font-size: 1.3em;
    font-weight: 400;
    margin: 0 0 30px 0;
    line-height: 1.4;
    font-family: 'Toyota Type', sans-serif;
}

.carousel-caption-tagline {
    font-size: 1.1em;
    font-weight: 600;
    margin: 0 0 30px 0;
    line-height: 1.4;
    font-family: 'Toyota Type', sans-serif;
    letter-spacing: 1px;
}

.carousel-caption-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #EB0A1E;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    font-family: 'Toyota Type', sans-serif;
}

.carousel-caption-btn:hover {
    background: #C40818;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.carousel-arrow {
    position: relative;
    background: transparent;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-arrow-icon {
    width: 24px;
    height: 24px;
    display: block;
    transition: all 0.3s ease;
}

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

.carousel-arrow:active .carousel-arrow-icon {
    transform: scale(0.95);
}

.carousel-arrow-left {
    order: -1;
}

.carousel-arrow-left .carousel-arrow-icon {
    transform: rotate(90deg);
}

.carousel-arrow-left:hover .carousel-arrow-icon {
    transform: rotate(90deg) scale(1.1);
}

.carousel-arrow-left:active .carousel-arrow-icon {
    transform: rotate(90deg) scale(0.95);
}

.carousel-arrow-right {
    order: 1;
}

.carousel-arrow-right .carousel-arrow-icon {
    transform: rotate(270deg);
}

.carousel-arrow-right:hover .carousel-arrow-icon {
    transform: rotate(270deg) scale(1.1);
}

.carousel-arrow-right:active .carousel-arrow-icon {
    transform: rotate(270deg) scale(0.95);
}


.carousel-indicators {
    position: absolute;
    bottom: 20px;
    right: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #EB0A1E;
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: white;
}

.section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #EB0A1E;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Toyota Type', sans-serif;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text {
    font-size: 1.1em;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-text strong {
    color: #EB0A1E;
    font-weight: 600;
}

.contact-box {
    background: linear-gradient(135deg, #EB0A1E 0%, #C40818 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(235, 10, 30, 0.3);
}

.contact-box h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-box p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.contact-box a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-box a:hover {
    opacity: 0.8;
}

.contact-box .action-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.contact-box .action-btn:hover {
    opacity: 1;
    text-decoration: none;
}

/* Models Section */
.models-section {
    padding: 60px 0;
    background: #f5f5f5;
}

/* Page Models Filter Tabs */
.page-models-filter-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 40px;
    overflow-x: visible;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.page-models-filter-tab {
    background: none;
    border: none;
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Toyota Type', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    flex: 0 1 auto;
    min-width: 0;
    text-align: center;
}

.page-models-filter-tab:hover {
    color: #EB0A1E;
}

.page-models-filter-tab.active {
    color: #EB0A1E;
    border-bottom-color: #EB0A1E;
}

/* Model Card Filtering */
.model-card {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.model-card.filtered-out {
    display: none;
}

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

.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.model-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: fit-content;
    max-width: 315px;
}

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

.model-image {
    width: 315px;
    height: 350px;
    overflow: hidden;
    background: #f0f0f0;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.model-card:hover .model-image img {
    transform: scale(1.05);
}

.model-new-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #EB0A1E;
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    border-radius: 4px;
    font-family: 'Toyota Type', sans-serif;
}

.model-electric-badge {
    position: absolute;
    top: 10px;
    left: 72px;
    background: #0066CC;
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    border-radius: 4px;
    font-family: 'Toyota Type', sans-serif;
}

.model-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.model-name {
    font-size: 1.5em;
    font-weight: 700;
    color: #EB0A1E;
    margin-bottom: 15px;
    font-family: 'Toyota Type', sans-serif;
}

/* Model name overlay on image */
.model-image .model-name {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    font-size: 2.5em;
    font-weight: 700;
    margin: 0;
    padding: 20px;
    padding-bottom: 15px;
    z-index: 5;
    font-family: 'Toyota Type', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.model-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.action-btn {
    display: block;
    padding: 12px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.brochure-btn {
    background: #EB0A1E;
    color: white;
}

.brochure-btn:hover {
    background: #C40818;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(235, 10, 30, 0.3);
}

.pricelist-btn {
    background: #2c3e50;
    color: white;
}

.pricelist-btn:hover {
    background: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.3);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-logo {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-info {
    flex: 1;
}

.footer-info p {
    margin-bottom: 10px;
}

.footer-info a {
    color: #EB0A1E;
    text-decoration: none;
    font-weight: 600;
}

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

.footer-whatsapp-link {
    color: #25D366 !important;
}

.footer-whatsapp-link:hover {
    color: #20BA5A !important;
    text-decoration: underline;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
}

/* Fixed Navigation Bar */
.fixed-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 10000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    overflow: visible;
    will-change: transform;
    transform: translateZ(0);
}

.fixed-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: red;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: inherit;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: inherit;
}

.toyota-brandmark {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-left a {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.nav-left a:hover {
    opacity: 0.8;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toyota-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.toyota-text {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    font-family: 'Toyota Type', sans-serif;
}

.nav-slogan {
    font-size: 18px;
    color: #000;
    font-style: italic;
    font-weight: 400;
    margin-left: 10px;
    font-family: 'Toyota Type', cursive, sans-serif;
    letter-spacing: 0.5px;
}

.nav-right {
    display: flex;
    position: relative;
    z-index: inherit;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.nav-top-row,
.nav-bottom-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.nav-link:hover {
    color: #EB0A1E;
}

.nav-top-row .nav-link {
    color: #666;
}

.nav-top-row .nav-link:hover {
    color: #333;
}

.nav-top-row .whatsapp-link {
    color: #25D366 !important;
}

.nav-top-row .whatsapp-link:hover {
    color: #20BA5A !important;
}

.nav-bottom-row .nav-link {
    font-size: 16px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #EB0A1E;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100% !important;
}

.whatsapp-link {
    color: #25D366;
    font-weight: 600;
}

.whatsapp-link:hover {
    color: #20BA5A;
}

.whatsapp-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
}

.external-icon {
    font-size: 12px;
    opacity: 0.7;
}

.nav-divider {
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 5px 0;
}

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    display: inline-block;
    margin-left: 2px;
    vertical-align: middle;
    width: 20px;
    height: 20px;
    position: relative;
}

.dropdown-arrow img {
    width: 100%;
    height: 100%;
    filter: brightness(0);
    transition: filter 0.3s ease, transform 0.3s ease;
    display: block;
}

.dropdown-arrow-down {
    display: block;
}

.dropdown-arrow-up {
    display: none !important;
}

.nav-link:hover .dropdown-arrow img,
.price-model-link.active .dropdown-arrow img,
.models-link.active .dropdown-arrow img {
    filter: brightness(0) saturate(100%) invert(14%) sepia(94%) saturate(7151%) hue-rotate(350deg) brightness(92%) contrast(92%);
}

.nav-dropdown.active .dropdown-arrow img,
.price-model-link.active .dropdown-arrow img,
.models-link.active .dropdown-arrow img {
    transform: rotate(180deg);
}

.dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 30px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    border-top: 1px solid #e0e0e0;
}

.nav-dropdown.active .dropdown-overlay {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.dropdown-category {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Toyota Type', sans-serif;
}

.dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-list li {
    margin-bottom: 10px;
}

.dropdown-list a {
    display: block;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    line-height: 1.5;
    position: relative;
}

.dropdown-list a:hover {
    color: #EB0A1E;
}

.dropdown-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #EB0A1E;
    transition: width 0.3s ease;
}

.dropdown-list a:hover::after {
    width: 100%;
}

.dropdown-list a.active::after {
    width: 100% !important;
}

.price-model-link {
    position: relative;
}

.price-model-link.active {
    color: #EB0A1E;
}

.price-model-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #EB0A1E;
    width: 100% !important;
}

/* Models Dropdown Styles */
.models-dropdown {
    position: relative;
}

.models-link {
    position: relative;
}

.models-link.active {
    color: #EB0A1E;
}

/* Prevent hover effects when dropdown is active */
.models-dropdown.active .models-link:hover {
    color: #EB0A1E;
}

.models-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #EB0A1E;
}

.models-dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease, pointer-events 0s 0.3s;
    z-index: 1001;
    border-top: 1px solid #e0e0e0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Only show dropdown on active state, never on hover */
.models-dropdown.active .models-dropdown-overlay {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transition: opacity 0.3s ease, visibility 0.3s ease, pointer-events 0s 0s;
}

.models-dropdown-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    width: 100%;
    flex: 1;
    min-height: 100%;
}

.models-main-content {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.models-category-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
    overflow-x: visible;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.models-category-tab {
    background: none;
    border: none;
    padding: 15px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: 'Toyota Type', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    flex: 1;
    min-width: 0;
    text-align: center;
}

.models-category-tab:hover {
    color: #EB0A1E;
}

.models-category-tab.active {
    color: #EB0A1E;
    border-bottom-color: #EB0A1E;
}

.models-cars-container {
    flex: 1;
    overflow-y: auto;
    position: relative;
}

.models-cars-page {
    display: none;
    animation: fadeIn 0.3s ease;
}

.models-cars-page.active {
    display: block;
}

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

.models-cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.models-car-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.models-car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.models-car-card:active {
    transform: translateY(-2px);
}

.models-car-promo {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #EB0A1E;
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    border-radius: 4px;
    font-family: 'Toyota Type', sans-serif;
}

.models-car-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.models-car-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    min-width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.models-car-card:hover .models-car-image img {
    transform: scale(1.05);
}

.models-car-info {
    padding: 20px;
}

.models-car-name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    font-family: 'Toyota Type', sans-serif;
    line-height: 1.3;
}

.models-car-type {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.models-car-price {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.lang-toggle-btn,
.test-drive-static-btn {
    background: #EB0A1E;
    border: none;
    cursor: pointer;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 4px;
    min-width: 40px;
    white-space: nowrap;
}

.lang-toggle-btn:hover,
.test-drive-static-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.lang-toggle-btn.lang-en {
    background: #EB0A1E;
}

.lang-toggle-btn.lang-bm {
    background: #0066CC;
}

.lang-text,
.test-drive-text {
    font-size: 12px;
    font-weight: 600;
    color: white;
    font-family: 'Toyota Type', sans-serif;
    transition: color 0.3s ease;
    white-space: nowrap;
}

/* Hide mobile menu elements on desktop */
.mobile-menu-btn,
.mobile-whatsapp-btn {
    display: none;
}

.mobile-menu {
    display: none;
}

/* Add padding to body to account for fixed navbar (only on home page) */
#home {
    padding-top: 113px;
}

/* MaxCheck and Service Pages Styles */
#maxcheck,
#service-savers,
#insurance,
#road-assist,
#vehicle-warranty,
#hybrid-warranty,
#finance-calculator,
#financing-packages,
#body-paint,
#promotions,
#model-detail {
    padding-top: 113px;
}

/* Toyota MY MaxCheck layout (#maxcheck main column only) */
#maxcheck .maxcheck-tmy-head {
    background: #fff;
    color: #1a1a1a;
    padding: 32px 0 24px;
}

#maxcheck .maxcheck-tmy-head-inner {
    max-width: 1200px;
}

#maxcheck .maxcheck-tmy-logo-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

#maxcheck .maxcheck-tmy-logo-text {
    font-family: 'Toyota Type', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin: 0;
    color: #1a1a1a;
}

#maxcheck .maxcheck-tmy-hero-title {
    font-family: 'Toyota Type', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    line-height: 1.35;
    margin: 0 0 12px;
    color: #1a1a1a;
}

#maxcheck .maxcheck-tmy-hero-desc {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    color: #444;
}

#maxcheck .maxcheck-tmy-hero-banner {
    width: 100%;
    background: #f0f0f0;
}

#maxcheck .maxcheck-tmy-hero-banner picture,
#maxcheck .maxcheck-tmy-hero-banner img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

#maxcheck .maxcheck-tmy-section {
    padding: 72px 0;
}

#maxcheck .maxcheck-tmy-section--white {
    background: #fff;
}

#maxcheck .maxcheck-tmy-section--grey {
    background: #f5f5f5;
}

#maxcheck .maxcheck-tmy-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

#maxcheck .maxcheck-tmy-h2 {
    font-family: 'Toyota Type', sans-serif;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.25;
}

#maxcheck .maxcheck-tmy-h3-red {
    font-family: 'Toyota Type', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #EB0A1E;
    margin: 28px 0 8px;
    letter-spacing: 0.02em;
}

#maxcheck .maxcheck-tmy-sub {
    margin: 0 0 8px;
    font-size: 1.05rem;
    color: #555;
}

#maxcheck .maxcheck-tmy-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #444;
    margin: 0;
}

#maxcheck .maxcheck-tmy-intervals {
    margin-top: 12px;
}

#maxcheck .maxcheck-tmy-split-media img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

#maxcheck .maxcheck-tmy-block-head {
    text-align: left;
    max-width: 900px;
    margin: 0 auto 40px;
}

#maxcheck .maxcheck-tmy-block-head--models {
    text-align: center;
    max-width: 960px;
}

#maxcheck .maxcheck-tmy-models-intro {
    margin-top: 12px;
}

#maxcheck .maxcheck-tmy-fine {
    font-size: 0.85rem;
    color: #666;
    margin: 12px 0 0;
}

#maxcheck .maxcheck-tmy-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

#maxcheck .maxcheck-tmy-package {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#maxcheck .maxcheck-tmy-section--grey .maxcheck-tmy-package {
    background: #fff;
}

#maxcheck .maxcheck-tmy-package-title {
    font-family: 'Toyota Type', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #EB0A1E;
    margin: 0 0 16px;
}

#maxcheck .maxcheck-tmy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#maxcheck .maxcheck-tmy-list li {
    padding: 6px 0 6px 22px;
    position: relative;
    font-size: 0.98rem;
    color: #333;
    line-height: 1.5;
}

#maxcheck .maxcheck-tmy-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #EB0A1E;
    font-weight: 700;
}

#maxcheck .maxcheck-tmy-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

#maxcheck .maxcheck-tmy-category {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 22px 20px;
}

#maxcheck .maxcheck-tmy-cat-title {
    font-family: 'Toyota Type', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #EB0A1E;
    margin: 0 0 14px;
}

#maxcheck .maxcheck-tmy-cat-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#maxcheck .maxcheck-tmy-cat-list li {
    margin-bottom: 8px;
}

#maxcheck .maxcheck-tmy-cat-list a {
    color: #1a1a1a;
    text-decoration: underline;
    text-decoration-color: #ccc;
    text-underline-offset: 3px;
    font-size: 0.95rem;
    transition: color 0.2s, text-decoration-color 0.2s;
}

#maxcheck .maxcheck-tmy-cat-list a:hover {
    color: #EB0A1E;
    text-decoration-color: #EB0A1E;
}

#maxcheck .maxcheck-tmy-bottom-cta {
    background: #f5f5f5;
    padding: 48px 0 56px;
    border-top: 1px solid #e5e5e5;
}

#maxcheck .maxcheck-tmy-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 40px;
}

#maxcheck .maxcheck-tmy-bottom-link {
    font-family: 'Toyota Type', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #EB0A1E;
    text-decoration: underline;
    text-underline-offset: 4px;
}

#maxcheck .maxcheck-tmy-bottom-link:hover {
    color: #c40818;
}

/* Insurance Page — hero (Toyota Malaysia: red top rule, white band, icon + title row, full-width photo) */
.insurance-hero {
    padding: 0;
    margin: 0;
    background: #ffffff;
    border-top: 3px solid #EB0A1E;
}

.insurance-hero-banner {
    background: #ffffff;
    padding: 44px 0 52px;
}

.insurance-hero-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
}

.insurance-hero-topline {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
}

.insurance-hero-badge-wrap {
    flex-shrink: 0;
}

.insurance-hero-badge {
    display: block;
    width: 88px;
    height: 88px;
}

.insurance-hero-title {
    font-size: clamp(1.9rem, 4.5vw, 3.05rem);
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.08;
}

.insurance-hero-subtitle {
    font-size: clamp(0.98rem, 2.15vw, 1.32rem);
    font-weight: 700;
    color: #000000;
    margin: 0 0 16px 0;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    line-height: 1.38;
    max-width: 46em;
}

.insurance-hero-lede {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.65;
    max-width: 40em;
}

.insurance-hero-image-wrap {
    margin: 0;
    padding: 0;
    line-height: 0;
    width: 100%;
    overflow: hidden;
    background: #e8e8e8;
}

.insurance-hero-picture {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.insurance-hero-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    vertical-align: middle;
}

/* Insurance — EXTRA BENEFITS KV block (16:9 graphic above cards) */
.insurance-benefits-kv-section {
    background: #ffffff;
    border-top: 3px solid #EB0A1E;
}

.insurance-benefits-kv-head {
    padding: 44px 0 36px;
}

.insurance-benefits-kv-heading {
    font-size: clamp(1.35rem, 3.2vw, 2.15rem);
    font-weight: 700;
    color: #000000;
    margin: 0 0 18px 0;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.2;
    max-width: 28em;
}

.insurance-benefits-kv-intro {
    font-size: clamp(0.95rem, 1.6vw, 1.125rem);
    font-weight: 400;
    color: #000000;
    margin: 0;
    line-height: 1.75;
    max-width: 42em;
}

.insurance-benefits-kv-media {
    margin: 0;
    padding: 0;
    line-height: 0;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #e8f2fa 0%, #f5f8fb 100%);
}

.insurance-benefits-kv-picture {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.insurance-benefits-kv-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    vertical-align: middle;
}

.insurance-benefits-intro {
    padding: 80px 0;
    background: white;
}

.insurance-benefits-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.insurance-benefits-text h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    font-family: 'Toyota Type', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insurance-benefits-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.insurance-benefits-image {
    width: 100%;
}

.insurance-carousel-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.insurance-benefits-grid-section {
    padding: 72px 0 88px;
    background: #ffffff;
}

.insurance-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 56px;
    align-items: start;
}

.insurance-benefit-card {
    background: #ffffff;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 22px;
    transition: none;
}

.insurance-benefit-card:hover {
    transform: none;
    box-shadow: none;
}

.insurance-benefit-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 2px;
    background: transparent;
    border-radius: 0;
}

.insurance-benefit-icon-svg {
    width: 56px;
    height: 56px;
    display: block;
    shape-rendering: geometricPrecision;
}

.benefit-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.insurance-benefit-content {
    flex: 1;
    min-width: 0;
}

.insurance-benefit-content h5 {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 14px 0;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.35;
}

.insurance-benefit-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #666666;
    margin: 0;
}

.insurance-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insurance-benefit-list > li {
    position: relative;
    font-size: 1rem;
    line-height: 1.75;
    color: #666666;
    margin-bottom: 12px;
    padding-left: 14px;
}

.insurance-benefit-list > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: #EB0A1E;
    border-radius: 50%;
}

.insurance-benefit-list > li:last-child {
    margin-bottom: 0;
}

.insurance-benefit-nested {
    list-style: none;
    padding: 6px 0 0 0;
    margin: 0;
}

.insurance-benefit-nested li {
    position: relative;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #666666;
    margin-bottom: 4px;
    padding-left: 0;
}

.insurance-benefit-nested li::before {
    display: none;
}

.includes-text {
    font-weight: 600;
    color: #333;
}

.insurance-table-section {
    padding: 80px 0;
    background: white;
}

.insurance-betterment-table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.insurance-betterment-table thead {
    background: #EB0A1E;
    color: white;
}

.insurance-betterment-table th {
    padding: 20px;
    text-align: left;
    font-weight: 700;
    font-family: 'Toyota Type', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9em;
}

.insurance-betterment-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.3s ease;
}

.insurance-betterment-table tbody tr:hover {
    background-color: #f9f9f9;
}

.insurance-betterment-table tbody tr:last-child {
    border-bottom: none;
}

.insurance-betterment-table td {
    padding: 20px;
    color: #333;
    font-weight: 500;
}

.insurance-betterment-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.insurance-betterment-table tbody tr:nth-child(even):hover {
    background-color: #f5f5f5;
}

.insurance-details-section {
    padding: 56px 0 80px;
    background: #ffffff;
}

.insurance-disclaimers-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.insurance-disclaimers-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0 18px;
    margin: 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #d0d0d0;
    cursor: pointer;
    text-align: left;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    transition: opacity 0.2s ease;
}

.insurance-disclaimers-toggle:hover {
    opacity: 0.85;
}

.insurance-disclaimers-toggle:focus-visible {
    outline: 2px solid #EB0A1E;
    outline-offset: 4px;
}

.insurance-disclaimers-toggle-label {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.insurance-disclaimers-chevron {
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.insurance-disclaimers-toggle[aria-expanded="false"] .insurance-disclaimers-chevron {
    transform: rotate(180deg);
}

.insurance-disclaimers-panel-outer {
    display: grid;
    grid-template-rows: 1fr;
    transition: grid-template-rows 0.35s ease;
}

.insurance-disclaimers-panel-outer.is-collapsed {
    grid-template-rows: 0fr;
}

.insurance-disclaimers-panel-inner {
    overflow: hidden;
    min-height: 0;
    padding-top: 24px;
}

.insurance-disclaimers-panel-outer.is-collapsed .insurance-disclaimers-panel-inner {
    padding-top: 0;
}

.insurance-disclaimers-main-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insurance-disclaimers-main-list > li {
    font-size: 1.05em;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 22px;
    padding-left: 22px;
    position: relative;
}

.insurance-disclaimers-main-list > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: #EB0A1E;
    border-radius: 50%;
}

.insurance-disclaimers-main-list > li:last-child {
    margin-bottom: 0;
}

.insurance-disclaimers-underwriters {
    list-style: none;
    padding: 0;
    margin: 12px 0 0 0;
}

.insurance-disclaimers-underwriters li {
    font-size: 0.98em;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 8px;
    padding-left: 18px;
    position: relative;
}

.insurance-disclaimers-underwriters li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    background: #EB0A1E;
    border-radius: 50%;
}

.insurance-disclaimers-underwriters li:last-child {
    margin-bottom: 0;
}

.insurance-pidm-block {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
    max-width: 100%;
}

.insurance-pidm-logo-link {
    display: inline-block;
    margin-bottom: 16px;
    line-height: 0;
}

.insurance-pidm-logo {
    height: auto;
    max-width: min(220px, 100%);
    width: auto;
    display: block;
}

.insurance-pidm {
    font-size: 1.05em;
    line-height: 1.8;
    color: #555555;
    margin: 0 0 28px 0;
    max-width: 100%;
    text-align: left;
}

.insurance-pidm a {
    color: #EB0A1E;
    font-weight: 600;
    text-decoration: underline;
}

.insurance-pidm a:hover {
    color: #c0091a;
}

.insurance-details-list-footer a {
    color: #EB0A1E;
    font-weight: 600;
    text-decoration: none;
}

.insurance-details-list-footer a:hover {
    text-decoration: underline;
}

.insurance-disclaimers-panel-inner .insurance-details-list-footer {
    margin-top: 8px;
    padding-top: 0;
}

.insurance-benefit-content a {
    color: #EB0A1E;
    font-weight: 600;
    text-decoration: underline;
}

.insurance-benefit-content a:hover {
    color: #c0091a;
}

.insurance-details-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insurance-details-list > li {
    font-size: 1.05em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
}

.insurance-details-list > li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #EB0A1E;
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1;
}

.insurance-details-list > li:last-child {
    margin-bottom: 0;
}

.insurance-underwriters-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.insurance-underwriters-list li {
    font-size: 0.95em;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.insurance-underwriters-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #EB0A1E;
    font-weight: bold;
}

.insurance-cta-section {
    padding: 80px 0;
    background: white;
}

.insurance-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.insurance-cta-grid:has(.whatsapp-contact) {
    grid-template-columns: 1fr;
    max-width: 400px;
}

.insurance-cta-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.insurance-cta-card:hover {
    border-color: #EB0A1E;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(235, 10, 30, 0.2);
}

.insurance-cta-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.insurance-cta-icon svg {
    width: 60px;
    height: 60px;
    color: #25D366;
}

.insurance-cta-card.whatsapp-contact {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-color: #25D366;
    color: white;
}

.insurance-cta-card.whatsapp-contact p {
    color: white;
}

.insurance-cta-card.whatsapp-contact:hover {
    border-color: #128C7E;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.insurance-cta-card.whatsapp-contact:hover p {
    color: white;
}

.insurance-cta-card.whatsapp-contact .insurance-cta-icon svg {
    color: white;
}

.insurance-cta-card p {
    font-size: 1.2em;
    font-weight: 600;
    margin: 0;
    color: #333;
    font-family: 'Toyota Type', sans-serif;
}

.insurance-cta-card:hover p {
    color: #EB0A1E;
}

/* Insurance Page Mobile Styles */
@media (max-width: 768px) {
    .insurance-hero-banner {
        padding: 28px 0 32px;
    }

    .insurance-hero-topline {
        gap: 16px;
        margin-bottom: 14px;
    }

    .insurance-hero-badge {
        width: 64px;
        height: 64px;
    }

    .insurance-benefits-kv-head {
        padding: 28px 0 24px;
    }

    .insurance-benefits-intro {
        padding: 60px 0;
    }

    .insurance-benefits-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .insurance-benefits-text h2 {
        font-size: 1.8em;
    }

    .insurance-benefits-grid-section {
        padding: 60px 0;
    }

    .insurance-benefits-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .insurance-benefit-card {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .insurance-benefit-icon {
        width: 54px;
        height: 54px;
    }

    .insurance-benefit-icon-svg {
        width: 54px;
        height: 54px;
    }

    .insurance-table-section {
        padding: 60px 0;
        overflow-x: auto;
    }

    .insurance-betterment-table {
        font-size: 0.9em;
        min-width: 600px;
    }

    .insurance-betterment-table th,
    .insurance-betterment-table td {
        padding: 15px 10px;
    }

    .insurance-details-section {
        padding: 60px 0;
    }

    .insurance-details-list {
        /* padding handled by container */
    }

    .insurance-details-list > li {
        font-size: 0.95em;
    }

    .insurance-cta-section {
        padding: 60px 0;
    }

    .insurance-cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Vehicle warranty page — Toyota Malaysia servicing layout (matches insurance hero + legal doc styling) */
.umw-warranty-hero.insurance-hero {
    border-top: 3px solid #EB0A1E;
}

.umw-warranty-doc-section {
    padding: 48px 0 80px;
    background: #ffffff;
}

.umw-warranty-doc {
    max-width: 920px;
    margin: 0 auto;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #000000;
    font-size: clamp(0.9375rem, 1.1vw, 1.0625rem);
    line-height: 1.65;
}

.umw-warranty-doc > p,
.umw-warranty-doc .umw-warranty-lead {
    margin: 0 0 1.1rem;
}

.umw-warranty-lead {
    font-size: 1.05em;
    line-height: 1.7;
}

.umw-warranty-doc a.umw-warranty-text-link,
.umw-warranty-doc a:not(.umw-warranty-cta-btn) {
    color: #EB0A1E;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.umw-warranty-doc a.umw-warranty-text-link:hover,
.umw-warranty-doc a:not(.umw-warranty-cta-btn):hover {
    color: #c40818;
}

.umw-warranty-doc h2 {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #000000;
    border-left: 4px solid #EB0A1E;
    padding-left: 14px;
    margin: 2.5rem 0 1rem;
    line-height: 1.3;
}

.umw-warranty-doc h2:first-of-type {
    margin-top: 0.5rem;
}

.umw-warranty-doc h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 1.35rem 0 0.5rem;
    line-height: 1.35;
}

.umw-warranty-doc h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.35rem;
}

.umw-warranty-footnote {
    font-size: 0.9em;
    color: #333333;
    margin: -0.35rem 0 1.25rem !important;
}

.umw-warranty-inline-cta {
    margin: 1.25rem 0 !important;
}

.umw-warranty-table-wrap {
    margin: 1rem 0 1.25rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.umw-warranty-table-wrap--scroll {
    max-width: 100%;
}

.umw-warranty-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    font-size: 0.95em;
    background: #ffffff;
}

.umw-warranty-table th,
.umw-warranty-table td {
    border: 1px solid #d9d9d9;
    padding: 12px 14px;
    text-align: left;
    vertical-align: top;
}

.umw-warranty-table thead th {
    background: #f5f5f5;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.82em;
}

.umw-warranty-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.umw-warranty-ol {
    margin: 0 0 1.25rem;
    padding-left: 1.35rem;
}

.umw-warranty-ol li {
    margin-bottom: 0.65rem;
    padding-left: 0.25rem;
}

.umw-warranty-subcols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.5rem;
    margin-top: 0.85rem;
    padding: 1rem 1.1rem;
    background: #f7f7f7;
    border: 1px solid #e8e8e8;
}

.umw-warranty-subcols p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.55;
    color: #222222;
}

.umw-warranty-faq {
    margin-top: 2.75rem;
    padding-top: 0.5rem;
    border-top: 3px solid #EB0A1E;
}

.umw-warranty-faq-heading {
    margin: 1.5rem 0 0.75rem !important;
    border-left: none !important;
    padding-left: 0 !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.umw-warranty-faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.umw-warranty-faq-item summary {
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    list-style: none;
    padding: 1rem 2.25rem 1rem 0;
    position: relative;
    color: #000000;
}

.umw-warranty-faq-item summary::-webkit-details-marker {
    display: none;
}

.umw-warranty-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    color: #EB0A1E;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1;
}

.umw-warranty-faq-item[open] summary::after {
    content: '\2212';
}

.umw-warranty-faq-body {
    padding: 0 0 1.1rem;
}

.umw-warranty-faq-body p {
    margin: 0 0 0.75rem;
}

.umw-warranty-faq-body p:last-child {
    margin-bottom: 0;
}

.umw-warranty-bottom-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.umw-warranty-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 28px;
    background: #EB0A1E;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none !important;
    border: 2px solid #EB0A1E;
    transition: background 0.2s ease, color 0.2s ease;
}

.umw-warranty-cta-btn:hover {
    background: #c40818;
    border-color: #c40818;
    color: #ffffff !important;
}

.umw-warranty-cta-btn--outline {
    background: #ffffff;
    color: #EB0A1E !important;
}

.umw-warranty-cta-btn--outline:hover {
    background: #fff5f5;
    color: #c40818 !important;
    border-color: #c40818;
}

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

    .umw-warranty-bottom-cta {
        flex-direction: column;
    }

    .umw-warranty-cta-btn {
        width: 100%;
    }
}

.maxcheck-hero {
    background: linear-gradient(135deg, #EB0A1E 0%, #C40818 100%);
    color: white;
    padding: 0;
    height: calc(100vh - 113px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.maxcheck-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    flex: 1;
    width: 100%;
    padding: 60px 0;
}

.maxcheck-hero-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.maxcheck-icon {
    font-size: 3em;
    margin-bottom: 8px;
    opacity: 0.9;
}

.maxcheck-tagline {
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.maxcheck-hero-text h1 {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    font-family: 'Toyota Type', sans-serif;
}

.maxcheck-hero-text p {
    font-size: 1em;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

.maxcheck-hero-actions {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: #EB0A1E;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    opacity: 0.8;
    gap: 12px;
}

.link-arrow::after {
    content: '→';
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

.maxcheck-hero-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.maxcheck-hero-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    border-radius: 10px;
}

.maxcheck-section {
    padding: 80px 0;
    background: white;
}

.maxcheck-section.light {
    background: #f5f5f5;
}

.maxcheck-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.maxcheck-split-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.eyebrow {
    font-size: 0.9em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #EB0A1E;
    margin: 0;
}

.maxcheck-split-text h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
    font-family: 'Toyota Type', sans-serif;
}

.maxcheck-split-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.maxcheck-split-media {
    width: 100%;
}

.maxcheck-split-media img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.maxcheck-intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.maxcheck-intro .eyebrow {
    margin-bottom: 15px;
}

.maxcheck-intro p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.fine-print {
    font-size: 0.85em;
    color: #999;
    font-style: italic;
    margin-top: 10px;
}

.maxcheck-card {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.maxcheck-card h3 {
    font-size: 2em;
    font-weight: 700;
    color: #EB0A1E;
    margin-bottom: 15px;
    font-family: 'Toyota Type', sans-serif;
}

.maxcheck-card > p {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 30px;
}

.maxcheck-package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.maxcheck-package {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.maxcheck-package:hover {
    border-color: #EB0A1E;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(235, 10, 30, 0.2);
}

.maxcheck-package h4 {
    font-size: 1.5em;
    font-weight: 700;
    color: #EB0A1E;
    margin-bottom: 20px;
    font-family: 'Toyota Type', sans-serif;
}

.maxcheck-package ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maxcheck-package ul li {
    padding: 8px 0;
    color: #333;
    font-size: 1em;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.maxcheck-package ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #EB0A1E;
    font-weight: bold;
}

.maxcheck-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.maxcheck-category {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.maxcheck-category h5 {
    font-size: 1.3em;
    font-weight: 700;
    color: #EB0A1E;
    margin-bottom: 20px;
    font-family: 'Toyota Type', sans-serif;
}

.maxcheck-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.maxcheck-category ul li {
    margin-bottom: 12px;
}

.maxcheck-category ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
    position: relative;
}

.maxcheck-category ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #EB0A1E;
    transition: width 0.3s ease;
}

.maxcheck-category ul li a:hover {
    color: #EB0A1E;
}

.maxcheck-category ul li a:hover::after {
    width: 100%;
}

.maxcheck-services {
    padding: 80px 0;
    background: white;
}

.maxcheck-services h3 {
    font-size: 2.5em;
    font-weight: 700;
    color: #EB0A1E;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Toyota Type', sans-serif;
}

.maxcheck-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-card-media {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h4 {
    font-size: 1.5em;
    font-weight: 700;
    color: #EB0A1E;
    margin-bottom: 15px;
    font-family: 'Toyota Type', sans-serif;
}

.service-card-body p {
    font-size: 1em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-card-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-card-body ul li {
    padding: 8px 0;
    color: #333;
    font-size: 0.95em;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.service-card-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #EB0A1E;
    font-weight: bold;
    font-size: 1.2em;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background: #EB0A1E;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
}

.btn-secondary:hover {
    background: #C40818;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(235, 10, 30, 0.3);
}

.maxcheck-cta {
    padding: 80px 0;
    background: #f5f5f5;
}

.maxcheck-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.cta-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.cta-item .cta-icon {
    font-size: 2.5em;
    color: #EB0A1E;
    margin-bottom: 20px;
    line-height: 1;
}

.cta-item h5 {
    font-size: 1.3em;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Toyota Type', sans-serif;
}

.cta-item p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cta-item .link-arrow {
    color: #EB0A1E;
    font-weight: 600;
}

.maxcheck-features {
    margin: 60px 0;
}

.maxcheck-features h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: #EB0A1E;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Toyota Type', sans-serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-color: #EB0A1E;
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4em;
    font-weight: 600;
    color: #EB0A1E;
    margin-bottom: 15px;
    font-family: 'Toyota Type', sans-serif;
}

.feature-card p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

.maxcheck-benefits {
    margin: 60px 0;
    background: #f5f5f5;
    padding: 50px;
    border-radius: 10px;
}

.maxcheck-benefits h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: #EB0A1E;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Toyota Type', sans-serif;
}

.benefits-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-list li {
    font-size: 1.1em;
    line-height: 2;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.maxcheck-cta {
    margin: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #EB0A1E 0%, #C40818 100%);
    color: white;
    padding: 50px;
    border-radius: 10px;
}

.maxcheck-cta h2 {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Toyota Type', sans-serif;
}

.maxcheck-cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .action-btn {
    min-width: 200px;
}

/* Responsive Design */

/* Tablet Optimizations (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .nav-container {
        padding: 0 30px;
    }
    
    .nav-top-row,
    .nav-bottom-row {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .nav-bottom-row .nav-link {
        font-size: 15px;
    }
    
    .dropdown-overlay {
        width: 100%;
        padding: 25px 20px;
    }
    
    .dropdown-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .models-dropdown-content {
        flex-direction: column;
        padding: 25px 20px;
    }
    
    .models-cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .models-category-tabs {
        margin-bottom: 25px;
        overflow-x: visible;
        flex-wrap: nowrap;
    }
    
    .models-category-tab {
        padding: 12px 10px;
        font-size: 11px;
        flex: 1;
    }
    
    .page-models-filter-tabs {
        margin-bottom: 35px;
        overflow-x: auto;
    }
    
    .page-models-filter-tab {
        padding: 13px 18px;
        font-size: 13px;
        flex: 0 0 auto;
    }
    
    /* Model cards: 2 columns on tablet */
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .model-card {
        min-height: auto;
    }
    
    .carousel-section {
        height: calc(100vh - 113px);
        min-height: 400px;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .section-title {
        font-size: 2.2em;
    }
    
    .about-text {
        font-size: 1.05em;
    }
    
    .contact-box {
        padding: 25px;
    }
}

/* Desktop to Tablet Transition */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .nav-top-row,
    .nav-bottom-row {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .nav-bottom-row .nav-link {
        font-size: 15px;
    }
    
    .dropdown-overlay {
        width: 100%;
        padding: 25px 20px;
    }
    
    .dropdown-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Mobile Optimizations (max-width: 768px) */
/* Model Detail Page Styles */
.model-hero-section {
    background: linear-gradient(135deg, #EB0A1E 0%, #C40818 100%);
    color: white;
    padding: 80px 0;
    min-height: calc(100vh - 113px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.model-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.model-title {
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Toyota Type', sans-serif;
    line-height: 1.2;
}

.model-subtitle {
    font-size: 1.2em;
    opacity: 0.95;
    margin-bottom: 30px;
}

.model-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.model-hero-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.model-back-link-wrapper {
    margin-bottom: 30px;
}

.model-details-section {
    padding: 80px 0;
    background: white;
}

.model-details-content {
    max-width: 1200px;
    margin: 0 auto;
}

.model-actions-section {
    background: #f5f5f5;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.model-actions-section h2 {
    font-size: 2em;
    font-weight: 700;
    color: #EB0A1E;
    margin-bottom: 30px;
    font-family: 'Toyota Type', sans-serif;
}

.model-action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.model-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.model-description p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .model-hero-section {
        min-height: calc(100vh - 70px);
    }
    
    .model-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .model-title {
        font-size: 2.5em;
    }
    
    .model-subtitle {
        font-size: 1em;
    }
    
    .model-hero-image {
        height: 300px;
    }
    
    .model-actions-section {
        padding: 30px 20px;
    }
    
    .model-actions-section h2 {
        font-size: 1.5em;
    }
    
    .model-action-buttons {
        grid-template-columns: 1fr;
    }
    
    .model-description p {
        font-size: 1em;
    }
}

/* Promotions Page Styles */
.promo-masthead {
    width: 100%;
    margin-top: 0;
}

.promo-masthead-image {
    width: 100%;
    position: relative;
}

.promo-masthead-image picture,
.promo-masthead-image img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-block {
    background-color: #f5f5f5;
    padding: 40px 0;
}

.promo-content-section {
    background-color: #f5f5f5;
}

.promo-back-link-wrapper {
    margin-bottom: 30px;
    padding: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.promo-back-link {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    transition: color 0.3s ease;
    position: relative;
}

.promo-back-link:hover {
    color: #EB0A1E;
}

.promo-back-link::before {
    content: '←';
    margin-right: 8px;
}

.promotions-details-block {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-header {
    margin-bottom: 50px;
    text-align: left;
}

.promo-title {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    font-family: 'Toyota Type', sans-serif;
    line-height: 1.2;
}

.promo-description {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.promotions-tiles-section {
    margin-bottom: 60px;
}

.promotions-tiles-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 40px 0;
    font-family: 'Toyota Type', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promotion-tiles-landscape-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.promotion-tiles-portrait-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.promotion-tile {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.promotion-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.promotion-tile-landscape {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
}

.promotion-tile-portrait {
    display: flex;
    flex-direction: column;
}

.promotion-tile-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.promotion-tile-landscape .promotion-tile-image {
    height: 100%;
    min-height: 200px;
}

.promotion-tile-portrait .promotion-tile-image {
    height: 250px;
}

.promotion-tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.promotion-tile:hover .promotion-tile-image img {
    transform: scale(1.05);
}

.promotion-tile-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    flex: 1;
    min-height: 0;
}

.promotion-tile:hover .promotion-tile-content {
    background-color: #fafafa;
}

.promotion-tile-model-link {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    font-family: 'Toyota Type', sans-serif;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.promotion-tile-model-link:hover {
    color: #EB0A1E;
    transform: translateX(3px);
}

.promotion-tile-pricing {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promotion-price-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.promotion-price-label {
    font-size: 14px;
    color: #666;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.promotion-tile:hover .promotion-price-label {
    color: #555;
}

.promotion-price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #EB0A1E;
    font-family: 'Toyota Type', sans-serif;
    transition: transform 0.3s ease, color 0.3s ease;
}

.promotion-tile:hover .promotion-price-amount {
    transform: scale(1.05);
    color: #C40818;
}

.promotion-description-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 15px 0;
}

.promotion-tile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.promotion-cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: white;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid #000;
    border-radius: 0;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    width: 100%;
}

.promotion-cta-btn:hover {
    background-color: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.promotion-brochure-link {
    display: inline-block;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    margin-top: 12px;
    transition: color 0.3s ease, transform 0.2s ease, padding-left 0.3s ease;
    position: relative;
}

.promotion-brochure-link:hover {
    color: #333;
    transform: translateX(5px);
    padding-left: 5px;
}

.promo-terms-section {
    margin: 60px 0;
    padding: 30px;
    background: white;
    border-radius: 8px;
}

.promo-terms-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
    font-family: 'Toyota Type', sans-serif;
}

.promo-terms-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Promotions Listing Page Styles */
.promotions-listing-block {
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.promotions-listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.promotion-listing-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.promotion-listing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.promotion-listing-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.promotion-listing-image picture,
.promotion-listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promotion-listing-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.promotion-listing-badge {
    display: inline-block;
    padding: 6px 16px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
    width: fit-content;
    font-family: 'Toyota Type', sans-serif;
}

.promotion-listing-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: 'Toyota Type', sans-serif;
    line-height: 1.2;
}

.promotion-listing-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.promotion-listing-link {
    color: #EB0A1E;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: color 0.3s ease;
    display: inline-block;
}

.promotion-listing-link:hover {
    color: #C0091A;
}

.promo-find-dealer-section {
    margin: 60px 0;
    text-align: center;
}

.promo-find-dealer-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promo-find-dealer-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.promo-find-dealer-link img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.promo-find-dealer-link p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
    font-family: 'Toyota Type', sans-serif;
}

.promo-virtual-showroom-section {
    margin: 60px 0;
    padding: 50px 30px;
    background: linear-gradient(135deg, #EB0A1E 0%, #C40818 100%);
    border-radius: 8px;
    text-align: center;
    color: white;
}

.virtual-showroom-content {
    margin-bottom: 30px;
}

.virtual-showroom-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    font-family: 'Toyota Type', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.virtual-showroom-description {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.virtual-showroom-cta {
    margin: 0;
}

.virtual-showroom-link {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #EB0A1E;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Toyota Type', sans-serif;
}

.virtual-showroom-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    /* Base mobile styles */
    html {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .fixed-navbar {
        padding: 12px 0;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        position: relative;
        z-index: inherit;
    }
    
    /* Hide desktop navigation on mobile */
    .nav-right {
        display: none;
    }
    
    /* Mobile logo styling */
    .nav-left {
        flex: 1;
        order: 1;
    }
    
    .toyota-brandmark {
        height: 32px;
        max-width: 150px;
    }
    
    /* Mobile Menu Button - Enhanced touch target */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 10001;
        margin-left: auto;
        margin-right: 10px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        pointer-events: auto;
        -webkit-user-select: none;
        user-select: none;
        order: 2;
    }
    
    .hamburger-line {
        width: 24px;
        height: 3px;
        background: #000;
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center center;
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -12px;
        margin-top: -1.5px;
    }
    
    .mobile-menu-btn .hamburger-line:nth-child(1) {
        transform: translateY(-8px);
    }
    
    .mobile-menu-btn .hamburger-line:nth-child(2) {
        transform: translateY(0);
    }
    
    .mobile-menu-btn .hamburger-line:nth-child(3) {
        transform: translateY(8px);
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(1) {
        transform: translateY(0) rotate(45deg);
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: translateY(0) scaleX(0);
    }
    
    .mobile-menu-btn.active .hamburger-line:nth-child(3) {
        transform: translateY(0) rotate(-45deg);
    }
    
    /* Mobile WhatsApp Button - Enhanced touch target */
    .mobile-whatsapp-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: #25D366;
        border-radius: 50%;
        text-decoration: none;
        margin-left: 0;
        margin-right: 10px;
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
        transition: all 0.3s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        position: relative;
        z-index: 10001;
        order: 3;
        padding: 0;
        line-height: 0;
    }
    
    .mobile-whatsapp-btn:active {
        background: #20BA5A;
        transform: scale(0.95);
    }
    
    .mobile-whatsapp-btn .whatsapp-icon {
        width: 22px;
        height: 22px;
        display: block;
        margin: 0;
        padding: 0;
        object-fit: contain;
        vertical-align: middle;
    }
    
    /* Mobile Menu Backdrop */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    
    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 340px;
        max-width: 85vw;
        background: white;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 9999;
        display: block !important;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        -webkit-overflow-scrolling: touch;
        height: 100vh;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
    }
    
    .mobile-menu-link {
        display: block;
        padding: 18px 20px;
        min-height: 44px;
        color: #000;
        text-decoration: none;
        font-size: 16px;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(235, 10, 30, 0.1);
    }
    
    .mobile-menu-link:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-link:active {
        background: #f5f5f5;
        color: #EB0A1E;
    }
    
    .whatsapp-menu-link {
        color: #25D366;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .whatsapp-menu-link .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
    
    .mobile-menu-divider {
        height: 1px;
        background: #e0e0e0;
        margin: 10px 20px;
    }
    
    .mobile-menu-dropdown-toggle {
        position: relative;
        cursor: pointer;
    }
    
    .mobile-menu-dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background: #f9f9f9;
        display: block;
    }
    
    .mobile-menu-dropdown-toggle.active + .mobile-menu-dropdown {
        max-height: 2000px !important;
    }
    
    .mobile-menu-dropdown-toggle.active {
        color: #EB0A1E;
        background: #f5f5f5;
    }
    
    .mobile-dropdown-section {
        padding: 15px 20px;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .mobile-dropdown-section:last-child {
        border-bottom: none;
    }
    
    .mobile-dropdown-category {
        font-size: 12px;
        font-weight: 700;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
        font-family: 'Toyota Type', sans-serif;
    }
    
    .mobile-dropdown-link {
        display: block;
        padding: 10px 0;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        font-weight: 400;
        transition: color 0.3s ease;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .mobile-dropdown-link:last-child {
        border-bottom: none;
    }
    
    .mobile-dropdown-link {
        position: relative;
    }
    
    .mobile-dropdown-link:active {
        color: #EB0A1E;
    }
    
    .mobile-dropdown-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background: #EB0A1E;
        transition: width 0.3s ease;
    }
    
    .mobile-dropdown-link:active::after {
        width: 100%;
    }
    
    .mobile-dropdown-link.active::after {
        width: 100% !important;
    }
    
    .mobile-menu-dropdown-toggle .dropdown-arrow {
        width: 20px;
        height: 20px;
        margin-left: 2px;
        vertical-align: middle;
        display: inline-block;
        position: relative;
    }
    
    .mobile-menu-dropdown-toggle .dropdown-arrow img {
        width: 100%;
        height: 100%;
        filter: brightness(0);
        transition: transform 0.3s ease;
        display: block;
    }
    
    .mobile-menu-dropdown-toggle .dropdown-arrow-down {
        display: block;
    }
    
    .mobile-menu-dropdown-toggle .dropdown-arrow-up {
        display: none !important;
    }
    
    .mobile-menu-dropdown-toggle.active .dropdown-arrow img {
        transform: rotate(180deg);
    }
    
    .mobile-menu-dropdown-toggle:active {
        background: #f5f5f5;
    }
    
    #home {
        padding-top: 70px;
    }
    
    #maxcheck,
    #service-savers,
    #insurance,
    #road-assist,
    #vehicle-warranty,
    #hybrid-warranty,
    #finance-calculator,
    #financing-packages,
    #body-paint,
    #promotions,
    #model-detail {
        padding-top: 70px;
    }
    
    .maxcheck-hero {
        padding: 0;
        height: calc(100vh - 70px);
    }
    
    .maxcheck-hero-inner {
        padding: 40px 0;
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .maxcheck-icon {
        font-size: 2.5em;
    }
    
    .maxcheck-tagline {
        font-size: 0.9em;
    }
    
    .maxcheck-hero-text h1 {
        font-size: 1.8em;
    }
    
    .maxcheck-hero-text p {
        font-size: 0.95em;
    }
    
    .maxcheck-hero-image {
        max-height: 300px;
    }
    
    .maxcheck-hero-image img {
        max-height: 300px;
    }
    
    .maxcheck-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-primary {
        width: 100%;
        text-align: center;
    }
    
    .maxcheck-section {
        padding: 50px 0;
    }
    
    .maxcheck-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .maxcheck-split-text h2 {
        font-size: 1.8em;
    }
    
    .maxcheck-intro p {
        font-size: 1em;
    }
    
    .maxcheck-card {
        padding: 30px 20px;
    }
    
    .maxcheck-card h3 {
        font-size: 1.5em;
    }
    
    .maxcheck-package-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .maxcheck-category-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Promotions Page Mobile Styles */
    .promo-title {
        font-size: 32px;
    }
    
    .promo-description {
        font-size: 16px;
    }
    
    .promotions-tiles-title {
        font-size: 20px;
    }
    
    .promotion-tiles-landscape-container {
        gap: 20px;
    }
    
    .promotion-tiles-portrait-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .promotion-tile-landscape {
        grid-template-columns: 1fr;
    }
    
    .promotion-tile-portrait .promotion-tile-image {
        height: 200px;
    }
    
    .promotion-tile-content {
        padding: 20px;
    }
    
    .promotion-tile-model-link {
        font-size: 20px;
    }
    
    .promotion-price-amount {
        font-size: 24px;
    }
    
    .promo-terms-section {
        padding: 20px;
        margin: 40px 0;
    }
    
    .promo-find-dealer-link {
        flex-direction: column;
        padding: 15px 30px;
    }
    
    .promo-virtual-showroom-section {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .virtual-showroom-title {
        font-size: 24px;
    }
    
    .virtual-showroom-description {
        font-size: 16px;
    }
    
    .virtual-showroom-link {
        padding: 12px 30px;
        font-size: 14px;
    }
    
    /* Promotions Listing Mobile Styles */
    .promotions-listing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .promotion-listing-card {
        border-radius: 8px;
    }
    
    .promotion-listing-image {
        height: 250px;
    }
    
    .promotion-listing-content {
        padding: 20px;
    }
    
    .promotion-listing-title {
        font-size: 24px;
    }
    
    .promotion-listing-description {
        font-size: 14px;
    }
    
    .maxcheck-services {
        padding: 50px 0;
    }
    
    .maxcheck-services h3 {
        font-size: 1.8em;
    }
    
    .maxcheck-service-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .maxcheck-cta {
        padding: 50px 0;
    }
    
    .maxcheck-cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #maxcheck .maxcheck-tmy-head {
        padding: 24px 0 16px;
    }

    #maxcheck .maxcheck-tmy-section {
        padding: 48px 0;
    }

    #maxcheck .maxcheck-tmy-split {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    #maxcheck .maxcheck-tmy-package-grid {
        grid-template-columns: 1fr;
    }

    #maxcheck .maxcheck-tmy-category-grid {
        grid-template-columns: 1fr;
    }

    #maxcheck .maxcheck-tmy-bottom-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .cta-item {
        padding: 25px 20px;
    }
    
    .dropdown-overlay {
        width: 100%;
        padding: 20px 15px;
    }
    
    .dropdown-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dropdown-column {
        border-bottom: 1px solid #e0e0e0;
        padding-bottom: 15px;
    }
    
    .dropdown-column:last-child {
        border-bottom: none;
    }
    
    .models-dropdown-content {
        flex-direction: column;
        padding: 20px 15px;
    }
    
    .models-cars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .models-category-tabs {
        margin-bottom: 20px;
        overflow-x: visible;
        flex-wrap: wrap;
    }
    
    .models-category-tab {
        padding: 10px 8px;
        font-size: 10px;
        flex: 1 1 auto;
        min-width: calc(50% - 1px);
    }
    
    .models-car-image {
        height: 180px;
    }
    
    .models-car-info {
        padding: 15px;
    }
    
    .models-car-name {
        font-size: 14px;
    }
    
    .models-car-type,
    .models-car-price {
        font-size: 12px;
    }
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .sales-name {
        font-size: 2em;
    }

    .carousel-section {
        height: 100vh;
        min-height: 100vh;
        margin-top: -70px;
        position: relative;
    }
    
    .carousel-slide img {
        object-fit: cover;
        object-position: center;
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .carousel-arrow-icon {
        width: 20px;
        height: 20px;
    }
    
    .carousel-arrow:active .carousel-arrow-icon {
        transform: scale(0.9);
    }
    
    .carousel-arrow-left:active .carousel-arrow-icon {
        transform: rotate(90deg) scale(0.9);
    }
    
    .carousel-arrow-right:active .carousel-arrow-icon {
        transform: rotate(270deg) scale(0.9);
    }
    
    .carousel-indicators {
        bottom: 15px;
        right: 20px;
        gap: 8px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
        min-width: 10px;
        min-height: 10px;
    }
    
    .indicator.active {
        width: 25px;
    }

    .carousel-caption {
        bottom: 60px;
        left: 20px;
        max-width: 85%;
    }

    .carousel-caption-title {
        font-size: 2.5em;
        margin-bottom: 10px;
    }

    .carousel-caption-subtitle {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .carousel-caption-tagline {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .carousel-caption-btn {
        padding: 12px 30px;
        font-size: 0.9em;
    }

    .about-section {
        padding: 40px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-text {
        font-size: 1em;
        line-height: 1.7;
    }
    
    .about-text p {
        margin-bottom: 18px;
    }

    .contact-box {
        padding: 25px 20px;
    }
    
    .contact-box h3 {
        font-size: 1.3em;
        margin-bottom: 18px;
    }
    
    .contact-box p {
        margin-bottom: 12px;
        font-size: 0.95em;
    }
    
    .contact-box .action-btn {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 0.9em;
        touch-action: manipulation;
    }

    .models-section {
        padding: 40px 0;
    }
    
    .page-models-filter-tabs {
        margin-bottom: 30px;
        overflow-x: visible;
        flex-wrap: wrap;
    }
    
    .page-models-filter-tab {
        padding: 12px 16px;
        font-size: 12px;
        flex: 0 0 auto;
    }

    .models-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
        justify-items: center;
        max-width: 100%;
    }
    
    .model-card {
        border-radius: 8px;
    }
    
    .model-image {
        width: 315px;
        height: 350px;
    }
    
    .model-info {
        padding: 18px;
    }
    
    .model-name {
        font-size: 1.3em;
        margin-bottom: 12px;
    }
    
    .model-actions {
        gap: 10px;
    }
    
    .action-btn {
        min-height: 44px;
        padding: 12px 16px;
        font-size: 0.9em;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .action-btn:active {
        transform: translateY(0);
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 0.95em;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-logo-img {
        height: 50px;
    }
    
    .footer-info p {
        font-size: 0.9em;
        margin-bottom: 8px;
    }
    
    .footer-copyright {
        font-size: 0.85em;
        padding-top: 15px;
    }
}

/* Small Mobile Optimizations (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .toyota-brandmark {
        height: 28px;
        max-width: 120px;
    }
    
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        margin-left: auto;
        margin-right: 8px;
    }
    
    .mobile-whatsapp-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
        margin-left: 0;
        margin-right: 8px;
        padding: 0;
        line-height: 0;
    }
    
    .mobile-whatsapp-btn .whatsapp-icon {
        width: 20px;
        height: 20px;
    }

    .sales-name {
        font-size: 1.5em;
    }

    .carousel-section {
        height: 100vh;
        min-height: 100vh;
        margin-top: -70px;
        position: relative;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }
    
    .carousel-arrow-icon {
        width: 18px;
        height: 18px;
    }

    .carousel-indicators {
        bottom: 10px;
        right: 15px;
    }

    .carousel-caption {
        bottom: 50px;
        left: 15px;
        max-width: 90%;
    }

    .carousel-caption-title {
        font-size: 2em;
    }

    .carousel-caption-subtitle {
        font-size: 0.9em;
    }

    .carousel-caption-tagline {
        font-size: 0.85em;
    }

    .carousel-caption-btn {
        padding: 10px 25px;
        font-size: 0.85em;
    }

    .section-title {
        font-size: 1.6em;
        margin-bottom: 25px;
    }
    
    .section-subtitle {
        font-size: 0.9em;
        padding: 0 5px;
    }
    
    .about-section {
        padding: 35px 0;
    }
    
    .about-text {
        font-size: 0.95em;
    }
    
    .contact-box {
        padding: 20px 15px;
    }
    
    .contact-box h3 {
        font-size: 1.2em;
    }
    
    .models-section {
        padding: 35px 0;
    }
    
    .models-grid {
        gap: 18px;
        justify-items: center;
    }
    
    .model-image {
        width: 315px;
        height: 350px;
    }
    
    .model-info {
        padding: 15px;
    }
    
    .model-name {
        font-size: 1.2em;
    }
    
    .action-btn {
        padding: 11px 14px;
        font-size: 0.85em;
    }
    
    .footer {
        padding: 25px 0 12px;
    }
    
    .footer-info p {
        font-size: 0.85em;
    }
    
    .footer-copyright {
        font-size: 0.8em;
    }
}

/* Extra Small Mobile (max-width: 360px) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.5em;
    }
    
    .model-name {
        font-size: 1.1em;
    }
    
    .action-btn {
        font-size: 0.8em;
        padding: 10px 12px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .model-card:hover {
        transform: none;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .model-card:active {
        transform: scale(0.98);
    }
    
    .action-btn:hover {
        transform: none;
    }
    
    .action-btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }
    
    .carousel-arrow:hover {
        transform: none;
    }
    
    /* Improve touch scrolling */
    .mobile-menu {
        -webkit-overflow-scrolling: touch;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .carousel-section {
        height: 100vh;
        min-height: 100vh;
        margin-top: -70px;
        position: relative;
    }
    
    #home {
        padding-top: 70px;
    }
}

/* Hybrid Battery Warranty — layout aligned with toyota.com.my hybrid-battery-warranty (Omotenashi CPL) */
#hybrid-warranty .tmy-hybrid-warranty {
    background: #fff;
    color: #252525;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#hybrid-warranty .tmy-hybrid-page-hdr {
    background: #fff;
}

#hybrid-warranty .tmy-hybrid-page-hdr-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 1.75rem;
    box-sizing: border-box;
}

#hybrid-warranty .tmy-hybrid-page-title {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.02em;
    color: #000;
}

#hybrid-warranty .tmy-hybrid-banner {
    width: 100%;
    line-height: 0;
    background: #000;
}

#hybrid-warranty .tmy-hybrid-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

#hybrid-warranty .tmy-hybrid-sec {
    padding: 3rem 0;
}

#hybrid-warranty .tmy-hybrid-sec--tight-top {
    padding-top: 0;
}

#hybrid-warranty .tmy-hybrid-sec--white {
    background: #fff;
}

#hybrid-warranty .tmy-hybrid-sec--offwhite {
    background: #f5f5f5;
    border-top: 1px solid #e8e8e8;
}

#hybrid-warranty .tmy-hybrid-wrap {
    max-width: 1200px;
}

#hybrid-warranty .tmy-hybrid-sec-head {
    margin-bottom: 1.75rem;
}

#hybrid-warranty .tmy-hybrid-sec-title {
    margin: 0;
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    font-weight: 700;
    line-height: 1.3;
    color: #000;
}

#hybrid-warranty .tmy-hybrid-sec-title span {
    border-bottom: 3px solid #eb0a1e;
    padding-bottom: 0.35rem;
    display: inline-block;
}

#hybrid-warranty .tmy-hybrid-card-side {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

#hybrid-warranty .tmy-hybrid-card-img {
    line-height: 0;
    background: #f0f0f0;
}

#hybrid-warranty .tmy-hybrid-card-img img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

#hybrid-warranty .tmy-hybrid-prose {
    font-size: 1rem;
    line-height: 1.65;
    color: #333;
}

#hybrid-warranty .tmy-hybrid-prose p {
    margin: 0 0 1rem;
}

#hybrid-warranty .tmy-hybrid-prose p:last-child {
    margin-bottom: 0;
}

#hybrid-warranty .tmy-expandable {
    margin-top: 1.25rem;
    border: none;
}

#hybrid-warranty .tmy-expandable-head {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    color: #eb0a1e;
    padding: 0.25rem 0;
    user-select: none;
}

#hybrid-warranty .tmy-expandable-head::-webkit-details-marker {
    display: none;
}

#hybrid-warranty .tmy-expandable-head::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5rem;
    vertical-align: middle;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #eb0a1e;
    transition: transform 0.2s ease;
}

#hybrid-warranty .tmy-expandable[open] .tmy-expandable-head::after {
    transform: rotate(180deg);
}

#hybrid-warranty .tmy-expandable-body {
    padding-top: 0.75rem;
}

#hybrid-warranty .tmy-expandable-body ul {
    margin: 0;
    padding-left: 1.25rem;
}

#hybrid-warranty .tmy-expandable-body li {
    margin-bottom: 0.65rem;
}

#hybrid-warranty .tmy-hybrid-disclaimer {
    margin: 2rem 0 0;
    color: #555;
}

#hybrid-warranty .tmy-hybrid-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -0.25rem;
}

#hybrid-warranty .tmy-hybrid-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: #252525;
}

#hybrid-warranty .tmy-hybrid-table thead th {
    background: #eb0a1e;
    color: #fff;
    font-weight: 700;
    text-align: left;
    vertical-align: bottom;
    padding: 1rem 0.85rem;
    border: 1px solid #d1091a;
    font-size: 0.8125rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

#hybrid-warranty .tmy-hybrid-table thead th:first-child {
    background: #fff;
    border-color: #ddd;
    border-bottom-color: #eb0a1e;
}

#hybrid-warranty .tmy-hybrid-table tbody th {
    text-align: left;
    font-weight: 700;
    vertical-align: top;
    padding: 1rem 0.85rem;
    border: 1px solid #ddd;
    background: #fafafa;
    width: 18%;
}

#hybrid-warranty .tmy-hybrid-table tbody td {
    vertical-align: top;
    padding: 1rem 0.85rem;
    border: 1px solid #ddd;
    background: #fff;
}

#hybrid-warranty .tmy-hybrid-table tbody p {
    margin: 0 0 0.75rem;
}

#hybrid-warranty .tmy-hybrid-table tbody p:last-child {
    margin-bottom: 0;
}

#hybrid-warranty .tmy-hybrid-table tbody ul {
    margin: 0;
    padding-left: 1.2rem;
}

#hybrid-warranty .tmy-hybrid-table tbody li {
    margin-bottom: 0.5rem;
}

#hybrid-warranty .tmy-hybrid-hva-wrap {
    max-width: 1200px;
    padding: 2.5rem 1.25rem;
}

#hybrid-warranty .tmy-hybrid-hva {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 2.5rem 4rem;
}

#hybrid-warranty .tmy-hybrid-hva-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #252525;
    max-width: 200px;
    transition: color 0.2s ease;
}

#hybrid-warranty .tmy-hybrid-hva-link:hover {
    color: #eb0a1e;
}

#hybrid-warranty .tmy-hybrid-hva-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 0.75rem;
    color: #eb0a1e;
}

#hybrid-warranty .tmy-hybrid-hva-icon svg {
    width: 40px;
    height: auto;
    max-height: 48px;
}

#hybrid-warranty .tmy-hybrid-hva-label {
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 899px) {
    #hybrid-warranty .tmy-hybrid-card-side {
        grid-template-columns: 1fr;
    }

    #hybrid-warranty .tmy-hybrid-page-hdr-inner {
        padding-top: 1.75rem;
    }

    #hybrid-warranty .tmy-hybrid-sec {
        padding: 2rem 0;
    }
}

/* —— Toyota Malaysia Service Savers (scoped, main content only) —— */
#service-savers .tmy-service-savers {
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #1a1a1a;
    background: #fff;
}

#service-savers .tmy-ss-hero {
    margin: 0;
    padding: 0;
    background: #fff;
}

#service-savers .tmy-ss-hero-rule {
    height: 3px;
    background: #EB0A1E;
    width: 100%;
}

#service-savers .tmy-ss-hero-inner {
    padding: 2rem 40px 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
}

#service-savers .tmy-ss-page-title {
    margin: 0;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #000;
    line-height: 1.1;
}

#service-savers .tmy-ss-hero-photo-wrap {
    margin: 0;
    padding: 0;
    line-height: 0;
    background: #e8e8e8;
}

#service-savers .tmy-ss-hero-picture,
#service-savers .tmy-ss-hero-photo {
    display: block;
    width: 100%;
    height: auto;
}

#service-savers .tmy-ss-kv {
    background: #fff;
    border-top: 3px solid #EB0A1E;
}

#service-savers .tmy-ss-kv-inner {
    padding: 2rem 40px 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

#service-savers .tmy-ss-kv-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 2px;
}

#service-savers .tmy-ss-model,
#service-savers .tmy-ss-faq {
    scroll-margin-top: 132px;
}

#service-savers .tmy-ss-model .container,
#service-savers .tmy-ss-faq .container {
    max-width: 1400px;
    padding-left: 40px;
    padding-right: 40px;
}

#service-savers .tmy-ss-model {
    padding: 0;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
}

#service-savers .tmy-ss-model--alt {
    background: #f2f2f2;
}

#service-savers .tmy-ss-model-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.25rem;
    width: 100%;
    margin: 0;
    padding: 1.25rem 0;
    border: none;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font: inherit;
    -webkit-tap-highlight-color: transparent;
}

#service-savers .tmy-ss-model-toggle:hover .tmy-ss-model-name,
#service-savers .tmy-ss-model-toggle:focus-visible .tmy-ss-model-name {
    color: #EB0A1E;
}

#service-savers .tmy-ss-model-toggle:focus-visible {
    outline: 2px solid #EB0A1E;
    outline-offset: 2px;
}

#service-savers .tmy-ss-model-toggle-thumb-wrap {
    flex: 0 0 auto;
    width: min(42vw, 200px);
    max-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

#service-savers .tmy-ss-model-thumb {
    width: 100%;
    height: auto;
    max-height: 88px;
    object-fit: contain;
    object-position: center;
}

#service-savers .tmy-ss-model-toggle-label {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    min-width: 0;
}

#service-savers .tmy-ss-model-toggle .tmy-ss-model-name {
    margin: 0;
    padding: 0;
    border: none;
    font-size: clamp(0.95rem, 2.2vw, 1.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #000000;
    line-height: 1.2;
}

#service-savers .tmy-ss-model.is-open .tmy-ss-model-toggle .tmy-ss-model-name {
    color: #EB0A1E;
}

#service-savers .tmy-ss-model--alt .tmy-ss-model-toggle {
    background: #f2f2f2;
}

#service-savers .tmy-ss-model--alt.is-open .tmy-ss-model-toggle {
    background: #ffffff;
}

#service-savers .tmy-ss-chevron {
    flex-shrink: 0;
    color: #EB0A1E;
    transition: transform 0.2s ease;
}

#service-savers .tmy-ss-model.is-open .tmy-ss-chevron {
    transform: rotate(180deg);
}

#service-savers .tmy-ss-model-panel {
    padding: 0 0 2.5rem;
    background: #f2f2f2;
    margin-left: -40px;
    margin-right: -40px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

#service-savers .tmy-ss-model-panel[hidden] {
    display: none !important;
}

#service-savers .tmy-ss-model-panel .tmy-ss-list {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

#service-savers .tmy-ss-model-panel .tmy-ss-list > li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.4rem;
}

#service-savers .tmy-ss-model-panel .tmy-ss-list > li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.35em;
    height: 0.35em;
    border-radius: 50%;
    background: #EB0A1E;
}

@media (min-width: 768px) {
    #service-savers .tmy-ss-pkg-grid .tmy-ss-pkg-col:first-child {
        border-right: 1px solid #ddd;
        padding-right: 1.5rem;
        margin-right: -0.5rem;
    }
}

#service-savers .tmy-ss-segment {
    margin-bottom: 2.5rem;
}

#service-savers .tmy-ss-segment:last-child {
    margin-bottom: 0;
}

#service-savers .tmy-ss-segment-label {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #EB0A1E;
}

#service-savers .tmy-ss-model-panel .tmy-ss-segment-label {
    color: #000000;
}

#service-savers .tmy-ss-lead {
    margin: 0 0 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.55;
    color: #111;
}

#service-savers .tmy-ss-pkg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

#service-savers .tmy-ss-pkg-grid--plain {
    align-items: start;
}

#service-savers .tmy-ss-col-head {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
}

#service-savers .tmy-ss-col-head--spaced {
    margin-top: 1.25rem;
}

#service-savers .tmy-ss-list {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    line-height: 1.6;
    font-size: 0.9375rem;
}

#service-savers .tmy-ss-list li {
    margin-bottom: 0.35rem;
}

#service-savers .tmy-ss-list--faq {
    margin-top: 1.25rem;
}

#service-savers .tmy-ss-subhead {
    margin: 1.25rem 0 0.65rem;
    font-weight: 700;
    font-size: 0.95rem;
}

#service-savers .tmy-ss-footnote {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #444;
}

#service-savers .tmy-ss-table-wrap {
    overflow-x: auto;
    margin: 1rem 0 1.25rem;
    -webkit-overflow-scrolling: touch;
}

#service-savers .tmy-ss-table {
    width: 100%;
    min-width: 280px;
    border-collapse: collapse;
    font-size: 0.875rem;
    background: #fff;
    border: 1px solid #ddd;
}

#service-savers .tmy-ss-model--alt .tmy-ss-table {
    background: #fff;
}

#service-savers .tmy-ss-table th,
#service-savers .tmy-ss-table td {
    border: 1px solid #ddd;
    padding: 1rem 1.1rem;
    vertical-align: top;
    line-height: 1.5;
}

#service-savers .tmy-ss-table thead th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
}

#service-savers .tmy-ss-table tbody td {
    color: #222;
}

#service-savers .tmy-ss-faq {
    padding: 3rem 0 3.5rem;
}

#service-savers .tmy-ss-faq-title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

#service-savers .tmy-ss-faq-intro {
    margin: 0 0 1rem;
    font-weight: 600;
    line-height: 1.55;
}

#service-savers .tmy-ss-faq-ol {
    margin: 0 0 1.5rem;
    padding-left: 1.5rem;
    line-height: 1.6;
}

#service-savers .tmy-ss-faq-ol li {
    margin-bottom: 0.75rem;
}

#service-savers .tmy-ss-official-links {
    list-style: none;
    margin: 2rem 0 0;
    padding: 0;
}

#service-savers .tmy-ss-official-links li {
    margin-bottom: 0.65rem;
}

#service-savers .tmy-ss-official-links a {
    color: #EB0A1E;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#service-savers .tmy-ss-official-links a:hover {
    color: #c00818;
}

@media (max-width: 767px) {
    #service-savers .tmy-ss-hero-inner,
    #service-savers .tmy-ss-kv-inner,
    #service-savers .tmy-ss-model .container,
    #service-savers .tmy-ss-faq .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    #service-savers .tmy-ss-pkg-grid {
        grid-template-columns: 1fr;
    }

    #service-savers .tmy-ss-model-panel {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    #service-savers .tmy-ss-model-toggle {
        flex-direction: column;
        align-items: center;
        gap: 0.65rem;
        padding: 1rem 0 1.15rem;
        text-align: center;
    }

    #service-savers .tmy-ss-model-toggle-thumb-wrap {
        width: 100%;
        max-width: 280px;
    }

    #service-savers .tmy-ss-model-thumb {
        max-height: 96px;
    }

    #service-savers .tmy-ss-model-toggle-label {
        width: 100%;
        flex: 0 0 auto;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.35rem 0.65rem;
    }

    #service-savers .tmy-ss-model-toggle .tmy-ss-model-name {
        flex: 0 1 auto;
        text-align: center;
    }
}

/* —— Finance calculator (reference layout) —— */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

#finance-calculator .finance-calc-page {
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    background: #fff;
    color: #1a1a1a;
    padding: 28px 0 48px;
}

#finance-calculator .finance-calc-inner {
    max-width: 1100px;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
}

#finance-calculator .finance-calc-dealer-header {
    text-align: center;
    margin-bottom: 20px;
}

#finance-calculator .finance-calc-logo {
    margin: 0 0 8px;
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #EB0A1E;
    line-height: 1;
}

#finance-calculator .finance-calc-company {
    margin: 0;
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
    color: #333;
    line-height: 1.45;
}

#finance-calculator .finance-calc-model-select {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 0 28px;
    padding: 10px 2.25rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
    font-family: inherit;
    text-align: center;
    text-align-last: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #e8e8e8;
    color: #1a1a1a;
    box-sizing: border-box;
}

#finance-calculator .finance-calc-otr-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(260px, 380px);
    gap: 12px 24px;
    align-items: stretch;
}

#finance-calculator .finance-calc-brace {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 0 2px;
    color: #000;
}

#finance-calculator .finance-calc-brace-char {
    font-family: Georgia, "Times New Roman", Times, serif;
    font-size: clamp(3.5rem, 14vmin, 7.5rem);
    font-weight: 300;
    line-height: 0.9;
    color: inherit;
    user-select: none;
}

#finance-calculator .finance-calc-line-rows {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#finance-calculator .finance-calc-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(100px, 140px);
    align-items: center;
    gap: 8px 10px;
}

#finance-calculator .finance-calc-line-label {
    font-size: 0.95rem;
    color: #1a1a1a;
}

#finance-calculator .finance-calc-rm {
    color: #1565c0;
    font-weight: 600;
    font-size: 0.95rem;
}

#finance-calculator .finance-calc-input {
    border: none;
    border-bottom: 1px solid #333;
    background: transparent;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1565c0;
    text-align: right;
    padding: 4px 2px;
    font-family: inherit;
    min-width: 0;
}

#finance-calculator .finance-calc-input:focus {
    outline: 2px solid #1565c0;
    outline-offset: 2px;
}

#finance-calculator .finance-calc-otr-summary {
    text-align: center;
    align-self: center;
}

#finance-calculator .finance-calc-otr-label {
    margin: 0 0 10px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
}

#finance-calculator .finance-calc-otr-total {
    display: inline-block;
    padding: 14px 22px;
    background: #ffe8d4;
    border: 1px solid #e8c9a8;
    border-radius: 4px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
}

#finance-calculator .finance-calc-vehicle-img-wrap {
    margin: 0 auto;
    max-width: 320px;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

#finance-calculator .finance-calc-vehicle-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

#finance-calculator .finance-calc-rule-contact {
    margin: 24px 0 0;
}

#finance-calculator .finance-calc-rule {
    border: none;
    border-top: 1px solid #1a1a1a;
    margin: 0 0 12px;
}

#finance-calculator .finance-calc-contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}

#finance-calculator .finance-calc-contact-line {
    margin: 0;
    font-size: 0.95rem;
    text-align: left;
}

#finance-calculator .finance-calc-contact-line:last-child {
    text-align: right;
}

#finance-calculator .finance-calc-contact-line a {
    color: #1565c0;
    font-weight: 600;
    text-decoration: underline;
}

#finance-calculator .finance-calc-loan {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: 24px 32px;
    align-items: start;
    margin-top: 0;
    margin-bottom: 0;
}

#finance-calculator .finance-calc-compare-wrap {
    margin-top: 0;
}

#finance-calculator .finance-calc-loan-inner {
    min-width: 0;
}

#finance-calculator .finance-calc-loan-vehicle {
    justify-self: end;
}

#finance-calculator .finance-calc-section-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 18px;
}

#finance-calculator .finance-calc-loan-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 14px;
}

#finance-calculator .finance-calc-loan-label {
    min-width: 160px;
    font-size: 1.25rem;
}

#finance-calculator .finance-calc-loan-row:not(.finance-calc-loan-readonly) .finance-calc-loan-label {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

#finance-calculator .finance-calc-loan-readonly .finance-calc-input {
    border-bottom-color: transparent;
}

#finance-calculator .finance-calc-loan-row .finance-calc-rm {
    font-size: 1.3rem;
}

#finance-calculator .finance-calc-loan-row #fc-downpayment,
#finance-calculator .finance-calc-loan-row #fc-loan-amount,
#finance-calculator .finance-calc-loan-value {
    font-size: 1.3rem;
    flex: 0 0 auto;
    width: 10rem;
    min-width: 8rem;
    max-width: 12rem;
    box-sizing: border-box;
}

#finance-calculator .finance-calc-loan-value {
    display: inline-block;
    font-weight: 600;
    color: #1565c0;
    text-align: right;
    border-bottom: 1px solid #333;
    padding: 5px 2px;
    vertical-align: bottom;
}

#finance-calculator .finance-calc-pct-wrap {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    flex: 0 0 auto;
}

#finance-calculator .finance-calc-pct-input {
    border: none;
    border-bottom: 1px solid #333;
    background: transparent;
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
    text-align: right;
    padding: 4px 2px;
    font-family: inherit;
    width: 3.75rem;
    min-width: 2.5rem;
    max-width: 5rem;
    box-sizing: border-box;
}

#finance-calculator .finance-calc-pct-input:focus {
    outline: 2px solid #1565c0;
    outline-offset: 2px;
}

#finance-calculator .finance-calc-pct-suffix {
    font-size: 1.3rem;
    font-weight: 600;
    color: #555;
    user-select: none;
}

#finance-calculator .finance-calc-table-scroll {
    overflow-x: auto;
    margin: 0 0 16px;
    -webkit-overflow-scrolling: touch;
}

#finance-calculator .finance-calc-table {
    width: 100%;
    min-width: 640px;
    table-layout: fixed;
    border-collapse: collapse;
    font-size: 0.9rem;
}

#finance-calculator .finance-calc-table th,
#finance-calculator .finance-calc-table td {
    border: 1px solid #bbb;
    padding: 12px 10px;
    vertical-align: top;
    background: #fff;
}

#finance-calculator .finance-calc-table thead th {
    font-weight: 700;
    text-align: center;
    background: #f5f5f5;
}

#finance-calculator .finance-calc-table thead th:first-child {
    background: #fff;
    border-color: transparent;
    border-bottom-color: #bbb;
}

#finance-calculator .finance-calc-row-label {
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
    background: #fafafa;
    white-space: nowrap;
}

#finance-calculator .finance-calc-cell {
    text-align: center;
}

#finance-calculator .finance-calc-tenure-select {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 10px;
    padding: 8px 10px;
    font-size: 0.85rem;
    font-family: inherit;
    border: 1px solid #aaa;
    border-radius: 4px;
    background: #e8e8e8;
    display: block;
}

#finance-calculator .finance-calc-monthly {
    display: block;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
    padding: 10px 14px;
    box-sizing: border-box;
    text-align: center;
    background: #fff9c4;
    border: 1px solid #e6d95c;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.88rem;
}

#finance-calculator .finance-calc-table tbody tr:nth-child(2) .finance-calc-monthly {
    background: #fff;
    border-color: #ccc;
}

#finance-calculator .finance-calc-monthly-val {
    white-space: nowrap;
    font-size: 1.2rem;
}

#finance-calculator .finance-calc-disclaimer {
    font-size: 0.75rem;
    line-height: 1.45;
    color: #333;
    width: 240px;
    max-width: 240px;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

#finance-calculator .finance-calc-disclaimer p {
    margin: 0;
}

#finance-calculator .finance-calc-footnote {
    font-size: 0.85rem;
    color: #555;
    margin: 0 0 24px;
    line-height: 1.5;
}

#finance-calculator .finance-calc-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

#finance-calculator .finance-calc-cta .brochure-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#finance-calculator .finance-calc-share-btn {
    flex: 1 1 200px;
    max-width: 100%;
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    cursor: pointer;
    font-family: inherit;
    box-sizing: border-box;
}

#finance-calculator .finance-calc-share-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

#finance-calculator .fc-share-download-fallback {
    flex: 1 1 100%;
    margin-top: 4px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #333;
}

#finance-calculator .fc-share-download-fallback .action-btn {
    margin-left: 8px;
    vertical-align: middle;
}

#finance-calculator .finance-calc-schedule-section {
    margin-top: 40px;
    padding-bottom: 4px;
}

#finance-calculator .finance-calc-schedule-inner {
    display: block;
    width: 100%;
    max-width: 1100px;
}

#finance-calculator .finance-calc-schedule-dropdown {
    display: block;
    border: none;
    border-radius: 0;
    background: transparent;
    overflow: visible;
    margin: 0;
    padding: 0;
    width: 100%;
}

#finance-calculator .finance-calc-schedule-dropdown-toggle {
    list-style: none;
    cursor: pointer;
    border-radius: 0;
    width: 100%;
    max-width: none;
    min-height: 49px;
    box-sizing: border-box;
    display: block;
    text-align: center;
    padding-right: 48px;
    position: relative;
    user-select: none;
    font-family: inherit;
    margin: 0;
    -webkit-appearance: none;
    appearance: none;
}

#finance-calculator .finance-calc-schedule-dropdown-toggle::-webkit-details-marker {
    display: none;
}

#finance-calculator .finance-calc-schedule-dropdown-toggle::marker {
    content: "";
}

#finance-calculator .finance-calc-schedule-dropdown-toggle::after {
    content: '+';
    font-size: 1.2rem;
    line-height: 1;
    color: #1a1a1a;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#finance-calculator .finance-calc-schedule-dropdown[open] .finance-calc-schedule-dropdown-toggle::after {
    content: '-';
}

#finance-calculator .finance-calc-schedule-dropdown-content {
    padding: 14px 0 0;
}

#finance-calculator .finance-calc-schedule-card {
    background: #f4f6f8;
    border: 1px solid #d7dce2;
    border-radius: 18px;
    padding: 28px 24px 20px;
}

#finance-calculator .finance-calc-schedule-title {
    margin: 0;
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 700;
    color: #0f3366;
}

#finance-calculator .finance-calc-schedule-subtitle {
    margin: 10px 0 20px;
    max-width: 66ch;
    color: #40526b;
    line-height: 1.45;
}

#finance-calculator .finance-calc-schedule-summary {
    margin: 0 0 8px;
    text-align: right;
}

#finance-calculator .finance-calc-schedule-summary-line {
    color: #425875;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

#finance-calculator .finance-calc-schedule-chart-wrap {
    background: #f4f6f8;
    border-radius: 12px;
}

#finance-calculator .finance-calc-schedule-chart {
    display: block;
    width: 100%;
    height: auto;
}

#finance-calculator .fc-schedule-axis-line {
    stroke: #c8d0da;
    stroke-width: 1.2;
}

#finance-calculator .fc-schedule-grid-line {
    stroke: #d6dde7;
    stroke-width: 1;
}

#finance-calculator .fc-schedule-axis-label {
    fill: #7f8da3;
    font-size: 15px;
    font-weight: 500;
}

#finance-calculator .fc-schedule-summary-label {
    fill: #425875;
    font-size: 13px;
    font-weight: 700;
}

#finance-calculator .fc-schedule-line {
    fill: none;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#finance-calculator .fc-schedule-line--principal {
    stroke: #15478a;
}

#finance-calculator .fc-schedule-line--interest {
    stroke: #e0a100;
}

#finance-calculator .fc-schedule-line--balance {
    stroke: #9e9e9e;
}

#finance-calculator .finance-calc-schedule-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 12px;
}

#finance-calculator .finance-calc-schedule-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #283347;
}

#finance-calculator .finance-calc-schedule-dot {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 3px solid currentColor;
    background: transparent;
    flex: 0 0 auto;
}

#finance-calculator .finance-calc-schedule-dot--principal {
    color: #15478a;
}

#finance-calculator .finance-calc-schedule-dot--interest {
    color: #e0a100;
}

#finance-calculator .finance-calc-schedule-dot--balance {
    color: #9e9e9e;
}

#finance-calculator .finance-calc-schedule-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

#finance-calculator .finance-calc-schedule-share-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 14px;
}

#finance-calculator .finance-calc-schedule-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 12px;
    min-width: 540px;
}

#finance-calculator .finance-calc-schedule-table th,
#finance-calculator .finance-calc-schedule-table td {
    padding: 14px 20px;
    text-align: left;
}

#finance-calculator .finance-calc-schedule-table thead th {
    background: #1f5d97;
    color: #fff;
    font-weight: 700;
}

#finance-calculator .finance-calc-schedule-table tbody td {
    color: #2d384d;
    border-bottom: 1px solid #d8e0ea;
    background: #f5f7fa;
}

#finance-calculator .finance-calc-schedule-table tbody tr:nth-child(even) td {
    background: #e8edf4;
}

#finance-calculator .finance-calc-schedule-table tbody td:last-child {
    font-weight: 700;
}

#finance-calculator .finance-calc-schedule-total-row td {
    background: #dbe5f2;
    font-weight: 800;
    color: #1f3555;
}

@media (max-width: 900px) {
    #finance-calculator .finance-calc-otr-grid {
        grid-template-columns: 1fr;
    }

    /* Line rows first, then OTR total; hide decorative brace on narrow screens */
    #finance-calculator .finance-calc-otr-summary {
        order: 1;
    }

    #finance-calculator .finance-calc-line-rows {
        order: 0;
    }

    #finance-calculator .finance-calc-brace {
        display: none;
    }

    /* Contact row duplicates Alien Loh line for desktop left/right; one line on narrow viewports */
    #finance-calculator .finance-calc-contact-row {
        justify-content: center;
    }

    #finance-calculator .finance-calc-contact-row .finance-calc-contact-line + .finance-calc-contact-line {
        display: none;
    }

    #finance-calculator .finance-calc-loan {
        grid-template-columns: 1fr;
    }

    #finance-calculator .finance-calc-loan-vehicle {
        justify-self: center;
        max-width: 320px;
        width: 100%;
    }

    #finance-calculator .finance-calc-loan-label {
        min-width: 0;
    }

    /* Downpayment: label on first row; RM + amount + % share remaining width */
    #finance-calculator .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) minmax(3.25rem, 5.75rem);
        grid-template-rows: auto auto;
        column-gap: 8px;
        row-gap: 6px;
        align-items: center;
    }

    #finance-calculator .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) .finance-calc-loan-label {
        grid-column: 1 / -1;
        grid-row: 1;
        min-width: 0;
    }

    #finance-calculator .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) .finance-calc-rm {
        grid-row: 2;
        grid-column: 1;
    }

    #finance-calculator .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) #fc-downpayment {
        grid-row: 2;
        grid-column: 2;
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    #finance-calculator .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) .finance-calc-pct-wrap {
        grid-row: 2;
        grid-column: 3;
        display: inline-flex;
        align-items: center;
        justify-content: flex-end;
        min-width: 0;
        width: 100%;
        max-width: 5.75rem;
    }

    #finance-calculator .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) .finance-calc-pct-input {
        width: 100%;
        min-width: 2.25rem;
        max-width: 100%;
        flex: 1 1 auto;
    }

    /* Loan requested: label row; RM + value on one line, fluid value width */
    #finance-calculator .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 8px;
        row-gap: 6px;
        align-items: center;
    }

    #finance-calculator .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly .finance-calc-loan-label {
        grid-column: 1 / -1;
        grid-row: 1;
        min-width: 0;
    }

    #finance-calculator .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly .finance-calc-rm {
        grid-row: 2;
        grid-column: 1;
    }

    #finance-calculator .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly .finance-calc-loan-value,
    #finance-calculator .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly #fc-loan-amount {
        grid-row: 2;
        grid-column: 2;
        width: 100%;
        min-width: 0;
        max-width: none;
        box-sizing: border-box;
    }

    #finance-calculator .finance-calc-row-label {
        width: 72px;
        max-width: 72px;
        min-width: 0;
        white-space: normal;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
        font-size: 0.8rem;
        line-height: 1.3;
        vertical-align: top;
        text-align: center;
    }

    #finance-calculator .finance-calc-schedule-card {
        border-radius: 14px;
        padding: 20px 14px 16px;
    }

    #finance-calculator .finance-calc-schedule-table th,
    #finance-calculator .finance-calc-schedule-table td {
        padding: 12px 14px;
    }

    #finance-calculator .finance-calc-tenure-select {
        max-width: 100%;
        min-height: 2.75em;
        line-height: 1.3;
        font-size: 0.72rem;
        padding: 6px 4px;
        white-space: normal;
        word-wrap: break-word;
    }

    #finance-calculator .finance-calc-monthly {
        white-space: normal;
        word-wrap: break-word;
        font-size: 0.8rem;
        line-height: 1.35;
        margin-top: 4px;
    }

    /* CTA: WhatsApp + Call equal width on row 1; Share full width row 2 */
    #finance-calculator .finance-calc-cta {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        align-items: stretch;
    }

    #finance-calculator .finance-calc-cta .whatsapp-btn,
    #finance-calculator .finance-calc-cta .brochure-btn {
        min-width: 0;
        width: 100%;
        max-width: none;
        box-sizing: border-box;
    }

    #finance-calculator .finance-calc-cta .whatsapp-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding-left: 10px;
        padding-right: 10px;
    }

    #finance-calculator .finance-calc-cta .finance-calc-share-btn,
    #finance-calculator .finance-calc-cta #fc-share-calc-btn {
        grid-column: 1 / -1;
        width: 100%;
        max-width: none;
        flex: none;
    }

    #finance-calculator .finance-calc-cta .fc-share-download-fallback {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    #finance-calculator .finance-calc-page {
        padding: 20px 0 40px;
    }

    #finance-calculator .finance-calc-line {
        grid-template-columns: 1fr auto minmax(88px, 1fr);
    }

    #finance-calculator .finance-calc-contact-row {
        flex-direction: column;
        align-items: center;
    }

    #finance-calculator .finance-calc-contact-line,
    #finance-calculator .finance-calc-contact-line:last-child {
        text-align: center;
        margin-left: 0;
    }
}

/* html2canvas clone only: force desktop layout so exports match PC despite narrow viewport */
#finance-calculator .finance-calc-inner.fc-capture-desktop-layout {
    width: 1100px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-otr-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(260px, 380px);
    gap: 12px 24px;
    align-items: stretch;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-otr-summary {
    order: 0;
    text-align: center;
    align-self: center;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-brace {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    padding: 0 2px;
    justify-self: stretch;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-brace-char {
    font-size: clamp(3.5rem, 14vmin, 7.5rem);
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
    gap: 24px 32px;
    align-items: start;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-label {
    min-width: 160px;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 14px;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) .finance-calc-loan-label {
    grid-column: unset;
    grid-row: unset;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) .finance-calc-rm,
#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) #fc-downpayment,
#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) .finance-calc-pct-wrap {
    grid-column: unset;
    grid-row: unset;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) #fc-downpayment {
    width: 10rem;
    min-width: 8rem;
    max-width: 12rem;
    flex: 0 0 auto;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) .finance-calc-pct-wrap {
    display: inline-flex;
    justify-content: unset;
    width: auto;
    min-width: 0;
    max-width: none;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row:not(.finance-calc-loan-readonly) .finance-calc-pct-input {
    width: 3.75rem;
    min-width: 2.5rem;
    max-width: 5rem;
    flex: 0 0 auto;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    margin-bottom: 14px;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly .finance-calc-loan-label,
#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly .finance-calc-rm,
#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly .finance-calc-loan-value,
#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly #fc-loan-amount {
    grid-column: unset;
    grid-row: unset;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly .finance-calc-loan-value,
#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-inner .finance-calc-loan-row.finance-calc-loan-readonly #fc-loan-amount {
    width: auto;
    min-width: 8rem;
    max-width: 12rem;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-loan-vehicle {
    justify-self: end;
    max-width: none;
    width: auto;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(100px, 140px);
    align-items: center;
    gap: 8px 10px;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-cta .whatsapp-btn,
#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-cta .brochure-btn {
    width: auto;
    min-width: 0;
    max-width: none;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-cta .finance-calc-share-btn,
#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-cta #fc-share-calc-btn {
    grid-column: unset;
    flex: 1 1 200px;
    max-width: 100%;
    width: auto;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-cta .fc-share-download-fallback {
    grid-column: unset;
    flex: 1 1 100%;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-contact-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-contact-line {
    text-align: left;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-contact-line:last-child {
    text-align: right;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-contact-row .finance-calc-contact-line + .finance-calc-contact-line {
    display: block;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-row-label {
    width: auto;
    max-width: none;
    white-space: nowrap;
    font-size: 1.1rem;
    line-height: inherit;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-tenure-select {
    min-height: 0;
    font-size: 0.85rem;
    line-height: 1.2;
    white-space: nowrap;
}

#finance-calculator .finance-calc-inner.fc-capture-desktop-layout .finance-calc-monthly {
    white-space: normal;
    font-size: 0.88rem;
    margin-top: 0;
}

.fc-finance-calc-save-overlay {
    position: fixed;
    inset: 0;
    z-index: 100050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
        max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.55);
}

.fc-finance-calc-save-overlay-panel {
    max-width: min(100%, 520px);
    max-height: min(92vh, 900px);
    overflow: auto;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.fc-finance-calc-save-overlay-hint {
    margin: 0 0 12px;
    font-size: 0.95rem;
    line-height: 1.45;
    color: #333;
}

.fc-finance-calc-save-overlay-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    -webkit-touch-callout: default;
}

.fc-finance-calc-save-overlay-close {
    margin-top: 14px;
    width: 100%;
    min-height: 44px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    background: #fff;
    color: #1a1a1a;
}

.fc-finance-calc-save-overlay-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.fc-finance-calc-save-overlay-share {
    width: 100%;
    min-height: 44px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    background: #1565c0;
    color: #fff;
}

.fc-finance-calc-save-overlay-save {
    width: 100%;
    min-height: 44px;
    font: inherit;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    background: #fff;
    color: #1a1a1a;
}

@media (pointer: coarse) {
    #finance-calculator .finance-calc-model-select,
    #finance-calculator .finance-calc-input,
    #finance-calculator .finance-calc-pct-input,
    #finance-calculator .finance-calc-tenure-select {
        min-height: 44px;
        font-size: max(16px, 0.95rem);
    }

    #finance-calculator .finance-calc-share-btn,
    #finance-calculator .finance-calc-cta .action-btn {
        min-height: 44px;
        touch-action: manipulation;
    }
}

/* Toyota Malaysia — Financial Packages (toyota.com.my financial-packages main content) */
#financing-packages .tmy-fin-pkg-page {
    background: #fff;
    color: #000;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#financing-packages .tmy-fin-pkg-hero {
    border-top: 3px solid #EB0A1E;
    background: #fff;
    padding: 0 0 0;
}

#financing-packages .tmy-fin-pkg-hero-inner {
    padding: 40px 16px 0;
    max-width: 1200px;
}

#financing-packages .tmy-fin-pkg-hero-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
}

#financing-packages .tmy-fin-pkg-hero-icon {
    display: block;
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    object-fit: contain;
}

#financing-packages .tmy-fin-pkg-h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    line-height: 1.1;
    color: #000;
}

#financing-packages .tmy-fin-pkg-kicker {
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.25;
    color: #000;
}

#financing-packages .tmy-fin-pkg-lede {
    font-size: clamp(0.95rem, 1.4vw, 1.08rem);
    line-height: 1.65;
    max-width: 48em;
    margin: 0 0 28px 0;
    color: #000;
}

#financing-packages .tmy-fin-pkg-hero-img-wrap {
    margin: 0 -16px 0;
    line-height: 0;
    background: #e8e8e8;
}

@media (min-width: 1232px) {
    #financing-packages .tmy-fin-pkg-hero-img-wrap {
        margin-left: calc(50% - 50vw + max(0px, 50vw - 600px));
        margin-right: calc(50% - 50vw + max(0px, 50vw - 600px));
        width: auto;
    }
}

#financing-packages .tmy-fin-pkg-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: min(52vh, 520px);
}

#financing-packages .tmy-fin-pkg-sec {
    padding: 48px 0 56px;
}

#financing-packages .tmy-fin-pkg-sec--pillars {
    padding-top: 36px;
}

#financing-packages .tmy-fin-pkg-sec--banks {
    background: #f7f7f7;
    border-top: 1px solid #e5e5e5;
}

#financing-packages .tmy-fin-pkg-sec--online {
    background: #fff;
}

#financing-packages .tmy-fin-pkg-sec--notes {
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
}

#financing-packages .tmy-fin-pkg-sec-title {
    font-size: clamp(1.05rem, 2.2vw, 1.35rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 28px 0;
    color: #000;
}

#financing-packages .tmy-fin-pkg-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 40px;
    max-width: 900px;
}

#financing-packages .tmy-fin-pkg-pillar-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #000;
    text-transform: none;
}

#financing-packages .tmy-fin-pkg-pillar-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #222;
}

#financing-packages .tmy-fin-pkg-banks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#financing-packages .tmy-fin-pkg-bank {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    overflow: hidden;
}

#financing-packages .tmy-fin-pkg-bank > .tmy-fin-pkg-bank-summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
}

#financing-packages .tmy-fin-pkg-bank > .tmy-fin-pkg-bank-summary::-webkit-details-marker {
    display: none;
}

#financing-packages .tmy-fin-pkg-bank > .tmy-fin-pkg-bank-summary::after {
    content: '';
    float: right;
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-right: 2px solid #EB0A1E;
    border-bottom: 2px solid #EB0A1E;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

#financing-packages .tmy-fin-pkg-bank[open] > .tmy-fin-pkg-bank-summary::after {
    transform: rotate(-135deg);
    margin-top: 12px;
}

#financing-packages .tmy-fin-pkg-bank-summary-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-right: 24px;
}

#financing-packages .tmy-fin-pkg-bank-logo {
    max-height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

#financing-packages .tmy-fin-pkg-bank-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 200px;
    flex: 1;
}

#financing-packages .tmy-fin-pkg-bank-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #000;
}

#financing-packages .tmy-fin-pkg-bank-tagline {
    font-size: 0.9rem;
    line-height: 1.45;
    color: #444;
}

#financing-packages .tmy-fin-pkg-bank-body {
    padding: 0 18px 20px;
    border-top: 1px solid #eee;
}

#financing-packages .tmy-fin-pkg-plan {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

#financing-packages .tmy-fin-pkg-plan:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

#financing-packages .tmy-fin-pkg-plan-title {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 12px 0;
    color: #000;
}

#financing-packages .tmy-fin-pkg-plan-bullets {
    margin: 0 0 14px 1.1em;
    padding: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #222;
}

#financing-packages .tmy-fin-pkg-plan-bullets li {
    margin-bottom: 4px;
}

#financing-packages .tmy-fin-pkg-models-label,
#financing-packages .tmy-fin-pkg-plan-subtitle {
    font-size: 0.88rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #000;
}

#financing-packages .tmy-fin-pkg-models {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

#financing-packages .tmy-fin-pkg-models li {
    font-size: 0.82rem;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 2px;
    color: #111;
}

#financing-packages .tmy-fin-pkg-online-lede {
    margin: -12px 0 24px 0;
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 40em;
    color: #222;
}

#financing-packages .tmy-fin-pkg-online-logos {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
    align-items: center;
}

#financing-packages .tmy-fin-pkg-online-logos a {
    display: block;
    line-height: 0;
    opacity: 0.92;
    transition: opacity 0.2s ease;
}

#financing-packages .tmy-fin-pkg-online-logos a:hover {
    opacity: 1;
}

#financing-packages .tmy-fin-pkg-online-logos img {
    max-height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

#financing-packages .tmy-fin-pkg-notes {
    margin: 0;
    padding-left: 1.2em;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #333;
    max-width: 52em;
}

#financing-packages .tmy-fin-pkg-notes li {
    margin-bottom: 10px;
}

#financing-packages .tmy-fin-pkg-cta {
    text-align: center;
    padding-bottom: 56px;
}

#financing-packages .tmy-fin-pkg-cta-text {
    margin: 0 auto 20px;
    max-width: 36em;
    font-size: 1rem;
    line-height: 1.55;
    color: #222;
}

#financing-packages .tmy-fin-pkg-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 767px) {
    #financing-packages .tmy-fin-pkg-pillars {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    #financing-packages .tmy-fin-pkg-hero-inner {
        padding-top: 28px;
    }

    #financing-packages .tmy-fin-pkg-bank-summary-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    #financing-packages .tmy-fin-pkg-bank > .tmy-fin-pkg-bank-summary::after {
        position: relative;
        margin-top: 0;
    }
}

/* Toyota Malaysia — Body & Paint (aligned with toyota.com.my body-and-paint-services) */
#body-paint .tmy-body-paint {
    background: #fff;
    color: #000;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#body-paint .tmy-bp-page-header.cpl-sec-bg-white {
    background: #fff;
}

#body-paint .tmy-bp-page-header-inner {
    padding: 36px 16px 28px;
    max-width: 1200px;
}

#body-paint .tmy-bp-logo-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

#body-paint .tmy-bp-header-icon {
    display: block;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

#body-paint .tmy-bp-logo-title {
    margin: 0;
    line-height: 1.1;
}

#body-paint .tmy-bp-h3,
#body-paint .tmy-bp-h4 {
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #000;
}

#body-paint .tmy-bp-h3 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

#body-paint .tmy-bp-header-copy {
    max-width: 52rem;
}

#body-paint .tmy-bp-kicker {
    margin: 0 0 12px;
}

#body-paint .tmy-bp-h4 {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    margin: 0;
}

#body-paint .tmy-bp-lead {
    margin: 0;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.65;
    font-weight: 400;
    color: #000;
}

#body-paint .tmy-bp-hero-banner {
    margin: 0;
    padding: 0;
    line-height: 0;
    width: 100%;
    overflow: hidden;
    background: #e8e8e8;
}

#body-paint .tmy-bp-hero-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center center;
    vertical-align: middle;
}

#body-paint .tmy-bp-free.cpl-sec-bg-white {
    background: #fff;
    padding: 48px 0 56px;
}

#body-paint .tmy-bp-free .container {
    max-width: 1200px;
}

#body-paint .tmy-bp-free-head {
    margin-bottom: 28px;
    max-width: 48rem;
}

#body-paint .tmy-bp-section-title {
    margin: 0 0 16px;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #000;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#body-paint .tmy-bp-free-intro {
    margin: 0;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.65;
    color: #000;
}

#body-paint .tmy-bp-free-body {
    max-width: 48rem;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.65;
    color: #000;
}

#body-paint .tmy-bp-free-body p {
    margin: 0 0 1rem;
}

#body-paint .tmy-bp-subhead {
    margin: 0 0 0.5rem;
    font-size: 1.045rem;
    line-height: 1.4;
    transform-origin: top left;
}

#body-paint .tmy-bp-subhead--spaced {
    margin-top: 2.5rem;
}

#body-paint .tmy-bp-list {
    margin: 0 0 1rem 1.25rem;
    padding: 0;
    list-style: disc;
}

#body-paint .tmy-bp-list li {
    margin-bottom: 0.35rem;
}

#body-paint .tmy-bp-carousel-section.cpl-sec-bg-black {
    background: #000;
    color: #fff;
    padding: 48px 0 64px;
}

#body-paint .tmy-bp-carousel-wrap {
    max-width: 1200px;
    position: relative;
}

#body-paint .tmy-bp-carousel-heading {
    margin: 0 0 28px;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #fff;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#body-paint .tmy-bp-carousel {
    position: relative;
    padding: 0 48px 40px;
}

#body-paint .tmy-bp-carousel-viewport {
    overflow: hidden;
    border-radius: 0;
}

#body-paint .tmy-bp-carousel-track {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    list-style: none;
    transition: transform 0.45s ease;
    will-change: transform;
}

#body-paint .tmy-bp-slide {
    flex: 0 0 auto;
    width: 100%;
    box-sizing: border-box;
}

#body-paint .tmy-bp-slide-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a1a;
}

#body-paint .tmy-bp-slide-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

#body-paint .tmy-bp-slide-panel {
    padding: 28px 8px 0;
    max-width: 42rem;
}

#body-paint .tmy-bp-slide-title {
    margin: 0 0 12px;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

#body-paint .tmy-bp-slide-desc {
    margin: 0;
    font-size: clamp(0.9rem, 1.4vw, 1rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
}

#body-paint .tmy-bp-carousel-prev,
#body-paint .tmy-bp-carousel-next {
    position: absolute;
    top: 32%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    padding: 0;
    z-index: 2;
    color: #fff;
    transition: background 0.2s ease, border-color 0.2s ease;
}

#body-paint .tmy-bp-carousel-prev:hover,
#body-paint .tmy-bp-carousel-next:hover {
    background: rgba(255, 255, 255, 0.12);
}

#body-paint .tmy-bp-carousel-prev {
    left: 0;
}

#body-paint .tmy-bp-carousel-next {
    right: 0;
}

#body-paint .tmy-bp-carousel-prev::after,
#body-paint .tmy-bp-carousel-next::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 auto;
    border: solid currentColor;
    border-width: 0 2px 2px 0;
}

#body-paint .tmy-bp-carousel-prev::after {
    transform: rotate(135deg);
    margin-left: 14px;
}

#body-paint .tmy-bp-carousel-next::after {
    transform: rotate(-45deg);
    margin-right: 10px;
}

#body-paint .tmy-bp-carousel-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 0;
}

#body-paint .tmy-bp-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

#body-paint .tmy-bp-carousel-dot[aria-selected="true"] {
    background: #fff;
    transform: scale(1.15);
}

#body-paint .tmy-bp-hva.cpl-sec-bg-offwhite {
    background: #f5f5f5;
    padding: 40px 0 48px;
}

#body-paint .tmy-bp-hva-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 24px 48px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

#body-paint .tmy-bp-hva-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    min-width: 140px;
    padding: 8px 16px;
    transition: color 0.2s ease;
}

#body-paint .tmy-bp-hva-link:hover {
    color: #EB0A1E;
}

#body-paint .tmy-bp-hva-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: currentColor;
}

#body-paint .tmy-bp-hva-icon svg {
    display: block;
}

#body-paint .tmy-bp-hva-label {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-family: 'Toyota Type', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

@media (max-width: 599px) {
    #body-paint .tmy-bp-carousel {
        padding: 0 40px 36px;
    }

    #body-paint .tmy-bp-carousel-prev,
    #body-paint .tmy-bp-carousel-next {
        top: 28%;
        width: 38px;
        height: 38px;
    }

    #body-paint .tmy-bp-hva-list {
        flex-direction: column;
        align-items: center;
    }
}

