* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}
/* SECTION1 */
.section1 {
    background-image: url(section1img.jpg);
    min-height: 65vh;
    /* width: 100%; */
    background-repeat: no-repeat;
    background-position: center;

    /* 'cover' scales the image so nothing gets cut off on the sides */
    background-size: cover;
}

.sec-1-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 60vh;
    /* width: 90vw; */
    /* margin-left: 8rem; */
    padding: clamp(2rem, 8vw, 8rem);
    max-width: 1200px;
}

@media screen and (max-width:700px) {

    .section1 {
        min-height: 45vh;
    }

    .sec-1-inner {
        min-height: 40vh;
        justify-content: center;
        /* align-items: center; */
    }

}

.sec-1-inner-heading {
    color: #272727;
    /* font-size: 65px; */
    font-size: clamp(1.5rem, 8vw, 4rem);
    font-weight: 900;
    text-transform: capitalize;
}

.sec-1-inner-para {
    color: #838383;
    max-width: 600px;
    padding: 10px 0px 20px 0px;
    /* font-size: 28px; */
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 300;
}

.sec-1-inner-btn {
    /* height: 2.8rem; */
    padding: 0.8rem 1.8rem;
    background-color: #C28566;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s linear;
}

.get-started-btn {
    font-size: 18px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.sec-1-inner-btn:hover {
    background-color: #d0a28a;
    cursor: pointer;
}

/* SECTION2 */
.section2 {
    min-height: 65vh;
    background-color: #ffffff;
    /* display: flex; */

}

.section2-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 8vh; */
    padding-top: 3%;
    padding-bottom: 3%;
    width: 90%;
    gap: 4rem;
}

@media screen and (max-width:750px) {
    .section2-inner {
        flex-direction: column;
        margin-left: 1.1rem;
    }
}

.section2-inner-1st {
    height: 75%;
}

.section2-inner-1st img {
    width: 100%;
    height: auto;
}

.section2-inner-2nd {
    /* height: 90%; */
    min-height: 70vh;
    /* background-color: aliceblue; */
}

.section2-inner-2nd-p1 {
    color: #C28566;
    font-size: 1.2rem;
}

.section2-inner-2nd-h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    text-transform: capitalize;
    color: #4b4b4b;
}

.section2-inner-2nd-p2 {
    color: #4b4b4b;
    font-size: 1.2rem;
}

.section2-inner-2nd-ratings {
    display: flex;
    justify-content: space-around;
    height: auto;
    margin-top: 2rem;

}

.section2-inner-2nd-ratings-1st-1st {
    font-size: clamp(2rem, 8vw, 4rem);
    color: #4b4b4b;
}

.rating-icon {
    display: flex;
    gap: 0.2rem;
}

.e-font-icon-svg {
    fill: #c28566;
    height: 1.2rem;
}

.section2-inner-2nd-ratings-1st-2nd {
    font-size: 1.2rem;
    color: #4b4b4b;
}

.section2-inner-2nd-ratings-3rd img {
    width: 100px;
}

.section2-inner-2nd-btn {
    border: none;
    transition: all 0.2s linear;
}

.section2-inner-2nd-btn:hover {
    background-color: #d0a28a;
    cursor: pointer;
}

.section2-inner-2nd-btn {
    margin-top: 5%;
    height: 3rem;
    width: 9.5rem;
    background-color: #c28566;
}

