/* =========================================
   SERVICE BANNER
========================================= */

.service-banner {
    position: relative;
    padding-inline: 80px;
    padding-block: 60px;
    background: url('../images/service-banner.png');
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
}

.mainbanner-btn-container {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.mainbanner-btn-container .btn.btn-demo {
    border: 2px solid #FFFFFF;
    backdrop-filter: blur(44px);
    background-image: unset;
    color: #4B3A2F;
    background-color: #FFFFFF0D;
}

.service-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgba(254, 250, 242, 0) 0%, rgba(254, 250, 242, 0.7) 100%);
    z-index: 1;
}

.service-banner .content-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex: 1;
    align-items: end;
}

.service-banner .content {
    position: relative;
    z-index: 2;
    max-width: 825px;
    width: 100%;
}

.service-banner .content .service-price div {
    display: flex;
    align-items: center;
}

.service-banner .content h6 {
    font-size: 28px;
    line-height: 45px;
    color: #B10000;
    font-family: 'Inter';
    font-weight: 300;
    margin-bottom: 60px;
}

.service-banner .content h1 {
    font-size: 72px;
    line-height: 84px;
    color: var(--color-title);
    font-family: 'Eagle Lake';
    font-weight: 400;
    margin-bottom: 30px;
}

.service-banner .content p {
    font-size: 18px;
    line-height: 30px;
    color: var(--color-primary);
}

.service-banner .content .btn {
    width: fit-content;
    gap: 8px;
}

.service-banner .content .service-price {
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 42px;
}

.service-banner .content .service-price strong {
    font-size: 28px;
    line-height: 34px;
    color: var(--color-title);
    margin-right: 24px;
}

.service-banner .content .service-price .info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.service-banner .content .service-price span {
    font-size: 18px;
    line-height: 30px;
    color: var(--color-primary);
}

.service-banner .service-banner-img {
    max-width: 1030px;
    min-width: 768px;
    width: 60%;
    position: relative;
    margin-bottom: auto;
    margin-top: -12%;
    margin-right: -12%;
}

.service-banner .service-banner-img img {
    width: 100%;
}

.service-banner .service-message {
    font-size: 24px;
    line-height: 40px;
    font-weight: 400;
    color: var(--color-title);
    max-width: 788px;
    text-align: center;
    margin-inline: auto;
    position: relative;
    z-index: 2;
}


/* =========================================
   CHALLENGE SOLUTION SECTION
========================================= */

.challange-solution-section .info {
    font-size: 18px;
    line-height: 30px;
    color: var(--color-primary);
    max-width: 771px;
    width: 100%;
    margin-inline: auto;
    margin-bottom: 40px;
    text-align: center;
}

.challange-solution-section .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 33px;
}

.challange-solution-section .grid .card {
    background: linear-gradient(180deg, #FEECDE 0%, rgba(254, 236, 222, 0.44) 100%);
    border: 3px solid #F4F5EE;
    box-shadow: 0px 0px 0px 6px #FFFFFF inset;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
}

.challange-solution-section .grid .card .image-wrapper {
    height: 383px;
    padding: 6px;
    padding-bottom: 0;
    overflow: hidden;
}

.challange-solution-section .grid .card .image-wrapper img {
    border-radius: 16px 16px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.challange-solution-section .grid .card .icon {
    width: 70px;
    height: 70px;
    background-color: #EDB086;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline: auto;
    margin-top: -35px;
    border-radius: 50%;
    padding: 8px;
}

.challange-solution-section .grid .card .icon img {
    width: 100%;
}

.challange-solution-section .grid .card .content {
    padding: 40px;
}

.challange-solution-section .grid .card .content h6 {
    font-size: 16px;
    line-height: 26px;
    color: var(--color-title);
    margin-bottom: 24px;
    font-family: 'Eagle Lake';
    font-weight: 400;
}

.challange-solution-section .grid .card .content strong {
    font-size: 20px;
    line-height: 26px;
    color: var(--color-title);
    display: block;
    margin-bottom: 14px;
}

.challange-solution-section .grid .card .content p {
    font-size: 16px;
    line-height: 25px;
    color: var(--color-primary);
}

.challange-solution-section .grid .card:last-of-type .icon {
    background-color: #B1C08E;
}


/* =========================================
   TIMELINE / STEPS
========================================= */

.timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    max-width: 200px;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #FDB99A;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    line-height: 44px;
    font-weight: 500;
    margin-bottom: 27px;
}

.step-desc {
    font-size: 16px;
    line-height: 22px;
    color: var(--color-primary);
    max-width: 220px;
}

.connector {
    flex: 1 1 auto;
    height: 1.1px;
    background-color: var(--color-title);
    margin-top: 35px;
    position: relative;
    z-index: 1;
}


/* =========================================
   PRINCIPLES SECTION
========================================= */


@media screen and (min-width:768px) {
    .timeline .connector {
        margin-left: -25px;
        margin-right: -25px;
    }
}
@media screen and (min-width: 1024px) {
    .timeline .connector {
        margin-left: -25px;
        margin-right: -25px;
    }
}
@media screen and (min-width: 1280px) {
    .timeline .connector {
        margin-left: -45px;
        margin-right: -45px;
    }
}

.principles-section .priciples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 31px;
}

