/* RESET */
html {
    scroll-behavior: smooth;
}
*{
    box-sizing:border-box;
}

body{
    margin:0;
    font-family:'Inter', sans-serif;
    background:#070b12;
    color:#fff;
}

a{
    text-decoration:none;
}

/* LAYOUT */
.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 20px;
}

/* HEADER */
.site-header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(5, 8, 14, 0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid rgba(255,255,255,0.04);
}

.header-wrap{
    height:64px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:#f4efe6;
    flex-shrink:0;
}

.logo-icon{
    width:28px;
    height:28px;
    border-radius:8px;
    background:#f1b51c;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    line-height:1;
}

.logo-text{
    font-size:15px;
    font-weight:600;
    color:#f3ede2;
}

.logo-text strong{
    color:#f1b51c;
    font-weight:700;
}

/* NAV */
.main-nav{
    display:flex;
    align-items:center;
    gap:28px;
}

.main-nav a{
    font-size:12px;
    font-weight:500;
    color:#9aa3b2;
    transition:0.2s ease;
}

.main-nav a:hover{
    color:#ffffff;
}

/* RIGHT SIDE */
.header-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-shrink:0;
}

.header-phone{
    font-size:12px;
    font-weight:600;
    color:#f1b51c;
}

.header-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:34px;
    padding:0 18px;
    border-radius:999px;
    background:#f1b51c;
    color:#111;
    font-size:12px;
    font-weight:700;
    transition:0.2s ease;
}

.header-btn:hover{
    transform:translateY(-1px);
}

/* MOBILE */
@media (max-width: 900px){
    .main-nav{
        display:none;
    }

    .header-phone{
        display:none;
    }

    .header-wrap{
        height:60px;
    }
}

/* LAYOUT */
.container{
    max-width:1200px;
    margin:auto;
    padding:20px;
}

/* HEADER */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#ffc107;
    font-weight:700;
    font-size:20px;
}

.phone{
    color:#ffc107;
}

/* HERO */
.hero{
    position:relative;
    height:100vh;
    padding-top:80px;
    display:flex;
    align-items:center;
    background:url('background-taxi.png') center/cover no-repeat;
}

/* DARK OVERLAY */
.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(5,8,14,0.95) 0%,
        rgba(5,8,14,0.85) 40%,
        rgba(5,8,14,0.4) 70%,
        rgba(5,8,14,0.1) 100%
    );
}

/* CONTENT */
.hero-inner{
    position:relative;
    z-index:2;
    max-width:650px;
}

/* BADGE */
.hero-badge{
    display:inline-block;
    background:rgba(255,193,7,0.1);
    color:#ffc107;
    padding:6px 14px;
    border-radius:999px;
    font-size:12px;
    margin-bottom:20px;
    border:1px solid rgba(255,193,7,0.3);
}

/* TITLE */
.hero h1{
    font-size:56px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero h1 span{
    color:#ffc107;
}

/* TEXT */
.hero p{
    color:#b8c0cc;
    font-size:15px;
    line-height:1.6;
    margin-bottom:30px;
}

/* BUTTONS */
.hero-buttons{
    display:flex;
    gap:15px;
    margin-bottom:30px;
}

.btn-primary{
    background:#ffc107;
    color:#111;
    padding:14px 24px;
    border-radius:999px;
    font-weight:700;
    font-size:14px;
}

.btn-outline{
    border:1px solid rgba(255,255,255,0.3);
    padding:14px 24px;
    border-radius:999px;
    color:#fff;
    font-size:14px;
}

/* FEATURES */
.hero-features{
    display:flex;
    gap:30px;
    font-size:13px;
    color:#aaa;
}

/* MOBILE */
@media(max-width:768px){

.hero h1{
    font-size:34px;
}

.hero{
    height:auto;
    padding:120px 0 60px;
}

.hero-buttons{
    flex-direction:column;
}

}

/* SERVICES SECTION */
.services{
    padding:100px 0;
    text-align:center;
}

.section-tag{
    color:#ffc107;
    font-size:12px;
    letter-spacing:1px;
}

.section-title{
    font-size:36px;
    margin:10px 0;
}

.section-sub{
    color:#9aa3b2;
    max-width:600px;
    margin:0 auto 50px;
}

/* GRID */
.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

/* CARD */
.service-card{
    position:relative;
    border-radius:16px;
    overflow:hidden;
    height:320px;
    background:#111;
}

/* IMAGE */
.service-card img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* DARK OVERLAY */
.service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(5,8,14,0.95) 10%,
        rgba(5,8,14,0.6) 50%,
        rgba(5,8,14,0.2) 100%
    );
}

