/* =====================================================
ROOT VARIABLES
===================================================== */

:root{


--primary:#6B0915;
--primary-dark:#4A0510;

--accent:#D4A43A;
--accent-light:#E6BE63;

--light:#F7F1E6;
--white:#FFFFFF;

--dark:#2A1A12;

--text:#5F4A3B;

--shadow:
0 15px 40px rgba(74,5,16,.08);


}

/* =====================================================
RESET
===================================================== */

*{


margin:0;
padding:0;
box-sizing:border-box;


}

html{


scroll-behavior:smooth;


}

body{


font-family:'Poppins',sans-serif;

background:var(--light);

color:var(--dark);

overflow-x:hidden;


}

img{


max-width:100%;

display:block;


}

a{


text-decoration:none;

transition:.3s;


}

ul{


margin:0;
padding:0;
list-style:none;


}

/* =====================================================
COMMON
===================================================== */

section{


padding:100px 0;


}

.section-heading{


text-align:center;

margin-bottom:70px;


}

.section-tag{


display:inline-block;

padding:10px 24px;

border-radius:50px;

background:
rgba(212,164,58,.12);

border:
1px solid rgba(212,164,58,.25);

color:var(--accent);

font-weight:600;

margin-bottom:15px;


}

.section-title{


font-size:48px;

font-weight:800;

color:var(--primary);

margin-bottom:15px;

font-family:'Cinzel',serif;


}

.section-description{


max-width:800px;

margin:auto;

color:var(--text);

line-height:1.9;


}

/* =====================================================
TOP BAR
===================================================== */

.top-bar{


background:var(--primary);

color:#fff;

padding:12px 0;


}

.top-bar-wrapper{


display:flex;

justify-content:space-between;

align-items:center;


}

.top-left span{


display:flex;

gap:10px;

align-items:center;

font-size:14px;


}

.top-left i{


color:var(--accent);


}

.top-right{


display:flex;

gap:25px;

align-items:center;


}

.top-right a{


color:#fff;


}

.top-right a:hover{


color:var(--accent);


}

.online-badge{


background:
rgba(212,164,58,.15);

border:
1px solid rgba(212,164,58,.25);

color:var(--accent);

padding:8px 14px;

border-radius:50px;

font-size:13px;


}

/* =====================================================
HEADER
===================================================== */

.main-header{


position:sticky;

top:0;

z-index:999;

background:#fff;

border-bottom:
1px solid rgba(212,164,58,.15);

box-shadow:
0 5px 20px rgba(0,0,0,.04);


}

.navbar{


padding:18px 0;


}

.logo-box{


width:55px;

height:55px;

border-radius:50%;

background:
linear-gradient(
    135deg,
    var(--primary),
    var(--accent)
);

display:flex;

align-items:center;

justify-content:center;

color:#fff;

font-size:22px;


}

.logo-content h4{


margin:0;

color:var(--primary);

font-weight:700;


}

.logo-content span{


color:#8E6F4E;

font-size:13px;


}

.nav-link{


color:var(--dark);

font-weight:500;


}

.nav-link:hover{


color:var(--primary);


}

.header-whatsapp{


background:#25D366;

color:#fff;

padding:12px 22px;

border-radius:50px;


}

.header-call-btn{


background:
linear-gradient(
    135deg,
    var(--accent),
    var(--accent-light)
);

color:#fff;

padding:12px 22px;

border-radius:50px;


}

/* =====================================================
HERO
===================================================== */

.hero-section{


background:
linear-gradient(
    180deg,
    #FFF8EC 0%,
    #F7F1E6 100%
);

padding:90px 0;

position:relative;


}

.hero-content h1{


font-size:72px;

font-family:'Cinzel',serif;

font-weight:800;

color:var(--primary);

line-height:1.1;

margin-bottom:20px;


}

.hero-content h1 span{


color:var(--accent);


}

.hero-badge{


display:inline-flex;

align-items:center;

gap:10px;

padding:12px 22px;

border-radius:50px;

background:
rgba(212,164,58,.12);

border:
1px solid rgba(212,164,58,.25);

color:var(--primary);

margin-bottom:25px;

font-weight:600;


}

