:root {

    --yellow: #facc15;
    --yellow-dark: #eab308;

    --bg: #08090b;
    --bg-soft: #101216;

    --card: #14161b;
    --card-hover: #191c22;

    --text: #f7f7f7;
    --muted: #9b9fa8;

    --border: rgba(255, 255, 255, .08);

    --radius: 22px;

    --transition: .3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    font-family: "Inter", sans-serif;

    background: var(--bg);
    color: var(--text);

    line-height: 1.6;

    overflow-x: hidden;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
select {
    font-family: inherit;
}

header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 18px 5%;

    transition: var(--transition);
}


header.scrolled {
    background: rgba(8, 9, 11, .85);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--border);
}

.navbar {
    max-width: 1250px;

    margin: auto;

    display: flex;

    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 21px;

    font-weight: 800;

    letter-spacing: -1px;
}


.logo-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    background: var(--yellow);

    color: #111;

    border-radius: 12px;
}


.logo-text strong {
    color: var(--yellow);
}

nav {
    display: flex;

    align-items: center;

    gap: 8px;
}


nav a {
    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 14px;

    border-radius: 12px;

    color: var(--muted);

    font-size: 14px;

    font-weight: 600;

    transition: var(--transition);
}


nav a:hover,
nav a.active {
    color: white;

    background: rgba(255, 255, 255, .06);
}


nav a.active i {
    color: var(--yellow);
}


.nav-button {
    margin-left: 12px;

    padding: 11px 18px !important;

    background: var(--yellow);

    color: #111 !important;

    border-radius: 13px !important;
}


.nav-button:hover {
    background: #fde047;

    transform: translateY(-2px);
}

.menu-btn {
    display: none;

    border: none;

    background: transparent;

    color: white;

    font-size: 22px;

    cursor: pointer;
}

.hero {
    min-height: 100vh;

    padding: 150px 5% 80px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;
}


.hero::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    background: var(--yellow);

    opacity: .08;

    border-radius: 50%;

    filter: blur(100px);

    top: -180px;
    right: -150px;
}


.hero-container {
    width: 100%;

    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 70px;

    align-items: center;
}

.badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    background: rgba(250, 204, 21, .08);

    border: 1px solid rgba(250, 204, 21, .18);

    color: var(--yellow);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 700;

    margin-bottom: 22px;
}


.badge-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow: 0 0 12px #22c55e;
}


.hero h1 {
    font-size: clamp(46px, 6vw, 78px);

    line-height: .98;

    letter-spacing: -4px;

    max-width: 720px;

    margin-bottom: 25px;
}


.hero h1 span {
    color: var(--yellow);
}


.hero-description {
    color: var(--muted);

    font-size: 17px;

    max-width: 580px;

    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.hero-buttons .nav-button {
    transition: transform 0.5s ease, 
                background-color 0.5s ease,
                box-shadow 0.5s ease;
}

.hero-buttons .nav-button:hover {
    transform: translateY(-4px);
    background: #fde047;
    box-shadow: 0 12px 30px rgba(250, 204, 21, 0.18);
}

.btn {
    border: none;

    cursor: pointer;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 21px;

    border-radius: 14px;

    font-size: 14px;

    font-weight: 700;

    transition: var(--transition);
}


.btn-primary {
    background: var(--yellow);

    color: #111;
}


.btn-primary:hover {
    background: #fde047;

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(250, 204, 21, .18);
}


.btn-secondary {
    background: rgba(255, 255, 255, .05);

    border: 1px solid var(--border);

    color: white;
}


.btn-secondary:hover {
    background: rgba(255, 255, 255, .09);
}

.hero-visual {
    position: relative;
}


.taxi-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, .08),
            rgba(255, 255, 255, .025)
        );

    border: 1px solid var(--border);

    border-radius: 30px;

    padding: 28px;

    min-height: 440px;

    box-shadow: 0 30px 100px rgba(0, 0, 0, .4);

    overflow: hidden;
}


.taxi-card::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    background: var(--yellow);

    opacity: .1;

    border-radius: 50%;

    filter: blur(70px);

    right: -80px;
    top: -80px;
}


.card-top {
    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

    z-index: 2;
}


.location {
    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--muted);

    font-size: 12px;
}


.location i {
    color: var(--yellow);
}


.online {
    display: flex;

    align-items: center;

    gap: 6px;

    color: #4ade80;

    font-size: 11px;

    font-weight: 700;
}


