/* redesign-tour.css — tour index + detail redesign overrides.
   Page-scoped rules for the tour pages: the redesign head (tours_head), the reserve/detail tweaks, and the
   shared marketing band (About Service + advantages, blogs, faq, partner, app). Section/component classes act
   as the namespace, matching the home + transfer redesign pattern. Loads last (via @push('css') on the tour
   index and show blades) so it wins over the shared transfer monolith. Global img/svg reset intentionally NOT
   copied — every image below has explicit scoped sizing. */

/* =========================================================
   YELLOW LINES (shared section accent)
   ========================================================= */
.yellow-lines {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 6px;
}

.yellow-lines .short-line {
    width: 5px;
    height: 4px;
    background: #ffd400;
}

.yellow-lines .long-line {
    width: 15px;
    height: 4px;
    background: #ffd400;
}


/* =========================================================
   TOUR INDEX HEAD + GRID  (source: frontend style.css 15497–15509)
   ========================================================= */
.tours_head {
    margin-bottom: 32px;
}

.tours_head h1 {
    font-family: "proximanova-bold";
    font-size: 36px;
    margin-bottom: 32px;
}

.build-route .tour-grid {
    padding-top: 16px;
}


/* =========================================================
   TOUR DETAIL — reserve form tweaks  (source: frontend style.css 15511–15525)
   ========================================================= */
.transfer-sec.tour_sec {
    margin-bottom: 72px;
}

.reserve .tour_time {
    width: auto;
}

.transfer-sec .reserve form {
    gap: 0;
}


/* =========================================================
   ABOUT SERVICE (hertz_about)  (source: style.css 15378–15399)
   ========================================================= */
.hertz_about {
    border-radius: 12px;
    padding: 32px 24px;
    border: 1px solid #D9D9D9;
    margin-bottom: 32px;
}

.hertz_about h3 {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 20px;
}

.hertz_about h3 span {
    font-weight: 600;
    font-size: 36px;
}

.hertz_about p {
    font-family: "proximanova-regular";
    font-size: 16px;
    margin: 0;
}


/* =========================================================
   ADVANTAGES  (source: style.css 14390–14456)
   ========================================================= */
.advantages-sec {
    padding: 72px 0;
    background: #f7f7f7;
}

.advantages-sec h1 {
    color: #141414;
    line-height: 1;
    margin-bottom: 28px;
    font-weight: 700;
    font-size: 36px;
}

.advantages-sec .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.advantages-sec .card {
    min-height: 300px;
    padding: 32px;
    border: 1px solid #EBEBEB;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
}

.advantages-sec .card:hover {
    transform: scale(0.98);
    transition: transform 0.3s ease;
}

.advantages-sec .icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF8DB;
}

.advantages-sec .icon img {
    width: 28px;
    height: 28px;
}

.advantages-sec .card-content h2 {
    margin: 0 0 12px;
    color: #151515;
    line-height: 1.2;
    font-weight: 700;
    font-size: 20px;
}

.advantages-sec .card-content p {
    max-width: 250px;
    margin: 0;
    color: #808080;
    font-weight: 500;
    font-size: 16px;
}


/* =========================================================
   BLOGS  (source: style.css 14457–14570)
   ========================================================= */
.blogs-sec {
    padding: 72px 0 32px;
}

.blogs-sec h1 {
    margin-bottom: 28px;
    color: #141414;
    line-height: 1;
    font-weight: 700;
    font-size: 36px;
}

.blogs-sec .blogs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.blogs-sec .blog-card {
    overflow: hidden;
    border-radius: 10px;
    background: #f8f8f8;
    color: #151515;
    text-decoration: none;
}

.blogs-sec .blog-image {
    height: 200px;
    overflow: hidden;
}

.blogs-sec .blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blogs-sec .blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blogs-sec .blog-content {
    padding: 16px 20px;
}

.blogs-sec .category {
    display: inline-block;
    padding: 8px 10px;
    background: #FFCC00;
    color: #000000;
    line-height: 1;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 12px;
}

.blogs-sec .blog-content h2 {
    margin: 10px 0 6px;
    color: #141413;
    font-weight: 700;
    font-size: 18px;
}

.blogs-sec .blog-content p {
    margin: 0;
    color: #4D4D4D;
    font-weight: 400;
    font-size: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blogs-sec .blog-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    color: #808080;
    font-weight: 500;
    font-size: 14px;
}

