* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cairo", sans-serif;
    color: #fff;
    overflow-x: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(41, 163, 124, .10), transparent 40%), radial-gradient(circle at 80% 70%, rgba(41, 163, 124, .08), transparent 45%), linear-gradient(135deg, #012b22, #051510);
}

.glass {
    background: rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 14px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius: 0 0 28px 28px;
}

.logo img {
    height: 70px;
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
}

nav a:hover {
    color: #29a37c;
}

.download-btn {
    background: linear-gradient(135deg, #1d6b55, #29a37c);
    padding: 10px 26px;
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
}

.hero {
    position: relative;
    min-height: 100vh;
}

.video-wrapper {
    position: absolute;
    inset: 0;
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(.85);
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.hero-content {
    position: absolute;
    top: 120px;
    right: 80px;
    max-width: 600px;
}

.hero-content h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 26px;
    color: #ddd;
}

.btn {
    background: linear-gradient(135deg, #1d6b55, #29a37c);
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 12px;
    cursor: pointer;
}

.services-section {
    padding: 120px 8%;
    text-align: center;
}

.services-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #29a37c;
    margin-bottom: 70px;
    text-shadow: 0 0 12px rgba(41, 163, 124, .35);
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-card {
    position: relative;
    width: 280px;
    height: 320px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Safari Support */
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .4s ease;
    overflow: hidden;
}

.service-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #d9f7ec;
    opacity: 0;
    transform: translateY(12px);
    transition: .35s ease;
    margin-top: 14px;
}

.service-card img {
    width: 120px;
    height: auto;
    margin-bottom: 18px;
    filter: drop-shadow(0 0 14px rgba(41, 163, 124, .45));
    transition: .35s ease;
}

.service-card:hover img {
    transform: scale(1.15);
}

.service-card.fuel {
    border: 1px solid rgba(41, 163, 124, .35);
    box-shadow: 0 0 0 1px rgba(41, 163, 124, .15), 0 30px 70px rgba(0, 0, 0, .55);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #eafff4;
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .45);
}

.service-card:hover img,
.service-card:hover h3 {
    opacity: .15;
}

.service-hover {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    /* Safari Support */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    text-align: center;
    opacity: 0;
    transition: .35s ease;
}

.service-hover p {
    color: #e6fff4;
    font-size: 1rem;
    line-height: 1.7;
}

.service-card:hover .service-hover {
    opacity: 1;
}

.service-card .soon {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #2cffb8;
    text-shadow: 0 0 12px rgba(44, 255, 184, .8);
}

.service-card:not(.coming) .soon {
    display: none;
}

.service-card::after {
    content: "";
    position: absolute;
    top: -120%;
    left: -60%;
    width: 40%;
    height: 260%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transform: rotate(0deg);
    opacity: 0;
    animation: glassSweep 3s infinite;
}

.service-card:nth-child(1)::after {
    animation-delay: 0s;
}

.service-card:nth-child(2)::after {
    animation-delay: .6s;
}

.service-card:nth-child(3)::after {
    animation-delay: 1.2s;
}

.service-card:nth-child(4)::after {
    animation-delay: 1.8s;
}

@keyframes glassSweep {
    0% {
        transform: translateX(-120%) rotate(25deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(220%) rotate(25deg);
        opacity: 0;
    }
}

#why {
    position: relative;
    padding: 140px 0 160px;
    overflow: hidden;
    text-align: center;
}

.why-title {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 100px;
    color: #29a37c;
    text-shadow: 0 0 18px rgba(41, 163, 124, .35);
}

.why-container {
    position: relative;
    width: 100%;
    height: 360px;
    perspective: 1200px;
}

.why-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 360px;
    max-width: 90%;
    padding: 36px 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.06);
    /* Safari Support */
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .25);
    transform-style: preserve-3d;
    opacity: 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #eafdf6;
    transition: transform .8s ease, opacity .8s ease, filter .8s ease;
}

.why-card.center {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
    z-index: 3;
}

.why-card.left {
    transform: translate(-140%, -50%) rotateY(35deg) scale(.9);
    opacity: .45;
    filter: blur(1px);
    z-index: 2;
}

.why-card.right {
    transform: translate(40%, -50%) rotateY(-35deg) scale(.9);
    opacity: .45;
    filter: blur(1px);
    z-index: 2;
}

