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

/* Toyota Type Font Family */
@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;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Toyota Type', 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 3px solid #dc2626;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
}

.toyota-logo {
    display: flex;
    align-items: center;
}

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

/* Navigation Section */
.nav-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

/* Top Navigation */
.top-nav {
    display: flex;
    gap: 20px;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #e5e7eb;
}

.top-nav .nav-link {
    font-size: 12px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.top-nav .nav-link {
    position: relative;
    overflow: hidden;
}

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

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

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


.top-nav .nav-link.external {
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-nav .nav-link.external i {
    font-size: 10px;
}

.top-nav .nav-link.whatsapp-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #25d366;
    font-weight: 600;
}

.top-nav .nav-link.whatsapp-nav:hover {
    color: #128c7e;
}

.top-nav .nav-link.whatsapp-nav i {
    font-size: 14px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

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

.main-nav .nav-link {
    position: relative;
    overflow: hidden;
}

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

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

.main-nav .nav-link:hover {
    color: #dc2626;
}

.main-nav .nav-link i {
    font-size: 10px;
}

.search-link {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    padding: 5px;
    transition: color 0.3s ease;
}

.search-link:hover {
    color: #dc2626;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #f9fafb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid #e5e7eb;
    padding: 25px 0 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mega-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-menu-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.mega-menu-columns {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 30px;
    width: 100%;
}

.mega-column h4 {
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
    font-weight: 600;
}

.mega-column a {
    display: block;
    font-size: 0.9rem;
    color: #111827;
    text-decoration: none;
    padding: 3px 0;
    transition: color 0.2s ease;
}

.mega-column a:hover {
    color: #dc2626;
}

.mega-column a.active {
    color: #dc2626;
    font-weight: 600;
}

.main-nav .nav-link.dropdown.active {
    color: #dc2626;
}

.main-nav .nav-link.dropdown.active::after {
    width: 100%;
}

@media (max-width: 1024px) {
    .mega-menu {
        display: none !important;
    }
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: #000;
    transition: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-nav {
        gap: 15px;
    }
    
    .main-nav {
        gap: 20px;
    }
    
    .top-nav .nav-link {
        font-size: 11px;
    }
    
    .main-nav .nav-link {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .nav-section {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        padding: 20px;
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .nav-section.active {
        display: flex;
    }
    
    .top-nav {
        flex-direction: column;
        gap: 15px;
        border-bottom: 1px solid #e5e7eb;
        padding-bottom: 15px;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .header-content {
        padding: 15px 0;
    }
    
    .toyota-logo-img {
        height: 45px;
        max-width: 150px;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.slide-content {
    text-align: left;
    max-width: 600px;
    margin-left: 50px;
    margin-right: auto;
}

.slide-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
    line-height: 1;
}

.slide-content h2 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
    line-height: 1;
}

.slide-content p {
    font-size: 1.2rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: white;
    margin-bottom: 30px;
    line-height: 1.4;
}

.explore-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.explore-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.carousel-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
}

.carousel-btn {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 5px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.carousel-btn:hover {
    opacity: 0.7;
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 0;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #dc2626;
    border-color: #dc2626;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f9fafb;
}

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

.about-text h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Bank Cards */
.bank-cards {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.bank-cards h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

.bank-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.bank-card {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.bank-card:hover {
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.1);
}

.bank-logo {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

/* Qualification Section */
.qualification {
    padding: 80px 0;
    background: #dc2626;
    color: white;
    text-align: center;
}

.qualification-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.qualification-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.qualification-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* GR/G-Limited Models Section */
.gr-models {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.gr-models h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Featured GR Card */
.gr-featured-card {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ff0000;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gr-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
    border-color: #ff3333;
}

.gr-featured-image {
    flex: 1;
    position: relative;
    height: 300px;
    overflow: hidden;
}

/* Remove this rule that was hiding text overlays */

.gr-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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


.gr-featured-image .gr-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff0000;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
}

.gr-featured-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.gr-featured-content h3 {
    font-size: 2.5rem;
    color: #fff;
    margin: 0 0 10px 0;
    font-weight: 700;
    align-self: flex-start;
}

.gr-featured-content .price {
    font-size: 1.4rem;
    color: #ffd700;
    margin: 0 0 30px 0;
    padding: 0;
    font-weight: 700;
    position: static !important;
    text-shadow: none !important;
    align-self: flex-start;
}

.promo-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
}

.promo-tag .discount {
    background: #ff0000;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-tag .free-service {
    background: #00ff00;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gr-featured-content .description {
    font-size: 1.1rem;
    color: #e5e5e5;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.gr-featured-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-self: stretch;
    margin-top: auto;
    width: 100%;
}

.gr-featured-actions .btn-brochure,
.gr-featured-actions .btn-pricelist,
.gr-featured-actions .btn-whatsapp {
    flex: 1 !important;
    width: auto !important;
    min-width: 120px;
    padding: 12px 20px;
    border: 1px solid #fff;
    border-radius: 0;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: transparent;
    color: #fff;
}

.gr-featured-actions .btn-brochure:hover,
.gr-featured-actions .btn-pricelist:hover {
    background: #fff;
    color: #000;
}

.gr-featured-actions .btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.gr-featured-actions .btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
}

.gr-card {
    background: #272727;
    border: 2px solid #ff0000;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.gr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
    border-color: #ff3333;
}

.gr-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff0000;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 4;
}

.gr-badge.g-limited {
    background: #ffa500;
    color: #000;
}

.gr-card .gr-featured-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 100%;
    aspect-ratio: 1;
    flex: 1;
}

.gr-card .gr-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gr-card .gr-featured-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.gr-card .gr-featured-image h3 {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: auto;
    color: white;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    font-weight: 700;
    z-index: 3;
    display: block;
}

.gr-card .gr-featured-image .price {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: auto;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    z-index: 3;
    display: block;
}

.gr-card .gr-featured-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #272727;
    flex: 0 0 auto;
}

/* GR Card Button Styling to match Featured Card */
.gr-card .gr-featured-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-self: stretch;
    margin-top: auto;
    width: 100%;
}

.gr-card .gr-featured-actions .btn-brochure,
.gr-card .gr-featured-actions .btn-pricelist,
.gr-card .gr-featured-actions .btn-whatsapp {
    flex: 1;
    min-width: 100px;
    padding: 12px 15px;
    border: 1px solid #fff;
    border-radius: 0;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: transparent;
    color: #fff;
}

.gr-card .gr-featured-actions .btn-brochure:hover,
.gr-card .gr-featured-actions .btn-pricelist:hover {
    background: #fff;
    color: #000;
}

.gr-card .gr-featured-actions .btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.gr-card .gr-featured-actions .btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
}

/* Mobile Responsive for GR Card Buttons */
@media (max-width: 768px) {
    .gr-card .gr-featured-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
    }
    
    .gr-card .gr-featured-actions .btn-brochure,
    .gr-card .gr-featured-actions .btn-pricelist {
        grid-row: 1;
    }
    
    .gr-card .gr-featured-actions .btn-whatsapp {
        grid-column: 1 / -1;
        grid-row: 2;
    }
    
    /* Mobile Responsive for Regular Model Card Buttons */
    .model-card .gr-featured-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        gap: 10px;
    }
    
    .model-card .gr-featured-actions .btn-brochure,
    .model-card .gr-featured-actions .btn-pricelist {
        grid-row: 1;
    }
    
    .model-card .gr-featured-actions .btn-whatsapp {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

/* Models Section */
.models {
    padding: 100px 0;
    background: white;
}

.models h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 60px;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.model-card {
    background: #272727;
    border: 2px solid #ff0000;
    text-align: center;
    padding: 0;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-image {
    height: 300px;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

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

.model-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.model-card h3 {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: auto;
    font-size: 1.8rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    font-weight: 700;
    z-index: 2;
}

.price {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: auto;
    font-size: 1.4rem;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    font-weight: 700;
    z-index: 2;
}

.model-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    padding: 0;
    width: 100%;
}

/* Model Card Content Section */
.model-card .gr-featured-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #272727;
    flex: 0 0 auto;
}

.model-card .gr-featured-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-self: stretch;
    margin-top: auto;
    width: 100%;
}

