/*=============================================================================
    PERSONALIZED SHAMPUTA MANTRAS
    Landing Page Stylesheet
    Version : 1.0
=============================================================================*/


/*=============================================================================
ROOT VARIABLES
=============================================================================*/

:root{

    --sm-primary:#C8A04D;
    --sm-primary-dark:#A57F2D;

    --sm-bg:#FCFAF5;
    --sm-bg-soft:#F7F3EB;

    --sm-white:#FFFFFF;

    --sm-heading:#243447;
    --sm-text:#5C6974;

    --sm-border:#E8DDC9;

    --sm-success:#1E9E57;

    --sm-radius:18px;
    --sm-radius-lg:28px;

    --sm-shadow-sm:0 8px 25px rgba(0,0,0,.05);
    --sm-shadow:0 18px 45px rgba(0,0,0,.08);
    --sm-shadow-lg:0 30px 70px rgba(0,0,0,.12);

    --sm-transition:.35s ease;

}



/*=============================================================================
RESET
=============================================================================*/

*{

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

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--sm-bg);

    color:var(--sm-text);

    font-family:Poppins,sans-serif;

    font-size:16px;

    line-height:1.8;

    overflow-x:hidden;

}

img{

    max-width:100%;

    display:block;

}

a{

    color:inherit;

    text-decoration:none;

    transition:var(--sm-transition);

}

ul{

    list-style:none;

}



/*=============================================================================
LAYOUT
=============================================================================*/

.sm-page{

    width:100%;

}

.sm-container{

    width:100%;

    max-width:1320px;

    margin:auto;

    padding-left:30px;

    padding-right:30px;

}

.sm-grid{

    display:grid;

    gap:40px;

}

.sm-grid-2{

    grid-template-columns:repeat(2,1fr);

}

.sm-grid-3{

    grid-template-columns:repeat(3,1fr);

}

.sm-grid-4{

    grid-template-columns:repeat(4,1fr);

}



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

.sm-page section{

    position:relative;

    padding:110px 0;

}

.sm-section-heading{

    max-width:860px;

    margin:0 auto 70px;

    text-align:center;

}

.sm-small-title{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:#FFF6DE;

    color:var(--sm-primary-dark);

    font-size:13px;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.sm-section-heading h2{

    margin-top:25px;

    font-size:52px;

    line-height:1.2;

    color:var(--sm-heading);

    font-family:"Cinzel",serif;

}

.sm-section-heading h2 span{

    color:var(--sm-primary);

}

.sm-section-heading p{

    margin-top:30px;

    font-size:18px;

    color:var(--sm-text);

}



/*=============================================================================
TYPOGRAPHY
=============================================================================*/

.sm-title{

    font-family:"Cinzel",serif;

    font-size:72px;

    color:var(--sm-heading);

    line-height:1.15;

    margin-bottom:25px;

}

.sm-title span{

    color:var(--sm-primary);

}

.sm-subtitle{

    font-size:30px;

    color:var(--sm-primary-dark);

    font-family:"Playfair Display",serif;

    margin-bottom:25px;

}

.sm-text{

    font-size:19px;

    line-height:1.9;

    color:var(--sm-text);

}



/*=============================================================================
BUTTONS
=============================================================================*/

.sm-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    height:58px;

    padding:0 35px;

    background:var(--sm-primary);

    color:#fff;

    border-radius:60px;

    font-weight:600;

    transition:var(--sm-transition);

}

.sm-btn:hover{

    background:var(--sm-primary-dark);

    transform:translateY(-3px);

}

.sm-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    height:58px;

    border:2px solid var(--sm-primary);

    border-radius:60px;

    color:var(--sm-primary);

    font-weight:600;

    transition:var(--sm-transition);

}

.sm-btn-outline:hover{

    background:var(--sm-primary);

    color:#fff;

}



/*=============================================================================
HERO
=============================================================================*/

.sm-hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
    linear-gradient(180deg,#FCFAF5,#F7F2E8);

}

.sm-hero::before{

    content:"";

    position:absolute;

    width:650px;

    height:650px;

    top:-220px;

    right:-180px;

    border-radius:50%;

    background:rgba(200,160,77,.10);

    filter:blur(120px);

}