.online span {
    width: 7px;
    height: 7px;

    background: #4ade80;

    border-radius: 50%;
}

.car {
    height: 230px;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    z-index: 2;
}


.car i {
    font-size: 190px;

    color: var(--yellow);

    filter:
        drop-shadow(
            0 25px 30px rgba(250, 204, 21, .18)
        );
}

.ride-info {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;

    position: relative;

    z-index: 2;
}


.info-box {
    padding: 14px;

    background: rgba(0, 0, 0, .25);

    border: 1px solid var(--border);

    border-radius: 15px;
}


.info-box small {
    color: var(--muted);

    display: block;

    font-size: 10px;

    margin-bottom: 3px;
}


.info-box strong {
    font-size: 14px;
}

section {
    padding: 110px 5%;
}


.container {
    max-width: 1250px;

    margin: auto;
}


.section-header {
    display: flex;

    align-items: end;

    justify-content: space-between;

    margin-bottom: 40px;

    gap: 20px;
}


.eyebrow {
    color: var(--yellow);

    font-size: 12px;

    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: 2px;

    margin-bottom: 9px;
}


.section-title {
    font-size: clamp(30px, 4vw, 46px);

    letter-spacing: -2px;

    line-height: 1.1;
}


.section-subtitle {
    max-width: 470px;

    color: var(--muted);

    font-size: 14px;
}

#soforok {
    background: #0c0d10;
}


.drivers {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


.driver-card {
    background: var(--card);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 24px;

    transition: var(--transition);
}


.driver-card:hover {
    transform: translateY(-7px);

    background: var(--card-hover);

    border-color: rgba(250, 204, 21, .2);
}


.driver-avatar {
    width: 65px;
    height: 65px;

    display: grid;

    place-items: center;

    background:
        linear-gradient(
            145deg,
            #272a31,
            #15171c
        );

    border-radius: 18px;

    font-size: 25px;

    color: var(--yellow);

    margin-bottom: 18px;
}


.driver-header {
    display: flex;

    justify-content: space-between;

    gap: 10px;
}


.driver-name {
    font-size: 17px;

    font-weight: 700;
}

.driver-rank {
    color: var(--muted);

    font-size: 15px;
}


.driver-number {
    color: var(--muted);

    font-size: 12px;
}



.driver-car {
    color: var(--muted);

    font-size: 12px;
}


.rating {
    color: var(--yellow);

    font-size: 12px;

    white-space: nowrap;
}

.news {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


.news-card {
    padding: 26px;

    border: 1px solid var(--border);

    background: var(--card);

    border-radius: var(--radius);

    transition: var(--transition);
}


.news-card:hover {
    transform: translateY(-5px);

    background: var(--card-hover);
}


.news-date {
    color: var(--yellow);

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 17px;
}


.news-card h3 {
    font-size: 19px;

    line-height: 1.3;

    margin-bottom: 12px;
}


.news-card p {
    color: var(--muted);

    font-size: 13px;
}


.read-more {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 22px;

    color: white;

    font-size: 12px;

    font-weight: 700;
}


.read-more:hover {
    color: var(--yellow);
}

#rolunk {
    background: #0c0d10;
    grid-template-columns: repeat(3, 1fr);
}


.about {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}


.about-text p {
    color: var(--muted);

    margin-top: 20px;

    font-size: 15px;
}


.stats {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;

    margin-top: 30px;
}


.stat {
    padding: 20px;

    border: 1px solid var(--border);

    background: var(--card);

    border-radius: 17px;
}


.stat strong {
    display: block;

    color: var(--yellow);

    font-size: 27px;

    margin-bottom: 3px;
}


.stat span {
    color: var(--muted);

    font-size: 11px;
}


.about-box {
    min-height: 390px;

    border-radius: 28px;

    background:
        linear-gradient(
            145deg,
            #191c22,
            #0e1014
        );

    border: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    overflow: hidden;
}


.about-box::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    background: var(--yellow);

    opacity: .1;

    border-radius: 50%;

    filter: blur(80px);
}


.about-box i {
    position: relative;

    z-index: 2;

    font-size: 180px;

    color: var(--yellow);

    filter:
        drop-shadow(
            0 30px 30px rgba(0, 0, 0, .4)
        );
}

.cta {
    padding: 0 5% 110px;
}


.cta-box {
    max-width: 1250px;

    margin: auto;

    padding: 50px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(250, 204, 21, .14),
            rgba(250, 204, 21, .03)
        );

    border: 1px solid rgba(250, 204, 21, .15);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.cta-box h2 {
    font-size: clamp(27px, 4vw, 40px);

    letter-spacing: -1.5px;
}