.model-card .gr-featured-actions .btn-brochure,
.model-card .gr-featured-actions .btn-pricelist,
.model-card .gr-featured-actions .btn-whatsapp {
    flex: 1;
    min-width: 100px;
    padding: 12px 15px;
    border: 1px solid #fff;
    border-radius: 0;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    background: transparent;
    color: #fff;
}

.model-card .gr-featured-actions .btn-brochure:hover,
.model-card .gr-featured-actions .btn-pricelist:hover {
    background: #fff;
    color: #000;
}

.model-card .gr-featured-actions .btn-whatsapp {
    background: #25d366;
    border-color: #25d366;
    color: #fff;
}

.model-card .gr-featured-actions .btn-whatsapp:hover {
    background: #128c7e;
    border-color: #128c7e;
}

/* Model Card Image Styling to match GR cards */
.model-card .gr-featured-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    width: 100%;
    aspect-ratio: 1;
    flex: 1;
}

.model-card .gr-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.model-card .gr-featured-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.model-card .gr-featured-image h3 {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: auto;
    color: white;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    font-weight: 700;
    z-index: 3;
    display: block;
}

.model-card .gr-featured-image .price {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: auto;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.4rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    z-index: 3;
    display: block;
}

.btn-brochure, .btn-pricelist, .btn-whatsapp {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #000;
    border-radius: 0;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-brochure, .btn-pricelist {
    background: white;
    color: #000;
}

.btn-brochure:hover, .btn-pricelist:hover {
    background: #000;
    color: white;
}

.btn-whatsapp {
    background: #dc2626;
    color: white;
    border-color: #dc2626;
}

.btn-whatsapp:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #f9fafb;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 10px;
}

.testimonials h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #6b7280;
    margin-bottom: 60px;
    font-weight: 300;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #1f2937;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #6b7280;
    display: block;
    margin-top: 5px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.contact-header p {
    font-size: 1.3rem;
    color: #e5e7eb;
    margin: 0;
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff0000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

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

.contact-details h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
}

.contact-details p {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 10px;
    line-height: 1.5;
}

