/* ==========================================================
   SRT TAXI
   style.css
   PART 1
   RESET + VARIABLES + GLOBAL
========================================================== */

/* =========================
   RESET
========================= */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Montserrat",sans-serif;

    background:#0b0b0b;

    color:#ffffff;

    line-height:1.6;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

}

img{

    display:block;

    width:100%;

    height:auto;

}

a{

    text-decoration:none;

    color:inherit;

}

button{

    border:none;

    background:none;

    font-family:inherit;

    cursor:pointer;

}

ul{

    list-style:none;

}


/* =========================
   VARIABLES
========================= */

:root{

    /* COLORS */

    --primary:#FFD000;

    --primary-dark:#d8b000;

    --secondary:#1d1d1d;

    --dark:#0b0b0b;

    --dark-light:#141414;

    --white:#ffffff;

    --gray:#bfbfbf;

    --border:rgba(255,255,255,.08);

    --glass:rgba(255,255,255,.05);

    --glass-hover:rgba(255,255,255,.08);

    --shadow:0 15px 45px rgba(0,0,0,.45);

    --shadow-big:0 25px 70px rgba(0,0,0,.55);

    --radius:18px;

    --radius-small:12px;

    --transition:.30s ease;

}


/* =========================
   SELECTION
========================= */

::selection{

    background:var(--primary);

    color:#000;

}


/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}


/* =========================
   BODY BACKGROUND
========================= */

body::before{

    content:"";

    position:fixed;

    inset:0;

    pointer-events:none;

    z-index:-2;

    background:

    radial-gradient(circle at 20% 20%,
    rgba(255,208,0,.08),
    transparent 30%),

    radial-gradient(circle at 80% 80%,
    rgba(255,208,0,.06),
    transparent 35%);

}


/* =========================
   CONTAINER
========================= */

.container{

    width:min(1320px,92%);

    margin:auto;

}


/* =========================
   SECTION
========================= */

section{

    padding:110px 0;

    position:relative;

}


/* =========================
   SECTION TITLE
========================= */

.section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-subtitle{

    display:inline-flex;

    padding:10px 20px;

    border-radius:999px;

    background:rgba(255,208,0,.12);

    color:var(--primary);

    font-weight:700;

    font-size:13px;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.section-title{

    font-size:clamp(34px,5vw,56px);

    font-weight:800;

    line-height:1.1;

    margin-bottom:22px;

}

.section-description{

    color:var(--gray);

    font-size:18px;

    max-width:720px;

    margin:auto;

}


/* =========================
   CARDS
========================= */

.card{

    background:var(--glass);

    border:1px solid var(--border);

    border-radius:var(--radius);

    backdrop-filter:blur(12px);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    background:var(--glass-hover);

    box-shadow:var(--shadow);

}


/* =========================
   GRID
========================= */

.grid{

    display:grid;

    gap:30px;

}


/* =========================
   TEXT
========================= */

h1,h2,h3,h4{

    font-weight:800;

    line-height:1.2;

}

p{

    color:var(--gray);

}


/* =========================
   ANIMATIONS
========================= */

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:.8s ease;

}

.fade-up.show{

    opacity:1;

    transform:none;

}


/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    section{

        padding:80px 0;

    }

    .section-title{

        font-size:34px;

    }

    .section-description{

        font-size:16px;

    }

}
/* ==========================================================
   HEADER
========================================================== */

.header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:.35s ease;

    background:transparent;

}

.header.scrolled{

    background:rgba(10,10,10,.92);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.06);

    box-shadow:0 10px 35px rgba(0,0,0,.35);

}

.header .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

    min-height:92px;

}



/* ==========================================================
   LOGO
========================================================== */

.logo{

    display:flex;

    align-items:center;

    gap:16px;

    flex-shrink:0;

}

.logo img{

    width:90px;

    height:90px;

    object-fit:contain;

    transition:.35s ease;

}

.logo-text{

    display:flex;

    flex-direction:column;

}

.logo-title{

    color:#fff;

    font-size:28px;

    font-weight:900;

    letter-spacing:.5px;

}

.logo-subtitle{

    color:var(--gray);

    font-size:12px;

    letter-spacing:1px;

}



/* ==========================================================
   NAVIGATION
========================================================== */

.navigation{

    display:flex;

    align-items:center;

    gap:34px;

}