.hero-content p{


color:var(--text);

font-size:18px;

line-height:1.9;

margin-bottom:30px;


}

.hero-features{


display:grid;

grid-template-columns:
repeat(2,1fr);

gap:15px;

margin-bottom:35px;


}

.hero-feature{


display:flex;

align-items:center;

gap:10px;

color:var(--dark);


}

.hero-feature i{


color:var(--accent);


}

.hero-buttons{


display:flex;

gap:15px;

flex-wrap:wrap;


}

.hero-call-btn{


background:
linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
);

color:#fff;

padding:16px 32px;

border-radius:50px;

font-weight:600;


}

.hero-whatsapp-btn{


background:#25D366;

color:#fff;

padding:16px 32px;

border-radius:50px;

font-weight:600;


}

.hero-image img{


max-height:650px;

margin-left:auto;


}

/* =====================================================
FORM CARD
===================================================== */

.hero-form-card{


background:#fff;

border-radius:24px;

padding:35px;

box-shadow:var(--shadow);

border:
1px solid rgba(212,164,58,.18);


}

.form-top{


text-align:center;

margin-bottom:25px;


}

.form-top h3{


color:var(--primary);

font-weight:700;


}

.hero-form-card input,
.hero-form-card select{


width:100%;

height:58px;

border:
1px solid #E5D4BC;

border-radius:12px;

padding:0 18px;

margin-bottom:15px;

outline:none;


}

.hero-form-card input:focus,
.hero-form-card select:focus{


border-color:var(--accent);


}

.hero-form-card button{


width:100%;

height:58px;

border:none;

border-radius:12px;

background:
linear-gradient(
    135deg,
    var(--primary),
    var(--primary-dark)
);

color:#fff;

font-weight:700;


}

/* =====================================================
CARDS
===================================================== */

.service-card,
.why-card,
.review-card,
.process-card{


background:#fff;

padding:30px;

border-radius:24px;

box-shadow:var(--shadow);

border:
1px solid rgba(212,164,58,.15);

transition:.4s;


}

.service-card:hover,
.why-card:hover,
.review-card:hover,
.process-card:hover{


transform:translateY(-8px);

border-color:var(--accent);


}

/* =====================================================
STICKY BUTTONS
===================================================== */

.sticky-call{


position:fixed;

left:20px;

bottom:20px;

width:60px;

height:60px;

border-radius:50%;

background:var(--primary);

color:#fff;

display:flex;

align-items:center;

justify-content:center;

z-index:999;

font-size:22px;


}

.sticky-whatsapp{


position:fixed;

right:20px;

bottom:20px;

width:60px;

height:60px;

border-radius:50%;

background:#25D366;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

z-index:999;

font-size:26px;


}

/* =====================================================
MOBILE
===================================================== */

@media(max-width:991px){


.hero-content{

    text-align:center;

    margin-bottom:40px;

}

.hero-content h1{

    font-size:42px;

}

.hero-features{

    grid-template-columns:1fr;

}

.hero-buttons{

    justify-content:center;

}

.top-bar-wrapper{

    flex-direction:column;

    gap:10px;

}

.top-right{

    flex-wrap:wrap;

    justify-content:center;

}


}

@media(max-width:767px){


section{

    padding:70px 0;

}

.section-title{

    font-size:32px;

}

.hero-content h1{

    font-size:34px;

}


}

/* =====================================
   STATS SECTION
===================================== */

.stats-section{

    background:#fff;

    padding:70px 0;

    position:relative;

}

.stat-card{

    background:
    linear-gradient(
        180deg,
        #FFFFFF,
        #FFF8EC
    );

    border:1px solid rgba(212,164,58,.15);

    border-radius:24px;

    padding:35px 25px;

    text-align:center;

    transition:.4s;

    height:100%;

    box-shadow:
    0 10px 30px rgba(107,9,21,.05);

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:var(--accent);

    box-shadow:
    0 20px 40px rgba(107,9,21,.08);

}