.contact-link {
    color: #ff0000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #fff;
}

.whatsapp-link {
    background: #25d366;
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

.contact-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #ff0000;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 180px;
    justify-content: center;
}

.btn-primary {
    background: #25d366;
    color: white;
}

.btn-primary:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #1f2937;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.contact-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-note {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
}

.contact-form {
    background: #f9fafb;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #9ca3af;
}

.footer-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bank-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bank-card {
        padding: 15px;
    }

    .bank-logo {
        font-size: 0.8rem;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-item {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .model-card h3 {
        font-size: 1.5rem;
    }
    
    .btn-brochure, .btn-pricelist, .btn-whatsapp {
        max-width: 150px;
        font-size: 12px;
        padding: 10px 15px;
    }
}

@media (max-width: 480px) {
    .models-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .model-image {
        height: 200px;
        aspect-ratio: 1;
    }
    
    .model-card .gr-featured-image {
        height: 200px;
        aspect-ratio: 1;
    }
    
    .model-card h3 {
        font-size: 1.3rem;
    }
    
    .btn-brochure, .btn-pricelist, .btn-whatsapp {
        max-width: 100%;
        font-size: 11px;
        padding: 8px 12px;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .contact-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
    }

    .social-links {
        justify-content: center;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .carousel-controls {
        padding: 0 10px;
    }

    .carousel-btn {
        font-size: 1.5rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .about-text h2,
    .qualification-content h2,
    .models h2,
    .testimonials h2,
    .contact-info h2 {
        font-size: 2rem;
    }

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

    .model-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.model-card,
.testimonial-card {
    transition: all 0.3s ease;
}

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

/* Promotions Page Styles */
.promotions-hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.promotions-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.promotions-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    background: #f9fafb;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb-nav a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #dc2626;
}

.breadcrumb-nav .separator {
    color: #9ca3af;
}

.breadcrumb-nav .current {
    color: #374151;
    font-weight: 500;
}

.promotions-content {
    padding: 40px 0;
    background: white;
}

/* Featured Promotion (Yaris) */
.featured-promotion {
    display: flex;
    background: white;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.featured-car-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.featured-car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.featured-promotion-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-promotion-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.monthly-installment {
    margin-bottom: 25px;
}

.monthly-installment p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 8px;
}

.installment-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    display: block;
}

.promo-value {
    margin-bottom: 30px;
}

.promo-value p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 8px;
}

.promo-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    display: block;
}

.featured-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.speak-advisor-btn {
    background: white;
    color: #000;
    border: 2px solid #000;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.3s ease;
}

.speak-advisor-btn:hover {
    background: #000;
    color: white;
}

.download-brochure {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    transition: color 0.3s ease;
}

.download-brochure:hover {
    color: #b91c1c;
}

/* Secondary Promotions */
.secondary-promotions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.promotion-card {
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.car-image {
    height: 250px;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-width: 0;
}

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

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

.promotion-details {
    padding: 25px;
}

.promotion-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.monthly-installment {
    margin-bottom: 15px;
}

.monthly-installment p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.installment-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    display: block;
}

.promo-value {
    margin-bottom: 20px;
}

.promo-value p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.promo-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    display: block;
}

.promotion-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.promotion-actions .speak-advisor-btn {
    padding: 12px 20px;
    font-size: 12px;
}

.promotion-actions .download-brochure {
    font-size: 14px;
}

/* Hilux Promotion */
.hilux-promotion {
    display: flex;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 40px;
}