/* CONTENT */
.service-content{
    position:absolute;
    bottom:20px;
    left:20px;
    right:20px;
    text-align:left;
}

/* ICON */
.service-icon{
    width:38px;
    height:38px;
    background:#ffc107;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:10px;
    margin-bottom:15px;
    font-size:16px;
    font-weight:700;
}

/* TITLE */
.service-content h3{
    font-size:18px;
    margin-bottom:10px;
}

/* TEXT */
.service-content p{
    font-size:13px;
    color:#c0c7d1;
    line-height:1.5;
}

/* HOVER EFFECT */
.service-card:hover{
    transform:translateY(-5px);
    transition:0.3s;
}

/* MOBILE */
@media(max-width:900px){
    .services-grid{
        grid-template-columns:1fr;
    }
}
/* WHY SECTION */
.why{
    padding:100px 0;
    text-align:center;
}

/* GRID */
.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:50px;
}

/* CARD */
.why-card{
    background:#0f141c;
    border:1px solid rgba(255,255,255,0.05);
    border-radius:16px;
    padding:30px;
    text-align:left;
    transition:0.3s;
}

/* ICON */
.why-icon{
    width:40px;
    height:40px;
    background:#1a1f28;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffc107;
    margin-bottom:15px;
    font-size:18px;
}

/* TITLE */
.why-card h3{
    font-size:16px;
    margin-bottom:10px;
}

/* TEXT */
.why-card p{
    font-size:13px;
    color:#9aa3b2;
    line-height:1.6;
}

/* HOVER */
.why-card:hover{
    border-color:rgba(255,193,7,0.4);
    transform:translateY(-5px);
}

/* MOBILE */
@media(max-width:900px){
    .why-grid{
        grid-template-columns:1fr;
    }
}
/* FIX GAP FROM ABOVE SECTION */
.why{
    padding:60px 0 40px;
    margin-bottom:0;
}

/* AREAS SECTION */
.areas{
    padding:60px 0 100px;
    text-align:center;
    background:#070b12;
    margin-top:0;
}

/* GRID */
.areas-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin-top:40px;
}

/* BUTTONS */
.areas-grid a{
    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 14px;
    border-radius:10px;
    background:#0f141c;
    border:1px solid rgba(255,255,255,0.05);
    color:#cfd6e1;
    font-size:13px;
    transition:0.25s;
}

/* HOVER */
.areas-grid a:hover{
    border-color:#ffc107;
    color:#fff;
    transform:translateY(-2px);
}

/* FOOTER TEXT */
.areas-footer{
    margin-top:30px;
    font-size:13px;
    color:#9aa3b2;
}

.areas-footer span{
    color:#ffc107;
    font-weight:600;
}

/* MOBILE */
@media(max-width:900px){
    .areas-grid{
        grid-template-columns:1fr;
    }
}
/* TESTIMONIALS */
.testimonials{
    padding:100px 0;
    text-align:center;
    background:#070b12;
}

/* GRID */
.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-top:50px;
}

/* CARD */
.testimonial-card{
    background:#0f141c;
    border:1px solid rgba(255,255,255,0.05);
    border-radius:16px;
    padding:30px;
    text-align:left;
    position:relative;
    transition:0.3s;
}

/* HOVER */
.testimonial-card:hover{
    border-color:rgba(255,193,7,0.4);
    transform:translateY(-5px);
}

/* STARS */
.stars{
    color:#ffc107;
    margin-bottom:15px;
    font-size:14px;
}

/* TEXT */
.testimonial-text{
    font-size:14px;
    color:#cfd6e1;
    line-height:1.6;
    margin-bottom:20px;
}

/* USER */
.testimonial-user{
    display:flex;
    align-items:center;
    gap:12px;
}

/* AVATAR */
.avatar{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#1a1f28;
    color:#ffc107;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/* NAME */
.testimonial-user strong{
    display:block;
    font-size:14px;
}

.testimonial-user span{
    font-size:12px;
    color:#9aa3b2;
}

/* MOBILE */
@media(max-width:900px){
    .testimonials-grid{
        grid-template-columns:1fr;
    }
}
/* FAQ */
.faq{
    padding:100px 0;
    background:#070b12;
    text-align:center;
}

/* LIST */
.faq-list{
    max-width:700px;
    margin:50px auto 0;
}

/* ITEM */
.faq-item{
    margin-bottom:12px;
    border-radius:10px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,0.05);
}