.cta-box p {
    color: var(--muted);

    margin-top: 8px;

    font-size: 14px;
}

footer {
    border-top: 1px solid var(--border);

    padding: 35px 5%;
}


.footer-inner {
    max-width: 1250px;

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;
}


.copyright {
    color: var(--muted);

    font-size: 11px;
}


.socials {
    display: flex;

    gap: 8px;
}


.socials a {
    width: 36px;
    height: 36px;

    display: grid;

    place-items: center;

    border: 1px solid var(--border);

    border-radius: 11px;

    color: var(--muted);

    transition: var(--transition);
}


.socials a:hover {
    color: var(--yellow);

    border-color: rgba(250, 204, 21, .3);
}

.fade-in {
    animation: fadeIn .8s ease both;
}


@keyframes fadeIn {

    from {
        opacity: 0;

        transform: translateY(20px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}

@media (max-width: 900px) {

    .hero-container,
    .about {
        grid-template-columns: 1fr;
    }


    .hero {
        padding-top: 130px;
    }


    .hero-visual {
        max-width: 600px;
    }


    .drivers,
    .news {
        grid-template-columns: 1fr 1fr;
    }


    .cta-box {
        flex-direction: column;

        align-items: flex-start;
    }

}

@media (max-width: 650px) {

    header {
        padding: 14px 5%;
    }

    nav {
        position: absolute;

        top: 70px;

        left: 5%;
        right: 5%;

        padding: 10px;

        background: rgba(15, 17, 21, .96);

        backdrop-filter: blur(20px);

        border: 1px solid var(--border);

        border-radius: 18px;

        flex-direction: column;

        align-items: stretch;

        display: none;
    }


    nav.open {
        display: flex;
    }


    nav a {
        padding: 13px;
    }


    .nav-button {
        margin-left: 0;

        text-align: center;
    }


    .menu-btn {
        display: block;
    }


    .hero h1 {
        letter-spacing: -2.5px;
    }


    .drivers,
    .news {
        grid-template-columns: 1fr;
    }


    section {
        padding: 80px 5%;
    }


    .section-header {
        display: block;
    }


    .section-subtitle {
        margin-top: 15px;
    }


    .taxi-card {
        min-height: 370px;
    }


    .car {
        height: 180px;
    }


    .car i {
        font-size: 140px;
    }

    .about-box {
        min-height: 300px;
    }


    .about-box i {
        font-size: 130px;
    }

    .cta-box {
        padding: 30px;
    }

    .footer-inner {
        flex-direction: column;

        align-items: flex-start;
    }

    .news-more {
    display: flex;

    justify-content: center;

    margin-top: 40px;
    }

}

@media (max-width: 1000px) {

    .news-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .news-hero {
        min-height: 380px;
        padding: 130px 6% 70px;
    }


    .news-page {
        padding: 40px 6% 80px;
    }


    .news-section-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }


    .news-grid-full {
        grid-template-columns: 1fr;
    }


    .news-card-image {
        height: 230px;
    }


    .news-modal {
        padding: 12px;
    }


    .news-modal-box {
        max-height: 94vh;
        border-radius: 18px;
    }


    .news-modal-image-wrapper {
        height: 250px;
    }


    .news-modal-body {
        padding: 25px 22px 30px;
    }


    .news-modal-body h2 {
        font-size: 27px;
    }


    .news-modal-body p {
        font-size: 14px;
        line-height: 1.8;
    }


    .news-modal-close {
        width: 38px;
        height: 38px;

        top: 12px;
        right: 12px;
    }

}


@media (max-width: 450px) {

    .news-card-body {
        padding: 20px;
    }


    .news-card-image {
        height: 210px;
    }


    .news-hero h1 {
        font-size: 42px;
    }


    .news-hero p {
        font-size: 15px;
    }

}

.news-container {
    max-width: 1150px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.news-card-full {
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
}

.news-card-image {
    position: relative;
    width: 100%;
    height: 210px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.news-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-body h3 {
    margin-bottom: 10px;
}

.news-card-body p {
    margin-bottom: 18px;
}

.news-card-body .read-news {
    margin-top: auto;
}

@media (max-width: 1000px) {

    .news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 850px;
        gap: 22px;
    }

}

@media (max-width: 650px) {

    .news-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 20px;
    }

    .news-card-image {
        height: 220px;
    }

}