/* Tempo Traveller Noida - custom Bootstrap overrides */
:root {
    --brand: #0d6efd;
    --brand-dark: #0b5ed7;
    --text-dark: #111827;
    --muted: #6c757d;
    --surface: #f8f9fa;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-dark);
    background: #ffffff;
}

.navbar {
    box-shadow: 0 1px 18px rgba(15, 23, 42, 0.06);
}

.navbar .nav-link {
    color: #363f4a;
    font-weight: 500;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
    color: var(--brand);
}

.hero-banner {
    min-height: 200px;
    background: linear-gradient(180deg, rgba(13, 110, 253, 0.12), rgba(255, 255, 255, 0.98)) center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at top left, rgba(13, 110, 253, 0.12), transparent 32%),
        radial-gradient(circle at bottom right, rgba(0, 123, 255, 0.14), transparent 26%);
    pointer-events: none;
}

.hero-banner .hero-content {
    position: relative;
    z-index: 1;
}

.hero-banner .hero-visual {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 540px;
    background: radial-gradient(circle at 20% 20%, rgba(13, 110, 253, 0.18), transparent 42%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.54));
    border-radius: 2rem;
}

.hero-banner .hero-visual::after {
    content: "\f5af";
    font-family: "Bootstrap Icons";
    font-size: 8rem;
    color: rgba(13, 110, 253, 0.12);
    position: absolute;
    left: 18%;
    top: 18%;
}

.section-title {
    font-weight: 700;
}

.card-vehicle {
    border: 1px solid rgba(13, 110, 253, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-vehicle:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.card-vehicle .badge {
    background: rgba(13, 110, 253, 0.08);
    color: var(--brand-dark);
}

.cta-strip {
    background: #eef4ff;
    border-radius: 1rem;
}

.testimonial-card {
    border: 1px solid rgba(108, 117, 125, 0.12);
    border-radius: 1.25rem;
    background: #ffffff;
}

.faq-card .accordion-button {
    border: none;
    color: var(--text-dark);
}

.map-embed {
    min-height: 320px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.08), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(13, 110, 253, 0.12);
    border-radius: 1rem;
    display: grid;
    place-items: center;
    color: #495057;
}

.floating-action {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 1100;
}

.floating-action .btn {
    padding: 12px;
    border-radius: 50%;
    width: 3.8rem;
    height: 3.8rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

@media (max-width: 991px) {
    .hero-banner {
        min-height: 680px;
    }

    .hero-banner .hero-visual {
        position: relative;
        margin: 2rem auto 0;
    }
}

@media (max-width: 767px) {
    .hero-banner {
        padding-top: 4rem;
    }
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--brand);
}