.stat-icon{

    width:80px;

    height:80px;

    margin:0 auto 20px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:30px;

    box-shadow:
    0 10px 25px rgba(107,9,21,.20);

}

.stat-card h3{

    font-size:42px;

    font-weight:800;

    color:var(--primary);

    margin-bottom:10px;

    font-family:'Cinzel',serif;

}

.stat-card p{

    margin:0;

    color:var(--text);

    font-size:15px;

    line-height:1.7;

    font-weight:500;

}
/* =====================================
   ABOUT SECTION
===================================== */

.about-section{

    background:var(--light);

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:30px;

    box-shadow:
    0 20px 50px rgba(74,5,16,.12);

}

.about-content .section-title{

    text-align:left;

    margin-bottom:25px;

}

.about-content .section-title span{

    color:var(--accent);

}

.about-content p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:20px;

}

.about-highlights{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;

    margin:35px 0;

}

.about-item{

    display:flex;

    align-items:center;

    gap:10px;

    color:var(--dark);

    font-weight:500;

}

.about-item i{

    color:var(--accent);

}

.about-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}
/* =====================================
   SERVICES SECTION
===================================== */

.services-section{

    background:#fff;

}

.service-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    text-align:center;

    height:100%;

    border:1px solid rgba(212,164,58,.15);

    box-shadow:
    0 10px 30px rgba(107,9,21,.05);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:var(--accent);

    box-shadow:
    0 20px 40px rgba(107,9,21,.10);

}

.service-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:32px;

    box-shadow:
    0 10px 25px rgba(107,9,21,.20);

}

.service-card h3{

    color:var(--primary);

    font-size:24px;

    margin-bottom:15px;

    font-weight:700;

}

.service-card p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:0;

}
.services-cta{

    margin-top:50px;

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}
/* =====================================
   WHY CHOOSE US
===================================== */

.why-section{

    background:var(--light);

}

.why-card{

    background:#fff;

    padding:35px;

    border-radius:24px;

    text-align:center;

    height:100%;

    border:1px solid rgba(212,164,58,.15);

    box-shadow:
    0 10px 30px rgba(107,9,21,.05);

    transition:.4s;

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:var(--accent);

    box-shadow:
    0 20px 40px rgba(107,9,21,.10);

}

.why-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    box-shadow:
    0 10px 25px rgba(107,9,21,.20);

}

.why-card h3{

    color:var(--primary);

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:var(--text);

    line-height:1.8;

    margin:0;

}

/* CTA BOX */

.why-cta-box{

    margin-top:70px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    padding:50px;

    border-radius:30px;

    color:#fff;

    box-shadow:
    0 20px 50px rgba(107,9,21,.15);

}

.why-cta-box h3{

    font-size:34px;

    font-weight:700;

    margin-bottom:10px;

    color:#fff;

}

.why-cta-box p{

    margin:0;

    color:rgba(255,255,255,.85);

}

.why-cta-box .hero-call-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

}

/* MOBILE */

@media(max-width:991px){

    .why-cta-box{

        text-align:center;

        padding:35px 25px;

    }

    .why-cta-box .hero-call-btn{

        margin-top:20px;

    }

}
/* =====================================
   PROCESS SECTION
===================================== */

.process-section{

    background:#ffffff;

    position:relative;

}

.process-card{

    background:#fff;

    border:1px solid rgba(212,164,58,.15);

    border-radius:24px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 10px 30px rgba(107,9,21,.05);

}

.process-card:hover{

    transform:translateY(-8px);

    border-color:var(--accent);

    box-shadow:
    0 20px 40px rgba(107,9,21,.10);

}

.process-number{

    position:absolute;

    top:15px;

    right:20px;

    font-size:40px;

    font-weight:800;

    color:rgba(212,164,58,.15);

    font-family:'Cinzel',serif;

}

.process-icon{

    width:90px;

    height:90px;

    margin:0 auto 25px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:34px;

    box-shadow:
    0 10px 25px rgba(107,9,21,.20);

}

