/* =========================================================
   BANGALORE DROP TAXI - PREMIUM SUBDOMAIN CSS
   ========================================================= */

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

:root{
    --black:#0b0b0b;
    --dark:#111111;
    --card:#171717;
    --yellow:#ffc400;
    --white:#ffffff;
    --muted:#b8b8b8;
    --border:rgba(255,255,255,.09);
    --radius:24px;
}

*{
/* =========================================
   BANGALORE DROP TAXI
   PREMIUM SUBDOMAIN CSS
========================================= */

    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #0d0d0d;
    color: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ================= HEADER ================= */

.site-header {
    background: #111;
    border-bottom: 1px solid #292929;
    padding: 20px 5%;
    position: relative;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
}

.logo span {
    color: #ffc400;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.main-nav a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: .3s;
}

.main-nav a:hover {
    color: #ffc400;
}

.call-btn {
    background: #ffc400;
    color: #111 !important;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 800 !important;
}

/* ================= HERO ================= */

.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 70px 5%;
    background:
        radial-gradient(circle at 80% 30%, rgba(255,196,0,.12), transparent 30%),
        linear-gradient(135deg, #111, #050505);
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: #ffc400;
    color: #111;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.05;
    margin-bottom: 25px;
    font-weight: 900;
}

.hero h1 span {
    color: #ffc400;
}

.hero p {
    max-width: 760px;
    margin: auto;
    color: #ccc;
    font-size: 20px;
}

.hero-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 28px;
    border-radius: 35px;
    font-size: 17px;
    font-weight: 800;
    display: inline-block;
}

.btn-primary {
    background: #ffc400;
    color: #111;
}

.btn-secondary {
    border: 2px solid #ffc400;
    color: #ffc400;
}

/* ================= SECTION ================= */

.section {
    padding: 80px 5%;
    background: #111;
}

.section:nth-child(even) {
    background: #0a0a0a;
}

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

.section-title {
    text-align: center;
    margin-bottom: 45px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.section-title h2 span {
    color: #ffc400;
}

.section-title p {
    color: #aaa;
}

/* ================= CARDS ================= */

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

.card {
    background: #171717;
    border: 1px solid #292929;
    border-radius: 20px;
    padding: 30px;
    transition: .3s;
}

.card:hover {
    transform: translateY(-7px);
    border-color: #ffc400;
}

.card-icon {
    font-size: 38px;
    margin-bottom: 15px;
}

.card h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.card p {
    color: #aaa;
}

/* ================= TARIFF ================= */

.tariff-box {
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid #292929;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
}

.tariff-table th {
    background: #ffc400;
    color: #111;
    padding: 16px;
}

.tariff-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #292929;
    background: #151515;
}

/* ================= ROUTES ================= */

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

.route-card {
    background: #171717;
    padding: 22px;
    border-radius: 16px;
    border: 1px solid #292929;
}

.route-card:hover {
    border-color: #ffc400;
}

.route-card a {
    color: #ffc400;
    font-weight: 700;
}

/* ================= CONTACT ================= */

.contact-box {
    max-width: 850px;
    margin: auto;
    text-align: center;
    padding: 50px 25px;
    border-radius: 25px;
    background: #171717;
    border: 1px solid #292929;
}

.contact-box h2 {
    font-size: 40px;
}

.contact-box p {
    color: #aaa;
    margin: 15px 0 25px;
}

/* ================= FOOTER ================= */

.site-footer {
    background: #050505;
    border-top: 1px solid #292929;
    padding: 50px 5% 25px;
}

.footer-inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.footer-logo {
    font-size: 25px;
    font-weight: 800;
}

.footer-logo span {
    color: #ffc400;
}

.footer-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links a {
    color: #aaa;
}

.footer-links a:hover {
    color: #ffc400;
}

