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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #2d3436;
    line-height: 1.6;
}

/* Navigation Bar Styles */
.navbar {
    background: #FBFAF7B2;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(251, 250, 247, 0.795);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
}

.nav-left {
    flex: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-link:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.logo {
    width: 90px;
    height: 42px;
    object-fit: contain;
}



.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-center .nav-cta {
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    white-space: nowrap;
    padding-left: 220px;
}

.nav-links a {
    text-decoration: none;
    color: #494D55;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ff4757;
    font-weight: 500;
}

.nav-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nav-right .nav-cta {
    display: flex;
}

/* CTA Button Styles */
.cta-button {
    background: linear-gradient(107.3deg, #D80318 0%, #F53F2D 100%);
    color: white;
    border: none;
    width: 128px;
    height: 40px;
    /* padding: 9.66px 20px 10.34px 20px; */
    border-radius: 18px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 1;
    text-decoration: none;
}

.cta-button:hover {
    background: linear-gradient(107.3deg, #D80318 0%, #F53F2D 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 3, 24, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: #ff4757;
    border: 2px solid #ff4757;
}

.cta-button.secondary:hover {
    background-color: #ff4757;
    color: white;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2d3436;
    transition: all 0.3s ease;
}

/* Hero Section Styles */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background-color: #ffffff;
}

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

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

.hero-title {
    font-family: Inter;
    font-weight: 700;
    font-style: Bold;
    font-size: 60px;
    line-height: 63px;
    letter-spacing: -0.5px;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 24px;
    color: #2d3436;
}

.hero-title .highlight {
    background: linear-gradient(96.97deg, #D80318 0%, #F53F2D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    font-weight: 400;
    color: #494D55;
    margin-bottom: 40px;
    line-height: 1.6;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-buttons .cta-button {
    width: 194px;
    height: 56px;
    padding: 0;
    border-radius: 29.5px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 59px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(107.3deg, #D80318 0%, #F53F2D 100%);
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons .cta-button.secondary {
    width: 254px;
    height: 56px;
    padding: 0;
    border-radius: 29.5px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 59px;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    background: transparent;
    color: #1A2028;
    border: 1px solid #E1DDD8;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
}

.app-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 32px 0 rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1238px;
    width: 100%;
    height: 560px;
    margin: 0 auto;
    padding: 60px 48px 40px 48px;
    min-height: 420px;
    gap: 32px;
    border: 1px solid #e8e9ea;
}

.app-content {
    flex: 1 1 0%;
    max-width: 480px;
}

.app-title {
    font-family: Inter;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #242932;
    margin-bottom: 24px;
    text-align: left;
    max-width: 500px;
}

.app-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #494D55;
    margin-bottom: 8px;
}

.check-icon {
    width: 20px;
    height: 22px;
}

.app-store-buttons {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.app-store-image {
    height: 38px;
    width: 128px;
    /* border-radius: 6px; */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.app-mobiles {
    display: flex;
    align-items: flex-end;
    gap: 50px;
    position: relative;
    min-width: 340px;
}

.mobile-phone-1 {
    width: 178px;
    z-index: 2;
    margin-right: -32px;
    /* height: 380px; */
    /* box-shadow: 0 8px 32px rgba(0,0,0,0.10); */
}

.mobile-phone-2 {
    width: 228px;
    z-index: 1;
    /* transform: rotate(6deg); */


}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background-color: #ffffff;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 500;
    color: #242932;
    border: 2px solid #e8e9ea;
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    background-color: #FFF4E6;
    border-color: #ffffff44;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(216, 3, 24, 0.15);
}

.feature-item:hover .feature-icon {
    background-color: #ffa4ae00;
}

.feature-item:hover .feature-icon svg {
    color: #ffffff;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #FFF4E6;
    border-radius: 50%;
}

.feature-icon svg {
    color: #D80318;
    width: 14px;
    height: 14px;
}

/* Process Section Styles */
.process-section {
    max-height: 588px;
    background-color: #242932;
    padding-top: 100px;
    padding-bottom: 120px;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.process-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 48px;
    color: #F8F3EB;
    margin-bottom: 60px;
}

.process-cards {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.process-card {
    width: 300px;
    height: 210.73333740234375px;
    background-color: #494D5566;
    border-radius: 28px;
    padding: 32px 24px;
    text-align: left;
    position: relative;
    opacity: 1;
    transform: rotate(0deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 48px;
    height: 48px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0px 16px 48px -12px #D8031866;
}

.card-icon img {
    width: 20px;
    height: 20px;
}

.card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Space Grotesk';
    font-weight: 700;
    font-size: 30px;
    line-height: 1;
    color: #FFFFFF26;
    opacity: 0.6;
    z-index: 1;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 12px;
}

.card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #F8F3EBB2;
}

/* Servicing Section Styles */
.servicing-section {
    height: 760px;
    background-color: #fdf9f9;
    padding: 80px 0 0 0;
}

.servicing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.servicing-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #2d3436;
    margin-bottom: 24px;
}

.servicing-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #494D55;
    max-width: 440px;
    margin: 0 auto 60px auto;
}

.servicing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1234.8px;
    margin: 0 auto;
}

.servicing-card {
    width: 360px;
    height: 190px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 27.67px;
    text-align: left;
    border: 1px solid #e8e9ea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 1;
    transform: rotate(0deg);
}

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

.card-icon-bg {
    width: 40px;
    height: 40px;
    background: #F8ECE0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.servicing-card .card-icon {
    width: 20px;
    height: 20px;
}

.servicing-card .card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #2d3436;
    margin-bottom: 12px;
}

.servicing-card .card-description {
    font-family: font family/Font 2;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #5E646C;
}

/* iPad Pro Styles */
@media (max-width: 1024px) and (min-width: 821px) {
    .nav-container {
        padding: 0 24px;
        height: 70px;
    }

    .nav-links {
        gap: 30px;
        white-space: nowrap;
        padding-left: 180px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .logo-text h1 {
        font-size: 18px;
    }

    .logo-text p {
        font-size: 10px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-title {
        font-family: Inter;
        font-weight: 700;
        font-style: Bold;
        font-size: 60px;
        line-height: 63px;
        letter-spacing: -0.5px;
        text-align: center;
        vertical-align: middle;
        margin-bottom: 24px;
        color: #2d3436;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons .cta-button {
        width: 128px;
        height: 40px;
        padding: 9.66px 20px 10.34px 20px;
        border-radius: 18px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        background: linear-gradient(107.3deg, #D80318 0%, #F53F2D 100%);
        justify-content: center;
    }

    .features {
        gap: 20px;
    }

    .feature-item {
        padding: 10px 16px;
        font-size: 13px;
    }

    .process-section {
        height: auto;
        padding: 60px 0;
    }

    .process-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 40px;
    }

    .process-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        max-width: 580px;
        margin: 0 auto;
    }

    .process-card {
        width: calc(50% - 10px);
        height: auto;
        min-height: 180px;
    }

    .servicing-section {
        height: auto;
        padding: 60px 0;
    }

    .servicing-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    .servicing-subtitle {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 40px;
    }

    .servicing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 820px;
    }

    .servicing-card {
        width: 100%;
        height: auto;
        min-height: 180px;
    }
}

/* iPad Air Styles */
@media (max-width: 820px) and (min-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 65px;
    }

    .nav-links {
        gap: 20px;
        white-space: nowrap;
        padding-left: 120px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .nav-center .nav-cta {
        display: none;
    }

    .nav-right .nav-cta {
        display: flex;
    }

    .logo-text h1 {
        font-size: 16px;
    }

    .logo-text p {
        font-size: 9px;
    }

    .cta-button {
        width: 128px;
        height: 40px;
        padding: 9.66px 20px 10.34px 20px;
        border-radius: 18px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        background: linear-gradient(107.3deg, #D80318 0%, #F53F2D 100%);
    }

    .hero {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-family: Inter;
        font-weight: 600;
        font-style: Bold;
        font-size: 56px;
        line-height: 60px;
        letter-spacing: -0.5px;
        text-align: center;
        vertical-align: middle;
        margin-bottom: 24px;
        color: #2d3436;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }

    .hero-buttons .cta-button {
        width: 254px;
        height: 56px;
        padding: 9.66px 20px 10.34px 20px;
        border-radius: 18px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        background: linear-gradient(107.3deg, #D80318 0%, #F53F2D 100%);
        justify-content: center;
    }

    .features {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .feature-item {
        padding: 8px 16px;
        font-size: 12px;
        width: calc(50% - 8px);
        max-width: 180px;
        justify-content: center;
    }

    .process-section {
        height: auto;
        padding: 50px 0;
    }

    .process-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 35px;
    }

    .process-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .process-card {
        width: 260px;
        height: auto;
        min-height: 170px;
        padding: 28px 20px;
    }

    .servicing-section {
        height: auto;
        padding: 50px 0;
    }

    .servicing-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 18px;
    }

    .servicing-subtitle {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 35px;
    }

    .servicing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .servicing-card {
        width: 100%;
        height: auto;
        min-height: 170px;
        padding: 24px 20px;
    }
}

/* Mobile Styles */
@media (max-width: 480px) {
    .nav-container {
        padding: 0 16px;
        height: 60px;
        justify-content: space-between;
    }

    .nav-left {
        flex: 0;
    }

    .nav-center {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-right {
        flex: 0;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .nav-right .nav-cta {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-section {
        gap: 8px;
    }

    .logo {
        width: 100px;
        height: 100px;
        padding-left: 20px;
    }


    .logo-text h1 {
        font-size: 14px;
    }

    .logo-text p {
        font-size: 8px;
    }

    .cta-button {
        width: 128px;
        height: 40px;
        padding: 9.66px 20px 10.34px 20px;
        border-radius: 18px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 14px;
        line-height: 20px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        background: linear-gradient(107.3deg, #D80318 0%, #F53F2D 100%);
    }

    .hero {
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .hero-title {
        font-family: Inter;
        font-weight: 700;
        font-style: Bold;
        font-size: 40px;
        line-height: 50px;
        letter-spacing: -0.5px;
        text-align: center;
        vertical-align: middle;
        margin-bottom: 24px;
        color: #2d3436;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 40px;
    }

    .hero-buttons .cta-button {
        width: 254px;
        height: 56px;
        padding: 9.66px 20px 10.34px 20px;
        border-radius: 18px;
        font-family: 'Inter', sans-serif;
        font-weight: 500;
        font-style: Medium;
        font-size: 16px;
        line-height: 20px;
        letter-spacing: 0%;
        text-align: center;
        vertical-align: middle;
        background: linear-gradient(107.3deg, #D80318 0%, #F53F2D 100%);
        justify-content: center;
    }

    .features {
        gap: 12px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 380px;
        margin: 0 auto;
    }

    .feature-item {
        padding: 8px 12px;
        font-size: 11px;
        width: calc(50% - 6px);
        max-width: 180px;
        justify-content: center;
    }

    .feature-icon {
        width: 16px;
        height: 16px;
    }

    .feature-icon svg {
        width: 16px;
        height: 16px;
    }

    .process-section {
        height: auto;
        max-height: 1000px;
        padding: 40px 0 60px 0;
    }

    .process-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 30px;
    }

    .process-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .process-card {
        width: 100%;
        max-width: 320px;
        height: auto;
        min-height: 160px;
        padding: 24px 20px;
    }

    .servicing-section {
        height: auto;
        padding: 40px 0;
    }

    .servicing-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .servicing-subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 30px;
    }

    .servicing-cards {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 320px;
    }

    .servicing-card {
        width: 100%;
        height: auto;
        min-height: 160px;
        padding: 20px;
    }
}

/* Mobile Menu Styles (when toggled) */
@media (max-width: 480px) {
    .mobile-menu-open .nav-center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 30px 20px;
        text-align: center;
    }

    .mobile-menu-open .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        text-align: center;
        align-items: center;
        padding-left: 0;
    }

    .mobile-menu-open .nav-cta {
        display: flex;
        margin-top: 20px;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }

    .mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Garage Showcase Section Styles */
.garage-showcase-section {
    height: 760px;
    background-color: #242932;
    padding: 60px 0;
}

.garage-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.garage-showcase-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #ffffff;
    margin-bottom: 24px;
}

.garage-showcase-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: hsl(0, 0%, 100%);
    max-width: 440px;
    margin: 0 auto 60px auto;
}

.garage-cards {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    height: 100%;
}

.garage-card {
    width: 420px;
    height: 328px;
    border-radius: 20px;
    /* border: 1px solid #e8e9ea; */
    overflow: hidden;
    position: relative;
    opacity: 1;
    transform: rotate(0deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.garage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.garage-card-background {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.garage-card-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 104px;
    background: linear-gradient(0deg, rgba(36, 41, 50, 0.7) 0%, rgba(36, 41, 50, 0) 100%);
    z-index: 1;
}

.garage-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 420px;
    height: 104px;
    padding: 24px;
    z-index: 2;
    background-color: #ffffff;
    color: #2d3436;
    opacity: 1;
    transform: rotate(0deg);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.garage-card-header {
    display: flex;
    /* justify-content: space-between; */
    align-items: center;
    margin-bottom: 0;
    gap: 10px;
}

.garage-card-badge {
    position: absolute;
    top: 10px;
    left: 14px;
    display: inline-block;
    background: #FBFAF7E5;
    backdrop-filter: blur(4px);
    padding: 2px 9px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #242932;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.garage-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 0;
    color: #242932;
    width: 200px;
}

.garage-card-location {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    opacity: 0.9;
    margin-bottom: 0;
    color: #5E646C;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-left: 20px;
}

.location-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.garage-card-rating {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    gap: 4px;
    z-index: 999 !important;
    position: relative !important;
    background: rgba(255, 255, 255, 0.8) !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
}

.rating-stars {
    font-size: 18px;
    color: #D80318;
}

.rating-score {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #2d3436;
}

@media (max-width: 820px) and (min-width: 768px) {
    .garage-showcase-section {
        height: auto;
        padding: 50px 0;
    }

    .garage-showcase-title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 18px;
    }

    .garage-showcase-subtitle {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 35px;
    }

    .garage-cards {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .garage-card {
        width: 300px;
        height: 230px;
    }
}

@media (max-width: 480px) {
    .garage-showcase-section {
        height: auto;
        padding: 40px 0;
    }

    .garage-showcase-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 16px;
    }

    .garage-showcase-subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 30px;
    }

    .garage-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .garage-card {
        width: 100%;
        max-width: 320px;
        height: 200px;
    }

    .garage-card-content {
        padding: 20px;
    }

    .garage-card-title {
        font-size: 18px;
    }

    .garage-card-location {
        font-size: 13px;
    }
}

/* Premium Features Section Styles */
.premium-features-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.premium-features-container {
    max-width: 1234px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    /* padding-bottom: 40px; */
}

.premium-features-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #2d3436;
    margin-bottom: 24px;
}

.premium-features-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #494D55;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    width: 1234px;
    height: 422px;
    margin: 0 auto;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid #e8e9ea;
}

.premium-feature-card {
    box-sizing: border-box;
    width: 410px;
    height: 209.4px;
    background-color: #ffffff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 7.4px;
    text-align: left;
    opacity: 1;
    transform: rotate(0deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8e9ea;
}

.premium-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.feature-icon-circle {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.feature-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.feature-card-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #5E646C;
}

/* iPad Pro Responsive Styles */
@media (max-width: 1024px) and (min-width: 821px) {
    .premium-features-section {
        padding: 60px 0;
    }

    .premium-features-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .premium-features-subtitle {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 40px;
    }

    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        width: 820px;
        height: auto;
        min-height: 630px;
    }

    .premium-feature-card {
        width: 100%;
        height: 209.4px;
    }
}

/* iPad Air Responsive Styles */
@media (max-width: 820px) and (min-width: 768px) {
    .premium-features-section {
        padding: 50px 0;
    }

    .premium-features-title {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 18px;
    }

    .premium-features-subtitle {
        font-size: 15px;
        line-height: 20px;
        margin-bottom: 35px;
    }

    .premium-features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        width: 100%;
        max-width: 760px;
        height: auto;
        min-height: 630px;
    }

    .premium-feature-card {
        width: 100%;
        height: 209.4px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 767px) {
    .premium-features-section {
        padding: 40px 0;
    }

    .premium-features-container {
        padding: 0 30px;
    }

    .premium-features-title {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 16px;
    }

    .premium-features-subtitle {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 30px;
    }

    .premium-features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        width: 100%;
        height: auto;

        .premium-feature-card {
            width: 100%;
            height: auto;
            min-height: 180px;
        }
    }

    /* App Section Styles */
    .app-section {
        padding: 80px 0;
        background-color: #ffffff;
    }

    .app-card {
        max-width: 1237px;
        height: 594px;
        margin: 0 auto;
        padding: 0 24px;
        background-color: #ffffff;
        border-radius: 24px;
        border: 1px solid #e8e9ea;
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }

    .app-content {
        flex: 1;
        padding: 60px 40px;
        max-width: 500px;
    }

    .app-title {
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: 42px;
        line-height: 52px;
        color: #2d3436;
        margin-bottom: 32px;
    }

    .app-features {
        list-style: none;
        padding: 0;
        margin: 0 0 40px 0;
    }

    .app-feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
        color: #494D55;
    }

    .check-icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
    }

    .app-store-buttons {
        display: flex;
        gap: 16px;
    }

    .app-store-image {
        height: 48px;
        width: auto;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .app-store-image:hover {
        transform: translateY(-2px);
    }

    .app-mobiles {
        flex: 1;
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px;
        gap: 20px;
    }

    .mobile-phone-1 {
        position: absolute;
        width: 178.75px;
        height: 400.12px;
        border-radius: 29px;
        object-fit: contain;
        z-index: 1;
        left: calc(50% - 193px);
        top: 96px;
        opacity: 1;
    }

    .mobile-phone-2 {
        position: absolute;
        width: 353.83px;
        height: 442.14px;
        border-radius: 29px;
        object-fit: contain;
        z-index: 2;
        left: calc(50% - 161px);
        top: 96px;
        opacity: 1;
    }

    /* App Section Responsive Styles */
    @media (max-width: 1024px) and (min-width: 768px) {
        .app-section {
            padding: 60px 0;
        }

        .app-card {
            max-width: 100%;
            height: auto;
            min-height: 500px;
            flex-direction: column;
            padding: 40px 24px;
        }

        .app-content {
            padding: 0 0 40px 0;
            max-width: 100%;
            text-align: center;
        }

        .app-title {
            font-size: 32px;
            line-height: 40px;
            margin-bottom: 24px;
        }

        .app-features {
            display: inline-block;
            text-align: left;
        }

        .app-feature-item {
            justify-content: center;
        }

        .app-store-buttons {
            justify-content: center;
        }

        .app-mobiles {
            width: 100%;
            padding: 20px;
        }

        .mobile-phone-1 {
            position: relative;
            width: 140px;
            height: 320px;
            left: auto;
            top: auto;
            transform: none;
            margin-right: -40px;
        }

        .mobile-phone-2 {
            position: relative;
            width: 280px;
            height: 350px;
            right: auto;
            top: auto;
            transform: none;
            z-index: 1;
        }
    }

    @media (max-width: 767px) {
        .app-section {
            padding: 40px 0;
        }

        .app-card {
            max-width: 88%;
            height: auto;
            min-height: auto;
            flex-direction: column;
            padding: 32px 20px;
            border-radius: 20px;
        }

        .app-content {
            padding: 0 0 0 0;
            max-width: 100%;
            text-align: center;
        }

        .app-title {
            font-size: 28px;
            line-height: 36px;
            margin-bottom: 20px;
        }

        .app-features {
            margin-bottom: 24px;
        }

        .app-feature-item {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 12px;
        }

        .check-icon {
            width: 16px;
            height: 16px;
        }

        .app-store-buttons {
            justify-content: center;
            gap: 12px;
        }

        .app-store-image {
            height: 40px;
        }

        .app-mobiles {
            width: 100%;
            padding: 10px;
        }

        .mobile-phone-1 {
            position: relative;
            width: 100px;
            height: 220px;
            left: auto;
            top: auto;
            transform: none;
            margin-right: -30px;
        }

        .mobile-phone-2 {
            position: relative;
            width: 200px;
            height: 220px;
            right: auto;
            top: auto;
            transform: none;
            z-index: 1;
        }
    }
}