.navigation a{

    position:relative;

    color:#fff;

    font-weight:600;

    font-size:15px;

    transition:.3s;

}

.navigation a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.3s;

}

.navigation a:hover{

    color:var(--primary);

}

.navigation a:hover::after{

    width:100%;

}



/* ==========================================================
   HEADER ACTIONS
========================================================== */

.header-actions{

    display:flex;

    align-items:center;

    gap:18px;

}

.header-phone{

    display:flex;

    align-items:center;

    gap:10px;

    color:#fff;

    font-weight:700;

    transition:.3s;

}

.header-phone:hover{

    color:var(--primary);

}

.header-button{

    display:flex;

    align-items:center;

    justify-content:center;

    height:48px;

    padding:0 28px;

    border-radius:999px;

    background:var(--primary);

    color:#000;

    font-weight:800;

    transition:.3s;

}

.header-button:hover{

    transform:translateY(-3px);

    box-shadow:0 12px 30px rgba(255,208,0,.35);

}



/* ==========================================================
   BURGER
========================================================== */

.burger{

    display:none;

    width:46px;

    height:46px;

    border-radius:12px;

    background:rgba(255,255,255,.06);

    justify-content:center;

    align-items:center;

    flex-direction:column;

    gap:6px;

}

.burger span{

    width:24px;

    height:2px;

    background:#fff;

    transition:.35s;

}



/* ==========================================================
   MOBILE HEADER
========================================================== */

@media(max-width:1024px){

    .navigation{

        position:fixed;

        top:92px;

        right:-100%;

        width:300px;

        height:calc(100vh - 92px);

        background:#111;

        flex-direction:column;

        justify-content:flex-start;

        align-items:flex-start;

        padding:40px;

        gap:24px;

        transition:.35s;

        border-left:1px solid rgba(255,255,255,.08);

    }

    .navigation.active{

        right:0;

    }

    .burger{

        display:flex;

    }

    .header-phone{

        display:none;

    }

}

@media(max-width:768px){

    .logo-title{

        font-size:20px;

    }

    .logo-subtitle{

        display:none;

    }

    .header-button{

        display:none;

    }

}
/* ==========================================================
   HERO
========================================================== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

    overflow:hidden;

}


/* Background Glow */

.hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at 15% 25%,
    rgba(255,208,0,.10),
    transparent 35%),

    radial-gradient(circle at 85% 75%,
    rgba(255,208,0,.08),
    transparent 40%);

    z-index:-2;

}

.hero::after{

    content:"";

    position:absolute;

    inset:0;

    background:

    linear-gradient(180deg,
    rgba(0,0,0,.15),
    rgba(0,0,0,.55));

    z-index:-1;

}


/* ==========================================================
   HERO GRID
========================================================== */

.hero-container{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:center;

}


/* ==========================================================
   LEFT
========================================================== */

.hero-left{

    max-width:720px;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:rgba(255,208,0,.10);

    border:1px solid rgba(255,208,0,.18);

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    margin-bottom:26px;

}

.hero-left h1{

    font-size:clamp(52px,7vw,88px);

    line-height:.95;

    font-weight:900;

    margin-bottom:26px;

    color:#fff;

}

.hero-left h1 span{

    color:var(--primary);

}

.hero-left p{

    font-size:20px;

    color:#d7d7d7;

    max-width:620px;

    margin-bottom:38px;

}


/* ==========================================================
   HERO BUTTONS
========================================================== */

.hero-buttons{

    display:flex;

    flex-wrap:wrap;

    gap:18px;

    margin-bottom:45px;

}

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:170px;

    height:56px;

    border-radius:999px;

    font-weight:700;

    transition:.35s;

}

.btn-primary{

    background:var(--primary);

    color:#000;

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 35px rgba(255,208,0,.35);

}

.btn-secondary{

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

}

.btn-secondary:hover{

    background:rgba(255,255,255,.12);

    transform:translateY(-4px);

}


/* ==========================================================
   FEATURES
========================================================== */

.hero-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px 22px;

    border-radius:16px;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.06);

    backdrop-filter:blur(12px);

    font-weight:600;

    transition:.30s;

}

.feature:hover{

    transform:translateY(-5px);

    background:rgba(255,255,255,.08);

}


/* ==========================================================
   RIGHT
========================================================== */

