﻿/*=========================================
        BREADCRUMB
=========================================*/

.breadcrumb-section {
    padding: 120px 0 90px;
    background: linear-gradient(rgba(8,15,35,.82),rgba(8,15,35,.82)), url("https://images.unsplash.com/photo-1511578314322-379afb476865?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
}

.breadcrumb-content {
    text-align: center;
}

    .breadcrumb-content h1 {
        color: #fff;
        font-size: 48px;
        font-weight: 700;
        margin: 18px 0;
    }

.breadcrumb-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .breadcrumb-list li {
        color: #ddd;
    }

        .breadcrumb-list li a {
            color: #D4AF37;
            text-decoration: none;
            transition: .3s;
        }

            .breadcrumb-list li a:hover {
                color: #fff;
            }

        .breadcrumb-list li.active::before {
            content: "/";
            margin-right: 10px;
            color: #999;
        }

/*=========================================
        COMMON
=========================================*/

.section-head {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 22px;
    background: #FFF5D8;
    color: #D4AF37;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 44px;
    color: #111827;
    font-weight: 700;
    margin: 20px 0;
}

.section-desc {
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 1.9;
}

/*=========================================
        INTRO
=========================================*/

.testimonial-intro {
    padding: 100px 0;
    background: #fff;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 60px;
    align-items: center;
}

.intro-left p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
}

.theme-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 36px;
    background: #D4AF37;
    color: #111827;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

    .theme-btn:hover {
        background: #111827;
        color: #fff;
    }

/*=========================================
        INTRO BOXES
=========================================*/

.intro-right {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

.intro-box {
    background: #111827;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: .35s;
}

    .intro-box:hover {
        transform: translateY(-8px);
        background: #D4AF37;
    }

    .intro-box h3 {
        font-size: 42px;
        color: #D4AF37;
        margin-bottom: 10px;
        transition: .35s;
    }

    .intro-box span {
        color: #fff;
        font-weight: 500;
        transition: .35s;
    }

    .intro-box:hover h3,
    .intro-box:hover span {
        color: #111827;
    }

/*=========================================
        EXPERIENCE
=========================================*/

.experience-section {
    padding: 30px 0 90px;
    background: #f8f9fb;
}

/*=========================================
        TESTIMONIALS
=========================================*/

.testimonial-section {
    padding: 110px 0;
    background: #f8f9fb;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    border-top: 4px solid transparent;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        border-color: #D4AF37;
        box-shadow: 0 20px 45px rgba(0,0,0,.15);
    }

.client-info {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

    .client-info img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #D4AF37;
    }

    .client-info h4 {
        margin: 0;
        color: #111827;
        font-size: 20px;
    }

    .client-info span {
        color: #888;
        font-size: 14px;
    }

.rating {
    color: #FDB813;
    font-size: 20px;
    margin-bottom: 18px;
}

.testimonial-card p {
    color: #666;
    line-height: 1.9;
}
/*=========================================
        VIDEO TESTIMONIALS
=========================================*/

.video-testimonials {
    padding: 110px 0;
    background: #111827;
}

    .video-testimonials .section-title {
        color: #fff;
    }

    .video-testimonials .section-desc {
        color: #cfcfcf;
    }

.video-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.video-card {
    background: #1c2435;
    border-radius: 20px;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

    .video-card:hover {
        transform: translateY(-10px);
    }

    .video-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        transition: .5s;
    }

    .video-card:hover img {
        transform: scale(1.08);
    }

.video-overlay {
    position: relative;
    margin-top: -75px;
    text-align: center;
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #D4AF37;
    color: #111827;
    font-size: 24px;
    text-decoration: none;
    transition: .35s;
    border: 5px solid #fff;
}

    .play-btn:hover {
        background: #fff;
        color: #D4AF37;
    }

.video-content {
    padding: 30px;
    text-align: center;
}

    .video-content h3 {
        color: #fff;
        margin-bottom: 15px;
    }

    .video-content p {
        color: #cfcfcf;
        line-height: 1.8;
    }


/*=========================================
        COUNTER
=========================================*/

.testimonial-counter {
    padding: 100px 0;
    background: #f8f9fb;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.counter-card {
    background: #fff;
    padding: 40px 25px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .counter-card:hover {
        transform: translateY(-8px);
        background: #111827;
    }

    .counter-card i {
        font-size: 40px;
        color: #D4AF37;
        margin-bottom: 20px;
    }

    .counter-card h2 {
        font-size: 44px;
        color: #111827;
        margin-bottom: 10px;
        transition: .35s;
    }

    .counter-card p {
        color: #666;
        transition: .35s;
    }

    .counter-card:hover h2 {
        color: #D4AF37;
    }

    .counter-card:hover p {
        color: #fff;
    }


/*=========================================
        TRUST SECTION
=========================================*/

.trust-section {
    padding: 110px 0;
    background: #111827;
}

    .trust-section .section-title {
        color: #fff;
    }

    .trust-section .section-desc {
        color: #d5d5d5;
    }

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.trust-card {
    background: #1b2435;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: .35s;
    border: 1px solid rgba(255,255,255,.08);
}

    .trust-card:hover {
        background: #D4AF37;
        transform: translateY(-10px);
    }

.trust-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #D4AF37;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: auto;
    margin-bottom: 25px;
    transition: .35s;
}

.trust-card:hover .trust-icon {
    background: #111827;
    color: #fff;
}

.trust-card h3 {
    color: #fff;
    margin-bottom: 15px;
    transition: .35s;
}

.trust-card p {
    color: #d8d8d8;
    line-height: 1.8;
    transition: .35s;
}

.trust-card:hover h3 {
    color: #111827;
}

.trust-card:hover p {
    color: #222;
}
/*=========================================
        REVIEW SECTION
=========================================*/

.review-section {
    padding: 110px 0;
    background: #f8f9fb;
}

.review-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.review-left h3 {
    font-size: 34px;
    color: #111827;
    margin-bottom: 20px;
}

.review-left p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 30px;
}