.blogs-sec .blog-info span {
    display: flex;
    gap: 4px;
}

.blogs-sec .blog-info img {
    width: 20px;
    height: 20px;
}

.blogs-sec .arrow {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: #555;
    border: 0.9px solid #EBEBEB;
}

.blogs-sec .arrow svg {
    width: 18px;
    height: 18px;
}


/* ---- Blogs head + see-all  (source: style.css 15420–15442) ---- */
.blogs_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.see-blogs {
    padding: 12px 16px;
    border-radius: 8px;
    background-color: #F7F7F7;
    font-weight: 500;
    font-size: 16px;
    color: #141414;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.see-blogs svg {
    width: 16px;
    height: 16px;
}


/* ---- Blogs swiper head / mobile-see-all / slider buttons  (source: style.css 17071–17132) ---- */
.swiper-sec .blogs_head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.mobile-see-all {
    display: none;
}

.blogs-slider-buttons {
    display: none;
    align-items: center;
    gap: 18px;
}

.blogs-slider-buttons button {
    width: 46px;
    height: 46px;

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

    padding: 0;
    border: none;
    border-radius: 8px;

    background: #F7F7F7;

    cursor: pointer;
    transition: background-color 0.3s ease;
}

.blogs-slider-buttons button:hover {
    background: #F1F1F1;
}

.blogs-slider-buttons button svg {
    width: 8px;
    height: 16px;
    display: block;
}

.blogs-slider-buttons button.swiper-button-disabled {
    opacity: 1;
}

.blogs-slider-buttons button.swiper-button-disabled svg path {
    fill: #BDBDBD;
}


/* =========================================================
   FAQ  (source: style.css 14572–14659)
   ========================================================= */
.faq-sec {
    padding: 40px 0 0;
}

.faq-sec h1 {
    color: #141414;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 28px;
}

.faq-sec .faq_items {
    margin-top: 28px;
}

.faq-sec .faq_item {
    border-bottom: 1px solid #ddd;
}

.faq-sec .question {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 8px;
    cursor: pointer;
}

.faq-sec .question .text {
    color: #151515;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 400;
}

.faq-sec .question .icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;

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

    border-radius: 12px;
    background: #f7f7f7;

    color: #666;
    font-size: 13px;
}

.faq-sec .question .icon .fa-minus {
    display: none;
}

.faq-sec .answer {
    max-height: 0;
    overflow: hidden;
    padding-right: 12px;
    color: #4D4D4D;
    font-size: 16px;
    line-height: 1.3;

    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-sec .faq_item.active .answer {
    max-height: 150px;
    padding: 0 55px 18px 8px;
}

.faq-sec .question .icon img {
    width: 20px;
    height: 20px;
}

.faq-sec .question .icon .minus-icon {
    display: none;
}

.faq-sec .faq_item.active .question .icon .plus-icon {
    display: none;
}

.faq-sec .faq_item.active .question .icon .minus-icon {
    display: block;
}


/* =========================================================
   PARTNERS  (source: style.css 14661–14699)
   ========================================================= */
.partner-sec {
    padding: 72px 0;
}

.partner-sec h1 {
    margin-bottom: 36px;
    color: #141414;
    line-height: 1;
    font-weight: 700;
    font-size: 36px;
}

.partner-sec .partners {
    width: 100%;
    overflow: hidden;
    margin-top: 30px;
}

.partner-sec .swiper-wrapper {
    display: flex;
    align-items: center;
}

.partner-sec .partner {
    height: 100px;

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

    flex-shrink: 0;
}

.partner-sec .partner img {
    max-width: 100%;
    height: 90px;
    object-fit: contain;
}


/* =========================================================
   APP  (source: style.css 14701–14792)
   ========================================================= */
.app-sec {
    position: relative;
    height: 140px;
    background: #3D3D3D;
    overflow: hidden;
}

.app-sec .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.app-sec .app-bg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 650px;
    z-index: 0;
}

.app-sec .app-bg img {
    width: 100%;
    display: block;
}

.app-sec .app-content {
    width: fit-content;
}

.app-sec .app-content p {
    margin: 0;
    color: #EBEBEB;
    font-weight: 500;
    font-size: 18px;
}

.app-sec .app-image {
    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);
    z-index: 2;
}

.app-sec .app-image img {
    height: 215px;
    display: block;
    object-fit: contain;
}

