/* 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 {
    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;
}

.lang-toggle-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 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    font-family: 'Toyota Type', sans-serif;
    transition: color 0.3s ease;
}

/* 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,
#price-list,
#finance-calculator,
#financing-packages,
#body-paint,
#promotions,
#model-detail {
    padding-top: 113px;
}

/* Insurance Page Styles */
.insurance-hero {
    background: linear-gradient(135deg, #EB0A1E 0%, #C40818 100%);
    color: white;
    padding: 80px 0;
}

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

.insurance-hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.insurance-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.insurance-hero-left h1 {
    font-size: 3em;
    font-weight: 700;
    margin: 0;
    font-family: 'Toyota Type', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.insurance-hero-right h1 {
    font-size: 2.5em;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-family: 'Toyota Type', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.insurance-hero-right p {
    font-size: 1.2em;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.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: 80px 0;
    background: #f5f5f5;
}

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

.insurance-benefit-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    transition: all 0.3s ease;
}

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

.insurance-benefit-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
}

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

.insurance-benefit-content {
    flex: 1;
}

.insurance-benefit-content h5 {
    font-size: 1.3em;
    font-weight: 700;
    color: #EB0A1E;
    margin: 0 0 15px 0;
    font-family: 'Toyota Type', sans-serif;
}

.insurance-benefit-content p {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

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

.insurance-benefit-content ul li {
    font-size: 1em;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
    padding-left: 0;
}

.insurance-benefit-content ul li:last-child {
    margin-bottom: 0;
}

.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: 80px 0;
    background: #f5f5f5;
}

.insurance-details-section h2 {
    font-size: 2.2em;
    font-weight: 700;
    color: #333;
    margin: 0 0 40px 0;
    font-family: 'Toyota Type', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.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 {
        padding: 60px 0;
    }

    .insurance-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .insurance-hero-left h1 {
        font-size: 2em;
    }

    .insurance-hero-right h1 {
        font-size: 1.8em;
    }

    .insurance-hero-right p {
        font-size: 1em;
    }

    .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: 30px;
    }

    .insurance-benefit-card {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .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-section h2 {
        font-size: 1.8em;
    }

    .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;
    }
}

.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 i {
    font-size: 2.5em;
    color: #EB0A1E;
    margin-bottom: 20px;
}

.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,
    #price-list,
    #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;
    }
    
    .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;
    }
}

