```css
/* =========================================================
   DATTA PAWAR TOURS & TRAVELS
   PROFESSIONAL RESPONSIVE CSS
========================================================= */

/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f8fafc;
    color: #172033;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================
   SCROLL PROGRESS
========================= */

#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: #fbbf24;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* =========================
   NAVBAR
========================= */

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #0f172a;
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.nav-container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fbbf24;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 7px;
    list-style: none;
}

.nav-menu a {
    display: inline-block;
    padding: 10px 13px;
    border-radius: 8px;
    color: #e5e7eb;
    font-size: 0.94rem;
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #0f172a;
    background: #fbbf24;
}

.nav-book {
    background: #fbbf24 !important;
    color: #0f172a !important;
    font-weight: 800 !important;
}

.nav-book:hover {
    background: #f59e0b !important;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* =========================
   HERO
========================= */

.hero {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 20px;
    background:
        linear-gradient(
            rgba(15, 23, 42, 0.78),
            rgba(15, 23, 42, 0.86)
        ),
        url("https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?auto=format&fit=crop&w=1800&q=85")
        center/cover no-repeat;
    color: white;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    margin: auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 17px;
    margin-bottom: 20px;
    border: 1px solid rgba(251, 191, 36, 0.7);
    border-radius: 50px;
    color: #fbbf24;
    background: rgba(15, 23, 42, 0.5);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: clamp(2.3rem, 6vw, 4.8rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 18px;
}

.hero h1 span {
    color: #fbbf24;
}

.hero-subtitle {
    min-height: 38px;
    color: #fbbf24;
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 18px;
}

#typingText::after {
    content: "|";
    margin-left: 4px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

.hero p {
    max-width: 720px;
    margin: 0 auto 30px;
    color: #e5e7eb;
    font-size: 1.05rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    padding: 13px 22px;
    border-radius: 9px;
    font-weight: 800;
    border: 2px solid transparent;
    transition: 0.25s ease;
    cursor: pointer;
}

.btn-primary {
    background: #fbbf24;
    color: #0f172a;
}

.btn-primary:hover {
    background: #f59e0b;
    transform: translateY(-3px);
}

.btn-outline {
    border-color: #fbbf24;
    color: #fbbf24;
}

.btn-outline:hover {
    background: #fbbf24;
    color: #0f172a;
    transform: translateY(-3px);
}

/* =========================
   QUICK INFO
========================= */

.quick-info {
    width: 92%;
    max-width: 1100px;
    margin: -45px auto 55px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.info-card {
    background: white;
    padding: 24px 20px;
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
    transition: 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
}

.info-card i {
    font-size: 1.8rem;
    color: #f59e0b;
    margin-bottom: 8px;
}

.info-card h3 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.info-card p {
    color: #64748b;
    font-size: 0.9rem;
}

/* =========================
   COMMON SECTIONS
========================= */

section {
    scroll-margin-top: 85px;
}

.section {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 45px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #0f172a;
    margin-bottom: 10px;
}

.section-heading p {
    max-width: 680px;
    margin: auto;
    color: #64748b;
}

.section-heading::after {
    content: "";
    display: block;
    width: 65px;
    height: 4px;
    margin: 15px auto 0;
    border-radius: 5px;
    background: #fbbf24;
}

/* =========================
   VEHICLES
========================= */

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vehicle-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.09);
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
}

.vehicle-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #e2e8f0;
}

.vehicle-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-card:hover .vehicle-photo img {
    transform: scale(1.06);
}

.vehicle-info {
    padding: 22px;
}

.vehicle-info h3 {
    color: #0f172a;
    font-size: 1.3rem;
    margin-bottom: 7px;
}

.vehicle-info p {
    color: #64748b;
    margin-bottom: 14px;
}

.vehicle-details {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.vehicle-details span {
    padding: 5px 9px;
    background: #f1f5f9;
    border-radius: 6px;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 600;
}

.small-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 17px;
    border: none;
    border-radius: 8px;
    background: #0f172a;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.small-btn:hover {
    background: #fbbf24;
    color: #0f172a;
    transform: translateY(-2px);
}

/* =========================
   SERVICES
========================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border: 1px solid #e5e7eb;
    padding: 27px 20px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: #fbbf24;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.1);
}

.service-card i {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fffbeb;
    color: #d97706;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1rem;
    color: #0f172a;
}

/* =========================
   ROUTES
========================= */

.route-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.route-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s ease;
}

.route-card:hover {
    transform: translateX(5px);
    border-color: #fbbf24;
}

.route-card i {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    color: #fbbf24;
}

.route-card h3 {
    font-size: 0.98rem;
    color: #172033;
}

/* =========================
   BOOKING
========================= */

.booking-section {
    background: #f1f5f9;
}

.booking-box {
    max-width: 950px;
    margin: auto;
    padding: 35px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 700;
    color: #334155;
    font-size: 0.92rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cbd5e1;
    border-radius: 9px;
    outline: none;
    background: white;
    color: #172033;
    transition: 0.25s ease;
}

.form-group textarea {
    min-height: 110px;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.13);
}

.book-btn {
    grid-column: 1 / -1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #fbbf24;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: 0.25s ease;
}

.book-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* =========================
   REVIEWS
========================= */

.reviews-section {
    background: white;
}

.review-form {
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 28px;
    background: #f8fafc;
    border-radius: 15px;
}

.review-form .form-group {
    margin-bottom: 16px;
}

.review-form button {
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    background: #0f172a;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.review-form button:hover {
    background: #f59e0b;
    color: #0f172a;
}

#reviewsList {
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.review-card {
    padding: 22px;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    background: white;
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.review-stars {
    color: #f59e0b;
    letter-spacing: 2px;
}

.review-card p {
    color: #475569;
    margin-bottom: 10px;
}

.review-card small {
    color: #94a3b8;
}

.no-reviews {
    grid-column: 1 / -1;
    text-align: center;
    padding: 35px;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    color: #64748b;
}

.no-reviews p {
    font-weight: 700;
    margin-bottom: 5px;
}

/* =========================
   CONTACT
========================= */

.contact-section {
    background: #0f172a;
    color: white;
}

.contact-section .section-heading h2 {
    color: white;
}

.contact-section .section-heading p {
    color: #cbd5e1;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.contact-card {
    padding: 25px 18px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.04);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #fbbf24;
}

.contact-card i {
    color: #fbbf24;
    font-size: 1.7rem;
    margin-bottom: 10px;
}

.contact-card h3 {
    margin-bottom: 5px;
}

.contact-card p {
    color: #cbd5e1;
    font-size: 0.88rem;
    word-break: break-word;
}

.contact-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 13px;
}

.contact-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 800;
    transition: 0.25s ease;
}

.call-btn {
    background: #fbbf24;
    color: #0f172a;
}

.whatsapp-btn {
    background: #22c55e;
    color: white;
}

.instagram-btn {
    background: #e11d48;
    color: white;
}

.map-btn {
    background: white;
    color: #0f172a;
}

.contact-buttons a:hover {
    transform: translateY(-3px);
}

/* =========================
   FOOTER
========================= */

.footer {
    background: #020617;
    color: #94a3b8;
    text-align: center;
    padding: 25px 15px;
}

.footer p {
    font-size: 0.9rem;
}

.footer strong {
    color: #fbbf24;
}

/* =========================
   FLOATING BUTTONS
========================= */

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 20px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.22);
    transition: 0.25s ease;
}

.floating-btn:hover {
    transform: scale(1.08);
}

.floating-call {
    background: #2563eb;
}

.floating-whatsapp {
    background: #22c55e;
}

/* =========================
   BACK TO TOP
========================= */

#backToTop {
    position: fixed;
    right: 20px;
    bottom: 145px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #fbbf24;
    color: #0f172a;
    font-size: 1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: 0.3s ease;
    z-index: 899;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   TOAST
========================= */

#toast {
    position: fixed;
    left: 50%;
    bottom: 25px;
    transform: translate(-50%, 100px);
    background: #0f172a;
    color: white;
    padding: 13px 20px;
    border-radius: 9px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s ease;
    max-width: 90%;
    text-align: center;
}

#toast.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   RESPONSIVE - TABLET
========================= */

@media (max-width: 1000px) {

    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        gap: 2px;
    }

    .nav-menu a {
        padding: 9px 8px;
        font-size: 0.86rem;
    }
}

/* =========================
   RESPONSIVE - MOBILE
========================= */

@media (max-width: 700px) {

    .nav-container {
        min-height: 65px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #0f172a;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 5%;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .hero {
        min-height: 570px;
        padding: 75px 18px;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .quick-info {
        grid-template-columns: 1fr;
        margin-top: -25px;
        gap: 12px;
    }

    .section {
        padding: 60px 0;
    }

    .vehicle-grid,
    .services-grid,
    .route-grid,
    .contact-grid,
    #reviewsList {
        grid-template-columns: 1fr;
    }

    .booking-box {
        padding: 22px 16px;
    }

    .booking-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group.full-width,
    .book-btn {
        grid-column: auto;
    }

    .review-top {
        flex-direction: column;
        gap: 5px;
    }

    .floating-actions {
        right: 12px;
        bottom: 15px;
    }

    .floating-btn {
        width: 47px;
        height: 47px;
    }

    #backToTop {
        right: 12px;
        bottom: 125px;
    }

    #toast {
        bottom: 18px;
        font-size: 0.85rem;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 420px) {

    .logo {
        font-size: 0.95rem;
    }

    .hero h1 {
        font-size: 1.95rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .vehicle-photo {
        height: 195px;
    }

    .section-heading {
        margin-bottom: 32px;
    }

    .section-heading h2 {
        font-size: 1.8rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons a {
        justify-content: center;
    }
}

/* =========================
   ACCESSIBILITY
========================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid #fbbf24;
    outline-offset: 3px;
}

/* =========================
   REDUCED MOTION
========================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* QUICK INFO FIX */
.quick-info {
    width: 100%;
    background: #ffffff;
    padding: 25px 20px;
}

.quick-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.quick-item {
    text-align: center;
    padding: 15px;
}

.quick-item strong {
    display: block;
    font-size: 25px;
    color: #0b1f3a;
    margin-bottom: 3px;
}

.quick-item span {
    display: block;
    font-size: 14px;
    color: #555;
}

/* Mobile */
@media (max-width: 768px) {
    .quick-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .quick-container {
        grid-template-columns: 1fr;
    }
}

/* ================================
   VEHICLE PHOTOS - REPAIR ONLY
================================ */

.vehicle-photo {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 12px;
    background: #e9eef5;
    position: relative;
}

/* =========================
   VEHICLE PHOTOS
========================= */

.vehicle-photo {
    width: 100%;
    height: 275px;
    overflow: hidden;
    border-radius: 12px;
    background: #f1f5f9;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-photo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 2;
}

.vehicle-card {
    overflow: hidden;
}

.vehicle-card .vehicle-photo {
    display: flex;
    opacity: 1;
    visibility: visible;
}

/* Mobile */
@media (max-width: 768px) {
    .vehicle-photo {
        height: 240px;
    }
}