.why-card:not(.center):not(.left):not(.right) {
    opacity: 0;
    z-index: 1;
}

.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, .35) 50%, transparent 65%);
    opacity: .25;
    pointer-events: none;
}

.steps-section {
    padding: 160px 8%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.steps-wrap {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 90px;
}

.steps-text {
    text-align: center;
}

.steps-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #29a37c;
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
}


.steps-video::before {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.steps-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.steps-list li {
    display: grid;
    grid-template-columns: 42px auto;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    text-align: right;
}

.step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(41, 163, 124, 0.15);
    color: #29a37c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 0 0 rgba(41, 163, 124, 0);
    transition: all .4s ease;
}

.step-num.active {
    background: #29a37c;
    color: #02251c;
    box-shadow: 0 0 12px rgba(41, 163, 124, .9), 0 0 30px rgba(41, 163, 124, .6);
}

.review-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: right;
    backface-visibility: hidden;
}
.review-content .text {
    flex: 1;
}

.reviews-section {
    padding: 120px 8%;
    text-align: center;
}

.reviews-title {
    color: #29a37c;
    font-size: 2.2rem;
    margin-bottom: 70px;
}

.review-content img {
    width: 110px;
    height: 80px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    align-self: center;
    opacity: .85;
}

.review-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 18px;
}

.review-content h4 {
    color: #29a37c;
    font-weight: 600;
}

.review-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.review-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(41, 163, 124, 0.2);
    color: #29a37c;
    font-size: 1.4rem;
}

.review-wrapper {
    position: relative;
    perspective: 1400px;
    max-width: 1000px;
    margin: auto;
    min-height: 190px;
}

.review-card {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    padding: 40px 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s ease, transform .6s ease;
    pointer-events: none;
}

.review-card.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.review-card.flip-left {
    transform-origin: left center;
    transform: rotateY(-90deg) scale(.95);
    opacity: 0;
    z-index: 1;
}

.review-card.flip-right {
    transform-origin: right center;
    transform: rotateY(90deg) scale(.95);
    opacity: 0;
    z-index: 1;
}



.car-box {
    width: 130px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.car-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    opacity: .85;
}

.app-section {
    padding: 160px 8%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
    overflow: hidden;
}

.app-title {
    font-size: 2.6rem;
    color: #29a37c;
    margin-bottom: 24px;
}

.app-desc {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #e6f5ef;
    margin-bottom: 40px;
}

.qr-card {
    display: inline-block;
    padding: 26px 36px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}

.qr-label {
    display: block;
    font-size: .9rem;
    opacity: .7;
    margin-bottom: 6px;
}

.app-preview img {
    width: 320px;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .6));
    animation: floatY 6s ease-in-out infinite;
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.faq-section {
    padding: 140px 8%;
    max-width: 900px;
    margin: auto;
}

.faq-title {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 800;
    color: #29a37c;
    margin-bottom: 70px;
    text-shadow: 0 0 20px rgba(41, 163, 124, .35);
}

.faq-item {
    margin-bottom: 22px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    position: relative;
}

.faq-item::after {
    content: "";
    position: absolute;
    inset: -60%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: translateX(-120%) rotate(25deg);
    transition: .8s ease;
    pointer-events: none;
}

.faq-item.active::after {
    transform: translateX(120%) rotate(25deg);
}

.faq-question {
    width: 100%;
    padding: 26px 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .3s ease;
}

.faq-item.active .faq-question {
    color: #29a37c;
}

.faq-question .icon {
    font-size: 1.6rem;
    transition: .4s ease;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.8;
    transition: max-height .5s ease, padding .4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 30px 26px;
}

.app-cta::after {
    content: "";
    position: absolute;
    top: -40%;
    left: -40%;
    width: 160%;
    height: 160%;
    background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .06) 50%, transparent 58%);
    animation: sweep 8s infinite linear;
    pointer-events: none;
    z-index: 0;
}

.app-cta {
    margin: 100px 6%;
    padding: 50px 70px;
    border-radius: 34px;
    background: linear-gradient(135deg, #0e4d3a, #1f7a5c);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.app-cta::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 32%;
    height: 200%;
    background: linear-gradient(120deg, rgba(255, 193, 7, 0) 0%, rgba(255, 193, 7, .18) 45%, rgba(255, 236, 150, .35) 50%, rgba(255, 193, 7, .18) 55%, rgba(255, 193, 7, 0) 100%);
    transform: rotate(12deg);
    animation: ctaGlassSweep 5s infinite ease-in-out;
    filter: blur(.6px);
    pointer-events: none;
    z-index: 1;
}

@keyframes ctaGlassSweep {
    0% {
        transform: translateX(-140%) rotate(12deg);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translateX(220%) rotate(12deg);
        opacity: 0;
    }
}

.app-cta-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 280px;
    flex-direction: row;
}

