/* ===================================================================
   custom-v2.css — new components for the redesign.
   Palette reused from the existing theme:
   teal  #128b90   navy #001659 / #0c1c4b   red accent #de3139
   light #eef6f6 / #f7f9fb
=================================================================== */

/* ---------- Video Hero (replaces the old slider) ---------- */
.video-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0c1c4b;
}

.video-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 80, 89, 0.65) 0%,
            rgba(0, 89, 89, 0.40) 55%,
            rgba(242, 243, 244, 0.15) 100%);
    /* background: linear-gradient(90deg,
            rgba(0, 80, 89, 0.50) 0%,
            rgba(0, 89, 89, 0.25) 55%,
            rgba(242, 243, 244, 0.08) 100%); */
    z-index: 1;
}

.video-hero .auto-container {
    position: relative;
    z-index: 2;
}

.video-hero-content {
    max-width: 700px;
    padding: 60px 0;
}

.video-hero-content .pre-heading {
    display: inline-block;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .3);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 18px;
}

.video-hero-content h1 {
    color: #fff;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.video-hero-content h1 span {
    color: #4fd1d9;
}

.video-hero-content p {
    color: #dbe4f0;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.video-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.video-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.video-hero-stats div {
    display: flex;
    flex-direction: column;
}

.video-hero-stats strong {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
}

.video-hero-stats span {
    color: #b9c6dd;
    font-size: 13px;
    letter-spacing: .3px;
}

@media (max-width: 767px) {
    .video-hero {
        min-height: 520px;
    }

    .video-hero-content h1 {
        font-size: 30px;
    }
}

/* ---------- We Offer chip grid (homepage) ---------- */
.offer-chip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.offer-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 10px;
    padding: 16px 18px;
    color: #001659;
    font-weight: 600;
    transition: all .25s ease;
}

.offer-chip:hover {
    border-color: #128b90;
    box-shadow: 0 8px 20px rgba(18, 139, 144, .15);
    transform: translateY(-3px);
    color: #128b90;
}

.offer-chip-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #eef6f6;
    color: #128b90;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .offer-chip-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .offer-chip-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Rating line (product detail header) ---------- */
.rating-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0 14px;
}

.stars-inline i {
    color: #f5a623;
    font-size: 15px;
    margin-right: 2px;
}

.rating-count {
    color: #5a5a5a;
    font-size: 14px;
}

/* ---------- FAQ accordion (product-detail) ---------- */
.faq-section {
    margin-top: 40px;
}

.faq-heading {
    font-size: 24px;
    font-weight: 700;
    color: #001659;
    margin-bottom: 18px;
}

.faq-list .faq {
    border: 1px solid #e4e9f0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: #001659;
    background: #fff;
}

.faq-toggle-icon {
    color: #128b90;
    transition: transform .25s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: #f7f9fb;
}

.faq-answer p {
    padding: 0 20px;
    margin: 0;
    color: #5a5a5a;
    line-height: 1.7;
}

.faq.active .faq-answer {
    max-height: 300px;
}

.faq.active .faq-answer p {
    padding: 16px 20px;
}

/* ---------- Review grid (product-detail) ---------- */
.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.review-card {
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 12px;
    padding: 22px;
}

.review-stars i {
    color: #f5a623;
    font-size: 13px;
    margin-right: 2px;
}

.review-text {
    color: #444;
    font-size: 14px;
    line-height: 1.7;
    margin: 12px 0;
}

.review-author strong {
    display: block;
    color: #001659;
    font-size: 14px;
}

.review-author span {
    color: #8892a6;
    font-size: 12px;
}

@media (max-width: 991px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- Location list (product-detail: plain link columns) ---------- */
.location-section {
    background: #f7f9fb;
    padding: 50px 0;
}

.location-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 20px;
}

.location-list a {
    color: #444;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px dashed #d8dee7;
    display: inline-block;
}

.location-list a:hover {
    color: #128b90;
}

@media (max-width: 991px) {
    .location-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .location-list {
        grid-template-columns: 1fr;
    }
}

/* ===================================================================
   OFFER-DETAIL — visually distinct from product-detail
=================================================================== */

/* Solid gradient title band instead of photo banner */
.offer-page-title {
    background: linear-gradient(120deg, #001659 0%, #0c1c4b 55%, #128b90 130%) !important;
}

.offer-page-title::before {
    display: none;
}

.badge-tag-offer {
    background: #de3139 !important;
    color: #fff !important;
}

.badge-tag-offer i {
    margin-right: 6px;
}

.offer-gallery .main-image {
    border-top: 4px solid #128b90;
}

.spec-table-offer tr:nth-child(odd) {
    background: #eef6f6;
}

.offer-overview {
    margin-top: 10px;
}

.offer-subheading {
    font-size: 21px;
    font-weight: 700;
    color: #001659;
    margin: 34px 0 16px;
    padding-left: 14px;
    border-left: 4px solid #128b90;
}

/* Applications rendered as a numbered step grid (not a bullet list) */
.step-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.step-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 10px;
    padding: 16px 18px;
}

.step-num {
    font-size: 22px;
    font-weight: 800;
    color: #128b90;
    opacity: .5;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    color: #444;
    font-size: 14.5px;
    line-height: 1.6;
}

@media (max-width: 575px) {
    .step-grid {
        grid-template-columns: 1fr;
    }
}

/* Why-source checklist */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #eceef2;
    color: #444;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-list li i {
    color: #128b90;
    margin-top: 3px;
}

/* FAQ rendered as numbered cards (distinct from product's accordion) */
.offer-faq .faq-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-card {
    position: relative;
    background: #fff;
    border: 1px solid #e4e9f0;
    border-radius: 12px;
    padding: 24px 20px 20px;
}

.faq-card-num {
    position: absolute;
    top: -14px;
    left: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #de3139;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-card h5 {
    color: #001659;
    font-size: 16px;
    margin-bottom: 8px;
}

.faq-card p {
    color: #5a5a5a;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .offer-faq .faq-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews rendered as a quote strip (distinct from product review-grid) */
.review-strip-section {
    background: #0c1c4b;
    padding: 60px 0;
}

.review-strip-section .common-heading, .review-strip-section .related-heading h2 {
    color: #fff;
}

.quote-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.quote-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    padding: 26px 22px;
    color: #dbe4f0;
}

.quote-mark {
    color: #128b90;
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.quote-card p {
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.quote-author {
    font-size: 13px;
    color: #b9c6dd;
}

.quote-stars i {
    color: #f5a623;
    font-size: 12px;
    margin-right: 2px;
}

@media (max-width: 991px) {
    .quote-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .quote-strip {
        grid-template-columns: 1fr;
    }
}

/* Location list rendered as chips (distinct from product's link columns) */
.location-section-offer {
    background: #fff;
}

.location-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.location-chip {
    background: #eef6f6;
    color: #001659;
    font-size: 13.5px;
    padding: 8px 16px;
    border-radius: 30px;
    border: 1px solid transparent;
}

.location-chip:hover {
    background: #fff;
    border-color: #128b90;
    color: #128b90;
}

/* Location detail page (single product/offer x city) */
.location-hero-row {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.location-hero-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Related products/offers swiper spacing */
.relatedSlider {
    padding-bottom: 10px;
}

.related-pagination .swiper-pagination-bullet {
    background: #128b90;
}