/* ==========================================
   Footer Section
   ========================================== */
.footer {
    background-color: #1e2229;
    color: #ffffff;
    padding: 80px 0 40px 0;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-about {
    flex: 0 0 320px;
}

.footer-about .logo-link {
    margin-bottom: 24px;
}

.footer-logo {
    width: 90px;
    height: 42px;
    object-fit: contain;
}

.footer-desc {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.625;
    font-weight: 400;
}

.footer-links-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.footer-heading {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.03em;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #f53f2d;
    transform: translateX(3px);
}

.footer-links span {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.25s ease, transform 0.25s ease;
    display: inline-block;
    cursor: default;
}

.footer-links span:hover {
    color: #f53f2d;
    transform: translateX(3px);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 40px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #64748b;
    font-size: 13px;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    transform: translateY(-2px);
}

.social-icon:hover svg {
    transform: scale(1.05);
}

/* Responsive Footer Styles */
@media (max-width: 1024px) {
    .footer-top {
        gap: 40px;
    }

    .footer-about {
        flex: 0 0 280px;
    }

    .footer-links-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px 0;
    }

    .footer-top {
        flex-direction: column;
        gap: 48px;
        margin-bottom: 40px;
    }

    .footer-about {
        flex: none;
        max-width: 480px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 24px;
    }

    .social-links {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .footer-heading {
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 12px;
    }
}

/* ==========================================
   Legal and Policy Pages (Privacy & Terms)
   ========================================== */
.legal-page-body {
    background-color: #f8f9fa; /* Light grey page background */
    padding-top: 130px; /* Space for the fixed navbar */
    padding-bottom: 80px;
    min-height: calc(100vh - 425px); /* Ensure page stays full screen between navbar and footer */
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #eef0f2;
}

.legal-card-header {
    background: linear-gradient(107.3deg, #D80318 0%, #F53F2D 100%);
    padding: 35px 24px;
    text-align: center;
}

.legal-card-header h1 {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    margin: 0;
    letter-spacing: -0.5px;
}

.legal-card-body {
    padding: 50px 48px;
    color: #494D55;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .legal-card-body {
        padding: 32px 24px;
    }
    .legal-card-header h1 {
        font-size: 26px;
    }
}

.legal-card-body p {
    margin-bottom: 24px;
}

.legal-section {
    padding-top: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #f0f2f5;
}

.legal-section:first-of-type {
    padding-top: 0;
}

.legal-section:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    color: #242932;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px 0;
}