.app-cta-content {
    max-width: 520px;
    text-align: right;
    padding-right: 0;
    padding-left: 120px;
    z-index: 3;
}

.app-cta-content h2 {
    font-size: 2.6rem;
    margin-bottom: 16px;
    color: #fff;
}

.app-cta-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    opacity: .9;
    margin-bottom: 26px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.store-btn {
    padding: 10px 22px;
    border-radius: 14px;
    background: rgba(0, 0, 0, .35);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .35s ease;
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45);
}

.app-phone {
    position: absolute;
    right: 640px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}

.app-phone img {
    width: 640px;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .6));
    animation: floatPhone 6s ease-in-out infinite;
    left: auto;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.contact-section {
    padding: 160px 8%;
    text-align: center;
}

.contact-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: #29a37c;
    text-shadow: 0 0 22px rgba(41, 163, 124, .35);
}

/* ===== CARD ===== */
.contact-card {
    max-width: 880px;
    margin: auto;
    padding: 60px 60px 70px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    /* Safari Support */
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(255, 255, 255, .15);
}

/* ===== INPUTS ===== */
.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    margin-bottom: 26px;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    font-size: 1.05rem;
    outline: none;
    transition: .35s ease;
}

.contact-card textarea {
    resize: none;
    margin-bottom: 40px;
}

.contact-card input:focus,
.contact-card textarea:focus {
    border-color: #29a37c;
    box-shadow: 0 0 0 2px rgba(41, 163, 124, .25);
}

.contact-card input.full {
    grid-column: 1/-1;
    margin-bottom: 26px;
}

.send-btn .btn-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.send-btn {
    position: relative;
    width: 100%;
    padding: 18px 0;
    border-radius: 22px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    background: linear-gradient(135deg, #1d6b55, #29a37c);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 18px 50px rgba(41, 163, 124, .45), inset 0 1px 0 rgba(255, 255, 255, .25);
    transition: .35s ease;
}

.send-btn::after {
    content: "";
    position: absolute;
    inset: -60%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .25), transparent);
    transform: translateX(-120%) rotate(25deg);
    transition: .8s ease;
    pointer-events: none;
}

.send-btn:hover::after {
    transform: translateX(120%) rotate(25deg);
}

.send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 70px rgba(41, 163, 124, .6), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.gallery {
    padding: 120px 0;
    overflow: hidden;
}

.gallery-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    direction: ltr;
}

.gallery-marquee {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: marqueeMove 45s linear infinite;
    direction: ltr;
     gap: 50px;
}

.gallery-track {
    display: flex;
    flex-shrink: 0;
    gap: 50px;
}

.gallery-track img {
    width: 420px;
    height: 380px;
    object-fit: cover;
    border-radius: 26px;
    display: block;
    flex-shrink: 0;
}

@keyframes marqueeMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.social-icon.pulse-glow {
    transform: translate(-50%, -50%) scale(1.25);
    color: #7dffe2;
    border-color: rgba(150, 255, 230, 0.9);
    box-shadow: 0 0 35px rgba(120, 255, 220, .9), 0 0 90px rgba(120, 255, 220, .6);
}

.social-section {
    padding: 140px 0;
    display: flex;
    justify-content: center;
}

.social-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.social-icon {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(60, 255, 200, 0.6);
    color: #2cffc8;
    font-size: 32px;
    box-shadow: 0 0 25px rgba(60, 255, 200, .5);
    transition: .3s ease;
}

.social-icon.pulse {
    transform: scale(1.25);
    box-shadow: 0 0 45px rgba(120, 255, 220, .9), 0 0 90px rgba(120, 255, 220, .6);
}

.footer {
    background: linear-gradient(135deg, #011f19, #02140f);
    padding: 80px 8% 30px;
    margin-top: 120px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #29a37c;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p {
    color: #d9f7ec;
    line-height: 1.8;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: .3s ease;
}

.footer-col ul li a:hover {
    color: #29a37c;
    text-shadow: 0 0 10px rgba(41, 163, 124, .5);
}

.footer-logo {
    width: 140px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(41, 163, 124, .4));
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: #aaa;
    font-size: .9rem;
}

