/* ===== GLOBAL ===== */
html {
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #eef3ff, #f9fcff);
    color: #1e293b;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===== NAVBAR ===== */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;

    background: rgba(0, 0, 0, 0.45); /* light transparent black */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);

    transition: all 0.3s ease;
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
}

.logo {
    height: 85px;
    width: auto;
    border-radius: 50%;   /* 20% circular */
    object-fit: cover;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}@media (max-width: 768px) {
    .logo {
        height: 65px;
        border-radius: 50%;
    }
}
/* Left spacing control */
.nav img {
    margin-right: 40px;
}
nav a {
    position: relative;
    margin-left: 25px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
}nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #00e0ff, #0072ff);
    transition: width 0.3s ease;
}

nav a:hover {
    font-size: 18px;
}

nav a:hover::after {
    width: 100%;
}
/* ===== HERO SLIDER ===== */
.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;

    z-index: 10;           /* above overlay */
    user-select: text;     /* allow text selection */
}
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5), rgba(0,0,0,0.2));
z-index: 1;  /* behind hero content */
    pointer-events: none; /* optional, ensures overlay doesn't block clicks/text */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: white;
    max-width: 500px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(59,130,246,0.4);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(59,130,246,0.6);
}

/* ===== SECTION ===== */
.section {
    padding: 100px 0;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    position: relative;
}

.section h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #3b82f6;
    display: block;
    margin: 10px auto;
    border-radius: 5px;
}

/* ===== DARK SECTION (Soft Glass) ===== */
.dark {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(20px);
}

/* ===== FLEET ===== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.fleet-card:hover {
    transform: translateY(-10px);
}

.fleet-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleet-card h3 {
    margin: 15px 0 5px;
}

.fleet-card p {
    padding-bottom: 20px;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.price-card:hover {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    transform: translateY(-8px);
}

/* ===== CONTACT ===== */
.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 15px;
}

.contact-form textarea {
    resize: none;
    height: 120px;
}

.map {
    margin-top: 10px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ===== FOOTER ===== */
footer {
    background: #0f172a;
    color: white;
    padding: 25px;
    text-align: center;
}

/* ===== WHATSAPP ===== */
.whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25d366, #4ade80);
    color: white;
    font-size: 22px;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    text-decoration: none;
    transition: 0.3s;
}

.whatsapp:hover {
    transform: scale(1.1);
}

/* ===== MOBILE ===== */
@media(max-width:768px) {

.hero-content {
    left: 5%;
    max-width: 90%;
}

.hero-content h1 {
    font-size: 28px;
}

.hero-content p {
    font-size: 14px;
}

nav {
    display: none;
}

.section {
    padding: 70px 0;
}

}
/* ===== MOBILE MENU ===== */

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: white;
}

/* Mobile View */
@media(max-width:768px) {

    nav {
        position: absolute;
        top: 80px;
        right: 0;
        background: rgba(0, 0, 0, 0.92);
        width: 220px;
        flex-direction: column;
        padding: 20px;
        display: none;
        border-radius: 10px 0 0 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    nav a {
        margin: 10px 0;
        color: white;
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

#about {
    background: #f8f9fa;
    padding: 100px 0;
}#fleet {
    background: linear-gradient(135deg, #111111, #1c1c1c);
    color: white;
    padding: 100px 0;
}
#pricing {
    background: linear-gradient(135deg, #fdf2ff, #ffffff);
}

.fleet-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 15px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 999;
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
#contact {
    padding: 20px 20px;
    background: linear-gradient(
        135deg,
        rgba(255, 192, 203, 0.25),   /* pastel pink */
        rgba(210, 180, 140, 0.25)    /* soft brown beige */
    );
}
/* Main Box */
.contact-box {
    max-width: 1100px;
    margin: auto;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 120, 255, 0.2);
}