.app-sec .app-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.app-sec .store-links {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.app-sec .store-links.mobile {
    display: none;
}

.app-sec .store-links.desktop a {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    color: #FFFFFF;
    background: #3D3D3D;
    border: 1px solid #616161;
    padding: 8px 10px;
    border-radius: 8px;
    text-align: center;
}

.app-sec .store-links.mobile a img {
    height: 40px;
    width: auto;
    display: block;
}

.app-sec .qr-code {
    width: 92px;
    height: 92px;
}

.app-sec .qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* =========================================================
   RESPONSIVE  (section-scoped rules only)
   ========================================================= */

/* source: style.css @media (min-width: 1025px) */
@media (min-width: 1025px) {

    .swiper-sec .blogs {
        display: block;
        overflow: visible;
    }

    .swiper-sec .swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;

        transform: none !important;
    }

    .swiper-sec .blog-card {
        width: auto !important;
        margin-right: 0 !important;
    }
}


/* source: style.css @media (max-width: 1024px) */
@media (max-width: 1024px) {

    .blogs-sec .mobile-see-all {
        display: inline-flex;
        align-items: center;
        gap: 10px;

        margin-top: 16px;

        color: #292929;
        text-decoration: none;
    }

    .blogs-slider-buttons {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .blogs-slider-buttons button {
        display: flex;
    }

    .blogs-slider-buttons button.swiper-button-disabled {
        opacity: 0.4;
    }

    .swiper-sec .blogs {
        display: block;
        width: 100%;
        overflow: hidden;
        margin-top: 32px;
    }

    .swiper-sec .swiper-wrapper {
        display: flex;
    }

    .swiper-sec .blog-card {
        flex-shrink: 0;
    }

    .swiper-sec .blogs_head>.see-blogs {
        display: none;
    }

    .swiper-sec .mobile-see-all {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 16px;

        color: #292929;
        text-decoration: none;
    }

    .advantages-sec {
        padding: 56px 0;
    }

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

    .advantages-sec .card {
        min-height: 210px;
        gap: 24px;
    }

    .advantages-sec .card-content p {
        max-width: unset;
    }
}


/* source: style.css @media (max-width: 768px) */
@media (max-width: 768px) {

    .blogs-sec .blogs {
        margin-top: 28px;
    }

    .blogs-sec h1 {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .faq-sec .question .text {
        font-size: 18px;
    }

    .faq-sec .answer {
        font-size: 14px;
    }

    .faq-sec h1 {
        font-size: 28px;
    }

    .advantages-sec {
        padding: 40px 0;
    }

    .advantages-sec h1 {
        font-size: 28px;
    }

    .swiper-sec {
        padding: 40px 0 32px;
    }

    .faq-sec {
        padding: 0;
    }

    .partner-sec {
        padding: 40px 0;
    }

    .partner-sec h1 {
        font-size: 28px;
    }

    .app-sec .qr-code {
        display: none;
    }

    .app-sec .store-links.mobile {
        display: flex;
    }

    .app-sec .store-links.desktop {
        display: none;
    }

    .app-sec .app-bg {
        width: 475px;
    }

    .tours_head h1 {
        font-size: 28px;
    }
}


/* source: style.css @media (max-width: 440px) */
@media (max-width: 440px) {

    .hertz_about {
        padding: 24px;
    }

    .app-sec {
        height: 174px;
    }

    .app-sec .app-content {
        position: absolute;
        z-index: 1;
        top: 20px;
        left: 12px;
        line-height: normal;
    }

    .app-sec .app-bg {
        left: unset;
        right: -30%;
        transform: translateX(0);
        transform: rotate(8deg);
        width: 430px;
    }

    .app-sec .app-image {
        left: unset;
        transform: translateX(0);
        transform: rotate(-18deg);
        right: -20%;
        bottom: -55px;
    }

    .app-sec .store-links.mobile {
        position: absolute;
        z-index: 1;
        bottom: 20px;
        left: 12px;
    }

    .app-sec .app-content p {
        font-size: 16px;
        line-height: 1;
    }

    .advantages-sec {
        padding: 32px 0;
    }

    .advantages-sec .cards {
        grid-template-columns: 1fr;
    }

    .advantages-sec .card-content p {
        font-size: 14px;
        line-height: normal;
    }

    .advantages-sec .card {
        padding: 24px;
    }

    .blogs-sec .blogs {
        margin-top: 24px;
    }

    .blogs-sec h1 {
        margin-bottom: 16px;
    }

    .blogs-sec .blogs-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