.download-btn-main {
    position: relative;
    padding: 14px 40px;
    border: none;
    border-radius: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    color: #fff;
    background: linear-gradient(135deg, #1d6b55, #29a37c);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(41, 163, 124, .4);
    transition: transform .25s ease, box-shadow .25s ease;
}

.download-btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 55px rgba(41, 163, 124, .5);
}

.download-btn-main::after {
    content: "";
    position: absolute;
    top: -60%;
    left: -160%;
    width: 220%;
    height: 220%;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, .20) 50%, transparent 58%);
    transform: rotate(18deg);
    opacity: .0;
    animation: glassSmooth 1s linear infinite;
}

@keyframes glassSmooth {
    0% {
        transform: translateX(-20%) rotate(18deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    70% {
        opacity: .0;
    }

    100% {
        transform: translateX(120%) rotate(18deg);
        opacity: 0;
    }
}

.download-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
    z-index: 9999;
}

.download-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.download-box {
    position: relative;
    width: 320px;
    padding: 40px 30px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .15);
    /* Safari Support */
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    text-align: center;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .6);
    transform: translateY(18px) scale(.92);
    opacity: 0;
    transition: transform .38s cubic-bezier(.2, .95, .2, 1), opacity .28s ease;
}

.download-modal.active .download-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.store-option {
    display: block;
    margin: 14px 0;
    padding: 14px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: rgba(41, 163, 124, .2);
    transition: transform .22s ease, background .22s ease;
}

.store-option:hover {
    background: #29a37c;
    transform: translateY(-2px);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 18px;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: .65;
    transition: opacity .2s ease, transform .2s ease;
}

.close-modal:hover {
    opacity: 1;
    transform: scale(1.08);
}

.hidden-call {
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

.hidden-call.show {
    opacity: 1;
    pointer-events: auto;
}

.call-elegant {
    position: fixed;
    bottom: 30px;
    right: 30px;
    height: 64px;
    padding: 0 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .15);
    z-index: 9999;
    transition: .35s cubic-bezier(.2, .8, .2, 1);
}

.call-elegant .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #19f5c6, #0b8f78);
    box-shadow: 0 0 18px rgba(25, 245, 198, .55);
    font-size: 18px;
}

.call-elegant .label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    opacity: 0;
    transform: translateX(10px);
    transition: .35s;
}

.call-elegant .ring {
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: conic-gradient(from 0deg, transparent, rgba(25, 245, 198, .8), transparent 30%);
    filter: blur(8px);
    opacity: .6;
    animation: rotateRing 6s linear infinite;
}

.call-elegant:hover {
    padding-left: 26px;
    padding-right: 32px;
}

.call-elegant:hover .label {
    opacity: 1;
    transform: translateX(0);
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.app-section{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;
}
.qr-big{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:20px;
}

.qr-big img{
    width:240px;
    height:240px;
    background:rgb(252, 255, 252);
    padding:18px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.35);
}

.qr-big p{
    color:#dfeee8;
    font-size:1rem;
}

.store-option{
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 18px;
    margin-top:15px;
    border-radius:12px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    text-decoration:none;
    color:white;
    transition:.3s;
}

.store-option img{
    width:28px;
    height:28px;
}