.copyright {
    color: #666;
    font-size: 14px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .site-header {
        padding: 18px 20px;
    }

    .header-inner {
        display: block;
        text-align: center;
    }

    .logo {
        display: block;
        margin-bottom: 18px;
    }

    .main-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .main-nav a {
        font-size: 15px;
    }

    .call-btn {
        display: block;
        margin-top: 18px;
        padding: 14px;
    }

    .hero {
        min-height: auto;
        padding: 80px 20px 70px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-badge {
        font-size: 16px;
        padding: 11px 22px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .section {
        padding: 60px 20px;
    }

    .section-title h2 {
        font-size: 32px;
    }

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

    .tariff-table {
        font-size: 14px;
    }

    .tariff-table th,
    .tariff-table td {
        padding: 12px 7px;
    }

    .contact-box h2 {
        font-size: 30px;
    }
}

/* =========================================
   BANGALORE FOOTER
========================================= */

.site-footer {
    background: #050505;
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 65px 0 20px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 45px;
    max-width: 1180px;
    margin: 0 auto;
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #fff;
}

.footer-about h3:first-letter {
    color: #ffc400;
}

.footer-about p {
    color: #aaa;
    line-height: 1.8;
    max-width: 350px;
}

.footer-links,
.footer-services,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
    color: #ffc400;
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-links a,
.footer-services a,
.footer-contact a {
    color: #aaa;
    text-decoration: none;
    transition: .25s;
}

.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover {
    color: #ffc400;
    padding-left: 4px;
}

.footer-contact p {
    color: #aaa;
    margin: 0;
}

.footer-contact a {
    color: #fff;
}

.footer-bottom {
    max-width: 1180px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
}

.footer-bottom p {
    color: #777;
    font-size: 14px;
    margin: 0;
}


/* ================================
   MOBILE FOOTER
================================ */

@media (max-width: 768px) {

    .site-footer {
        padding: 50px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-about {
        text-align: center;
    }

    .footer-about p {
        margin: auto;
    }

    .footer-links,
    .footer-services,
    .footer-contact {
        text-align: center;
        align-items: center;
    }

    .footer-bottom {
        margin-top: 35px;
    }
}

/* =========================================
   BANGALORE BOOKING FORM - FIX
========================================= */

.booking-section {
    padding: 80px 20px;
    background: #0b0b0b;
}

.booking-box {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 35px;
    background: #151515;
    border: 1px solid #292929;
    border-radius: 24px;
    box-sizing: border-box;
}

.booking-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 28px;
}

.booking-title > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #ffc400;
    border-radius: 15px;
    font-size: 27px;
}

.booking-title h2 {
    margin: 0;
    color: #fff;
    font-size: 28px;
}

.booking-title p {
    margin: 5px 0 0;
    color: #999;
    font-size: 14px;
}

.booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking-field label {
    color: #ddd;
    font-size: 14px;
    font-weight: 600;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
    width: 100% !important;
    min-height: 50px;
    padding: 13px 15px !important;
    box-sizing: border-box;
    background: #0b0b0b !important;
    color: #fff !important;
    border: 1px solid #333 !important;
    border-radius: 12px !important;
    outline: none;
    font-family: inherit;
    font-size: 15px;
}

.booking-field input::placeholder,
.booking-field textarea::placeholder {
    color: #777;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
    border-color: #ffc400 !important;
    box-shadow: 0 0 0 3px rgba(255,196,0,.08);
}

.booking-field select option {
    background: #111;
    color: #fff;
}

.booking-message {
    margin-top: 20px;
}

.booking-message textarea {
    min-height: 110px;
    resize: vertical;
}

.booking-submit {
    width: 100%;
    margin-top: 24px;
    padding: 16px 20px !important;
    border: none !important;
    border-radius: 14px !important;
    background: #ffc400 !important;
    color: #111 !important;
    font-size: 17px !important;
    font-weight: 800;
    cursor: pointer;
    transition: .25s;
}

.booking-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,196,0,.20);
}


/* MOBILE */

@media (max-width: 700px) {

    .booking-section {
        padding: 55px 15px;
    }

    .booking-box {
        padding: 25px 18px;
        border-radius: 20px;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .booking-title h2 {
        font-size: 23px;
    }

    .booking-title > span {
        width: 48px;
        height: 48px;
        font-size: 23px;
    }

    .booking-submit {
        font-size: 16px !important;
    }
}

/* =========================================
   ABOUT PAGE
========================================= */

.page-hero {
    padding: 100px 20px;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(255,196,0,.12),
            transparent 45%
        ),
        #0b0b0b;
}

