.main-bg {
    background-image: url(../../../assets/images/home-main-bg.webp);
    background-repeat: no-repeat;
    background-position: top right;
}
.thankyou-section {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    background-image: url(../../../assets/images/banner-bg-2.webp);
    background-repeat: no-repeat;
    background-position: right;
}

.thankyou-content {
    position: relative;
    z-index: 5;
}

.thankyou-title {
    color: var(--primary-color);
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 20px;
}

.thankyou-subtitle {
    color: var(--dark-gray);
    font-size: 20px;
    margin-bottom: 40px;
}
.order-card {
    background: #FCF9F8;
    border-radius: 35px;
    padding: 35px;
    width: 600px;
    max-width: 520px;
    position: relative;
    z-index: 10;
    border: 1px solid #E5E2E1;
}

.order-card h4 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.order-card h4 i {
    color: var(--primary-color);
}

.order-card p {
    color: var(--dark-gray);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.return-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 18px 35px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 700;
    transition: .3s;
}

.return-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    background:var(--secondary-color);
}

/* Right Side */

.thankyou-visual {
    position: relative;
    box-shadow: -30px 30px 0 rgba(255, 255, 255, .08), 0 25px 40px rgba(0, 0, 0, .35);
    border-radius: 40px;
    overflow: hidden;
    margin-left: 2em;
}
.image-card img {
    width: 100%;
} 
 
.image-card {
    border: 6px solid #f5f5f5;
    border-radius: 40px;
    overflow: hidden;
}

.placeholder-content {
    text-align: center;
    color: #514a5c;
}

.placeholder-content i {
    font-size: 45px;
    display: block;
    margin-bottom: 15px;
}

.placeholder-content h5 {
    font-size: 36px;
    font-weight: 700;
}


.stay-connected-section {
    background: #f5f3f3;
    padding: 100px 0 120px;
    border-radius: 0 0 80px 80px;
}

.stay-connected-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 70px;
    line-height: 1;
}
.connect-card {
    background: #f5f3f3;
    border: 1px solid #e5e1e1;
    border-radius: 40px;
    padding: 40px 32px;
    height: 100%;
    min-height: 280px;
    transition: all .3s ease;
}

.connect-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 35px;
}

.connect-card h3 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.connect-card p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin: 0;
}
 
.social-links {
    display: flex;
    gap: 16px;
    margin-top: 35px;
}
.connect-card:hover {
    background: var(--secondary-color);
}
.connect-card:hover i, .connect-card:hover h3, .connect-card:hover p {
    color: #231B00;
}
.connect-card:hover .social-links a {
    border-color:#231B00;
    color:#231B00;
}
.social-links a {
    width: 48px;
    height: 48px;
    border: 2px solid var(--primary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 700;
    transition: all .3s ease;
}

.social-links a:hover {
    background: #231B00;
    color: #fff;
    border-color: #231B00;
}

/* Responsive */

@media (max-width: 991px) {

    .stay-connected-title {
        font-size: 54px;
        margin-bottom: 50px;
    }

    .connect-card {
        min-height: auto;
    }
}
 
@media (max-width: 991px) {

    .thankyou-title {
        font-size: 60px;
    }

    .thankyou-subtitle {
        font-size: 18px;
    }

    .order-card {
        margin-bottom: 50px;
    }

    .thankyou-visual {
        min-height: 500px;
    }

    .image-card {
        width: 100%;
        height: 400px;
        position: relative;
    }

    .yellow-bg {
        width: 100%;
        height: 90%;
    }

    .purple-circle {
        width: 250px;
        height: 250px;
        right: 30px;
        top: 100px;
    }
}

@media (max-width: 767px) {

    .thankyou-section {
        padding: 80px 0;
    }

    .thankyou-title {
        font-size: 48px;
    }

    .order-card {
        padding: 25px;
        border-radius: 25px;
    }

    .order-card h4 {
        font-size: 20px;
    }

    .order-card p {
        font-size: 16px;
    }

    .return-btn {
        width: 100%;
        text-align: center;
        font-size: 16px;
    }

    .image-card {
        height: 300px;
    }

    .placeholder-content h5 {
        font-size: 24px;
    }
    
    
    .stay-connected-section {
        padding: 70px 0;
        border-radius: 0 0 40px 40px;
    }

    .stay-connected-title {
        font-size: 40px;
    }

    .connect-card {
        padding: 30px 24px;
        border-radius: 25px;
    }

    .connect-card h3 {
        font-size: 22px;
    }

    .connect-card p {
        font-size: 16px;
    }

    .social-links {
        justify-content: flex-start;
    }
}