.hero-right{

    position:relative;

}

    .hero-right img{

        width:100%;
        max-width:760px;

        border-radius:30px;

        object-fit:cover;

        box-shadow:
            0 35px 70px rgba(0,0,0,.55);

    }


/* ==========================================================
   FLOAT ANIMATION
========================================================== */

@keyframes carFloat{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-14px);

    }

    100%{

        transform:translateY(0px);

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media(max-width:1100px){

.hero-container{

grid-template-columns:1fr;

text-align:center;

gap:60px;

}

.hero-left{

max-width:none;

}

.hero-left p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

max-width:650px;

margin:auto;

}

.hero-right{

order:-1;

}

.hero-right img{

max-width:560px;

}

}

@media(max-width:768px){

.hero{

padding-top:100px;

min-height:auto;

}

.hero-left h1{

font-size:48px;

}

.hero-left p{

font-size:17px;

}

.hero-features{

grid-template-columns:1fr;

}

.btn{

width:100%;

}

.hero-buttons{

flex-direction:column;

}

.hero-right img{

max-width:95%;

}

}
/* ==========================================================
   WHY US
========================================================== */

.why-us{

    background:#101010;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px 35px;

    transition:.35s;

    text-align:center;

    backdrop-filter:blur(14px);

    overflow:hidden;

    position:relative;

}

.why-card::before{

    content:"";

    position:absolute;

    left:-100%;

    top:0;

    width:100%;

    height:100%;

    background:

    linear-gradient(90deg,

    transparent,

    rgba(255,208,0,.10),

    transparent);

    transition:.8s;

}

.why-card:hover::before{

    left:100%;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,208,0,.30);

    box-shadow:0 25px 45px rgba(0,0,0,.35);

}

.why-icon{

    width:82px;

    height:82px;

    margin:auto;

    margin-bottom:25px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    background:rgba(255,208,0,.12);

}

.why-card h3{

    margin-bottom:18px;

    font-size:24px;

}

.why-card p{

    color:var(--gray);

    line-height:1.7;

}



/* ==========================================================
   SERVICES
========================================================== */

.services{

    background:#0b0b0b;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-card{

    overflow:hidden;

    border-radius:24px;

    background:#161616;

    transition:.35s;

    border:1px solid rgba(255,255,255,.06);

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.45);

}

.service-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    transition:.6s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-content{

    padding:28px;

}

.service-content h3{

    font-size:24px;

    margin-bottom:15px;

}

.service-content p{

    color:var(--gray);

    line-height:1.7;

}



/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1100px){

    .why-grid,

    .services-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-grid,

    .services-grid{

        grid-template-columns:1fr;

    }

    .why-card{

        padding:32px 24px;

    }

    .service-card img{

        height:220px;

    }

}
/* ==========================================================
   PRICES
========================================================== */

.prices{

    background:#111111;

}

.prices-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.price-card{

    position:relative;

    padding:35px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

    overflow:hidden;

}

.price-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,208,0,.30);

    box-shadow:0 25px 45px rgba(0,0,0,.40);

}

.price-card.featured{

    background:linear-gradient(
        180deg,
        rgba(255,208,0,.14),
        rgba(255,255,255,.04)
    );

    border:2px solid var(--primary);

}

.price-route{

    font-size:22px;

    font-weight:700;

    line-height:1.5;

    margin-bottom:28px;

}

.price-route span{

    color:var(--primary);

    margin:0 10px;

}

.price-value{

    font-size:42px;

    font-weight:900;

    color:var(--primary);

    margin-bottom:30px;

}

.price-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:100%;

    height:52px;

    border-radius:999px;

    background:var(--primary);

    color:#000;

    font-weight:800;

    transition:.3s;

}

.price-button:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(255,208,0,.35);

}

.prices-note{

    margin-top:45px;

    text-align:center;

    color:var(--gray);

    font-size:15px;

}



/* ==========================================================
   ABOUT
========================================================== */

.about{

    background:#0b0b0b;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-content p{

    margin-bottom:22px;

    font-size:17px;

    line-height:1.8;

}

.about-list{

    display:grid;

    gap:16px;

    margin-top:35px;

}

.about-list li{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px 20px;

    background:rgba(255,255,255,.04);

    border-radius:14px;

    border:1px solid rgba(255,255,255,.06);

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:28px;

    box-shadow:0 30px 60px rgba(0,0,0,.40);

}