.sm-hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    left:-120px;

    bottom:-120px;

    border-radius:50%;

    background:rgba(200,160,77,.08);

    filter:blur(100px);

}

.sm-hero-content{

    position:relative;

    z-index:2;

}

.sm-badge{

    display:inline-block;

    background:#FFF5DD;

    padding:12px 25px;

    border-radius:50px;

    color:var(--sm-primary-dark);

    font-size:14px;

    margin-bottom:25px;

}

.sm-button-group{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

    margin-top:45px;

}

.sm-hero-image{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.sm-hero-image img{

    max-width:520px;

    animation:smFloat 7s ease-in-out infinite;

}



/*=============================================================================
ANIMATION
=============================================================================*/

@keyframes smFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0);

    }

}
/*=============================================================================*
*HERO RESPONSIVE*
*=============================================================================*/

/*---------------------------------------
  TABLET
---------------------------------------*/

@media (max-width: 991px){

    .sm-hero{

        min-height:auto;

        padding:100px 0 80px;

    }

    .sm-hero-content{

        text-align:center;

    }

    .sm-badge{

        margin-bottom:20px;

    }

    .sm-hero-image{

        margin-top:55px;

    }

    .sm-hero-image img{

        width:100%;

        max-width:430px;

        height:auto;

    }

    .sm-button-group{

        justify-content:center;

        margin-top:35px;

    }

    .sm-hero::before{

        width:500px;

        height:500px;

        top:-180px;

        right:-180px;

    }

    .sm-hero::after{

        width:350px;

        height:350px;

        left:-150px;

        bottom:-150px;

    }

}


/*---------------------------------------
  MOBILE
---------------------------------------*/

@media (max-width: 767px){

    .sm-hero{

        min-height:auto;

        padding:80px 0 60px;

    }

    .sm-hero-content{

        width:100%;

        text-align:center;

    }

    .sm-badge{

        padding:9px 18px;

        font-size:12px;

        margin-bottom:18px;

    }

    .sm-button-group{

        flex-direction:column;

        align-items:center;

        gap:14px;

        margin-top:30px;

    }

    .sm-button-group .sm-btn,
    .sm-button-group .sm-btn-outline{

        width:100%;

        max-width:300px;

        text-align:center;

    }

    .sm-hero-image{

        width:100%;

        margin-top:45px;

    }

    .sm-hero-image img{

        display:block;

        width:100%;

        max-width:340px;

        height:auto;

        margin:0 auto;

    }

    .sm-hero::before{

        width:330px;

        height:330px;

        top:-130px;

        right:-150px;

        filter:blur(90px);

    }

    .sm-hero::after{

        width:260px;

        height:260px;

        left:-140px;

        bottom:-130px;

        filter:blur(75px);

    }

}


/*---------------------------------------
  SMALL MOBILE
---------------------------------------*/

@media (max-width: 480px){

    .sm-hero{

        padding:65px 0 50px;

    }

    .sm-badge{

        padding:8px 15px;

        font-size:11px;

    }

    .sm-hero-image{

        margin-top:35px;

    }

    .sm-hero-image img{

        max-width:290px;

    }

    .sm-button-group{

        margin-top:25px;

    }

    .sm-button-group .sm-btn,
    .sm-button-group .sm-btn-outline{

        max-width:280px;

    }

    .sm-hero::before{

        width:250px;

        height:250px;

        right:-120px;

        top:-100px;

    }

    .sm-hero::after{

        width:200px;

        height:200px;

        left:-110px;

        bottom:-100px;

    }

}
.sm-hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

    background:
        linear-gradient(
            180deg,
            #FCFAF5,
            #F7F2E8
        );

}
.sm-hero-image img{

    display:block;

    width:100%;

    max-width:520px;

    height:auto;

    object-fit:contain;

    animation:smFloat 7s ease-in-out infinite;

}
/*=============================================================================
    SERVICES
=============================================================================*/

.sm-services{

    background:var(--sm-bg-soft);

}

.sm-service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.sm-service-card{

    position:relative;

    background:var(--sm-white);

    border:1px solid var(--sm-border);

    border-radius:24px;

    padding:45px 35px;

    overflow:hidden;

    transition:all .35s ease;

}

.sm-service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:var(--sm-primary);

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.sm-service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--sm-shadow-lg);

}