.legal-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.legal-list li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #D80318; /* MECH99 primary red dot */
}

.legal-list li strong {
    color: #242932;
}

/* ==========================================
   Contact Section Styles
   ========================================== */
.contact-section {
    background-color: #fdf9f9; /* Warm off-white to match servicing section */
    padding: 100px 0;
    font-family: 'Inter', sans-serif;
}

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

.contact-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    color: #2d3436;
    text-align: center;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #494D55;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    align-items: stretch;
}

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

.contact-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e8e9ea;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
    border-color: rgba(216, 3, 24, 0.15);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background-color: #FFF4E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D80318;
    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card-details h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 6px;
}

.contact-card-details p {
    font-size: 14px;
    line-height: 1.6;
    color: #5e646c;
}

.contact-map-box {
    background-color: #1a1e24;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    height: 100%;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #15181c;
    overflow: hidden;
}

.map-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.2px, transparent 1.2px);
    background-size: 28px 28px;
}

.map-glow-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(216, 3, 24, 0.15) 0%, transparent 70%);
    pointer-events: none;
    filter: blur(20px);
}

.map-node {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 5;
}

.node-pulse {
    width: 10px;
    height: 10px;
    background-color: #F53F2D;
    border-radius: 50%;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 10px #F53F2D;
}

.node-pulse::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 20px;
    height: 20px;
    border: 2px solid #F53F2D;
    border-radius: 50%;
    animation: node-glow 1.8s infinite ease-out;
    opacity: 0;
}

@keyframes node-glow {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.node-label {
    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
    background: rgba(26, 30, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 4px 10px;
    margin-left: 10px;
    white-space: nowrap;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Positioning City Nodes */
.node-delhi {
    top: 25%;
    left: 45%;
}

.node-mumbai {
    top: 58%;
    left: 20%;
}

.node-pune {
    top: 65%;
    left: 28%;
}

.node-hyderabad {
    top: 62%;
    left: 55%;
}

.node-bengaluru {
    top: 78%;
    left: 48%;
}

.map-overlay-card {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(26, 30, 36, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.map-overlay-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.map-overlay-card p {
    font-size: 12px;
    line-height: 1.5;
    color: #94a3b8;
    margin-bottom: 12px;
}

.network-badge {
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 600;
    color: #10b981; /* Green color for active indicator */
    background-color: rgba(16, 185, 129, 0.12);
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Contact Section Responsive Overrides */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 32px;
    }
    .contact-title {
        font-size: 36px;
        line-height: 40px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-map-box {
        min-height: 400px;
    }
    .node-label {
        font-size: 10px;
        padding: 3px 8px;
    }
}