/* ==========================================================================
   Base Styles & Variables
   ========================================================================== */

:root {
    --primary-blue: #1877F2;
    --primary-blue-hover: #145dbd;
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #1da851;
    --dark-bg: #0f172a;
    --darker-bg: #0b1120;
    --light-bg: #f8fafc;
    --text-main: #334155;
    --text-muted: #64748b;
    --text-light: #f8fafc;
    --border-color: #e2e8f0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.6;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.text-blue { color: var(--primary-blue); }
.text-white { color: #ffffff !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-lg { margin-bottom: 3rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.text-sm { font-size: 0.95rem; }
.font-semibold { font-weight: 600; }
.bg-light { background-color: var(--light-bg); }
.border-top { border-top: 1px solid var(--border-color); }
.dark-section { background-color: var(--dark-bg); color: var(--text-light); }
.dark-section h2, .dark-section h3, .dark-section h4 { color: #ffffff; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--primary-blue-hover);
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: #fff;
}
.btn-whatsapp:hover {
    background-color: var(--whatsapp-green-hover);
}

.btn-outline-light {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-outline-light:hover {
    background-color: #fff;
    color: var(--dark-bg);
}

.btn-whatsapp-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    white-space: nowrap;
}
.btn-whatsapp-outline:hover {
    background-color: var(--whatsapp-green);
    border-color: var(--whatsapp-green);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
    background-color: #050a12;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-text {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1;
    display: flex;
    flex-direction: column;
}

.logo-subtext {
    font-size: 0.5rem;
    letter-spacing: 2px;
    font-weight: 400;
    color: #94a3b8;
    margin-top: 4px;
}

.main-nav ul {
    display: flex;
    gap: 15px;
}

.main-nav a {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.main-nav a:hover {
    color: var(--primary-blue);
}
.nav-icon {
    font-size: 0.6rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon {
    font-size: 1.6rem;
}

.phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.phone-text .small-text {
    color: #94a3b8;
    font-size: 0.75rem;
}

.phone-number {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--primary-blue);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    background-color: #050a12;
    padding: 80px 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 15vw;
    background: linear-gradient(to right, #050a12 0%, rgba(5,10,18,0) 100%);
    z-index: 1;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 150px;
    background: linear-gradient(to top, #050a12 0%, rgba(5,10,18,0) 100%);
    z-index: 1;
}

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

.hero-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 65%;
    color: #fff;
}

.hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -1px;
}

.hero-title .text-blue {
    white-space: nowrap;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.4;
    max-width: 90%;
}

.hero-text-block {
    margin-bottom: 40px;
    padding-right: 20px;
    max-width: 85%;
}

.hero-text-block p {
    color: #94a3b8;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* ==========================================================================
   Features Bar
   ========================================================================== */

.features-bar {
    background-color: #1e293b;
    padding: 20px 0;
    border-bottom: 4px solid var(--primary-blue);
}

.features-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    flex: 1;
    justify-content: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-blue);
}

.feature-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.feature-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.feature-text span {
    font-size: 0.8rem;
    color: #94a3b8;
}

.features-bar .divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
}

/* ==========================================================================
   More Than Just A Car
   ========================================================================== */

.more-than-car {
    padding: 60px 0;
}

.mtjc-inner {
    display: grid;
    grid-template-columns: 1.15fr 1.4fr 0.95fr;
    gap: 30px;
    align-items: stretch;
}

.mtjc-left h2 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-weight: 500;
}

.mtjc-middle {
    display: flex;
}

.mtjc-middle .img-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    height: 100%;
    width: 100%;
}

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

.mtjc-right {
    display: flex;
}

.features-card {
    background-color: #f8fafc;
    border-radius: 12px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    border: 1px solid #f1f5f9;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-circle {
    width: 54px;
    height: 54px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.icon-box-text h4 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 3px;
    color: #0f172a;
}

.icon-box-text p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
}

/* ==========================================================================
   Solutions
   ========================================================================== */

.solutions {
    padding: 60px 0;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 45px;
}

.solution-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.solution-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.solution-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-img {
    transform: scale(1.06);
}

.solution-content {
    padding: 30px;
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.solution-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(24, 119, 242, 0.1);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.solution-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
}

.solution-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 20px;
}

.best-for {
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.solution-content .check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.solution-content .check-list li {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 500;
}

.inspection-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #f0f7ff;
    border: 1px solid #c0e0ff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.05);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */

.why-choose {
    padding: 100px 0;
    background-color: #030712;
}

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

.feat-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 25px;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feat-box:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background-color: var(--primary-blue);
    border: 3px solid #ffffff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feat-box:hover .feat-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 102, 255, 0.5);
}

.feat-box h4 {
    margin-bottom: 15px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.feat-box p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   Process
   ========================================================================== */

.process {
    padding: 80px 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.step {
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    position: relative;
}

.step-num {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background-color: #fff;
    color: var(--primary-blue);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-blue);
}

.step h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 180px;
    margin: 0 auto;
}