.principles-section .priciples-grid .card {
    padding: 22px 24px;
    border-radius: 18px;
    border: 1.5px solid #F4F5EE;
    background-color: #FFFFFF;
    display: flex;
    gap: 24px;
}

.principles-section .priciples-grid .card .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.principles-section .priciples-grid .card h5 {
    font-family: 'Inter';
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    color: var(--color-title);
}

.principles-section .priciples-grid .card h5:has(strong) {
    font-size: 20px;
    line-height: 24px;
}
.principles-section .priciples-grid .card h5 strong {
    font-weight: 600;
}

.principles-section .priciples-grid .card p {
    font-size: 16px;
    line-height: 24px;
    color: var(--color-primary);
}

.principles-section .priciples-grid .card .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    padding: 6px;
    background-color: #FDB99A;
}


/* =========================================
   WHAT'S INCLUDED SECTION
========================================= */

.whats-included-section {
    position: relative;
    background: linear-gradient(180deg, #FEECDE 0%, rgba(254, 236, 222, 0.44) 100%);
    border: 3px solid #F4F5EE;
    box-shadow: 0px 0px 0px 6px #FFFFFF inset;
    padding: 50px 60px;
    border-radius: 18px;
    overflow: hidden;
}

.whats-included-section::after {
    content: url('../images/included-bg.png');
    display: block;
    border-radius: 16px;
    position: absolute;
    right: 6px;
    top: 62px;
    overflow: hidden;
}

.whats-included-section .content ul {
    display: flex;
    flex-direction: column;
    gap: 29px;
}

.whats-included-section .content ul li {
    display: flex;
    align-items: center;
    gap: 24px;
}

.whats-included-section .content ul li .icon {
    width: 33px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #FDB99A;
    border-radius: 50%;
    padding: 6px;
}

.whats-included-section .content ul li .icon img {
    width: 100%;
}

.whats-included-section .content ul li span {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
    color: var(--color-title);
    max-width: 668px;
    width: 100%;
}
.whats-included-section .content ul li span:has( strong) strong {
    font-size: 20px;
    line-height: 30px;
}
.whats-included-section .content ul li span:has( strong) {
    line-height: 30px;
    font-size: 18px;
}

/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 160px;
}