.process-card h3{

    color:var(--primary);

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.process-card p{

    color:var(--text);

    line-height:1.8;

    margin:0;

}

/* CTA */

.process-cta{

    margin-top:70px;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #FFF8EC,
        #F7F1E6
    );

    padding:50px;

    border-radius:30px;

    border:1px solid rgba(212,164,58,.15);

}

.process-cta h3{

    color:var(--primary);

    font-size:34px;

    font-weight:700;

    margin-bottom:15px;

}

.process-cta p{

    color:var(--text);

    margin-bottom:30px;

}

.process-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

/* Mobile */

@media(max-width:991px){

    .process-cta{

        padding:35px 25px;

    }

    .process-cta h3{

        font-size:28px;

    }

}
/* =====================================
   REVIEWS SECTION
===================================== */

.reviews-section{

    background:var(--light);

}

.reviews-slider{

    position:relative;

    max-width:900px;

    margin:auto;

}

.review-card{

    display:none;

    background:#fff;

    padding:50px;

    border-radius:30px;

    border:1px solid rgba(212,164,58,.15);

    box-shadow:
    0 15px 40px rgba(107,9,21,.08);

    text-align:center;

}

.review-card.active{

    display:block;

    animation:fadeIn .5s ease;

}

.review-stars{

    color:var(--accent);

    font-size:24px;

    margin-bottom:20px;

}

.review-text{

    font-size:20px;

    line-height:1.9;

    color:var(--text);

    margin-bottom:35px;

}

.review-user{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:15px;

}

.review-avatar{

    width:60px;

    height:60px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    font-weight:700;

}

.review-user h5{

    margin:0;

    color:var(--primary);

    font-weight:700;

}

.review-user span{

    color:var(--text);

    font-size:14px;

}

.slider-controls{

    display:flex;

    justify-content:center;

    gap:15px;

    margin-top:30px;

}

.slider-controls button{

    width:55px;

    height:55px;

    border:none;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    font-size:18px;

}