.step-connector {
    flex: 0 0 50px;
    height: 2px;
    background-color: var(--border-color);
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   Relief Section
   ========================================================================== */

.relief {
    padding: 60px 0;
}

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

/* Before & After Slider */
.ba-container {
    width: 100%;
}

.ba-slider-wrapper {
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    user-select: none;
    border: 1px solid #e2e8f0;
    cursor: ew-resize;
}

.ba-image-before, .ba-image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ba-image-before img, .ba-image-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ba-image-after {
    width: 50%;
    overflow: hidden;
}

.ba-image-after img {
    width: 100%;
    min-width: 480px; /* Keep image aspect locked so it doesn't squish */
    height: 100%;
    object-fit: cover;
}

.ba-badge {
    position: absolute;
    top: 15px;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 5;
    letter-spacing: 0.5px;
}

.ba-badge-before {
    left: 15px;
    background-color: #ef4444;
    color: #fff;
}

.ba-badge-after {
    right: 15px;
    background-color: #22c55e;
    color: #fff;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    z-index: 3;
    pointer-events: none;
}

.ba-handle::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2px;
    width: 4px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.ba-handle-arrows {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background-color: var(--primary-blue);
    border: 4px solid #fff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    gap: 3px;
}



/* Make sure inner images are responsive in width */
@media (max-width: 991px) {
    .ba-slider-wrapper {
        height: 320px;
    }
}

.reviews-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.stars {
    color: #fbbc05;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-main);
}

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

.reviewer strong {
    color: #111827;
}

.reviewer span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Brands
   ========================================================================== */

.brands {
    padding: 60px 0;
    background-color: #f8fafc;
}

.brands-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #475569;
    margin-bottom: 35px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.brands-logos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.brand-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.01);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.brand-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
    padding: 80px 0;
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 22px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    color: #0f172a;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background-color: #f1f5f9;
    color: #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: background-color 0.25s, color 0.25s, transform 0.25s;
    flex-shrink: 0;
    margin-left: 15px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.3s ease;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    margin-top: 12px;
}

.faq-answer p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */

.cta {
    padding: 80px 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.cta-text p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.cta-btn-wrapper .sub-text {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background-color: #ffffff;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-logo .logo-text {
    color: #0f172a;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #111827;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-muted);
}
.footer-col ul li a:hover {
    color: var(--primary-blue);
}

.contact-col ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-muted);
}

.contact-col ul li i {
    color: var(--primary-blue);
    margin-top: 4px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}
.social-icon:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 992px) {
    .mtjc-inner, .solutions-grid, .relief-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }
    .logo-text { font-size: 1.4rem; }
    .logo-subtext { display: none; }
    .btn-whatsapp-outline { display: none; }
    .phone-text .small-text { display: none; }
    .phone-number { font-size: 1.1rem; }
    .header-phone { gap: 6px; }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 10px;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        order: 3;
        margin-top: 15px;
        background-color: #0b1120;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid rgba(255,255,255,0.05);
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .hero {
        flex-direction: column;
        padding: 40px 0 0 0;
        min-height: auto;
    }
    .hero-inner {
        order: 1;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 10px;
    }
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.15;
        margin-bottom: 12px;
        letter-spacing: -0.5px;
    }
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.4;
        margin-bottom: 20px;
        max-width: 100%;
    }
    .hero-text-block {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 25px;
    }
    .hero-text-block p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        padding: 14px 15px;
        font-size: 0.9rem;
    }
    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 350px;
        order: 2;
    }
    .hero-image-wrapper::before,
    .hero-image-wrapper::after {
        display: none;
    }
    .hero-img {
        object-position: center center;
    }
    
    /* More Than Just A Car - Mobile */
    .more-than-car {
        padding: 40px 0;
    }
    .mtjc-left h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .mtjc-middle {
        display: none; /* Hide decorative image to save massive vertical space */
    }
    .features-card {
        padding: 20px 15px;
        gap: 15px;
        margin-top: 10px;
    }
    .icon-box {
        gap: 12px;
    }
    .icon-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .icon-box-text h4 {
        font-size: 0.9rem;
        margin-bottom: 2px;
    }
    .icon-box-text p {
        font-size: 0.8rem;
    }

    .features-bar {
        padding: 15px 0;
    }
    .features-bar-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 5px;
    }
    .feature-item {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        width: 33%;
        gap: 8px;
    }
    .feature-icon {
        font-size: 1.5rem;
    }
    .feature-text {
        align-items: center;
    }
    .feature-text strong {
        font-size: 0.75rem;
        line-height: 1.2;
        margin-bottom: 2px;
    }
    .feature-text span {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    .features-bar .divider {
        display: none;
    }
    .process-steps {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    .step-connector {
        display: none;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-buttons .btn {
        width: 100%;
    }
    .site-footer {
        padding: 40px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
        text-align: left;
    }
    .brand-col {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 10px;
    }
    .footer-logo .logo-text {
        align-items: center;
    }
    .contact-col {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 10px;
    }
    .contact-col ul li {
        justify-content: center;
        align-items: center;
    }
    .follow-col {
        grid-column: 1 / -1;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px;
    }
    .footer-bottom {
        padding-bottom: 90px; /* Space for mobile browser UI and floating WhatsApp button */
    }
}