.page-hero .container {
    max-width: 900px;
}

.page-hero h1 {
    margin: 20px 0;
    font-size: clamp(38px,6vw,65px);
    line-height: 1.1;
}

.page-hero h1 strong {
    color: #ffc400;
}

.page-hero p {
    max-width: 720px;
    margin: auto;
    color: #aaa;
    font-size: 18px;
}

.about-section {
    padding: 90px 0;
    background: #111;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: center;
}

.about-label {
    color: #ffc400;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: clamp(30px,5vw,48px);
    line-height: 1.2;
    margin: 15px 0 25px;
}

.about-content p {
    color: #aaa;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-highlight {
    background: #181818;
    border: 1px solid #292929;
    border-radius: 25px;
    padding: 35px;
}

.about-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffc400;
    color: #111;
    border-radius: 18px;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-highlight h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.about-highlight > p {
    color: #aaa;
    margin-bottom: 25px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.about-points div {
    background: #0d0d0d;
    border-radius: 14px;
    padding: 16px;
}

.about-points strong {
    display: block;
    color: #ffc400;
    font-size: 17px;
}

.about-points span {
    color: #888;
    font-size: 13px;
}

@media(max-width:700px) {

    .page-hero {
        padding: 75px 20px;
    }

    .about-section {
        padding: 65px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-highlight {
        padding: 25px;
    }

}
    /* =========================================
   ABOUT PAGE
========================================= */

.page-hero {
    padding: 100px 20px;
    text-align: center;
    background:
        radial-gradient(
            circle at center,
            rgba(255,196,0,.12),
            transparent 45%
        ),
        #0b0b0b;
}

.page-hero .container {
    max-width: 900px;
}

.page-hero h1 {
    margin: 20px 0;
    font-size: clamp(38px,6vw,65px);
    line-height: 1.1;
}

.page-hero h1 strong {
    color: #ffc400;
}

.page-hero p {
    max-width: 720px;
    margin: auto;
    color: #aaa;
    font-size: 18px;
}

.about-section {
    padding: 90px 0;
    background: #111;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 50px;
    align-items: center;
}

.about-label {
    color: #ffc400;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: clamp(30px,5vw,48px);
    line-height: 1.2;
    margin: 15px 0 25px;
}

.about-content p {
    color: #aaa;
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-highlight {
    background: #181818;
    border: 1px solid #292929;
    border-radius: 25px;
    padding: 35px;
}

.about-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffc400;
    color: #111;
    border-radius: 18px;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-highlight h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

.about-highlight > p {
    color: #aaa;
    margin-bottom: 25px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

.about-points div {
    background: #0d0d0d;
    border-radius: 14px;
    padding: 16px;
}

.about-points strong {
    display: block;
    color: #ffc400;
    font-size: 17px;
}

.about-points span {
    color: #888;
    font-size: 13px;
}

@media(max-width:700px) {

    .page-hero {
        padding: 75px 20px;
    }

    .about-section {
        padding: 65px 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-highlight {
        padding: 25px;
    }

}

/* =========================================
   TARIFF PAGE
========================================= */

.tariff-section {
    padding: 90px 0;
    background: #0b0b0b;
}

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

.tariff-card {
    position: relative;
    background: #171717;
    border: 1px solid #292929;
    border-radius: 24px;
    padding: 30px 25px;
    text-align: center;
    transition: .3s ease;
}

.tariff-card:hover {
    transform: translateY(-7px);
    border-color: #ffc400;
}

.tariff-card.featured {
    border: 2px solid #ffc400;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffc400;
    color: #111;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
}

.tariff-icon {
    font-size: 45px;
    margin-bottom: 15px;
}

.tariff-card h3 {
    font-size: 23px;
    margin: 10px 0;
}

.tariff-price {
    color: #ffc400;
    font-size: 34px;
    font-weight: 900;
    margin-top: 15px;
}

.tariff-price span {
    color: #888;
    font-size: 15px;
    font-weight: 500;
}

.tariff-card > p {
    color: #aaa;
    margin: 5px 0 20px;
}

.tariff-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #0d0d0d;
    padding: 13px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.tariff-row span {
    color: #999;
}

.tariff-row strong {
    color: #fff;
}

.tariff-btn {
    display: block;
    padding: 13px;
    border-radius: 12px;
    background: #ffc400;
    color: #111;
    text-decoration: none;
    font-weight: 800;
}

@media (max-width: 900px) {

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

}

@media (max-width: 600px) {

    .tariff-section {
        padding: 65px 0;
    }

    .tariff-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-section {
    padding: 90px 0;
    background: #0b0b0b;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 45px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(32px,5vw,48px);
    margin: 15px 0 20px;
}

.contact-info > p {
    color: #999;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #171717;
    border: 1px solid #292929;
    border-radius: 17px;
    padding: 17px;
    margin-bottom: 13px;
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffc400;
    border-radius: 13px;
    font-size: 22px;
}

.contact-card span {
    display: block;
    color: #777;
    font-size: 12px;
    margin-bottom: 4px;
}

.contact-card a,
.contact-card strong {
    color: #fff;
    text-decoration: none;
    font-size: 17px;
}

.contact-booking {
    background: #171717;
    border: 1px solid #292929;
    border-radius: 25px;
    padding: 32px;
}

.booking-header {
    margin-bottom: 25px;
}

.booking-header h2 {
    font-size: 30px;
    margin: 10px 0;
}

.booking-header p {
    color: #888;
}

.contact-form .form-group {
    margin-bottom: 17px;
}

.contact-form label {
    display: block;
    color: #bbb;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 7px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    background: #0d0d0d;
    color: #fff;
    border: 1px solid #303030;
    border-radius: 11px;
    padding: 14px;
    outline: none;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #ffc400;
}

.contact-form textarea {
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-submit {
    width: 100%;
    border: 0;
    background: #ffc400;
    color: #111;
    padding: 16px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: .3s ease;
}

.contact-submit:hover {
    transform: translateY(-2px);
}

@media (max-width: 800px) {

    .contact-section {
        padding: 65px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 550px) {

    .contact-booking {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

/* FARE PREVIEW */

.fare-preview {
    margin: 22px 0;
    padding: 22px;
    background: #101010;
    border: 1px solid #333;
    border-radius: 16px;
}

.fare-preview h3 {
    margin: 0 0 15px;
    color: #ffc400;
}

.fare-row {
    display: flex;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #292929;
    color: #aaa;
}

.fare-row strong {
    color: #fff;
}

.fare-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    background: #ffc400;
    color: #111;
    font-size: 18px;
    font-weight: 800;
}

.fare-total strong {
    color: #111;
}

/* =========================================
   FLOATING CALL + WHATSAPP
========================================= */

.floating-contact{
    position:fixed;
    left:20px;
    right:20px;
    bottom:20px;
    z-index:99999;

    display:flex;
    justify-content:space-between;
    align-items:center;

    pointer-events:none;
}

.floating-contact a{
    pointer-events:auto;

    display:flex;
    align-items:center;
    justify-content:center;
    gap:9px;

    min-width:125px;
    height:52px;

    padding:0 20px;

    border-radius:50px;

    color:#fff !important;
    text-decoration:none !important;

    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:700;

    box-shadow:
        0 8px 25px rgba(0,0,0,.25);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.floating-contact a:hover{
    transform:translateY(-4px) scale(1.03);

    box-shadow:
        0 12px 30px rgba(0,0,0,.30);
}


/* CALL */

.floating-call{
    background:#111 !important;
    border:2px solid #FFD400;
}

.floating-call i{
    color:#FFD400;
    font-size:19px;
}


/* WHATSAPP */

.floating-whatsapp{
    background:#25D366 !important;
    border:2px solid #25D366;
}

.floating-whatsapp i{
    color:#fff;
    font-size:22px;
}


/* MOBILE */

@media(max-width:600px){

    .floating-contact{
        left:12px;
        right:12px;
        bottom:12px;
    }

    .floating-contact a{
        min-width:0;
        width:48%;
        height:50px;

        padding:0 12px;

        font-size:14px;
    }

    .floating-contact a i{
        font-size:18px;
    }

}