.section2-inner-2nd-btn-anchor {
    font-size: 1.18rem;
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* section 2 */
.section3 {
    min-height: 75vh;
    background-image: url('assets/right-bg.png'), url(assets/left-bg.png);
    background-size: 50% 100%, 50% 100%;
    background-position: left top, right top;
    background-repeat: no-repeat, no-repeat;
    display: flex;
    justify-content: center;
    background-color: #f9f4f1;
}
.section3-inner{
    max-width:1200px;
    margin:0 auto;
    width: 60%;
    display: flex;
    justify-content: center;
    /* flex-direction: column; */
    /* align-items: center; */
    padding-top: 5%;
    padding-bottom: 5%;

}
.section3-heading{
   text-align: center;

}
.section3-heading-para{
    color: #C28566;
}
.section3-heading-heading{
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    text-transform: capitalize;
    color: #4b4b4b;
}
.section3-imgs{
    display: flex;
    /* justify-content: space-around; */
    gap: 2rem;
    margin-top: 3%;
}
.section3-imgs-3img{
    background-color: #fff;
    width: 30%;
    min-height: 20em;
}
.section3-imgs-3img-1st img{
    width: 70%;
}
.section3-imgs-3img-1st{
    margin-top: 7%;
    text-align: center;
}
.section3-imgs-3img-1st h3{
    color: #4b4b4b;
    font-size: x-large;
}
.section3-imgs-3img-1st p{
    color: #838383;
}
.section3-inner-anchor{
    display: block;
    text-align: center;
    font-size: 1.5rem;
    padding-top: 5%;
    color: #c28566;
    font-weight: 700;
}
@media screen and (max-width:750px) {
    .section3-inner{
        width: 100%;
    }
    .section3-imgs-3img{
    width:100%;
    margin-top: 10%;
    height: 25em;
    }
    .section3-imgs{
        flex-direction: column;
        width: 100%;
        /* margin-top: 5%; */
    }
    /* .mummy{
        width: 15rem;
    } */
}

/* section-4  */

.section4{
    min-height: 65vh;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}
.section4-inner{
    margin-top: 5%;
    width: 80%;
    /* background-color: aliceblue; */
}
.section4-inner-heading{
    text-align: center;
}
.section4-inner-heading-para{
    color: #C28566;
}
.section4-inner-heading-h2{
    font-size: clamp(1.5rem,4vw,2.5rem);
    color: #4b4b4b;
}
.section4-inner-info{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5%;
    margin-top: 3%;
}
.mummy{
    width: clamp(15rem,5vw,18rem);
    border-radius: 50%;
    border: 1px solid black;
}

@media screen and (min-width:750px) {
    .mummy{
        width: 18rem;
    }
}

.section4-inner-info-text-h2{
    font-size: clamp(1.75rem,3vh,3rem);
    color: #272727;
}

.section4-inner-info-text-para2{
    font-size: 1.5rem;
    color: #ee763a;
}
.section4-inner-info-text-para1{
    font-size: 1.5rem;
    color: #838383;
}
.ig{
    width: 3rem;
}

.section5{
    min-height: 65vh;
    background-color: #f7efec;
}
.section5-inner-heading{
    text-align: center;
}
.section5-inner-heading-para{
    color: #efa885;
}
.section5-inner-heading-h2{
    color: #4b4b4b;
    font-size: clamp(1.5rem,4vw,2.5rem);

}
.section5-inner-content{
    display: flex;
    justify-content: center;
    margin-top: 2%;
    /* background-color: white; */
    /* gap: 2%; */
    /* width: 90%; */
}
.section5-inner-content-img{
    display: flex;
    justify-content: center;
}
.price-img{
    width: 80%;
}
.section5-inner-content-table-holder{
    background-color: #d9bdab;
    margin-bottom: 5%;
    width: 30rem;
    height: 5rem;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px 0px 5px;
}
.section5-inner-content-table-holder-txt-h2{
    color: #4b4b4b;
    /* margin-bottom: 3%; */
}
.section5-inner-content-table-holder-price-h2{
    color: #C28566;
}
.section5-inner-content-table-holder-txt-para{
    color: #333333;
}
@media screen and (max-width: 750px){

    .section5-inner-content{
        flex-direction: column;
        align-items: center;
    }

    .section5-inner-content-img{
        width: 100%;
        margin-bottom: 20px;
    }

    .price-img{
        width: 90%;
        max-width: 400px;
    }

    .section5-inner-content-table{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .section5-inner-content-table-holder{
        width: 90%;
        height: auto;
        padding: 15px;
        margin-bottom: 15px;
    }
}

/* Footer styles - responsive, elegant, with subtle reflection */
.site-footer{
    position: relative;
    /* slightly darker warm gradient so footer is more noticeable */
    background: linear-gradient(180deg,#efe1da 0%, #e3c3b3 50%, #d6a891 100%);
    color: #3b3b3b;
    padding: 3rem 1rem 1.5rem;
}
.footer-inner{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.footer-brand .brand-title{
    color: #272727;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}
.brand-desc{
    color: #6b6b6b;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.socials{
    display: flex;
    gap: 0.5rem;
}
.social{
    display: inline-block;
    background: #c28566;
    color: #fff;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}
.footer-col h3{
    color: #c28566;
    margin-bottom: 0.5rem;
}
.footer-col ul{list-style: none; padding: 0; margin: 0;}
.footer-col a{ color: #4b4b4b; text-decoration: none; display: block; margin: 0.25rem 0; transition: color .18s ease;}
.footer-col a:hover{ color: #c28566; }
.footer-contact a{ color: #4b4b4b; text-decoration: none; }
.footer-bottom{
    max-width: 1200px;
    margin: 1.5rem auto 0;
    text-align: center;
    color: #7a7a7a;
    font-size: 0.95rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Subtle reflection / gloss under footer */
.site-footer::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0));
    pointer-events: none;
    filter: blur(6px);
    opacity: 0.22;
}

@media (max-width: 900px){
    .footer-inner{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px){
    .footer-inner{ grid-template-columns: 1fr; text-align: center; }
    .socials{ justify-content: center; }
    .footer-brand{ order: 1; }
    .footer-bottom{ font-size: 0.9rem; }
}