/* ==========================================================
   STATS
========================================================== */

.stats{

    padding-top:20px;

    background:#0b0b0b;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:24px;

}

.stat-card{

    padding:35px;

    text-align:center;

    background:rgba(255,255,255,.04);

    border-radius:22px;

    border:1px solid rgba(255,255,255,.08);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:rgba(255,208,0,.25);

}

.stat-card h3{

    font-size:52px;

    color:var(--primary);

    margin-bottom:14px;

}

.stat-card p{

    color:var(--gray);

    font-weight:600;

}



/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1100px){

    .prices-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .about-grid{

        grid-template-columns:1fr;

        gap:60px;

    }

    .stats-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .prices-grid{

        grid-template-columns:1fr;

    }

    .stats-grid{

        grid-template-columns:1fr;

    }

    .price-value{

        font-size:34px;

    }

}
/* ==========================================================
   FAQ
========================================================== */

.faq{

    background:#111;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    margin-bottom:18px;

    border-radius:18px;

    overflow:hidden;

    border:1px solid rgba(255,255,255,.08);

    background:rgba(255,255,255,.04);

}

.faq-question{

    width:100%;

    padding:24px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#fff;

    font-size:20px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.faq-question:hover{

    background:rgba(255,208,0,.08);

}

.faq-question span{

    font-size:30px;

    color:var(--primary);

}

.faq-answer{

    display:none;

    padding:0 30px 25px;

}

.faq-answer p{

    color:var(--gray);

    line-height:1.8;

}



/* ==========================================================
   CTA
========================================================== */

.cta{

    background:linear-gradient(
        135deg,
        #111,
        #1a1a1a
    );

}

.cta-box{

    padding:70px;

    border-radius:30px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

}

.cta-box h2{

    font-size:54px;

    margin:20px 0;

}

.cta-box p{

    max-width:720px;

    margin:0 auto 40px;

    color:var(--gray);

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}



/* ==========================================================
   CONTACTS
========================================================== */

.contacts{

    background:#0b0b0b;

}

.contacts-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.contact-card{

    padding:35px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    transition:.35s;

}

.contact-card:hover{

    transform:translateY(-8px);

    border-color:rgba(255,208,0,.25);

}

.contact-icon{

    font-size:42px;

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:15px;

}

.contact-card a{

    color:var(--primary);

    font-weight:700;

}

.contact-card p{

    color:var(--gray);

}



/* ==========================================================
   FOOTER
========================================================== */

.footer{

    background:#070707;

    border-top:1px solid rgba(255,255,255,.06);

}

.footer-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:45px;

    padding-bottom:50px;

}

.footer-column h3,

.footer-column h4{

    margin-bottom:22px;

}

.footer-column ul{

    display:grid;

    gap:12px;

}

.footer-column a{

    color:var(--gray);

    transition:.3s;

}

.footer-column a:hover{

    color:var(--primary);

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.06);

    padding-top:28px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    color:#888;

    flex-wrap:wrap;

    gap:20px;

}



/* ==========================================================
   FLOATING BUTTONS
========================================================== */

.floating-buttons{

    position:fixed;

    right:25px;

    bottom:25px;

    display:flex;

    flex-direction:column;

    gap:14px;

    z-index:999;

}

.floating-btn{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:#fff;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,0,0,.35);

}

.floating-btn i{

    transition:.35s;

}

.floating-btn:hover{

    transform:translateY(-6px) scale(1.08);

}

.floating-btn:hover i{

    transform:scale(1.12);

}

.phone-btn{

    background:#ffb300;

    color:#000;

}

.viber-btn{

    background:#7360F2;

}

.whatsapp-btn{

    background:#25D366;

}

.top-btn{

    background:#222;

}

.floating-btn:hover{

    transform:translateY(-5px) scale(1.08);

}

.phone-btn{

    background:#FFC107;

    color:#000;

}

.viber-btn{

    background:#7360F2;

}

.whatsapp-btn{

    background:#25D366;

}

.top-btn{

    background:#202020;

}



/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:1100px){

.contacts-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.cta-box{

padding:45px 25px;

}

.cta-box h2{

font-size:34px;

}

.contacts-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

.floating-buttons{

right:15px;

bottom:15px;

}

.floating-btn{

width:52px;

height:52px;

}

}