/* QUESTION */
.faq-question{
    width:100%;
    background:#0f141c;
    color:#fff;
    padding:16px 20px;
    text-align:left;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:14px;
    cursor:pointer;
}

/* ACTIVE (highlight like your screenshot) */
.faq-item.active .faq-question{
    color:#ffc107;
}

/* ANSWER */
.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 20px;
    background:#0b1016;
    color:#9aa3b2;
    font-size:13px;
    line-height:1.6;
    transition:all 0.3s ease;
}

/* OPEN STATE */
.faq-item.active .faq-answer{
    max-height:200px;
    padding:15px 20px;
}
/* FOOTER */
/* FOOTER */
.footer{
    background:#070b12;
    padding:70px 0 30px;
    border-top:1px solid rgba(255,255,255,0.05);
}

/* GRID */
.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    margin-bottom:15px;
}

.logo-icon{
    width:32px;
    height:32px;
    background:#ffc107;
    color:#000;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

/* TEXT */
.footer-text{
    font-size:13px;
    color:#9aa3b2;
    line-height:1.6;
}

/* HEADINGS */
.footer-col h4{
    margin-bottom:15px;
    font-size:14px;
}

/* LINKS */
.footer-col ul{
    list-style:none;
    padding:0;
}

.footer-col ul li{
    margin-bottom:10px;
    font-size:13px;
}

.footer-col ul li a{
    color:#9aa3b2;
    text-decoration:none;
    transition:0.3s;
}

.footer-col ul li a:hover{
    color:#ffc107;
}

/* CONTACT */
.contact-list li{
    color:#9aa3b2;
}

/* BOTTOM */
.footer-bottom{
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.05);
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:12px;
    color:#9aa3b2;
}

/* BOTTOM LINKS */
.footer-links a{
    margin-left:20px;
    color:#9aa3b2;
    text-decoration:none;
}

.footer-links a:hover{
    color:#ffc107;
}
.footer-bottom-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
}
/* MOBILE */
@media(max-width:900px){
    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
}

@media(max-width:600px){
    .footer-grid{
        grid-template-columns:1fr;
    }
}
.footer-credit{
    margin-left:8px;
    color:#9aa3b2;
}

.footer-credit a{
    color:#ffc107;
    text-decoration:none;
}

.footer-credit a:hover{
    text-decoration:underline;
}
.footer-bottom a{
    color:#ffc107 !important;
    text-decoration:none;
}

.footer-bottom a:hover{
    color:#ffc107 !important;
}
/* 🔥 MOBILE FOOTER FIX */
@media(max-width:600px){

    .footer{
        padding:50px 0 20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:30px;
        text-align:left;
    }

    .footer-col{
        border-bottom:1px solid rgba(255,255,255,0.05);
        padding-bottom:20px;
    }

    .footer-col:last-child{
        border-bottom:none;
    }

    /* tighten spacing */
    .footer-col ul li{
        margin-bottom:8px;
    }

    /* FIX BOTTOM SECTION */
    .footer-bottom-inner{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:12px;
    }

    .footer-links{
        display:flex;
        gap:15px;
        justify-content:center;
    }

    /* make links look clean */
    .footer-links a{
        font-size:12px;
    }

    /* credit spacing fix */
    .footer-credit{
        display:block;
        margin-top:6px;
    }
}
.footer-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-top: 15px;
    padding: 12px 18px;

    background: #ffd700;
    color: #000 !important;

    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;

    text-decoration: none !important;

    transition: 0.3s ease;
}

.footer-call-btn:hover {
    background: #ffcc00;
    transform: translateY(-2px);
}

.call-icon {
    font-size: 16px;
}
.policy-section {
    padding: 80px 20px;
    background: #0b0f1a;
    color: #fff;
}

.policy-container {
    max-width: 800px;
    margin: auto;
}

.policy-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.policy-container h2 {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    color: #ffd700;
}

.policy-container p {
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

.policy-container ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.policy-container li {
    margin-bottom: 8px;
}

.policy-container a {
    color: #ffd700;
}

.policy-contact {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.policy-back {
    margin-bottom: 20px;
}

.policy-back a {
    display: inline-block;
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.policy-back a:hover {
    text-decoration: underline;
}