.sm-service-card:hover::before{

    transform:scaleX(1);

}

.sm-service-icon{

    width:78px;

    height:78px;

    border-radius:50%;

    background:#FFF5DD;

    color:var(--sm-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:28px;

}

.sm-service-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:var(--sm-heading);

}

.sm-service-card p{

    color:var(--sm-text);

    line-height:1.9;

    margin-bottom:28px;

}

.sm-link{

    display:inline-flex;

    align-items:center;

    gap:8px;

    font-weight:600;

    color:var(--sm-primary);

}

.sm-link:hover{

    letter-spacing:.5px;

}



/*=============================================================================
    FEATURES
=============================================================================*/

.sm-features{

    background:var(--sm-white);

}

.sm-feature-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:70px;

}

.sm-feature-card{

    position:relative;

    padding:45px;

    border-radius:24px;

    border:1px solid var(--sm-border);

    background:#fff;

    transition:.35s;

}

.sm-feature-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--sm-shadow);

}

.sm-feature-number{

    width:64px;

    height:64px;

    border-radius:50%;

    background:var(--sm-primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    font-weight:700;

    margin-bottom:28px;

}

.sm-feature-card h3{

    font-size:24px;

    margin-bottom:18px;

}

.sm-feature-card p{

    line-height:1.8;

}



/*=============================================================================
    PROCESS
=============================================================================*/

.sm-process{

    background:linear-gradient(
        180deg,
        #FCFAF5,
        #F7F2E8
    );

}

.sm-process-wrapper{

    position:relative;

    max-width:900px;

    margin:80px auto 0;

}

.sm-process-wrapper::before{

    content:"";

    position:absolute;

    left:34px;

    top:0;

    bottom:0;

    width:2px;

    background:var(--sm-border);

}

.sm-process-item{

    position:relative;

    display:flex;

    gap:35px;

    margin-bottom:55px;

}

.sm-process-item:last-child{

    margin-bottom:0;

}

.sm-process-circle{

    flex-shrink:0;

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--sm-primary);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

    position:relative;

    z-index:2;

    box-shadow:0 10px 25px rgba(200,160,77,.30);

}

.sm-process-content{

    flex:1;

    background:#fff;

    border:1px solid var(--sm-border);

    border-radius:20px;

    padding:32px;

    transition:.35s;

}

.sm-process-content:hover{

    transform:translateX(8px);

    box-shadow:var(--sm-shadow);

}

.sm-process-content h3{

    font-size:24px;

    margin-bottom:15px;

}

.sm-process-content p{

    line-height:1.8;

}



/*=============================================================================
    SMALL EFFECTS
=============================================================================*/

.sm-service-card,
.sm-feature-card,
.sm-process-content{

    will-change:transform;

}

.sm-service-card:hover .sm-service-icon{

    transform:rotate(8deg) scale(1.08);

    transition:.35s;

}

.sm-feature-card:hover .sm-feature-number{

    transform:scale(1.08);

    transition:.35s;

}



/*=============================================================================
    TABLET
=============================================================================*/

@media (max-width:992px){

.sm-service-grid{

    grid-template-columns:repeat(2,1fr);

}

.sm-feature-grid{

    grid-template-columns:repeat(2,1fr);

}

}



/*=============================================================================
    MOBILE
=============================================================================*/

@media (max-width:768px){

.sm-service-grid{

    grid-template-columns:1fr;

}

.sm-feature-grid{

    grid-template-columns:1fr;

}

.sm-process-wrapper::before{

    left:24px;

}

.sm-process-item{

    gap:20px;

}

.sm-process-circle{

    width:50px;

    height:50px;

    font-size:18px;

}

.sm-process-content{

    padding:22px;

}

.sm-process-content h3{

    font-size:20px;

}

}

/*=============================================================================
    BENEFITS SECTION
=============================================================================*/

.sm-benefits{

    background:#ffffff;

}

.sm-benefit-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.sm-benefit-card{

    position:relative;

    padding:35px;

    border:1px solid var(--sm-border);

    border-radius:22px;

    background:#fff;

    transition:.35s;

}

.sm-benefit-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--sm-shadow);

}

.sm-benefit-card::before{

    content:"";

    width:55px;

    height:4px;

    background:var(--sm-primary);

    display:block;

    margin-bottom:25px;

    border-radius:20px;

}