@keyframes fadeIn{

    from{

        opacity:0;
        transform:translateY(15px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
/* =====================================
   FAQ SECTION
===================================== */

.faq-section{

    background:#fff;

}

.faq-wrapper{

    max-width:900px;

    margin:auto;

}

.accordion-item{

    border:none;

    margin-bottom:15px;

    border-radius:20px !important;

    overflow:hidden;

    box-shadow:
    0 10px 30px rgba(107,9,21,.05);

}

.accordion-button{

    padding:22px 25px;

    font-weight:600;

    color:var(--primary);

    background:#fff;

    box-shadow:none !important;

}

.accordion-button:not(.collapsed){

    background:
    rgba(212,164,58,.08);

    color:var(--primary);

}

.accordion-button::after{

    filter:
    hue-rotate(330deg);

}

.accordion-body{

    color:var(--text);

    line-height:1.9;

    padding:0 25px 25px;

}

/* CTA */

.faq-cta{

    margin-top:70px;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    padding:60px;

    border-radius:30px;

    color:#fff;

}

.faq-cta h3{

    font-size:36px;

    font-weight:700;

    margin-bottom:15px;

}

.faq-cta p{

    color:
    rgba(255,255,255,.85);

    margin-bottom:30px;

}

.faq-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

/* Mobile */

@media(max-width:768px){

    .faq-cta{

        padding:35px 25px;

    }

    .faq-cta h3{

        font-size:28px;

    }

}
/* =====================================
   FINAL CTA SECTION
===================================== */

.cta-section{

    background:
    linear-gradient(
        180deg,
        #F7F1E6,
        #FFF8EC
    );

}

.cta-box{

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    border-radius:35px;

    padding:70px;

    overflow:hidden;

    position:relative;

}

.cta-box::before{

    content:"";

    position:absolute;

    top:-100px;

    right:-100px;

    width:300px;

    height:300px;

    border-radius:50%;

    background:
    rgba(212,164,58,.08);

}

.cta-content{

    color:#fff;

    position:relative;

    z-index:2;

}

.cta-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 22px;

    border-radius:50px;

    background:
    rgba(212,164,58,.12);

    border:
    1px solid rgba(212,164,58,.20);

    color:#F4D27A;

    margin-bottom:25px;

}

.cta-content h2{

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

    color:#fff;

    font-family:'Cinzel',serif;

}

.cta-content p{

    color:
    rgba(255,255,255,.85);

    line-height:1.9;

    margin-bottom:30px;

}

.cta-highlights{

    display:flex;

    flex-direction:column;

    gap:15px;

    margin-bottom:35px;

}

.cta-highlights div{

    display:flex;

    align-items:center;

    gap:10px;

}

.cta-highlights i{

    color:#F4D27A;

}

.cta-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

/* FORM */

.cta-form-card{

    background:#fff;

    padding:35px;

    border-radius:25px;

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);

}

.cta-form-card input,
.cta-form-card select{

    width:100%;

    height:58px;

    border:
    1px solid #E5D4BC;

    border-radius:12px;

    padding:0 18px;

    margin-bottom:15px;

    outline:none;

}

.cta-form-card input:focus,
.cta-form-card select:focus{

    border-color:var(--accent);

}

.cta-form-card button{

    width:100%;

    height:58px;

    border:none;

    border-radius:12px;

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    font-weight:700;

}

/* MOBILE */

@media(max-width:991px){

    .cta-box{

        padding:40px 25px;

    }

    .cta-content{

        text-align:center;

        margin-bottom:40px;

    }

    .cta-content h2{

        font-size:34px;

    }

    .cta-buttons{

        justify-content:center;

    }

    .cta-highlights{

        align-items:center;

    }

}
/* ==========================
   CONSULT POPUP
========================== */

.consult-popup{

    position:fixed;

    inset:0;

    background:
    rgba(0,0,0,.75);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:99999;

    padding:20px;

}

.consult-box{

    width:100%;

    max-width:500px;

    background:#fff;

    border-radius:30px;

    padding:45px 35px;

    text-align:center;

    position:relative;

    animation:popupScale .4s ease;

    border:3px solid var(--accent);

    box-shadow:
    0 30px 80px rgba(0,0,0,.25);

}

.consult-badge{

    display:inline-block;

    background:
    rgba(212,164,58,.12);

    color:var(--primary);

    border:
    1px solid rgba(212,164,58,.25);

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:20px;

    font-weight:600;

}

.consult-box h2{

    color:var(--primary);

    font-size:34px;

    font-weight:800;

    line-height:1.3;

    margin-bottom:20px;

    font-family:'Cinzel',serif;

}

.consult-box p{

    color:var(--text);

    line-height:1.9;

    margin-bottom:30px;

}

.consult-buttons{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.popup-call-btn{

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    padding:18px;

    border-radius:15px;

    font-size:18px;

    font-weight:700;

}

.popup-whatsapp-btn{

    background:#25D366;

    color:#fff;

    padding:18px;

    border-radius:15px;

    font-size:18px;

    font-weight:700;

}

.popup-note{

    margin-top:20px;

    color:var(--accent);

    font-weight:600;

}

@keyframes popupScale{

    from{

        opacity:0;

        transform:
        scale(.8);

    }

    to{

        opacity:1;

        transform:
        scale(1);

    }

}
.popup-close{

    position:absolute;

    top:15px;

    right:15px;

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#f5f5f5;

    color:var(--primary);

    cursor:pointer;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    transition:.3s;

}

.popup-close:hover{

    background:var(--primary);

    color:#fff;

    transform:rotate(90deg);

}

/* ==========================
   FOOTER DISCLAIMER
========================== */

.footer-disclaimer{

    margin-top:30px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.12);

    text-align:center;

}

.footer-disclaimer p{

    margin:0;

    font-size:14px;

    line-height:1.8;

    color:rgba(255,255,255,.75);

}

.footer-disclaimer strong{

    color:var(--accent);

    font-weight:600;

}
.footer-disclaimer{
    

    margin-top:40px;

    padding:20px 25px;

    background:#4C0510;

    border:1px solid rgba(212,164,58,.15);

    border-radius:15px;

    text-align:center;

}

.footer-disclaimer p{

    margin:0;

    font-size:14px;

    line-height:1.8;

    color:rgba(255,255,255,.80);

}