* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Cairo", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #070b14;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: rgba(7, 11, 20, 0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
}

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, #ffb703, #fb8500);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07111f;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(251, 133, 0, 0.35);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}

nav ul li a {
    color: #d9e2f1;
    font-weight: 700;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ffb703;
}

.nav-btn {
    background: linear-gradient(135deg, #ffb703, #fb8500);
    color: #07111f;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(251, 133, 0, 0.35);
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    color: #ffffff;
    font-size: 30px;
    cursor: pointer;
}

.hero {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(255, 183, 3, 0.25), transparent 65%);
    top: -200px;
    left: -120px;
    z-index: -1;
}

.hero::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(33, 158, 188, 0.25), transparent 65%);
    bottom: -220px;
    right: -150px;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 183, 3, 0.12);
    color: #ffca3a;
    border: 1px solid rgba(255, 183, 3, 0.25);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.25;
    font-weight: 900;
    margin-bottom: 22px;
}

.hero h1 span {
    color: #ffb703;
}

.hero p {
    color: #c7d2e5;
    font-size: 20px;
    line-height: 1.9;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 28px;
    border-radius: 999px;
    font-weight: 900;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #ffb703, #fb8500);
    color: #07111f;
    box-shadow: 0 14px 35px rgba(251, 133, 0, 0.35);
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-4px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 20px;
}

.stat-card h3 {
    color: #ffb703;
    font-size: 28px;
    margin-bottom: 6px;
}

.stat-card span {
    color: #b9c6d9;
    font-weight: 700;
}

.hero-card {
    position: relative;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 36px;
    padding: 28px;
    min-height: 500px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.car-box {
    height: 270px;
    border-radius: 30px;
    background:
        linear-gradient(rgba(7, 11, 20, 0.1), rgba(7, 11, 20, 0.55)),
        url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
    margin-bottom: 22px;
}

.floating-info {
    position: absolute;
    top: 235px;
    right: -18px;
    background: #ffffff;
    color: #07111f;
    padding: 18px 22px;
    border-radius: 22px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    font-weight: 900;
}

.hero-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.hero-card p {
    font-size: 16px;
    color: #c7d2e5;
    margin-bottom: 20px;
}

.check-list {
    display: grid;
    gap: 12px;
}

.check-list div {
    background: rgba(255, 255, 255, 0.06);
    padding: 13px 16px;
    border-radius: 16px;
    color: #dce7f7;
    font-weight: 700;
}

section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 55px;
}

.section-title .small-title {
    color: #ffb703;
    font-weight: 900;
    margin-bottom: 12px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 14px;
}

.section-title p {
    color: #b9c6d9;
    font-size: 18px;
}

.features {
    background: #0b1220;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.feature-card {
    background: #111a2d;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 28px;
    border-radius: 28px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 183, 3, 0.5);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: rgba(255, 183, 3, 0.13);
    color: #ffb703;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
}

.feature-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
}

.feature-card p {
    color: #b9c6d9;
    line-height: 1.8;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.course-card {
    background: linear-gradient(180deg, #111a2d, #0b1220);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 30px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.course-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 183, 3, 0.5);
}

.course-card.popular {
    border-color: rgba(255, 183, 3, 0.8);
}

.popular-label {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffb703;
    color: #07111f;
    font-weight: 900;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
}

.course-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
}

.course-card p {
    color: #b9c6d9;
    line-height: 1.8;
    margin-bottom: 20px;
}

.price {
    font-size: 34px;
    color: #ffb703;
    font-weight: 900;
    margin-bottom: 18px;
}

.price span {
    font-size: 16px;
    color: #b9c6d9;
}

.course-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 25px;
}

.course-list li {
    color: #dce7f7;
    font-weight: 700;
}

.course-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    font-weight: 900;
    transition: 0.3s;
}

.course-btn:hover {
    background: linear-gradient(135deg, #ffb703, #fb8500);
    color: #07111f;
}

.locations {
    background: #0b1220;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.location-card {
    background: #111a2d;
    border-radius: 22px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trainer-card {
    background: #111a2d;
    border-radius: 28px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.trainer-card:hover {
    transform: translateY(-8px);
}

.trainer-img {
    height: 190px;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    margin-bottom: 18px;
}

.trainer-1 {
    background-image: url("https://images.unsplash.com/photo-1560250097-0b93528c311a?auto=format&fit=crop&w=700&q=80");
}

.trainer-2 {
    background-image: url("https://images.unsplash.com/photo-1556157382-97eda2f9e2bf?auto=format&fit=crop&w=700&q=80");
}

.trainer-3 {
    background-image: url("https://images.unsplash.com/photo-1544005313-94ddf0286df2?auto=format&fit=crop&w=700&q=80");
}

.trainer-4 {
    background-image: url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=700&q=80");
}

.trainer-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.trainer-card p {
    color: #b9c6d9;
    margin-bottom: 10px;
}

.stars {
    color: #ffb703;
    font-weight: 900;
}

.reviews {
    background: #0b1220;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #111a2d;
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.review-card p {
    color: #dce7f7;
    line-height: 1.9;
    margin: 18px 0;
}

.review-user {
    font-weight: 900;
    color: #ffb703;
}

.faq-wrapper {
    max-width: 850px;
    margin: auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background: #111a2d;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.faq-question {
    padding: 22px;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s;
    color: #b9c6d9;
    line-height: 1.9;
    padding: 0 22px;
}

.faq-item.active .faq-answer {
    max-height: 180px;
    padding: 0 22px 22px;
}

.cta {
    background: linear-gradient(135deg, #ffb703, #fb8500);
    color: #07111f;
    text-align: center;
    padding: 80px 20px;
}

.cta h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 15px;
}

.cta p {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta a {
    display: inline-block;
    background: #07111f;
    color: #ffffff;
    padding: 15px 34px;
    border-radius: 999px;
    font-weight: 900;
}

footer {
    background: #050811;
    padding: 55px 0 25px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 35px;
}

footer h3 {
    margin-bottom: 18px;
    color: #ffb703;
}

footer p,
footer a {
    color: #b9c6d9;
    line-height: 2;
    display: block;
}

.copyright {
    text-align: center;
    color: #7f8ca3;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.whatsapp-fixed {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 999;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

@media (max-width: 992px) {
    .hero-content,
    .courses-grid,
    .reviews-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .locations-grid,
    .trainers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    nav {
        position: fixed;
        top: 78px;
        right: -100%;
        width: 100%;
        background: #070b14;
        padding: 30px 0;
        transition: 0.3s;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

    .menu-btn {
        display: block;
    }

    .hero {
        padding-top: 130px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-stats,
    .features-grid,
    .locations-grid,
    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .floating-info {
        position: static;
        margin-bottom: 20px;
        width: fit-content;
    }
}