.sm-benefit-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.sm-benefit-card p{

    line-height:1.8;

}

.sm-note-box{

    margin-top:60px;

    padding:35px 40px;

    border-left:5px solid var(--sm-primary);

    background:#FFF9EC;

    border-radius:16px;

}

.sm-note-box strong{

    display:block;

    margin-bottom:15px;

    color:var(--sm-heading);

    font-size:20px;

}

.sm-note-box p{

    margin:0;

}



/*=============================================================================
    CONSULTATION
=============================================================================*/

.sm-consultation{

    background:var(--sm-bg-soft);

}

.sm-consult-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-top:60px;

}

.sm-consult-item{

    position:relative;

    padding:24px 28px 24px 70px;

    background:#fff;

    border:1px solid var(--sm-border);

    border-radius:18px;

    font-size:17px;

    font-weight:500;

    transition:.35s;

}

.sm-consult-item:hover{

    transform:translateX(8px);

    box-shadow:var(--sm-shadow-sm);

}

.sm-consult-item::before{

    content:"\2713";

    position:absolute;

    left:24px;

    top:50%;

    transform:translateY(-50%);

    width:28px;

    height:28px;

    border-radius:50%;

    background:var(--sm-primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:14px;

}


/*=============================================================================
    PHILOSOPHY
=============================================================================*/

.sm-philosophy{

    background:#fff;

}

.sm-philosophy-box{

    max-width:1000px;

    margin:auto;

    text-align:center;

    padding:70px 60px;

    border:1px solid var(--sm-border);

    border-radius:30px;

    position:relative;

    background:linear-gradient(
        180deg,
        #FFFFFF,
        #FCFAF5
    );

}

.sm-quote-icon{

    width:90px;

    height:90px;

    margin:0 auto 35px;

    border-radius:50%;

    background:#FFF5DD;

    display:flex;

    justify-content:center;

    align-items:center;

    color:var(--sm-primary);

    font-size:46px;

    font-family:Georgia,serif;

}

.sm-philosophy-box h2{

    font-size:48px;

    margin-bottom:30px;

    font-family:"Cinzel",serif;

    color:var(--sm-heading);

}

.sm-philosophy-box h2 span{

    color:var(--sm-primary);

}

.sm-philosophy-box p{

    max-width:760px;

    margin:auto;

    font-size:18px;

    line-height:2;

}



/*=============================================================================
    SECTION DECORATION
=============================================================================*/

.sm-benefits::after,
.sm-consultation::after,
.sm-philosophy::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    border-radius:50%;

    background:rgba(200,160,77,.04);

    filter:blur(70px);

    right:-120px;

    bottom:-120px;

}



/*=============================================================================
    TABLET
=============================================================================*/

@media (max-width:992px){

.sm-benefit-grid{

    grid-template-columns:repeat(2,1fr);

}

.sm-consult-grid{

    grid-template-columns:1fr;

}

}



/*=============================================================================
    MOBILE
=============================================================================*/

@media (max-width:768px){

.sm-benefit-grid{

    grid-template-columns:1fr;

}

.sm-benefit-card{

    padding:28px;

}

.sm-note-box{

    padding:25px;

}

.sm-philosophy-box{

    padding:40px 25px;

}

.sm-philosophy-box h2{

    font-size:34px;

}

.sm-philosophy-box p{

    font-size:16px;

}

}

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

.sm-faq{

    background:var(--sm-bg-soft);

}

.sm-faq-wrapper{

    max-width:900px;

    margin:60px auto 0;

}

.sm-faq-item{

    background:#fff;

    border:1px solid var(--sm-border);

    border-radius:18px;

    margin-bottom:18px;

    overflow:hidden;

    transition:.35s;

}

.sm-faq-item:hover{

    box-shadow:var(--sm-shadow-sm);

}

.sm-faq-question{

    width:100%;

    background:none;

    border:none;

    cursor:pointer;

    padding:28px 35px;

    text-align:left;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:20px;

    font-weight:600;

    color:var(--sm-heading);

    font-family:"Cinzel",serif;

}

.sm-faq-question span{

    font-size:28px;

    color:var(--sm-primary);

    transition:.35s;

}