.faq-container {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.faq-title,
.sec-title {
    margin: 0;
    color: var(--color-title);
    font-weight: 400;
    font-size: 48px;
    line-height: 68px;
    letter-spacing: 0px;
    text-align: center;
    text-transform: capitalize;
}

.faq-title-image,
.sec-title-image {
    width: 100%;
    margin: 0 auto 30px;
    max-width: 297px;
}

.faq-title-image img {
    display: block;
    width: 100%;
    height: auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 3px solid #F4F5EE;
    border-radius: 18px;
    overflow: hidden;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.faq-item.active {
    box-shadow: 0 1px 4px rgba(70, 55, 40, 0.04);
    box-shadow: 0px 0px 0px 6px #FFFFFF inset;
    background: linear-gradient(180deg, #F5EFE6 0%, rgba(245, 239, 230, 0.44) 100%);
}

.faq-question {
    width: 100%;
    min-height: 61px;
    padding: 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--color-title);
    text-align: left;
    cursor: pointer;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0px;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.35s ease;
    padding-top: 1px;
    padding-left: 1px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    min-height: 0;
    overflow: hidden;
    padding: 0 26px;
    color: var(--color-primary);
    transition: padding 0.4s ease;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: 0px;
}

.faq-item.active .faq-answer-inner {
    padding-top: 0;
    padding-bottom: 26px;
}

.faq-answer p {
    margin: 0 0 10px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 0 0 10px;
    padding-left: 26px;
    font-size: 16px;
    line-height: 19px;
    font-weight: 400;
}

.faq-answer li {
    margin: 0 0 6px 0;
    padding: 0;
}

.faq-question:hover .faq-icon {
    background: #f8f5ef;
}


/* =========================================
   MEDIA QUERIES
========================================= */

@media (max-width:1440px) {
    .service-banner {
        padding-block: unset;
        padding-top: 140px;
        padding-bottom: 40px;
        padding-inline: 20px;
    }

    .service-banner .service-banner-img {
        min-width: unset;
        width: 50%;
    }

    .service-banner .content {
        max-width: 60%;
    }

    .service-banner .content h6 {
        margin-bottom: 30px;
    }

    .service-banner .content h1 {
        font-size: 62px;
        line-height: 74px;
        margin-bottom: 24px;
    }

    .service-banner .content .service-price {
        margin-block: 24px;
    }

    .service-banner .service-message {
        margin-top: 12px;
    }
}

@media (max-width: 1024px) {
    .service-banner {
        position: relative;
    }

    .service-banner .service-banner-img {
        width: 100%;
        position: absolute;
        margin: unset;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.3;
    }
    .service-vastu-consultation .service-banner .service-banner-img {
        right: 0;
        top: 0;
        width: 100%;
        transform: unset;
        max-width: 400px;
        left: unset;
    }

    .service-banner .content {
        max-width: 100%;
    }

    .challange-solution-section .info {
        margin-bottom: 24px;
    }

    .challange-solution-section .grid {
        gap: 24px;
    }

    .challange-solution-section .grid .card .image-wrapper {
        height: 272px;
    }

    .challange-solution-section .grid .card .icon {
        height: 50px;
        width: 50px;
        margin-top: -25px;
    }

    .challange-solution-section .grid .card .content {
        padding: 24px;
    }

    .challange-solution-section .grid .card .content h6 {
        margin-bottom: 16px;
    }

    .faq-section {
        margin-bottom: 100px;
        padding: 0 0 0;
    }

    .faq-title-image {
        width: 180px;
        margin-bottom: 28px;
    }

    .faq-container {
        max-width: 620px;
    }

    .step-desc {
        font-size: 14px;
        line-height: 18px;
        max-width: 130px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    .whats-included-section {
        padding: 30px;
    }

    .whats-included-section .content ul,
    .whats-included-section .content ul li {
        gap: 16px;
    }
}

@media screen and (max-width: 767px) {
    .service-banner .content h6 {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .service-banner .content h1 {
        font-size: 42px;
        line-height: 52px;
        margin-bottom: 20px;
    }

    .service-banner .content p {
        font-size: 16px;
        line-height: 26px;
    }

    .service-banner .content .service-price {
        margin-block: 20px;
        flex-direction: column;
        align-items: start;
    }

    .service-banner .content .service-price strong {
        font-size: 24px;
        line-height: 30px;
        margin-right: 16px;
    }

    .service-banner .service-message {
        font-size: 20px;
        line-height: 32px;
    }

    .service-banner .content .service-price div {
        align-items: start;
    }

    .service-banner .content .service-price .info-icon {
        margin-top: 7px;
    }

    .principles-section .priciples-grid {
        gap: 16px;
        grid-template-columns: repeat(1, 1fr);
    }

    .principles-section .priciples-grid .card h5 {
        font-size: 16px;
        line-height: 22px
    }

    ;

    .timeline {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .connector {
        flex: unset;
        width: 1.1px;
        margin: 12px 0;
        height: 40px;
    }

    .whats-included-section::after {
        right: 6px;
        left: 6px;
        bottom: 6px;
        opacity: 0.9;
    }

    .whats-included-section {
        padding: 20px;
    }

    .whats-included-section .content ul li .icon {
        width: 30px;
    }

    .whats-included-section .content ul li .icon img {
        width: auto;
    }

    .challange-solution-section .grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .challange-solution-section .grid .card .image-wrapper {
        height: 222px;
    }

    .challange-solution-section .grid .card .content strong {
        font-size: 18px;
        line-height: 23px;
    }

    .principles-section .priciples-grid .card p {
        font-size: 16px;
        line-height: 22px;
    }

    .principles-section .priciples-grid .card {
        padding: 16px;
        gap: 16px;
    }

    .challange-solution-section .info {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 10px;
    }

    .whats-included-section .content ul li span {
        font-size: 16px;
        line-height: 20px;
    }

    .whats-included-section .content ul li span:has( strong) strong {
        font-size: 18px;
        line-height: 25px;
    }
    .whats-included-section .content ul li span:has( strong) {
        line-height: 25px;
        font-size: 16px;
    }

    .faq-section {
        padding: 0;
        margin-bottom: 50px;
    }

    .faq-title-image {
        width: 155px;
        margin-top: 12px;
        margin-bottom: 25px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-item {
        border-radius: 13px;
    }

    .faq-question {
        min-height: 55px;
        padding: 12px 12px 12px 14px;
        font-size: 16px;
        line-height: 19px;
    }

    .faq-icon {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
    }

    .faq-answer-inner {
        padding-left: 14px;
        padding-right: 14px;
        font-size: 14px;
        line-height: 18px;
    }

    .faq-answer ul {
        font-size: 14px;
        line-height: 17px;
    }
    .timeline {
        flex-wrap: wrap;
        gap: 20px 0;
    }
    .step {
        flex: 0 0 calc(100% / 2 - 4px);
    }
    .step+.connector+.step+.connector {
        display: none !important;
    }
    .step+.connector+.step+.connector+.step+.connector:has(+.step) {
        display: block !important;
    }
    .connector {
        height: 90px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 27px;
    }

    .faq-title-image {
        width: 155px;
        margin-top: 12px;
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 420px) {
    .faq-title.sec-title {
        font-size: 22px;
        line-height: 42px;
    }
}