:root{
    --primary:#f4b02a;
    --primary-dark:#e09a00;
    --shadow:rgba(244,176,42,.25);
}
html{
scroll-behavior:smooth;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:
linear-gradient(
180deg,
#f8fafc 0%,
#eef2f7 50%,
#ffffff 100%
);
overflow-x:hidden;
}

/* HERO */

.hero-section{
    position:relative;
    height:100vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,.55);

    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;

    color:white;
    text-align:center;
}

.hero-content h1{
    font-size:6rem;
    font-weight:900;

    text-shadow:
    0 5px 20px rgba(0,0,0,.7);
}

#typing-text{
    color:#f4b400;
}
.btn-gold{
background:linear-gradient(
135deg,
#d4a017,
#f7c948
);

color:white;
padding:14px 34px;
border:none;
border-radius:50px;
font-weight:600;
transition:.4s;
}

.btn-gold:hover{
transform:translateY(-5px);

box-shadow:
0 15px 40px rgba(247,201,72,.45);

color:white;
}
/* CONTACT CARDS */

.info-card{
background:rgba(255,255,255,.9);
backdrop-filter:blur(10px);
padding:35px;
text-align:center;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}

.info-card:hover{

transform:
translateY(-12px) scale(1.03);

box-shadow:
0 15px 40px rgba(212,160,23,.25);
}

.info-card h5{
font-weight:700;
margin-top:15px;
}

.info-card p{
color:#666;
}
.info-card i{
font-size:35px;
color:#d4a017;
margin-bottom:15px;
}

/* FORM */

.section-title{
font-size:42px;
font-weight:700;
margin-bottom:30px;
}

.form-control,
.form-select{
padding:14px;
border-radius:12px;
}

.why-us{

background:#fff;

padding:40px;

border-radius:25px;

box-shadow:
0 15px 40px rgba(0,0,0,.08);
}

.feature{
display:flex;
gap:15px;
margin-top:25px;
}

.feature i{
font-size:25px;
color:#d4a017;
}

/* FAQ */

.faq-section{
background:#fff;
}


.stats-section{
    background:#fff;
}

.stats-section h2{
    color:#d4a017;
    font-size:3rem;
    font-weight:700;
}
.testimonial-section{
    background:#f8f9fa;
}

.testimonial-card{

background:white;

padding:50px;

border-radius:25px;

box-shadow:
0 10px 30px rgba(0,0,0,.08);

max-width:750px;

margin:auto;
}


.testimonial-card h4{
    color:#d4a017;
    margin-bottom:15px;
}

@media(max-width:768px){

.hero-content h1{
    font-size:3rem;
}

.hero-content p{
    font-size:1rem;
}

.section-title{
    font-size:2rem;
}

.cta-section h2{
    font-size:2rem;
}

.stats-section h2{
    font-size:2rem;
}

.info-card{
    margin-bottom:20px;
}

.btn-gold{
    width:100%;
    margin-bottom:10px;
}

}



.whatsapp-btn{

position:fixed;

bottom:25px;

right:25px;

width:60px;

height:60px;

background:#25D366;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:white;

font-size:28px;

text-decoration:none;

z-index:999;
}
.premium-cta{

padding:100px 20px;

background:
linear-gradient(
135deg,
#d4a017,
#f7c948
);

color:white;

text-align:center;
}

.premium-cta h2{

font-size:3rem;

font-weight:800;

margin-bottom:20px;
}

.premium-cta p{

font-size:1.2rem;

margin-bottom:30px;
}

.premium-cta .btn{

padding:14px 35px;

border-radius:50px;

font-weight:600;
}
.info-card,
.testimonial-card,
.why-us{

animation:fadeUp .8s ease;
}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(30px);
}

to{

opacity:1;

transform:translateY(0);
}

}
.carousel-control-prev-icon,
.carousel-control-next-icon{

background-color:#d4a017;

padding:20px;

border-radius:50%;
}
.process-section{
background:#ffffff;
}

.process-card{
background:white;
padding:35px 20px;
border-radius:25px;
border-top:5px solid #d4a017;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.process-card:hover{

transform:
translateY(-10px);

box-shadow:
0 15px 35px rgba(212,160,23,.25);
}

.process-card i{

font-size:40px;

color:#d4a017;

margin-bottom:15px;
}

.process-card h5{

font-weight:700;
}
#topBtn{

position:fixed;

bottom:100px;

right:25px;

width:50px;

height:50px;

border:none;

border-radius:50%;

background:#d4a017;

color:white;

display:none;

z-index:999;

cursor:pointer;
}
.gallery-img{

width:100%;

height:300px;

object-fit:cover;

border-radius:20px;

transition:.4s;
}

.gallery-img:hover{

transform:scale(1.05);
}
#breakdown .card{

border:none;

border-radius:15px;

box-shadow:
0 5px 20px rgba(0,0,0,.1);

background:#fff8e7;
}
.progress{

height:30px;

border-radius:20px;

overflow:hidden;
}

.progress-bar{

background:linear-gradient(
90deg,
#d4a017,
#f7c948
);

font-weight:600;

line-height:30px;

transition:1s;
}
/* HERO ANIMATIONS */