.sm-faq-item.active .sm-faq-question span{

    transform:rotate(45deg);

}

.sm-faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.sm-faq-answer p{

    padding:0 35px 30px;

    line-height:1.9;

}

.sm-faq-question{

    width:100%;

    background:transparent;

    border:none;

    outline:none;

    box-shadow:none;

    appearance:none;

    -webkit-appearance:none;

    -moz-appearance:none;

    cursor:pointer;

}
/*=========================================
FAQ BUTTON RESET
=========================================*/

.sm-faq-question{

    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;

    border:none;
    outline:none;
    box-shadow:none;
    background:transparent;

}

.sm-faq-question:hover{

    border:none;
    outline:none;
    box-shadow:none;
    background:transparent;

}

.sm-faq-question:focus{

    border:none;
    outline:none;
    box-shadow:none;
    background:transparent;

}

.sm-faq-question:active{

    border:none;
    outline:none;
    box-shadow:none;
    background:transparent;

}

.sm-faq-question:focus-visible{

    border:none;
    outline:none;
    box-shadow:none;
    background:transparent;

}
/*=============================================================================
    FINAL CTA
=============================================================================*/

.sm-final-cta{

    background:linear-gradient(
        135deg,
        #FCFAF5,
        #F7F2E8
    );

}

.sm-cta-box{

    max-width:1100px;

    margin:auto;

    padding:70px;

    border-radius:30px;

    border:1px solid var(--sm-border);

    background:#fff;

    text-align:center;

    box-shadow:var(--sm-shadow);

}

.sm-cta-box h2{

    font-size:58px;

    font-family:"Cinzel",serif;

    margin:25px 0;

}

.sm-cta-box h2 span{

    color:var(--sm-primary);

}

.sm-cta-box p{

    max-width:760px;

    margin:0 auto 45px;

    font-size:18px;

}

.sm-cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}



/*=============================================================================
    CLOSING
=============================================================================*/

.sm-closing{

    padding:80px 0;

    background:#ffffff;

}

.sm-closing-box{

    text-align:center;

    max-width:900px;

    margin:auto;

}

.sm-closing-box h3{

    font-size:42px;

    margin-bottom:20px;

    color:var(--sm-heading);

}

.sm-divider{

    width:100px;

    height:4px;

    background:var(--sm-primary);

    margin:35px auto;

    border-radius:20px;

}

.sm-tags{

    display:flex;

    justify-content:center;

    gap:12px;

    flex-wrap:wrap;

    margin-top:40px;

}

.sm-tags span{

    padding:12px 22px;

    border-radius:50px;

    background:#FFF6DE;

    color:var(--sm-primary-dark);

    font-size:14px;

}



/*=============================================================================
    GLOBAL HOVER
=============================================================================*/

.sm-btn,
.sm-btn-outline,
.sm-service-card,
.sm-feature-card,
.sm-benefit-card,
.sm-process-content,
.sm-consult-item{

    transition:all .35s ease;

}

.sm-btn:hover{

    box-shadow:0 18px 40px rgba(200,160,77,.30);

}

.sm-btn-outline:hover{

    box-shadow:0 15px 35px rgba(200,160,77,.20);

}



/*=============================================================================
    RESPONSIVE
=============================================================================*/

@media (max-width:1200px){

.sm-title{

    font-size:60px;

}

.sm-section-heading h2{

    font-size:46px;

}

.sm-cta-box{

    padding:55px;

}

}

@media (max-width:992px){

.sm-grid-2{

    grid-template-columns:1fr;

}

.sm-hero{


    text-align:center;

}

.sm-hero-image{

    margin-top:60px;

}

.sm-title{

    font-size:52px;

}

.sm-subtitle{

    font-size:24px;

}

.sm-button-group{

    justify-content:center;

}

.sm-cta-box h2{

    font-size:44px;

}

}

@media (max-width:768px){

.sm-container{

    padding-left:20px;

    padding-right:20px;

}

.sm-page section{

    padding:80px 0;

}

.sm-title{

    font-size:42px;

}

.sm-section-heading h2{

    font-size:34px;

}

.sm-text{

    font-size:17px;

}

.sm-subtitle{

    font-size:22px;

}

.sm-btn,
.sm-btn-outline{

    width:100%;

    min-width:unset;

}

.sm-cta-box{

    padding:35px 25px;

}

.sm-cta-box h2{

    font-size:34px;

}

.sm-faq-question{

    padding:22px;

    font-size:18px;

}

.sm-faq-answer p{

    padding:0 22px 22px;

}

.sm-closing-box h3{

    font-size:30px;

}

}

