
.hero-section {
    background: url('@base.renderThemeResourceUrl("images/tour banner.webp")') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.6);
    padding: 60px 0;
}

.hero-content h1 {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}


.hero-content h2 {
    font-size: 36px;
    color: #f7921f;
    font-weight: 500;
    margin-bottom: 15px;
}


.hero-content p {
    color: #ddd;
    font-size: 15px;
    margin-bottom: 20px;
}

.hero-cta {
    margin-bottom: 15px;
}

    .hero-cta a {
        background: #f7921f;
        color: #fff;
        padding: 12px 25px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        margin-right: 10px;
        display: inline-block;
    }

        .hero-cta a:hover {
            background: #000;
        }

.hero-phone {
    color: #fff;
    font-size: 15px;
}

    .hero-phone a {
        color: #fff;
        font-weight: 600;
        text-decoration: underline;
    }

/* FORM */
.hero-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.hf-field {
    display: flex;
    flex-direction: column;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 8px;
}

    .hf-field input,
    .hf-field select {
        border: none;
        outline: none;
        background: transparent;
        font-size: 14px;
    }

.hf-submit {
    grid-column: span 2;
}

    .hf-submit button {
        width: 100%;
        background: #f7921f;
        border: none;
        color: #fff;
        padding: 14px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 15px;
    }

        .hf-submit button:hover {
            background: #000;
        }

/* MOBILE */
@media(max-width:991px) {
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }

    .hero-form {
        grid-template-columns: 1fr;
    }

    .hf-submit {
        grid-column: span 1;
    }
}

.vehicle-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

    .vehicle-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

.vehicle-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.vehicle-content {
    padding: 18px;
}

    .vehicle-content h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
    }

.vehicle-price {
    font-size: 18px;
    font-weight: 700;
    color: #f7921f;
    margin-bottom: 10px;
}

.vehicle-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.step-box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    height: 100%;
    position: relative;
    transition: 0.3s;
}

    .step-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

.step-number {
    width: 45px;
    height: 45px;
    background: #f7921f;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-icon {
    font-size: 26px;
    margin-bottom: 10px;
}

.step-box h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.service-box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
    text-align: center;
}

    .service-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

.service-icon {
    font-size: 32px;
    color: #f7921f;
    margin-bottom: 12px;
}

.service-box h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.route-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
    height: 100%;
}

    .route-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

.route-map iframe {
    width: 100%;
    height: 180px;
    border: 0;
}

.route-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.route-content {
    padding: 18px;
}

    .route-content h5 {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 6px;
    }

.route-distance,
.route-time {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.route-distance {
    color: #f7921f;
}

.route-time {
    color: #333;
}

.route-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.pahalgam-img img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pahalgam-box {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
}

    .pahalgam-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

.pahalgam-icon {
    font-size: 22px;
    margin-bottom: 8px;
    color: #f7921f;
}

.pahalgam-box h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pahalgam-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

/* mobile */
@media(max-width:991px) {
    .pahalgam-img {
        margin-bottom: 25px;
    }
}

.why-box {
    background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
    text-align: center;
}

    .why-box:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

.why-icon {
    font-size: 30px;
    color: #f7921f;
    margin-bottom: 12px;
}

.why-box h5 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 0;
}

.review-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
}

    .review-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    }

.review-stars {
    color: #f7921f;
    margin-bottom: 10px;
    font-size: 16px;
}

.review-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.review-user {
    font-weight: 600;
    font-size: 15px;
}

.review-location {
    font-size: 13px;
    color: #888;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.faq-question {
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 400;
    position: relative;
}

    .faq-question::after {
        content: '+';
        position: absolute;
        right: 20px;
        font-size: 20px;
    }

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: 14px;
    color: #555;
}

.faq-item.active .faq-answer {
    display: block;
}



.h2,
h2 {
    font-size: 36px;
}

.h3,
h3 {
    font-size: 28px;
}