.hero-content h1{
font-size:6rem;
font-weight:900;
line-height:1.1;
text-shadow:
0 5px 20px rgba(0,0,0,.5);
}

.hero-content p{

animation:
fadeIn 1.5s ease;
}

@keyframes slideDown{

from{

opacity:0;

transform:translateY(-40px);
}

to{

opacity:1;

transform:translateY(0);
}

}

@keyframes fadeIn{

from{

opacity:0;
}

to{

opacity:1;
}

}
.info-card,
.process-card,
.testimonial-card{
transition:all .8s ease;
}
.services-section{
background:#ffffff;
}

.service-card{
background:white;
padding:35px;
border-radius:20px;
text-align:center;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}

.service-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 35px rgba(212,160,23,.25);
}

.service-card i{
font-size:50px;
color:#d4a017;
margin-bottom:15px;
}
.process-section{
    padding:100px 0;
    background:#fff;
}

.process-card{
    background:white;
    padding:40px 25px;
    border-radius:25px;
    border-top:5px solid #d4a017;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(212,160,23,.25);
}

.process-card h5{
    margin-top:15px;
    font-weight:700;
}

.process-card p{
    color:#666;
}

.process-card i{
    font-size:40px;
    color:#d4a017;
    margin-bottom:15px;
}
@media(max-width:768px){

.hero-content h1{
font-size:2.5rem;
}

.hero-content p{
font-size:1rem;
padding:0 10px;
}

.process-card{
margin-bottom:20px;
}

.info-card{
margin-bottom:20px;
}

.gallery-img{
height:220px;
}

.testimonial-card{
padding:25px;
}

.btn-gold{
width:100%;
margin-bottom:10px;
}

}
.contact-section .row{
    align-items:stretch;
}

.contact-info,
.contact-form-card{
    background:white;
    border-radius:30px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
}

.why-us{
    margin-top:20px;
}

.why-us{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    height:100%;
}

.why-us h3{
    font-weight:700;
    margin-bottom:30px;
}
.contact-section{
    padding:100px 0;
    background:#ffffff;
}

.section-title span{
    color:#f4b02a;
    font-weight:700;
    letter-spacing:2px;
    display:block;
    margin-bottom:10px;
}

.section-title h2{
    font-size:3rem;
    font-weight:800;
    color:#1f2f56;
}

.section-title p{
    font-size:1.1rem;
    color:#666;
}
.contact-info { display: flex; flex-direction: column; gap: 25px; }

.contact-item{
    background:#fff;
    padding:25px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:20px;
    border:1px solid #eee;
    transition:.4s;
    min-height:120px;
}

.contact-item:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(244,176,42,.15);
}

.contact-icon{
    width:65px;
    height:65px;
    min-width:65px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    #d4a017,
    #f7c948
    );

    color:white;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
}

.contact-item h5 { font-weight: 700; font-size: .95rem; margin-bottom: 4px; }
.contact-item p  { color: #666; font-size: .9rem; margin: 0; }

.contact-form-card{
    background:#fff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
}

.form-input{
    width:100%;
    padding:16px 20px;
    border:2px solid #eee;
    border-radius:14px;
    background:#fafafa;
    font-size:15px;
    transition:.3s;
}

.form-input:focus{
    border-color:#f4b02a;
    background:#fff;
    box-shadow:0 0 0 4px rgba(244,176,42,.15);
}

textarea.form-input{
    min-height:180px;
}

.submit-btn{
    width:100%;
    border:none;
    padding:18px;
    border-radius:60px;

    background:linear-gradient(
        135deg,
        #d4a017,
        #f7c948
    );

    font-size:1.1rem;
    font-weight:700;

    color:#111;

    transition:.4s;
}

.submit-btn:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 30px rgba(212,160,23,.35);
}
.form-label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
    color:#1b2c59;
}

.form-label i{
    color:#d4a017;
    margin-right:8px;
}

.contact-divider{
    text-align:center;
    margin:25px 0;
    position:relative;
    color:#777;
}

.contact-divider::before,
.contact-divider::after{
    content:'';
    position:absolute;
    top:50%;
    width:35%;
    height:1px;
    background:#ddd;
}

.contact-divider::before{
    left:0;
}

.contact-divider::after{
    right:0;
}
.contact-section .row{
    align-items:stretch;
}

.contact-info,
.contact-form-card{
    height:100%;
}
.contact-header{
    margin-bottom:70px;
}

.contact-badge{
    display:inline-block;
    padding:10px 25px;
    background:#fff7e0;
    color:#d4a017;
    font-weight:600;
    border-radius:50px;
    margin-bottom:20px;
}

.contact-title{
    font-size:3.5rem;
    font-weight:800;
    color:#0f2348;
    margin-bottom:20px;
}

.contact-subtitle{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:1.1rem;
}

.contact-stats{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:40px;
}

.stat-box{
    background:white;
    padding:20px 25px;
    border-radius:18px;
    min-width:170px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.stat-box h4{
    color:#d4a017;
    font-weight:800;
    margin-bottom:5px;
}

.stat-box span{
    color:#666;
    font-size:.9rem;
}