.hilux-promotion .car-image {
    flex: 1;
    height: 300px;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

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

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

.hilux-promotion .promotion-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hilux-promotion h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.hilux-promotion .monthly-installment {
    margin-bottom: 20px;
}

.hilux-promotion .installment-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.hilux-promotion .promo-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.additional-offer {
    margin-bottom: 25px;
}

.additional-offer p {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.hilux-promotion .promotion-actions {
    flex-direction: row;
    gap: 20px;
}

.hilux-promotion .speak-advisor-btn {
    flex: 1;
    padding: 15px 20px;
    font-size: 14px;
}

.hilux-promotion .download-brochure {
    flex: 1;
    text-align: center;
    padding: 15px 20px;
    border: 2px solid #dc2626;
    border-radius: 5px;
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hilux-promotion .download-brochure:hover {
    background: #dc2626;
    color: white;
}

.promotions-contact {
    background: #f9fafb;
    padding: 60px 0;
    text-align: center;
    border-radius: 15px;
}

.promotions-contact h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 15px;
}

.promotions-contact p {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #374151;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(55, 65, 81, 0.3);
    color: white;
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Active state for navigation */
.top-nav .nav-link.active {
    color: #dc2626;
    font-weight: 600;
}

/* Responsive Design for Promotions */
@media (max-width: 768px) {
    .promotions-hero h1 {
        font-size: 2rem;
    }
    
    .promotions-hero p {
        font-size: 1rem;
    }
    
    .featured-promotion {
        flex-direction: column;
    }
    
    .featured-car-image {
        height: 250px;
    }
    
    .featured-promotion-details {
        padding: 25px;
    }
    
    .featured-promotion-details h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .installment-amount,
    .promo-amount {
        font-size: 2rem;
    }
    
    .secondary-promotions {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hilux-promotion {
        flex-direction: column;
    }
    
    .hilux-promotion .car-image {
        height: 250px;
    }
    
    .hilux-promotion .promotion-details {
        padding: 25px;
    }
    
    .hilux-promotion h3 {
        font-size: 1.5rem;
    }
    
    .hilux-promotion .installment-amount,
    .hilux-promotion .promo-amount {
        font-size: 1.5rem;
    }
    
    .hilux-promotion .promotion-actions {
        flex-direction: column;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-btn,
    .phone-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Mobile Responsive for GR Featured Card */
@media (max-width: 768px) {
    .gr-featured-card {
        flex-direction: column;
    }

    .gr-featured-image {
        height: 250px;
    }

    .gr-featured-content {
        padding: 30px 20px;
    }

    .gr-featured-content h3 {
        font-size: 2rem;
    }

    .gr-featured-content .price {
        font-size: 1.5rem;
    }
}

/* PDF Loading States */
.btn-brochure, .btn-pricelist {
    position: relative;
    transition: all 0.3s ease;
}

.btn-brochure:disabled, .btn-pricelist:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-brochure.loading, .btn-pricelist.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn-brochure.loading::after, .btn-pricelist.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* PDF Link Hover Effects */
a[href$=".pdf"]:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Vios Page Specific Styles */
.vios-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 120px 0 80px;
    margin-top: 80px;
}

/* Quick Navigation */
.quick-nav {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-top: -80px;
    padding-top: 100px;
}

.quick-nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.quick-nav .nav-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.quick-nav .nav-link:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Toyota Type', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Vios Overview Section */
.vios-overview {
    background: white;
    padding: 80px 0;
}

.vios-overview-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vios-key-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.vios-key-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.vios-key-features .feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.vios-key-features .feature-item i {
    color: #dc2626;
    font-size: 1.2rem;
    width: 20px;
}

.vios-key-features .feature-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.vios-pricing {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

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

.price-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    font-family: 'Toyota Type', sans-serif;
}

/* Design Highlights */
.design-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.highlight-item i {
    color: #dc2626;
    font-size: 1rem;
    width: 16px;
}

.highlight-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1a1a1a;
}

/* Performance Specs */
.performance-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.spec-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.spec-item i {
    color: #dc2626;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.spec-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 5px 0;
}

.spec-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Safety Categories */
.safety-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.safety-category h3 {
    font-family: 'Toyota Type', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 30px;
    text-align: center;
}

/* Gallery Thumbnails */
.gallery-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 60px;
    height: 40px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail.active {
    opacity: 1;
    border-color: #dc2626;
}

.thumbnail:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

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

/* Color Actions */
.color-actions {
    text-align: center;
    margin-top: 40px;
}

/* Contact Features Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.contact-features .feature-item i {
    color: #4ade80;
    font-size: 1.1rem;
}

.contact-features .feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.info-item i {
    color: #dc2626;
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: white;
}

.info-item p {
    font-size: 0.9rem;
    margin: 0;
    color: #ccc;
}


.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.video-info h3 {
    font-family: 'Toyota Type', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.video-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.video-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.video-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.video-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-feature i {
    color: #dc2626;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.video-feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #1a1a1a;
}

.vios-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vios-hero-image {
    position: relative;
}

.vios-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vios-hero-details h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.vios-tagline {
    font-size: 1.5rem;
    color: #dc2626;
    font-weight: 500;
    margin-bottom: 30px;
}

.vios-pricing {
    margin-bottom: 40px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 15px;
}

.price-label {
    font-size: 1.2rem;
    color: #666;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-installment {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.installment-label {
    font-size: 1rem;
    color: #666;
}

.installment-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc2626;
}

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

.btn-test-drive {
    background: #dc2626;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-test-drive:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

/* Vios Variants */
.vios-variants {
    padding: 80px 0;
    background: white;
}

.vios-variants h2 {
    font-family: 'Toyota Type', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.variant-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.variant-image {
    height: 200px;
    overflow: hidden;
}

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

.variant-details {
    padding: 30px;
}

.variant-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.variant-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 20px;
}

.variant-features {
    list-style: none;
    margin-bottom: 25px;
}

.variant-features li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.variant-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: bold;
}

.variant-actions {
    display: flex;
    gap: 15px;
}

.btn-pricelist {
    background: #f8f9fa;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.btn-pricelist:hover {
    background: #e9ecef;
    border-color: #dc2626;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1da851;
}

/* Vios Features */
.vios-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.vios-features h2 {
    font-family: 'Toyota Type', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #dc2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Vios Promotions */
.vios-promotions {
    padding: 80px 0;
    background: white;
}

.vios-promotions h2 {
    font-family: 'Toyota Type', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.promotion-card {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promotion-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fbbf24;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.promotion-card h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.promotion-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.promotion-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.promotion-item i {
    font-size: 1.3rem;
    color: #fbbf24;
}

.btn-promotion {
    background: white;
    color: #dc2626;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-promotion:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Vios Contact */
.vios-contact {
    padding: 80px 0;
    background: #1a1a1a;
    color: white;
}

.vios-contact h2 {
    font-family: 'Toyota Type', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.vios-contact p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.contact-features {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 50px;
}

.contact-features li {
    padding: 10px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-features li i {
    color: #dc2626;
    font-size: 1.2rem;
}

.contact-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.phone-btn {
    background: #dc2626;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Vios Hero Banner Section */
.vios-hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.vios-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vios-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vios-hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.vios-text-container {
    position: relative;
    color: white;
    max-width: 600px;
    font-family: 'Toyota Type', sans-serif;
}

.vios-text-line {
    width: 60px;
    height: 2px;
    background: white;
    margin-bottom: 20px;
}

.vios-brand {
    font-family: 'Toyota Type', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.vios-main-text {
    position: relative;
    margin-bottom: 30px;
}

.vios-level-up {
    font-family: 'Toyota Type', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.vios-always {
    font-family: 'Toyota Type', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vios-vertical-line {
    position: absolute;
    right: -40px;
    top: 0;
    width: 2px;
    height: 120px;
    background: white;
}

.vios-price {
    font-family: 'Toyota Type', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 20px;
}

.vios-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
    opacity: 0.8;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.5;
    }
    100% {
        top: 8px;
        opacity: 1;
    }
}

/* Vios Main Section */
.vios-main {
    background: white;
    padding: 80px 0;
}

.vios-main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vios-image-section {
    position: relative;
}

.vios-video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.vios-video-container .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.vios-video-container .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.vios-video-container:hover .video-overlay {
    opacity: 0;
}

.vios-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-play-button {
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.video-play-button:hover {
    background: #dc2626;
    transform: scale(1.1);
    color: white;
    text-decoration: none;
}

.video-play-button i {
    color: white;
    font-size: 2rem;
    margin-left: 5px;
}

.vios-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #000;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.vios-info-section h2 {
    font-family: 'Toyota Type', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.vios-info-section p {
    font-family: 'Toyota Type', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.view-models-link {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 40px;
    display: inline-block;
}

.vios-features {
    margin-bottom: 40px;
}

.feature-item {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
}

.vios-pricing {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.price-label {
    font-size: 1.2rem;
    color: #666;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.calculate-btn {
    background: white;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calculate-btn:hover {
    background: #1a1a1a;
    color: white;
}

/* Design & Comfort Section */
.design-comfort {
    background: #f8f9fa;
    padding: 80px 0;
}

.design-comfort-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.design-image {
    position: relative;
}

.fastback-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.design-text {
    background: #e9ecef;
    padding: 40px;
    border-radius: 15px;
}

.design-text h2 {
    font-family: 'Toyota Type', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.design-text h3 {
    font-family: 'Toyota Type', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.design-text p {
    font-family: 'Toyota Type', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Features Section */
.vios-features-section {
    background: white;
    padding: 80px 0;
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.feature-card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-image {
    width: 200px;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.feature-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.feature-content p {
    color: #666;
    line-height: 1.5;
}

.show-more-btn {
    text-align: center;
}

.show-more {
    background: white;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.show-more:hover {
    background: #1a1a1a;
    color: white;
}

/* Performance Section */
.performance-section {
    background: #1a1a1a;
    color: white;
    padding: 80px 0;
}

.performance-section h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.performance-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.platform-image {
    position: relative;
}

.platform-chassis {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.platform-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.2rem;
}

.platform-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.platform-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #ccc;
}

/* Safety Section */
.safety-section {
    background: white;
    padding: 80px 0;
}

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

.safety-section > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.safety-section h3 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.safety-features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.safety-feature {
    text-align: center;
}

.safety-image {
    margin-bottom: 30px;
}

.safety-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.safety-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.safety-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.safety-content small {
    color: #999;
    font-size: 0.9rem;
}

/* Connectivity Section */
.connectivity-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.connectivity-features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.connectivity-feature {
    text-align: center;
}

.connectivity-image {
    margin-bottom: 30px;
}

.connectivity-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.connectivity-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.connectivity-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.connectivity-content small {
    color: #999;
    font-size: 0.9rem;
}

/* Warranty Section */
.warranty-section {
    background: white;
    padding: 80px 0;
}

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

.warranty-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.warranty-image {
    position: relative;
}

.warranty-car {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.warranty-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.warranty-number {
    font-size: 4rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.warranty-text {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.warranty-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.warranty-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 10px;
}

.warranty-info small {
    color: #999;
    font-size: 0.9rem;
}

/* Gallery Section */
.gallery-section {
    background: #1a1a1a;
    color: white;
    padding: 80px 0;
}

.gallery-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    padding: 0 20px;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.gallery-tab {
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.gallery-tab.active {
    border-bottom-color: #dc2626;
    color: #dc2626;
}

.gallery-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.gallery-nav {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.gallery-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.main-gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.gallery-counter {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.gallery-fullscreen {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gallery-fullscreen:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Colors Section */
.colors-section {
    background: white;
    padding: 80px 0;
}

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

.colors-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.color-options {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.color-swatch.active {
    border-color: #dc2626;
    transform: scale(1.1);
}

.color-car {
    text-align: center;
}

.color-car-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.color-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 20px;
}

.color-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #999;
    font-size: 1.5rem;
}

.book-toyota-btn {
    display: block;
    margin: 40px auto;
    background: white;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-toyota-btn:hover {
    background: #1a1a1a;
    color: white;
}

.disclaimer {
    text-align: center;
    color: #999;
    font-size: 0.9rem;
    margin-top: 20px;
}

/* Mobile Responsive for Vios Page */
@media (max-width: 768px) {
    .vios-hero-banner {
        height: 100vh;
    }
    
    .vios-hero-text-overlay {
        padding-left: 40px;
        padding-right: 20px;
    }
    
    .vios-text-container {
        max-width: 100%;
    }
    
    .vios-level-up {
        font-size: 3rem;
    }
    
    .vios-always {
        font-size: 3rem;
    }
    
    .vios-brand {
        font-size: 1.2rem;
    }
    
    .vios-price {
        font-size: 1.2rem;
    }
    
    .vios-vertical-line {
        right: -20px;
        height: 80px;
    }
    
    .vios-scroll-indicator {
        bottom: 20px;
    }
    
    .vios-overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vios-info-section h2 {
        font-size: 3rem;
    }
    
    /* Quick Navigation Mobile */
    .quick-nav {
        top: 0;
        padding: 15px 0;
        margin-top: -70px;
        padding-top: 85px;
    }
    
    .quick-nav-links {
        gap: 15px;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .quick-nav .nav-link {
        font-size: 0.8rem;
        padding: 6px 12px;
        white-space: nowrap;
    }
    
    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Performance Specs Mobile */
    .performance-specs {
        grid-template-columns: 1fr;
    }
    
    /* Safety Categories Mobile */
    .safety-categories {
        gap: 30px;
    }
    
    /* Gallery Thumbnails Mobile */
    .gallery-thumbnails {
        gap: 8px;
    }
    
    .thumbnail {
        width: 50px;
        height: 35px;
    }
    
    /* Contact Features Mobile */
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Video Container Mobile */
    .vios-video-container {
        padding-bottom: 50%; /* Slightly taller on mobile */
    }
    
    .video-play-button {
        width: 60px;
        height: 60px;
    }
    
    .video-play-button i {
        font-size: 1.5rem;
    }
    
    .design-comfort-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .performance-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .safety-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .connectivity-features {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .warranty-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-main {
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery-nav {
        width: 50px;
        height: 50px;
    }
    
    .colors-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .color-options {
        flex-wrap: wrap;
    }
    
    .contact-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-btn,
    .phone-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .vios-hero-text-overlay {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .vios-level-up {
        font-size: 2.2rem;
    }
    
    .vios-always {
        font-size: 2.2rem;
    }
    
    .vios-brand {
        font-size: 1rem;
    }
    
    .vios-price {
        font-size: 1rem;
    }
    
    .vios-vertical-line {
        right: -15px;
        height: 60px;
    }
    
    .vios-text-line {
        width: 40px;
    }
}

/* Large Desktop Screens */
@media (min-width: 1920px) {
    .vios-hero-text-overlay {
        padding-left: 120px;
    }
    
    .vios-level-up {
        font-size: 7rem;
    }
    
    .vios-always {
        font-size: 7rem;
    }
    
    .vios-brand {
        font-size: 2rem;
    }
    
    .vios-price {
        font-size: 2rem;
    }
    
    .vios-vertical-line {
        right: -60px;
        height: 160px;
    }
    
    .vios-text-line {
        width: 80px;
    }
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.faq-header p {
    font-size: 1.2rem;
    color: #e5e7eb;
    margin: 0;
    opacity: 0.9;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ff0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
    font-weight: 600;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.8rem;
    color: #ff0000;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #e5e7eb;
    line-height: 1.7;
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
    .faq-header h2 {
        font-size: 2.2rem;
    }
    
    .faq-header p {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 20px 20px;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
    
    .faq-icon {
        font-size: 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 1rem;
    }
}

/* Showroom Page Styles */
.showroom-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.showroom-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('asset/carousel/home-page-banner-desktop.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.showroom-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.3rem;
    color: #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.showroom-locations {
    padding: 80px 0;
    background: #f8f9fa;
}

.showroom-locations h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 60px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.location-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.location-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.location-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.location-content {
    padding: 30px;
}

.location-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.location-details {
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.detail-item i {
    color: #dc2626;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.detail-item strong {
    color: #1a1a1a;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.detail-item p {
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.detail-item a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

.detail-item a:hover {
    text-decoration: underline;
}

.location-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.btn-primary {
    background: #dc2626;
    color: white;
    border: 2px solid #dc2626;
}

.btn-primary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.showroom-services {
    padding: 80px 0;
    background: #1a1a1a;
}

.showroom-services h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-card p {
    color: #e5e7eb;
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #fef2f2;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #dc2626;
    border-color: #ffffff;
}

.cta-buttons .btn-primary:hover {
    background: #f8f9fa;
    color: #b91c1c;
    border-color: #f8f9fa;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.cta-buttons .btn-secondary:hover {
    background: #ffffff;
    color: #dc2626;
}

/* Mobile Responsive for Showroom Page */
@media (max-width: 768px) {
    .showroom-hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .showroom-locations h2,
    .showroom-services h2 {
        font-size: 2.2rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .location-card {
        margin: 0 15px;
    }
    
    .location-content {
        padding: 25px;
    }
    
    .location-content h3 {
        font-size: 1.5rem;
    }
    
    .location-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 25px;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* Google Maps Integration Styles */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.map-container {
    position: relative;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-fallback {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-placeholder {
    text-align: center;
    padding: 40px;
    max-width: 500px;
}

.map-placeholder i {
    font-size: 4rem;
    color: #dc2626;
    margin-bottom: 20px;
}

.map-placeholder h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.6;
}

.map-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.map-actions .btn-primary,
.map-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.map-actions .btn-primary {
    background: #dc2626;
    color: white;
    border: 2px solid #dc2626;
}

.map-actions .btn-primary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.map-actions .btn-secondary {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.map-actions .btn-secondary:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.map-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.map-description {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.neighborhood-discovery {
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    height: 600px;
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.neighborhood-discovery a {
    color: #4285f4;
    text-decoration: none;
}

.neighborhood-discovery button {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font: inherit;
    font-size: inherit;
    padding: 0;
}

.neighborhood-discovery .info {
    color: #555;
    font-size: 0.9em;
    margin-top: 0.3em;
}

.neighborhood-discovery .panel {
    background: white;
    bottom: 0;
    box-sizing: border-box;
    left: 0;
    overflow-y: auto;
    position: absolute;
    top: 0;
    width: 20em;
}

.neighborhood-discovery .panel.no-scroll {
    overflow-y: hidden;
}

.neighborhood-discovery .photo {
    background-color: #dadce0;
    background-position: center;
    background-size: cover;
    border-radius: 0.3em;
    cursor: pointer;
}

.neighborhood-discovery .navbar {
    background: white;
    position: sticky;
    top: 0;
    z-index: 2;
}

.neighborhood-discovery .right {
    float: right;
}

.neighborhood-discovery .star-icon {
    filter: invert(88%) sepia(60%) saturate(2073%) hue-rotate(318deg) brightness(93%) contrast(104%);
    height: 1.2em;
    margin-right: -0.3em;
    margin-top: -0.08em;
    vertical-align: top;
    width: 1.2em;
}

.neighborhood-discovery .star-icon:last-child {
    margin-right: 0.2em;
}

.neighborhood-discovery .travel-icon {
    height: 1.2em;
    margin-top: -0.08em;
    vertical-align: top;
}

.neighborhood-discovery .map {
    bottom: 0;
    left: 20em;
    position: absolute;
    right: 0;
    top: 0;
}

@media only screen and (max-width: 640px) {
    .neighborhood-discovery .panel {
        right: 0;
        top: 50%;
        width: unset;
    }

    .neighborhood-discovery .map {
        bottom: 50%;
        left: 0;
    }
}

/* Places Panel */
.neighborhood-discovery .places-panel {
    box-shadow: 0 0 10px rgb(60 64 67 / 28%);
    z-index: 1;
}

.neighborhood-discovery .places-panel header {
    padding: 0.5em;
}

.neighborhood-discovery .search-input input {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 0.3em;
    box-sizing: border-box;
    font-size: 1em;
    height: 2.2em;
    padding: 0 2.5em 0 1em;
    width: 100%;
}

.neighborhood-discovery .search-input button {
    position: absolute;
    right: 0.8em;
    top: 0.8em;
}

.neighborhood-discovery .show-more-button {
    bottom: 0.5em;
    display: none;
    left: 28%;
    line-height: 1.5em;
    padding: 0.6em;
    position: relative;
    width: 44%;
}

.neighborhood-discovery .show-more-button.sticky {
    background: white;
    border-radius: 1.5em;
    box-shadow: 0 4px 10px rgb(60 64 67 / 28%);
    position: sticky;
    z-index: 2;
}

.neighborhood-discovery .show-more-button:disabled {
    opacity: 0.5;
}

.neighborhood-discovery .place-results-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.neighborhood-discovery .place-result {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
    display: flex;
    padding: 0.8em;
}

.neighborhood-discovery .place-result .text {
    flex-grow: 1;
}

.neighborhood-discovery .place-result .name {
    font-size: 1em;
    font-weight: 500;
    text-align: left;
}

.neighborhood-discovery .place-result .photo {
    flex: 0 0 4em;
    height: 4em;
    margin-left: 0.8em;
}

/* Details Panel */
.neighborhood-discovery .details-panel {
    display: none;
    z-index: 20;
}

.neighborhood-discovery .details-panel .back-button {
    color: #4285f4;
    padding: 0.9em;
}

.neighborhood-discovery .details-panel .back-button .icon {
    filter: invert(47%) sepia(71%) saturate(2372%) hue-rotate(200deg) brightness(97%) contrast(98%);
    height: 1.2em;
    width: 1.2em;
    vertical-align: bottom;
}

.neighborhood-discovery .details-panel header {
    padding: 0.9em;
}

.neighborhood-discovery .details-panel h2 {
    font-size: 1.4em;
    font-weight: 400;
    margin: 0;
}

.neighborhood-discovery .details-panel .section {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    padding: 0.9em;
}

.neighborhood-discovery .details-panel .contact {
    align-items: center;
    display: flex;
    font-size: 0.9em;
    margin: 0.8em 0;
}

.neighborhood-discovery .details-panel .contact .icon {
    width: 1.5em;
    height: 1.5em;
}

.neighborhood-discovery .details-panel .contact .text {
    margin-left: 1em;
}

.neighborhood-discovery .details-panel .contact .weekday {
    display: inline-block;
    width: 5em;
}

.neighborhood-discovery .details-panel .photos {
    text-align: center;
}

.neighborhood-discovery .details-panel .photo {
    display: inline-block;
    height: 5.5em;
    width: 5.5em;
}

.neighborhood-discovery .details-panel .review {
    margin-top: 1.2em;
}

.neighborhood-discovery .details-panel .review .reviewer-avatar {
    background-repeat: no-repeat;
    background-size: cover;
    float: left;
    height: 1.8em;
    margin-right: 0.8em;
    width: 1.8em;
}

.neighborhood-discovery .details-panel .review .reviewer-name {
    color: #202124;
    font-weight: 500;
    line-height: 1.8em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.neighborhood-discovery .details-panel .review .rating {
    margin: 0.5em 0;
}

.neighborhood-discovery .details-panel .attribution {
    color: #777;
    margin: 0;
    font-size: 0.8em;
    font-style: italic;
}

/* Photo Modal */
.neighborhood-discovery .photo-modal {
    background: rgba(0, 0, 0, 0.8);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 100;
}

.neighborhood-discovery .photo-modal > img {
    bottom: 0;
    left: 0;
    margin: auto;
    max-height: 100%;
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.neighborhood-discovery .photo-modal > div {
    border-radius: 0.4em;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    margin: 1em;
    padding: 0.9em;
    position: absolute;
}

.neighborhood-discovery .photo-modal .back-button .icon {
    filter: brightness(0) invert(1);
    margin: 0.4em 0.6em 0 0;
}

.neighborhood-discovery .photo-modal .photo-text {
    float: right;
}

.neighborhood-discovery .photo-modal .photo-attrs {
    font-size: 0.8em;
    margin-top: 0.3em;
}

/* Mobile Responsive for Map */
@media (max-width: 768px) {
    .map-section {
        padding: 60px 0;
    }
    
    .map-section h2 {
        font-size: 2.2rem;
    }
    
    .map-description {
        font-size: 1rem;
    }
    
    .map-container {
        height: 500px;
    }
    
    .map-placeholder {
        padding: 30px 20px;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.5rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
    }
    
    .map-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .map-actions .btn-primary,
    .map-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .neighborhood-discovery {
        height: 500px;
    }
}

/* MaxCheck Page */
.maxcheck-hero {
    background: #f5f7fb;
    padding: 140px 0 80px;
    border-bottom: 4px solid #dc2626;
}

.maxcheck-hero-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.maxcheck-hero-text .maxcheck-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #111827;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.maxcheck-hero-text .maxcheck-tagline {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.8rem;
    color: #6b7280;
}

.maxcheck-hero-text h1 {
    font-size: 2.5rem;
    margin: 15px 0;
}

.maxcheck-hero-text p {
    color: #4b5563;
    margin-bottom: 25px;
}

.maxcheck-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.maxcheck-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

.link-arrow {
    color: #dc2626;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding-right: 18px;
}

.link-arrow::after {
    content: '➜';
    position: absolute;
    right: 0;
    transition: transform 0.2s ease;
}

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

.maxcheck-section {
    padding: 90px 0;
}

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

.maxcheck-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.maxcheck-split-text .eyebrow,
.maxcheck-intro .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 10px;
    display: block;
}

.maxcheck-split-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.maxcheck-split-media img {
    width: 100%;
    border-radius: 16px;
}

.maxcheck-intro {
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.maxcheck-card {
    background: white;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(15,23,42,0.08);
}

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

.maxcheck-package h4 {
    margin-bottom: 12px;
    color: #111827;
}

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

.maxcheck-package ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    color: #4b5563;
}

.maxcheck-package ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #dc2626;
}

.fine-print {
    font-size: 0.85rem;
    color: #6b7280;
    margin-top: 10px;
}

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

.maxcheck-category {
    border-top: 2px solid #dc2626;
    padding-top: 20px;
}

.maxcheck-category h5 {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: #111827;
    margin-bottom: 12px;
}

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

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

.maxcheck-category a {
    text-decoration: none;
    color: #111827;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.maxcheck-category a:hover {
    border-color: #111827;
}

.maxcheck-services {
    background: #0f172a;
    color: white;
    padding: 100px 0;
}

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

.service-card {
    background: #111c32;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card-media {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.service-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.service-card-body li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    color: #d1d5db;
}

.service-card-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #dc2626;
}

.maxcheck-cta {
    background: #f8fafc;
    padding: 70px 0;
}

.maxcheck-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.cta-item {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(15,23,42,0.08);
    text-align: center;
}

.cta-item i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .maxcheck-hero {
        padding-top: 120px;
    }

    .maxcheck-card {
        padding: 25px;
    }

    .maxcheck-hero-text h1 {
        font-size: 2rem;
    }
}