@media (max-width:480px){

.sm-title{

    font-size:34px;

}

.sm-section-heading h2{

    font-size:28px;

}

.sm-small-title{

    font-size:11px;

    padding:8px 18px;

}

.sm-tags{

    gap:8px;

}

.sm-tags span{

    font-size:12px;

    padding:10px 16px;

}

}

/*=========================================================
FAQ ACTIVE
=========================================================*/

.sm-faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.sm-faq-item.active .sm-faq-answer{

    max-height:500px;

}

.sm-faq-item.active{

    border-color:var(--sm-primary);

    box-shadow:0 12px 35px rgba(200,160,77,.12);

}

.sm-faq-question span{

    transition:.35s ease;

}

.sm-faq-item.active .sm-faq-question span{

    transform:rotate(45deg);

    color:var(--sm-primary);

}
/*=========================================
CONSULTATION FEE
=========================================*/

.sm-price-box{

    margin:35px 0;

    padding:30px;

    text-align:center;

    border:2px solid var(--sm-primary);

    border-radius:20px;

    background:linear-gradient(
        180deg,
        #FFFDF8,
        #FFF6E8
    );

}

.sm-price-label{

    display:block;

    font-size:15px;

    letter-spacing:2px;

    text-transform:uppercase;

    color:var(--sm-primary-dark);

    margin-bottom:10px;

}

.sm-price{

    font-family:"Cinzel",serif;

    font-size:52px;

    font-weight:700;

    color:var(--sm-primary);

    line-height:1;

    margin-bottom:15px;

}

.sm-price-box p{

    margin:0;

    font-size:16px;

    color:var(--sm-text);

}

/*=========================================================
DISCLAIMER
=========================================================*/

.sm-disclaimer{

    background:#F7F3EB;

}

.sm-disclaimer-box{

    max-width:1050px;

    margin:0 auto;

    background:#FFFFFF;

    border:1px solid var(--sm-border);

    border-radius:28px;

    padding:60px;

    box-shadow:var(--sm-shadow-sm);

}

.sm-disclaimer-header{

    display:flex;

    align-items:center;

    gap:25px;

    padding-bottom:35px;

    border-bottom:1px solid var(--sm-border);

}

.sm-disclaimer-icon{

    flex-shrink:0;

    width:64px;

    height:64px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#FFF5DD;

    color:var(--sm-primary-dark);

    font-family:Georgia,serif;

    font-size:30px;

    font-weight:bold;

}

.sm-disclaimer-header h2{

    margin:15px 0 0;

    font-family:"Cinzel",serif;

    font-size:36px;

    line-height:1.3;

    color:var(--sm-heading);

}

.sm-disclaimer-header h2 span{

    color:var(--sm-primary);

}

.sm-disclaimer-intro{

    padding:35px 0;

}

.sm-disclaimer-intro p{

    font-size:16px;

    line-height:1.9;

}

.sm-disclaimer-item{

    padding:30px 0;

    border-top:1px solid #EEE8DB;

}

.sm-disclaimer-item h3{

    display:flex;

    align-items:center;

    gap:15px;

    font-family:"Cinzel",serif;

    font-size:22px;

    color:var(--sm-heading);

    margin-bottom:18px;

}

.sm-disclaimer-item h3 span{

    width:38px;

    height:38px;

    flex-shrink:0;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#FFF5DD;

    color:var(--sm-primary-dark);

    font-family:Poppins,sans-serif;

    font-size:13px;

}

.sm-disclaimer-item p{

    line-height:1.85;

    margin-bottom:12px;

}

.sm-disclaimer-warning{

    padding:15px 20px;

    background:#FFF8E8;

    border-left:3px solid var(--sm-primary);

    border-radius:8px;

    color:#70582A !important;

    font-weight:500;

}

.sm-disclaimer-final{

    margin-top:30px;

    padding:40px;

    text-align:center;

    background:linear-gradient(
        135deg,
        #FFF9EC,
        #FCFAF5
    );

    border:1px solid var(--sm-border);

    border-radius:22px;

}