.review-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .review-points li {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 18px;
        color: #444;
        font-weight: 500;
    }

    .review-points i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #D4AF37;
        color: #111827;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 15px;
    }

.review-form {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 45px rgba(0,0,0,.08);
}

    .review-form .form-control,
    .review-form .form-select {
        height: 55px;
        border-radius: 12px;
        border: 1px solid #ddd;
        box-shadow: none;
    }

    .review-form textarea.form-control {
        height: 170px;
        resize: none;
        padding-top: 15px;
    }

    .review-form .form-control:focus,
    .review-form .form-select:focus {
        border-color: #D4AF37;
        box-shadow: 0 0 0 0.2rem rgba(212,175,55,.15);
    }

    .review-form .theme-btn {
        border: none;
        cursor: pointer;
        width: 100%;
    }


/*=========================================
        CTA
=========================================*/

.testimonial-cta {
    padding: 120px 0;
    background: linear-gradient(rgba(8,15,35,.85),rgba(8,15,35,.85)), url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-content {
    max-width: 850px;
    margin: auto;
}

    .cta-content h2 {
        color: #fff;
        font-size: 48px;
        margin: 20px 0;
    }

    .cta-content p {
        color: #ddd;
        line-height: 1.9;
        margin-bottom: 40px;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #D4AF37;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: .35s;
}

    .cta-btn:hover {
        background: #fff;
        color: #111827;
    }

.cta-btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: .35s;
}

    .cta-btn-outline:hover {
        background: #fff;
        color: #111827;
    }


/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .intro-wrapper,
    .review-wrapper {
        grid-template-columns: 1fr;
    }

    .testimonial-grid,
    .video-grid,
    .trust-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .counter-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .section-title {
        font-size: 36px;
    }

    .breadcrumb-content h1 {
        font-size: 40px;
    }

    .cta-content h2 {
        font-size: 36px;
    }
}

@media(max-width:767px) {

    .testimonial-grid,
    .video-grid,
    .trust-grid,
    .counter-grid,
    .intro-right {
        grid-template-columns: 1fr;
    }

    .testimonial-intro,
    .testimonial-section,
    .video-testimonials,
    .testimonial-counter,
    .trust-section,
    .review-section {
        padding: 70px 0;
    }

    .breadcrumb-section {
        padding: 90px 0 70px;
    }

    .breadcrumb-content h1 {
        font-size: 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-desc {
        font-size: 15px;
    }

    .review-form {
        padding: 25px;
    }

    .client-info {
        flex-direction: column;
        text-align: center;
    }

        .client-info img {
            margin-bottom: 10px;
        }

    .counter-card h2 {
        font-size: 36px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn,
    .cta-btn-outline {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}