@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

:root{
    --logo-green:#9fd500;
    --logo-lime:#c8f000;
    --logo-yellow:#ffe100;
    --logo-gold:#d4af00;
    --logo-red:#b40016;
    --black:#050505;
    --soft-black:#111111;
    --silver:#d9d9d9;
    --light:#fbfaf2;
    --white:#ffffff;
    --text:#1d1d1d;
    --muted:#666666;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:'Poppins', sans-serif;
    line-height:1.7;
    background:var(--light);
    color:var(--text);
}

h1,h2,h3,h4,
.navbar a{
    font-family:'Montserrat', sans-serif;
}

section{
    padding:90px 8%;
}

.container{
    max-width:1200px;
    margin:auto;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:95px;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:0 50px;
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(12px);
    z-index:1000;
    transition:.3s ease;
}

.navbar.scrolled{
    background:rgba(0,0,0,.92);
    box-shadow:0 8px 25px rgba(0,0,0,.35);
}

.navbar ul{
    display:flex;
    gap:38px;
    list-style:none;
    margin:0;
    padding:0;
    flex-wrap:wrap;
    justify-content:center;
}

.navbar a{
    color:white;
    text-decoration:none;
    font-size:1rem;
    font-weight:900;
    letter-spacing:.5px;
    position:relative;
    transition:.3s ease;
}

.navbar a:hover,
.navbar a.active{
    color:var(--logo-yellow);
}

.navbar a.active::after{
    content:"";
    position:absolute;
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
    width:75%;
    height:4px;
    background:linear-gradient(90deg,var(--logo-yellow),var(--logo-green),var(--logo-red));
    border-radius:50px;
}

.nav-logo{
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    display:flex;
    align-items:center;
    justify-content:center;
}

.nav-logo img{
    height:95px;
    width:auto;
    object-fit:contain;
    display:block;
    transition:.3s ease;
}

.navbar.scrolled .nav-logo img{
    height:78px;
}

/* HERO */

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    padding:130px 8% 70px;
    color:white;
    overflow:hidden;
    background:#000;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    animation:heroFade 18s infinite;
    filter:brightness(1.08) contrast(1.08) saturate(1.15);
    z-index:0;
}

.hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,rgba(0,0,0,.52),rgba(0,0,0,.28),rgba(0,0,0,.08)),
        linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.45));
    z-index:1;
}

@keyframes heroFade{
    0%,30%{
        background-image:url('../images/Our-cars.jpeg');
        transform:scale(1);
    }
    33%,63%{
        background-image:url('../images/airport-transfer.jpg');
        transform:scale(1.05);
    }
    66%,100%{
        background-image:url('../images/Our-cars1.jpeg');
        /* background-image:url('../images/hero.webp'); */
        transform:scale(1.08);
    }
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:780px;
}

.welcome-title{
    font-size:clamp(3rem,8vw,7rem);
    font-weight:900;
    line-height:.9;
    margin:0;
    color:white;
    text-shadow:0 6px 25px rgba(0,0,0,.55);
}

.main-title{
    font-size:clamp(3.5rem,8vw,6.5rem);
    font-weight:900;
    line-height:.9;
    margin:15px 0 35px;
    color:var(--logo-yellow);
    text-shadow:
        0 6px 25px rgba(0,0,0,.65),
        3px 3px 0 rgba(0,0,0,.35);
}

.btn,
button{
    display:inline-block;
    background:linear-gradient(135deg,var(--logo-yellow),var(--logo-lime));
    color:#000;
    padding:16px 34px;
    text-decoration:none;
    border:none;
    border-radius:50px;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 10px 25px rgba(255,225,0,.35);
    transition:.3s ease;
}