.sm-disclaimer-final-icon{

    display:flex;

    align-items:center;

    justify-content:center;

    width:70px;

    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#FFF1C9;

    color:var(--sm-primary-dark);

    font-family:Georgia,serif;

    font-size:32px;

}

.sm-disclaimer-final h3{

    font-size:28px;

    margin-bottom:18px;

}

.sm-disclaimer-final p{

    max-width:760px;

    margin:0 auto 12px;

    line-height:1.9;

}

.sm-disclaimer-final strong{

    color:var(--sm-primary-dark);

}


@media(max-width:768px){

    .sm-disclaimer-box{

        padding:35px 22px;

        border-radius:20px;

    }

    .sm-disclaimer-header{

        align-items:flex-start;

        gap:18px;

    }

    .sm-disclaimer-icon{

        width:50px;

        height:50px;

        font-size:24px;

    }

    .sm-disclaimer-header h2{

        font-size:26px;

    }

    .sm-disclaimer-item h3{

        font-size:19px;

    }

    .sm-disclaimer-final{

        padding:30px 20px;

    }

}
/*=========================================================
BOOKING FORM
=========================================================*/

.sm-form-wrapper{

    max-width:900px;

    margin:0 auto;

}

.sm-form{

    background:#fff;

    border:1px solid var(--sm-border);

    border-radius:28px;

    padding:45px;

    box-shadow:var(--sm-shadow-sm);

}

.sm-form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.sm-form-group{

    display:flex;

    flex-direction:column;

}

.sm-form-group label{

    margin-bottom:8px;

    color:var(--sm-heading);

    font-size:14px;

    font-weight:600;

}

.sm-form-group input{

    width:100%;

    height:52px;

    padding:0 16px;

    border:1px solid var(--sm-border);

    border-radius:10px;

    background:#FCFAF5;

    color:var(--sm-heading);

    font-family:Poppins,sans-serif;

    font-size:15px;

    outline:none;

    transition:.3s ease;

}

.sm-form-group input:focus{

    border-color:var(--sm-primary);

    box-shadow:0 0 0 3px rgba(200,160,77,.10);

}

.sm-form-fee{

    margin-top:35px;

    padding:25px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    border:1px solid var(--sm-border);

    border-radius:16px;

    background:#FFF9EC;

}

.sm-form-fee span{

    color:var(--sm-heading);

    font-weight:600;

}

.sm-form-fee strong{

    color:var(--sm-primary-dark);

    font-family:"Cinzel",serif;

    font-size:28px;

}

.sm-form-submit{

    margin-top:30px;

    text-align:center;

}

@media(max-width:768px){

    .sm-form{

        padding:30px 20px;

    }

    .sm-form-grid{

        grid-template-columns:1fr;

    }

    .sm-form-fee{

        flex-direction:column;

        gap:8px;

        text-align:center;

    }

}
/*=========================================================
SELECT & TEXTAREA
=========================================================*/

.sm-form-group select,
.sm-form-group textarea{

    width:100%;

    padding:14px 16px;

    border:1px solid var(--sm-border);

    border-radius:10px;

    background:#FCFAF5;

    color:var(--sm-heading);

    font-family:Poppins,sans-serif;

    font-size:15px;

    outline:none;

    transition:.3s ease;

}

.sm-form-group select{

    height:52px;

}

.sm-form-group textarea{

    min-height:150px;

    resize:vertical;

    line-height:1.7;

}

.sm-form-group select:focus,
.sm-form-group textarea:focus{

    border-color:var(--sm-primary);

    box-shadow:0 0 0 3px rgba(200,160,77,.10);

}

.sm-form-full{

    grid-column:1 / -1;

}
.sm-form-error{

    margin-bottom:30px;

    padding:18px 22px;

    border:1px solid #e3b4b4;

    border-left:4px solid #b84a4a;

    border-radius:10px;

    background:#fff7f7;

    color:#8f3333;

}

.sm-form-error strong{

    display:block;

    margin-bottom:8px;

}

.sm-form-error ul{

    margin:0;

    padding-left:20px;

}

.sm-form-error li{

    margin-bottom:4px;

}