/* LEFT PANEL */
.contact-left {
    flex: 1;
    padding: 70px 50px;
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h2 {
    font-size: 34px;
    margin-bottom: 40px;
    line-height: 1.3;
}

.contact-left span {
    color: #e0f7ff;
}

.contact-item {
    margin-bottom: 25px;
    font-size: 16px;
    opacity: 0.9;
}

.contact-item.highlight {
    padding: 12px 20px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
}

/* RIGHT PANEL */
.contact-right {
    flex: 1;
    padding: 70px 50px;
    background: white;
}

.contact-right h3 {
    margin-bottom: 30px;
    font-size: 26px;
}

/* KEEPING YOUR INPUT STYLE SIMPLE */
.contact-right input,
.contact-right textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 12px 5px;
    margin-bottom: 25px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
}

.contact-right input:focus,
.contact-right textarea:focus {
    border-color: #0077ff;
}

/* Button */
.send-btn {
    background: linear-gradient(135deg, #0077ff, #00c6ff);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    transition: 0.3s;
}

.send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 120, 255, 0.3);
}

/* MOBILE */
@media(max-width:768px) {
    .contact-box {
        flex-direction: column;
        border-radius: 25px;
    }

    .contact-left,
    .contact-right {
        padding: 50px 30px;
    }
}
#pricing {
    padding: 20px 20px;
    background: #f5f8fc;
}
.section-title {
    text-align: center;
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1e2a52;
    margin-bottom: 10px;
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #00c6ff, #0072ff);
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
}

.pricing-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.pricing-card {
    width: 320px;
    background: #fff;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    padding-bottom: 40px;
    position: relative;
    transition: 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Dark Top Box */
.top-box {
    background: #1e2a52;
    color: white;
    padding: 40px 20px 70px;
    border-radius: 20px 20px 0 0;
}

.top-box h3 {
    font-size: 22px;
    letter-spacing: 1px;
}

/* Ribbon */
.ribbon {
    position: absolute;
    top: 90px;
    left: -15px;
    right: -15px;
    padding: 15px;
    font-size: 20px;
    font-weight: bold;
    color: white;
}

/* Fold effect */
.ribbon::before,
.ribbon::after {
    content: "";
    position: absolute;
    bottom: -15px;
    width: 0;
    height: 0;
    border-style: solid;
}

.ribbon::before {
    left: 0;
    border-width: 15px 15px 0 0;
    border-color: rgba(0,0,0,0.2) transparent transparent transparent;
}

.ribbon::after {
    right: 0;
    border-width: 15px 0 0 15px;
    border-color: rgba(0,0,0,0.2) transparent transparent transparent;
}

/* Colors */
.blue { background: #1e88e5; }
.orange { background: #f9a825; }
.green { background: #00c853; }

/* Plan Body */
.plan-body {
    padding: 20px 30px 40px;
}

.plan-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.plan-body ul li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
    position: relative;
    padding-left: 22px;
}

/* Check Icon */
.plan-body ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00c853;
    font-weight: bold;
}

/* Button */
.pricing-btn {
    display: inline-block;
    padding: 10px 30px;
    background: #1e2a52;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.pricing-btn:hover {
    background: #0077ff;
}

/* Mobile */
@media(max-width:768px) {
    .pricing-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 80px;
    }
}
.section-title.light h2 {
    color: white;
}

.section-title.light p {
    color: rgba(255,255,255,0.8);
}

  #about {
        background: #f9fafc;
        padding: 60px 20px;
        text-align: center;
    }

    .about-title {
        font-family: 'Playfair Display', serif;
        font-size: 36px;
        font-weight: 600;
        color: #1a1a1a;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .about-text {
        font-family: 'Poppins', sans-serif;
        font-size: 18px;
        line-height: 1.8;
        color: #555;
        max-width: 800px;
        margin: 0 auto;
    }

    .about-text strong {
        color: #007bff;
        font-weight: 600;
    }

.calculator-box {
    max-width: 450px;
    margin: 0 auto;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 30px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.calculator-box label {
    display: block;
    margin: 15px 0 5px;
    font-weight: 600;
}

.calculator-box input,
.calculator-box select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
    margin-bottom: 20px;
}

#fare-result {
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    color: #007bff;
}