.btn:hover,
button:hover{
    background:linear-gradient(135deg,var(--black),#2a2a2a);
    color:var(--logo-yellow);
    transform:translateY(-3px);
}

/* SECTION HEADINGS */

.section-header,
.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-header h2,
.section-title h2,
section h2{
    font-size:clamp(2.2rem,4vw,3.5rem);
    color:var(--black);
    margin-bottom:15px;
    font-weight:900;
    position:relative;
}

.section-header h2::after,
.section-title h2::after,
section h2::after{
    content:"";
    display:block;
    width:100px;
    height:5px;
    background:linear-gradient(90deg,var(--logo-yellow),var(--logo-green),var(--logo-red));
    margin:15px auto 0;
    border-radius:50px;
}

.section-header p,
.section-title p{
    color:var(--muted);
    max-width:750px;
    margin:auto;
}

/* ABOUT */

.about-section{
    background:white;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-image img,
.contact-image img,
.team-card img{
    width:100%;
    border-radius:22px;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.about-content h3{
    color:var(--logo-green);
    font-size:2rem;
    font-weight:900;
}

.about-content h3::after{
    content:"";
    display:block;
    width:70px;
    height:4px;
    background:var(--logo-red);
    margin-top:10px;
    border-radius:30px;
}

/* MISSION / VISION */

.mission-vision{
    background:
        radial-gradient(circle at top right,rgba(159,213,0,.25),transparent 35%),
        linear-gradient(135deg,#000,#111,#2e3600);
}

.mission-vision .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.mission-card{
    background:rgba(255,255,255,.08);
    color:white;
    padding:45px;
    border-radius:22px;
    border:1px solid rgba(255,225,0,.28);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.mission-card h3{
    color:var(--logo-yellow);
    font-size:1.8rem;
}

/* VALUES */

.values-section{
    background:var(--light);
}

.values-grid,
.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:50px;
}

.value-card,
.team-card{
    background:white;
    padding:32px;
    border-radius:22px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    border-top:6px solid var(--logo-yellow);
    transition:.3s ease;
}

.value-card:hover,
.team-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
    border-top-color:var(--logo-green);
}

.value-card h3,
.team-card h3{
    color:var(--logo-green);
    font-weight:900;
}

/* SERVICES */

.services-section{
    padding:100px 8%;
    background:#fffef4;
    text-align:center;
}

.section-label{
    color:var(--logo-green);
    text-transform:uppercase;
    letter-spacing:5px;
    font-weight:900;
    margin-bottom:10px;
}

.services-section h2{
    font-size:3.8rem;
    margin:0;
    color:var(--black);
}

.services-section h2 span{
    color:var(--logo-yellow);
}

.services-intro{
    max-width:750px;
    margin:20px auto 45px;
    color:var(--muted);
    font-size:1.1rem;
}

.service-cards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.service-card{
    background:white;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    position:relative;
    transition:.3s ease;
    border-top:6px solid var(--logo-yellow);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 38px rgba(0,0,0,.18);
    border-top-color:var(--logo-green);
}

.service-card img{
    width:100%;
    height:250px;
    object-fit:cover;
    display:block;
}

.service-icon{
    width:76px;
    height:76px;
    background:var(--black);
    color:var(--logo-yellow);
    border:3px solid var(--logo-green);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    margin:-38px auto 15px;
    position:relative;
    z-index:2;
    box-shadow:0 8px 18px rgba(0,0,0,.25);
}

.service-card h3{
    font-size:1.45rem;
    color:var(--black);
    margin:0 15px 10px;
    font-weight:900;
}

.service-card h3::after{
    content:"";
    display:block;
    width:45px;
    height:3px;
    background:var(--logo-red);
    margin:10px auto 0;
    border-radius:20px;
}

.service-card p{
    color:#555;
    padding:0 25px 30px;
    margin:0;
}

.services-btn{
    display:inline-block;
    margin-top:35px;
    padding:16px 38px;
    background:var(--black);
    color:var(--logo-yellow);
    border:2px solid var(--logo-yellow);
    border-radius:50px;
    text-decoration:none;
    text-transform:uppercase;
    font-weight:900;
    letter-spacing:1px;
    transition:.3s ease;
}

.services-btn:hover{
    background:var(--logo-yellow);
    color:var(--black);
}

/* WHY CHOOSE US */

.why-section{
    background:
        linear-gradient(rgba(255,255,255,.94),rgba(255,255,255,.94)),
        radial-gradient(circle at top right,rgba(159,213,0,.25),transparent 35%);
    padding:100px 8%;
}

.why-container{
    max-width:1400px;
    margin:auto;
}

.why-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:50px;
    margin-bottom:60px;
}

.section-tag{
    color:var(--logo-green);
    font-weight:900;
    letter-spacing:5px;
    display:block;
    margin-bottom:20px;
}

.why-text h2{
    font-size:4rem;
    margin:0;
    color:var(--black);
    font-weight:900;
}

.why-text span{
    color:var(--logo-yellow);
}

.why-text p{
    font-size:1.2rem;
    color:#555;
    margin-top:25px;
    max-width:570px;
    line-height:1.8;
}

.why-image{
    text-align:right;
}

.why-image img{
    width:100%;
    max-width:560px;
    border-radius:28px;
    box-shadow:0 22px 45px rgba(0,0,0,.18);
    border-bottom:6px solid var(--logo-yellow);
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.why-card{
    background:white;
    border-radius:22px;
    padding:38px 32px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
    border-top:6px solid var(--logo-yellow);
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    border-top-color:var(--logo-green);
}

.icon{
    width:88px;
    height:88px;
    margin:0 auto 25px;
    border-radius:50%;
    background:var(--black);
    color:var(--logo-yellow);
    border:3px solid var(--logo-green);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2.4rem;
    box-shadow:0 12px 22px rgba(0,0,0,.18);
}

.why-card h3{
    font-size:1.5rem;
    margin-bottom:15px;
    color:var(--black);
    font-weight:900;
}

.why-card h3::after{
    content:"";
    display:block;
    width:45px;
    height:3px;
    background:var(--logo-red);
    margin:10px auto 0;
    border-radius:20px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

.why-btn{
    display:table;
    margin:60px auto 0;
    padding:18px 45px;
    background:var(--black);
    color:var(--logo-yellow);
    border:2px solid var(--logo-yellow);
    text-decoration:none;
    border-radius:50px;
    font-weight:900;
    transition:.3s ease;
}

.why-btn:hover{
    background:var(--logo-yellow);
    color:var(--black);
}

/* TEAM */

.team-section{
    background:#fffef4;
}

.team-card{
    text-align:center;
}

.team-card img{
    height:300px;
    object-fit:cover;
    margin-bottom:20px;
}

/* CONTACT */

.contact-section{
    background:
        linear-gradient(rgba(0,0,0,.82),rgba(0,0,0,.82)),
        url('../images/contact-bus.jpg');
    background-size:cover;
    background-position:center;
    color:white;
}

.contact-section .section-title h2,
.contact-section .section-title p{
    color:white;
}

.contact-container{
    display:flex;
    gap:40px;
    align-items:stretch;
}

.contact-info,
.contact-form{
    background:rgba(255,255,255,.96);
    color:#222;
    padding:40px;
    border-radius:24px;
    box-shadow:0 18px 45px rgba(0,0,0,.25);
}

.contact-info{
    flex:1;
}

.contact-form{
    flex:1.4;
}

.contact-info h3,
.info-card h4{
    color:var(--logo-green);
    font-weight:900;
}

.info-card{
    display:flex;
    gap:15px;
    margin-bottom:22px;
}

.info-card span{
    font-size:28px;
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
    max-width:100%;
}

input,
textarea{
    width:100%;
    padding:17px;
    border:1px solid #ddd;
    border-radius:14px;
    font-size:16px;
    font-family:'Poppins', sans-serif;
}

input:focus,
textarea:focus{
    border-color:var(--logo-green);
    outline:none;
    box-shadow:0 0 0 4px rgba(159,213,0,.22);
}

/* WHATSAPP */

.whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    background:var(--black);
    color:var(--logo-yellow);
    border:2px solid var(--logo-yellow);
    padding:15px 24px;
    text-decoration:none;
    border-radius:50px;
    font-weight:900;
    box-shadow:0 12px 25px rgba(0,0,0,.3);
    z-index:999;
    transition:.3s ease;
}

.whatsapp:hover{
    background:var(--logo-yellow);
    color:var(--black);
}

/* MOBILE */

@media(max-width:1000px){
    .why-top,
    .about-grid,
    .mission-vision .container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .why-text p{
        margin:25px auto 0;
    }

    .why-image{
        text-align:center;
    }

    .why-grid,
    .service-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .contact-container{
        flex-direction:column;
    }
}

@media(max-width:700px){
    section{
        padding:70px 6%;
    }

    .navbar{
        height:auto;
        padding:18px 5%;
    }

    .navbar ul{
        gap:16px;
        padding-right:90px;
    }

    .navbar a{
        font-size:.8rem;
    }

    .nav-logo{
        right:10px;
    }

    .nav-logo img{
        height:65px;
    }

    .hero{
        padding:130px 6% 70px;
    }

    .service-cards,
    .why-grid{
        grid-template-columns:1fr;
    }

    .services-section h2,
    .why-text h2{
        font-size:2.8rem;
    }

    .service-card img{
        height:220px;
    }
}
.toast{

    position:fixed;

    top:30px;

    right:30px;

    width:360px;

    display:flex;

    align-items:center;

    gap:18px;

    background:#ffffff;

    border-left:6px solid #9fd500;

    padding:18px;

    border-radius:14px;

    box-shadow:0 20px 45px rgba(0,0,0,.18);

    transform:translateX(450px);

    opacity:0;

    transition:.4s;

    z-index:99999;
}

.toast.show{

    transform:translateX(0);

    opacity:1;
}

.toast-icon{

    width:55px;

    height:55px;

    background:#9fd500;

    color:white;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:bold;
}

.toast h4{

    margin:0;

    color:#050505;
}

.toast p{

    margin:5px 0 0;

    color:#666;
}
#formMessage{

    margin-bottom:20px;

}

.success-message{

    background:#d4edda;

    color:#155724;

    padding:18px;

    border-radius:8px;

    border:1px solid #28a745;

    font-weight:600;

    animation:fadeIn .4s;

}

.error-message{

    background:#f8d7da;

    color:#721c24;

    padding:18px;

    border-radius:8px;

    border:1px solid #dc3545;

    font-weight:600;

    animation:fadeIn .4s;

}

@keyframes fadeIn{

from{

opacity:0;
transform:translateY(-10px);

}

to{

opacity:1;
transform:translateY(0);

}

}
.success-message,
.error-message{
    animation: slideIn .4s ease;
}

@keyframes slideIn{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ==========================================================
   RESPONSIVE ENHANCEMENTS
   These rules preserve the existing desktop design and only
   improve tablet and mobile behaviour.
========================================================== */

html {
    scroll-padding-top: 95px;
}

body {
    width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.navbar,
.nav-logo,
.nav-logo img {
    visibility: visible;
    opacity: 1;
}

.nav-logo {
    z-index: 1003;
    flex-shrink: 0;
}

.nav-logo img {
    min-width: 70px;
    max-width: 150px;
}

/* Hamburger button: hidden on desktop */
.menu-toggle {
    display: none;
    position: relative;
    z-index: 1004;
    padding: 6px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
    box-shadow: none;
    cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus {
    background: transparent;
    color: var(--logo-yellow);
    transform: none;
    outline: none;
    box-shadow: none;
}

select {
    width: 100%;
    min-height: 52px;
    padding: 17px;
    border: 1px solid #ddd;
    border-radius: 14px;
    background: #ffffff;
    color: #222;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

select:focus {
    border-color: var(--logo-green);
    outline: none;
    box-shadow: 0 0 0 4px rgba(159, 213, 0, .22);
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Tablet layout */
@media (max-width: 1000px) {
    .navbar {
        padding-right: 135px;
    }

    .nav-logo {
        right: 18px;
    }

    .nav-logo img {
        height: 82px;
        min-width: 82px;
    }

    .navbar.scrolled .nav-logo img {
        height: 72px;
    }

    .contact-container {
        width: 100%;
    }

    .contact-info,
    .contact-form {
        min-width: 0;
    }
}

/* Phone layout */
@media (max-width: 700px) {
    html {
        scroll-padding-top: 75px;
    }

    section,
    .services-section,
    .why-section {
        padding: 65px 18px;
    }

    .navbar {
        height: 75px;
        min-height: 75px;
        justify-content: flex-start;
        padding: 0 90px 0 18px;
        background: rgba(0, 0, 0, .92);
    }

    .nav-logo {
        position: absolute;
        top: 50%;
        right: 10px;
        display: flex;
        width: auto;
        height: 70px;
        align-items: center;
        justify-content: center;
        transform: translateY(-50%);
        z-index: 1005;
    }

    .nav-logo img,
    .navbar.scrolled .nav-logo img {
        display: block;
        width: auto;
        min-width: 60px;
        max-width: 82px;
        height: 65px;
        object-fit: contain;
        visibility: visible;
        opacity: 1;
    }

    .menu-toggle {
        display: block;
    }

    /* This applies when the hamburger button was added to the HTML. */
    .navbar:has(.menu-toggle) ul {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        max-height: calc(100svh - 75px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        padding: 12px 0;
        background: rgba(0, 0, 0, .97);
        box-shadow: 0 12px 25px rgba(0, 0, 0, .25);
    }

    .navbar:has(.menu-toggle) ul.open {
        display: flex;
    }

    .navbar:has(.menu-toggle) ul li {
        width: 100%;
        text-align: center;
    }

    .navbar:has(.menu-toggle) ul a {
        display: block;
        width: 100%;
        padding: 14px 20px;
        font-size: .95rem;
    }

    .navbar:has(.menu-toggle) ul a.active::after {
        bottom: 4px;
        width: 35px;
    }

    /* Fallback when the hamburger HTML has not yet been added. */
    .navbar:not(:has(.menu-toggle)) {
        height: auto;
        min-height: 75px;
        padding: 12px 90px 12px 12px;
    }

    .navbar:not(:has(.menu-toggle)) ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px 14px;
        padding: 0;
    }

    .navbar:not(:has(.menu-toggle)) a {
        font-size: .78rem;
    }

    .hero {
        min-height: 100svh;
        justify-content: center;
        padding: 110px 18px 55px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .welcome-title {
        font-size: clamp(2.5rem, 13vw, 4.2rem);
        line-height: .95;
    }

    .main-title {
        margin-bottom: 28px;
        font-size: clamp(2.8rem, 14vw, 4.8rem);
        line-height: .95;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    .service-cards,
    .why-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .services-section h2,
    .why-text h2 {
        font-size: 2.3rem;
    }

    .service-card img {
        height: 210px;
    }

    .team-card img {
        height: 230px;
    }

    .mission-card,
    .value-card,
    .team-card,
    .why-card {
        padding: 28px 22px;
    }

    .contact-info,
    .contact-form {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .contact-container {
        gap: 24px;
    }

    input,
    textarea,
    select,
    .contact-form button[type='submit'] {
        width: 100%;
        min-height: 52px;
        font-size: 16px;
    }

    .whatsapp {
        right: 12px;
        bottom: 12px;
        padding: 12px 16px;
        font-size: .85rem;
    }

    .toast {
        top: 15px;
        right: 5%;
        left: 5%;
        width: auto;
    }
}

@media (max-width: 420px) {
    section,
    .services-section,
    .why-section {
        padding: 55px 15px;
    }

    .navbar {
        padding-right: 82px;
    }

    .nav-logo img,
    .navbar.scrolled .nav-logo img {
        max-width: 72px;
        height: 58px;
    }

    .welcome-title {
        font-size: 2.35rem;
    }

    .main-title {
        font-size: 2.75rem;
    }

    .section-header h2,
    .section-title h2,
    section h2,
    .services-section h2,
    .why-text h2 {
        font-size: 2rem;
    }

    .service-card img {
        height: 190px;
    }

    .contact-info,
    .contact-form {
        padding: 22px 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