.store-option div{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.store-small{
    font-size:12px;
    opacity:.7;
}

.store-option strong{
    font-size:15px;
}

.store-option:hover{
    background:rgba(255,255,255,0.15);
    transform:translateY(-2px);
}

.store-buttons{
    display:flex;
    gap:16px;
    margin-top:20px;
}

.store-btn{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    border-radius:12px;
    background:rgba(0,0,0,.25);
    backdrop-filter: blur(10px);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.store-btn img{
    width:20px;
    height:20px;
    object-fit:contain;
}

.store-btn:hover{
    transform:translateY(-3px);
    background:#1f6d54;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
}

/* ========== RESPONSIVE: TABLET + MOBILE ========== */

img,
video {
    max-width: 100%;
    height: auto;
}

/* ---------- iPad / Tablet ---------- */
@media (max-width: 1024px) {

    .header {
        padding: 14px 4%;
        gap: 16px;
    }

    .logo img {
        height: 58px;
    }

    nav {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        font-size: 1rem;
    }

    .download-btn-main {
        padding: 12px 22px;
        font-size: 1rem;
    }

    .hero-content {
        top: 160px;
        right: 40px;
        left: 40px;
        max-width: 560px;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .services-section,
    .reviews-section,
    .contact-section,
    .faq-section,
    .steps-section,
    .app-section {
        padding-right: 5%;
        padding-left: 5%;
    }

    .why-container {
        height: 420px;
    }

    .why-card {
        width: 320px;
        padding: 28px 22px;
        font-size: .98rem;
    }

    .why-card.left {
        transform: translate(-120%, -50%) rotateY(30deg) scale(.88);
    }

    .why-card.right {
        transform: translate(20%, -50%) rotateY(-30deg) scale(.88);
    }

    .steps-wrap {
        grid-template-columns: 1fr 300px;
        gap: 40px;
    }

    .steps-title {
        font-size: 2.4rem;
    }



    .review-wrapper {
        min-height: 240px;
    }

    .review-card {
        padding: 32px 28px;
    }

    .review-content {
        gap: 24px;
    }

    .review-content p {
        font-size: 1rem;
    }

    .car-box {
        width: 110px;
        height: 70px;
    }

    .app-section {
        gap: 40px;
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .app-title {
        font-size: 2.2rem;
    }

    .app-desc {
        font-size: 1.02rem;
    }

    .qr-big img {
        width: 210px;
        height: 210px;
    }

    .gallery-track img {
        width: 300px;
        height: 250px;
    }

    .app-cta {
        margin: 80px 4%;
        padding: 40px 36px;
    }

    .app-cta-inner {
        min-height: 240px;
    }

    .app-cta-content {
        max-width: 420px;
        padding-left: 40px;
    }

    .app-cta-content h2 {
        font-size: 2.1rem;
    }

    .app-cta-content p {
        font-size: 1rem;
    }

    .store-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .store-btn {
        padding: 10px 16px;
        font-size: .95rem;
    }

    .app-phone {
        position: static;
        transform: none;
        margin-right: 0;
    }

    .app-phone img {
        width: 300px;
        max-width: 100%;
    }

    .contact-card {
        padding: 40px 30px 50px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* ---------- Mobile ---------- */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    .header {
        padding: 12px 14px;
        border-radius: 0 0 20px 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .logo {
        order: 1;
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .logo img {
        height: 54px;
    }

    nav {
        order: 3;
        width: 100%;
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
    }

    nav a {
        font-size: .92rem;
    }

    .download-btn-main {
        order: 2;
        width: auto;
        padding: 10px 18px;
        font-size: .95rem;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-content {
        position: absolute;
        top: 190px;
        right: 18px;
        left: 18px;
        max-width: none;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 2rem;
        line-height: 1.4;
    }

    .hero-content p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .services-section {
        padding: 90px 18px;
    }

    .services-title,
    .why-title,
    .reviews-title,
    .faq-title,
    .contact-title,
    .app-title {
        font-size: 1.9rem;
        margin-bottom: 40px;
    }

    .services-grid {
        gap: 20px;
    }

    .service-card {
        width: 100%;
        max-width: 340px;
        height: 280px;
    }

    #why {
        padding: 100px 18px 120px;
    }

    .why-container {
        height: auto;
        perspective: none;
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .why-card,
    .why-card.center,
    .why-card.left,
    .why-card.right,
    .why-card:not(.center):not(.left):not(.right) {
        position: static;
        transform: none;
        opacity: 1;
        filter: none;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .steps-section {
        padding: 100px 18px;
        min-height: auto;
    }

    .steps-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .steps-text {
        order: 2;
    }

    .steps-title {
        font-size: 2rem;
        margin-bottom: 28px;
    }

    .steps-list li {
        grid-template-columns: 34px 1fr;
        gap: 14px;
        font-size: .98rem;
        margin-bottom: 14px;
    }

    .step-num {
        width: 34px;
        height: 34px;
        font-size: .95rem;
    }

    .reviews-section {
        padding: 100px 18px;
    }

    .review-wrapper {
        min-height: 290px;
    }

    .review-card {
        padding: 26px 18px;
    }

    .review-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .review-content .text {
        width: 100%;
    }

    .review-content p {
        font-size: .98rem;
        line-height: 1.8;
    }

    .review-content h4 {
        font-size: 1rem;
    }

    .car-box {
        width: 100px;
        height: 62px;
        margin: 0 auto;
    }

    .review-nav {
        margin-top: 24px;
    }

    .app-section {
        padding: 100px 18px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .app-content {
        order: 1;
    }

    .app-preview {
        order: 2;
    }

    .app-title {
        font-size: 2rem;
    }

    .app-desc {
        font-size: 1rem;
        line-height: 1.9;
        margin-bottom: 24px;
    }

    .qr-big img {
        width: 190px;
        height: 190px;
        padding: 14px;
        border-radius: 18px;
    }

    .qr-big p {
        font-size: .95rem;
    }

    .gallery {
        padding: 90px 0;
    }

    .gallery-marquee,
    .gallery-track {
        gap: 20px;
    }

    .gallery-track img {
        width: 240px;
        height: 210px;
        border-radius: 20px;
    }

    .faq-section {
        padding: 100px 18px;
    }

    .faq-question {
        padding: 20px 18px;
        font-size: 1rem;
        gap: 14px;
    }

    .faq-answer {
        font-size: .95rem;
        line-height: 1.8;
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 20px;
    }

    .app-cta {
        margin: 70px 18px;
        padding: 30px 20px;
        border-radius: 24px;
    }

    .app-cta-inner {
        flex-direction: column;
        min-height: auto;
        gap: 24px;
        text-align: center;
    }

    .app-cta-content {
        max-width: 100%;
        padding-left: 0;
        text-align: center;
        order: 2;
    }

    .app-cta-content h2 {
        font-size: 1.9rem;
    }

    .app-cta-content p {
        font-size: .98rem;
        margin-bottom: 18px;
    }

    .store-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .store-btn {
        justify-content: center;
        width: 100%;
        max-width: 220px;
        padding: 12px 16px;
        font-size: .95rem;
    }

    .store-btn img {
        width: 18px;
        height: 18px;
    }

    .app-phone {
        position: static;
        transform: none;
        order: 1;
    }

    .app-phone img {
        width: 220px;
        max-width: 100%;
    }

    .contact-section {
        padding: 100px 18px;
    }

    .contact-card {
        padding: 28px 18px 34px;
        border-radius: 24px;
    }

    .contact-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card input,
    .contact-card textarea {
        padding: 16px 16px;
        font-size: .98rem;
    }

    .send-btn {
        font-size: 1.05rem;
        padding: 16px 0;
    }

    .social-section {
        padding: 100px 0;
    }

    .social-container {
        width: 280px;
        height: 280px;
    }

    .social-icon {
        width: 72px;
        height: 72px;
        font-size: 24px;
    }

    .footer {
        padding: 60px 18px 24px;
        margin-top: 80px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 16px;
    }

    .download-box {
        width: calc(100% - 32px);
        max-width: 360px;
        padding: 32px 20px;
    }

    .store-option {
        padding: 14px 14px;
        font-size: .95rem;
    }

    .store-option img {
        width: 22px;
        height: 22px;
    }

    .call-elegant {
        right: 16px;
        bottom: 16px;
        height: 56px;
        padding: 0 16px;
    }

    .call-elegant .icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
}

/* ---------- Small Mobile ---------- */
@media (max-width: 480px) {

    .hero-content {
        top: 180px;
    }

    .hero-content h2 {
        font-size: 1.75rem;
    }

    .hero-content p {
        font-size: .95rem;
    }

    .services-title,
    .why-title,
    .reviews-title,
    .faq-title,
    .contact-title,
    .app-title,
    .app-cta-content h2 {
        font-size: 1.65rem;
    }



    .review-wrapper {
        min-height: 320px;
    }

    .gallery-track img {
        width: 210px;
        height: 180px;
    }

    .qr-big img {
        width: 170px;
        height: 170px;
    }

    .store-btn {
        max-width: 100%;
    }

    .call-elegant .label {
        display: none;
    }
}

#introScreen{
    position:fixed;
    inset:0;
    background:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

#introVideo{
    width:320px;
    max-width:80%;
}

#introScreen.fade-out{
    opacity:0;
    pointer-events:none;
    transition:opacity .8s ease;
}

.steps-video{
    width:260px;
    height:520px;
    border-radius:40px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
}

.steps-video img{
    height:100%;
    width:auto;
    object-fit:contain;
    transform: translateX(2px);
}