/*======================================================
    YASHECOMEXPERTS WEBSITE
    VERSION : 2.0
    MOBILE FIRST
======================================================*/


/*======================================================
    01. GOOGLE FONT
======================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*======================================================
    02. ROOT VARIABLES
======================================================*/

:root{

    --primary:#D4AF37;
    --primary-light:#F7E7A8;

    --black:#111111;
    --dark:#222222;

    --white:#FFFFFF;

    --text:#555555;

    --border:#EEEEEE;

    --shadow:0 15px 45px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}


/*======================================================
    03. RESET
======================================================*/

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


html{

    scroll-behavior:smooth;

}


body{

    font-family:'Poppins',sans-serif;

    background:var(--white);

    color:var(--black);

    overflow-x:hidden;

    line-height:1.7;

}


/*======================================================
    04. COMMON
======================================================*/

img{

    width:100%;

    display:block;

}


a{

    text-decoration:none;

}


ul{

    list-style:none;

}


section{

    padding:70px 20px;

}


.container{

    width:100%;

    max-width:1300px;

    margin:auto;

}


/*======================================================
    05. BUTTONS
======================================================*/

.btn-primary{

    display:inline-block;

    background:var(--black);

    color:var(--white);

    padding:16px 30px;

    border-radius:12px;

    font-weight:600;

    transition:var(--transition);

}


.btn-primary:hover{

    background:var(--primary);

    color:var(--black);

}


.btn-secondary{

    display:inline-block;

    border:2px solid var(--black);

    color:var(--black);

    padding:16px 30px;

    border-radius:12px;

    font-weight:600;

    transition:var(--transition);

}


.btn-secondary:hover{

    background:var(--black);

    color:var(--white);

}


/*======================================================
    06. CARD
======================================================*/

.card{

    background:#fff;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

}

/*======================================================
    07. NAVBAR
======================================================*/

.navbar{

    width:100%;

    position:sticky;

    top:0;

    left:0;

    background:rgba(255,255,255,.96);

    backdrop-filter:blur(12px);

    box-shadow:0 10px 35px rgba(0,0,0,.06);

    z-index:999;

}

.nav-container{

    max-width:1300px;

    margin:auto;

    height:75px;

    padding:0 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.logo h2{

    font-size:28px;

    font-weight:800;

    color:var(--black);

    line-height:1;

}

.logo span{

    color:var(--primary);

}

.logo p{

    margin-top:4px;

    font-size:11px;

    color:#888;

    letter-spacing:1px;

}

.nav-links{

    display:none;

    flex-direction:column;

    position:absolute;

    top:75px;

    left:0;

    width:100%;

    background:#fff;

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

}

.nav-links li{

    border-bottom:1px solid #f2f2f2;

}

.nav-links li:last-child{

    border:none;

}

.nav-links a{

    display:block;

    padding:18px 20px;

    color:var(--black);

    font-size:16px;

    font-weight:600;

    transition:var(--transition);

}

.nav-links a:hover{

    background:#fafafa;

    color:var(--primary);

}

.nav-links.active{

    display:flex;

}

.nav-btn{

    display:none;

}

.menu-toggle{

    display:block;

    font-size:32px;

    color:var(--black);

    cursor:pointer;

    user-select:none;

}

/*======================================================
    08. HERO SECTION
======================================================*/

.hero{
    padding:20px;
}

.hero-container{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.hero-image img{
    width:100%;
    border-radius:22px;
    box-shadow:var(--shadow);
}

.hero-badge{
    display:inline-block;
    background:#FFF8E7;
    color:var(--primary);
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.hero-content h1{
    margin-top:18px;
    font-size:48px;
    line-height:1.15;
    font-weight:800;
}

.hero-content h1 span{
    color:var(--primary);
    display:block;
}

.hero-content p{
    margin-top:18px;
    color:var(--text);
    font-size:16px;
}

.hero-buttons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:35px 0;
}

.hero-buttons a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:58px;
    text-align:center;
}

/*======== STATS ========*/

.hero-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:0;
    margin-top:0;

    background:#fff;
    border-radius:22px;
    overflow:hidden;

    box-shadow:
0 10px 35px rgba(0,0,0,.08),
0 25px 60px rgba(0,0,0,.05);
    border:1px solid #f0f0f0;
}

.stat-item{
    background:#fff;
    padding:28px 22px;

    border-right:1px solid #eee;
    border-bottom:1px solid #eee;
}

.stat-item:nth-child(2),
.stat-item:nth-child(4){
    border-right:none;
}

.stat-item:nth-child(3),
.stat-item:nth-child(4){
    border-bottom:none;
}

.stat-item h2{
   font-size:46px;
line-height:1;
    color:#D4AF37;
    font-weight:800;
    margin-bottom:8px;
}

.stat-item p{
    color:#555;
    font-size:17px;
    line-height:1.5;
    margin-top:12px;
}

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

.services{
    padding:70px 20px;
    background:#fafafa;
}

.services-header{
    text-align:center;
    margin-bottom:40px;
}

.section-tag{
    display:inline-block;
    background:#FFF8E6;
    color:#D4AF37;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.services-header h2{
    font-size:36px;
    font-weight:800;
    line-height:1.25;
    color:#111;
    margin-bottom:18px;
}

.services-header h2 span{
    display:block;
    color:#D4AF37;
}

.services-header p{
    font-size:17px;
    color:#666;
    line-height:1.8;
}

.services-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:22px;
}

.service-card{
    background:#ffffff;
    border-radius:24px;
    padding:30px 25px;

    border:1px solid #ececec;

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

    transition:.35s;
}

.service-icon{
    width:65px;
    height:65px;

    background:#FFF8E6;
    color:#D4AF37;

    border-radius:18px;

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

    font-size:30px;

    margin-bottom:20px;
}

.service-card h3{
    font-size:28px;
    font-weight:800;
    color:#111;

    margin-bottom:15px;
}

.service-card p{
    font-size:16px;
    color:#666;
    line-height:1.8;

    margin-bottom:22px;
}

.service-card a{
    text-decoration:none;
    color:#D4AF37;

    font-size:17px;
    font-weight:700;
}

/* ==========================
   SERVICE CARD PREMIUM
========================== */

.service-card{
    position:relative;
    overflow:hidden;
}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#D4AF37,#FFD86B);

    transform:scaleX(0);

    transition:.4s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.12);

}

.service-card:hover::before{

    transform:scaleX(1);

}

.service-card:hover .service-icon{

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

    background:#D4AF37;

    color:#fff;

}

.service-icon{

    transition:.35s;

}

.service-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    transition:.3s;

}

.service-card:hover a{

    gap:14px;

}
/*==========================
      MEESHO SECTION
==========================*/

.meesho-service{
    padding:70px 20px;
    background:#fff;
}

.meesho-service .container{
    max-width:420px;
    margin:auto;
}

.meesho-service img{
    width:100%;
    border-radius:20px;
    display:block;
    margin-bottom:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.section-tag{
    display:inline-block;
    background:#FFF8E6;
    color:#D4AF37;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.meesho-service h2{
    font-size:34px;
    line-height:1.25;
    font-weight:800;
    margin-bottom:18px;
    color:#111;
}

.meesho-service p{
    color:#666;
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
}

.service-list{
    list-style:none;
    margin:30px 0;
    padding:0;
}

.service-list li{
    background:#fff;
    border:1px solid #eee;
    border-radius:14px;
    padding:16px 18px;
    margin-bottom:14px;
    font-size:16px;
    font-weight:500;
    color:#333;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.service-list li:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 28px rgba(0,0,0,.10);
}

.meesho-service .btn-primary{
    display:block;
    width:100%;
    text-align:center;
    text-decoration:none;
    background:#111;
    color:#fff;
    padding:18px;
    border-radius:14px;
    font-size:17px;
    font-weight:700;
    transition:.3s;
}

.meesho-service .btn-primary:hover{
    background:#D4AF37;
    color:#111;
}

/*==========================
      MEESHO MOBILE POLISH
==========================*/

.meesho-service{
    position:relative;
}

.meesho-service::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:90px;
    height:5px;
    background:#D4AF37;
    border-radius:20px;
}

.meesho-service .container{
    background:#fff;
    border-radius:28px;
    padding:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.meesho-service img{
    transition:.35s;
}

.meesho-service img:hover{
    transform:scale(1.02);
}

.meesho-service h2{
    margin-top:15px;
}

.service-list li::before{
    content:"✓";
    color:#D4AF37;
    font-weight:700;
    margin-right:10px;
}

.service-list li{
    display:flex;
    align-items:center;
}
/*==========================
      AMAZON SECTION
==========================*/

.amazon-service{
    padding:70px 20px;
    background:#f9f9f9;
}

.amazon-service .container{
    max-width:420px;
    margin:auto;
    background:#fff;
    border-radius:28px;
    padding:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.amazon-service img{
    width:100%;
    border-radius:20px;
    display:block;
    margin-bottom:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
    transition:.35s;
}

.amazon-service img:hover{
    transform:scale(1.02);
}

.amazon-service h2{
    font-size:34px;
    line-height:1.25;
    font-weight:800;
    margin:15px 0 18px;
}

.amazon-service p{
    color:#666;
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
}

.amazon-service .btn-primary{
    display:block;
    width:100%;
    text-align:center;
    text-decoration:none;
    background:#111;
    color:#fff;
    padding:18px;
    border-radius:14px;
    font-size:17px;
    font-weight:700;
    transition:.3s;
}

.amazon-service .btn-primary:hover{
    background:#D4AF37;
    color:#111;
}

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

.flipkart-service{
    padding:70px 20px;
    background:#ffffff;
}

.flipkart-service .container{
    max-width:420px;
    margin:auto;
    background:#fff;
    border-radius:28px;
    padding:25px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.flipkart-service img{
    width:100%;
    border-radius:20px;
    display:block;
    margin-bottom:25px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.flipkart-service h2{
    font-size:34px;
    line-height:1.25;
    font-weight:800;
    margin:15px 0 18px;
}

.flipkart-service p{
    color:#666;
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
}

.flipkart-service .btn-primary{
    display:block;
    width:100%;
    text-align:center;
}

/*======================================================
    WHY CHOOSE US
======================================================*/

.why-choose{
    padding:70px 20px;
    background:#fafafa;
}

.section-heading{
    text-align:center;
    margin-bottom:40px;
}

.section-heading span{
    display:inline-block;
    background:#FFF8E6;
    color:#D4AF37;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.section-heading h2{
    font-size:34px;
    line-height:1.25;
    color:#111;
    margin-bottom:18px;
    font-weight:800;
}

.section-heading p{
    font-size:16px;
    color:#666;
    line-height:1.8;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
}

/*======================================================
    WHY CHOOSE CARDS
======================================================*/

.why-card{
    background:#ffffff;
    border-radius:22px;
    padding:28px 24px;
    border:1px solid #eeeeee;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:#D4AF37;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.why-icon{
    width:65px;
    height:65px;
    border-radius:18px;
    background:#FFF8E6;
    color:#D4AF37;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

.why-card h3{
    font-size:24px;
    color:#111;
    font-weight:700;
    margin-bottom:12px;
}

.why-card p{
    color:#666;
    font-size:16px;
    line-height:1.7;
}

.why-image{
    margin-bottom:30px;
}

.why-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    margin-bottom:30px;
}

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

.our-process{
    padding:70px 20px;
    background:#ffffff;
}

.process-image{
    margin:35px 0;
}

.process-image img{
    width:100%;
    display:block;
    border-radius:22px;
    box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.process-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    margin-top:35px;
}

.process-card{
    background:#fff;
    border:1px solid #eee;
    border-radius:20px;
    padding:28px 22px;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.10);
}

.step-number{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#D4AF37;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:18px;
}

.process-card h3{
    font-size:22px;
    color:#111;
    margin-bottom:12px;
    font-weight:700;
}

.process-card p{
    color:#666;
    font-size:16px;
    line-height:1.7;
}

/* ===========================
      RESULTS SHOWCASE
=========================== */

.results-showcase{
    padding:70px 20px;
    background:#fff;
}

.results-showcase .section-heading{
    text-align:center;
    margin-bottom:35px;
}

.results-showcase .section-heading span{
    display:inline-block;
    background:#FFF6DF;
    color:#D4AF37;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:15px;
}

.results-showcase .section-heading h2{
    font-size:34px;
    font-weight:800;
    color:#111;
    line-height:1.25;
    margin-bottom:15px;
}

.results-showcase .section-heading p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.results-image,
.dashboard-image,
.graph-image{
    margin:35px 0;
}

.results-image img,
.dashboard-image img,
.graph-image img{
    width:100%;
    border-radius:24px;
    display:block;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.results-grid{

    display:grid;

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

    gap:18px;

    margin:35px 0;

}

.result-card{

    background:#fff;

    border-radius:20px;

    padding:28px 18px;

    text-align:center;

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

    border:1px solid #f2f2f2;

}

.result-card h3{

    font-size:38px;

    color:#D4AF37;

    font-weight:800;

    margin-bottom:10px;

}

.result-card p{

    color:#555;

    font-size:16px;

    line-height:1.6;

}

/* ===========================
      WHAT WE ACHIEVE
=========================== */

.achievements{
    padding:70px 20px;
    background:#fafafa;
}

.achievement-image{
    margin:35px 0;
}

.achievement-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.achievement-list{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    margin-top:35px;
}

.achievement-card{
    background:#fff;
    padding:25px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #f2f2f2;
    transition:.3s;
}

.achievement-card:hover{
    transform:translateY(-5px);
}

.achievement-card h3{
    font-size:22px;
    color:#111;
    margin-bottom:12px;
    font-weight:700;
}

.achievement-card p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/* ===========================
      COMPANY PROFILE
=========================== */

.company-profile{
    padding:70px 20px;
    background:#ffffff;
}

.company-image{
    margin:35px 0;
}

.company-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.company-content{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
}

.company-card{
    background:#fff;
    border:1px solid #f2f2f2;
    border-radius:22px;
    padding:28px 24px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.company-card:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(0,0,0,.12);
}

.company-card h3{
    font-size:22px;
    color:#111;
    margin-bottom:14px;
    font-weight:700;
}

.company-card p{
    color:#666;
    font-size:16px;
    line-height:1.8;
}

/*======================================================
                    PRICING OVERVIEW
======================================================*/

.pricing-overview{
    padding:70px 20px;
    background:#fafafa;
}

.pricing-image{
    margin:35px 0;
}

.pricing-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.pricing-highlights{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    margin-top:30px;
}

.pricing-highlight{
    background:#fff;
    border:1px solid #f2f2f2;
    border-radius:18px;
    padding:20px;
    font-size:17px;
    font-weight:600;
    color:#222;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.pricing-highlight:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 35px rgba(0,0,0,.10);
}

/*======================================================
                PRICING PLANS
======================================================*/

.pricing-plans{
    padding:70px 20px;
    background:#ffffff;
}

.pricing-banner{
    margin:35px 0;
}

.pricing-banner img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.pricing-switch{
    display:flex;
    justify-content:center;
    gap:10px;
    margin:35px 0;
}

.plan-btn{
    flex:1;
    border:none;
    background:#f3f3f3;
    color:#333;
    padding:14px 10px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.plan-btn.active{
    background:#D4AF37;
    color:#fff;
}

.plans-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:25px;
}

.plan-card{
    position:relative;
    background:#fff;
    border:1px solid #ececec;
    border-radius:24px;
    padding:28px 24px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.plan-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(0,0,0,.12);
}

.popular{
    border:2px solid #D4AF37;
}

.popular-tag{
    position:absolute;
    top:-12px;
    right:20px;
    background:#D4AF37;
    color:#fff;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.plan-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#111;
}

.price{
    font-size:42px;
    color:#D4AF37;
    font-weight:800;
    margin-bottom:20px;
}

.plan-card ul{
    list-style:none;
    padding:0;
    margin:0 0 25px;
}

.plan-card ul li{
    padding:10px 0;
    color:#555;
    border-bottom:1px solid #f2f2f2;
}

.plan-card ul li:last-child{
    border-bottom:none;
}

.plan-card .btn-primary{
    width:100%;
    display:block;
    text-align:center;
}

/*======================================================
                CLIENT TESTIMONIALS
======================================================*/

.testimonials{
    padding:70px 20px;
    background:#fafafa;
}

.testimonial-image{
    margin:35px 0;
}

.testimonial-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.testimonial-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    margin-top:35px;
}

.testimonial-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;
    padding:28px 24px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 45px rgba(0,0,0,.12);
}

.testimonial-card h3{
    font-size:24px;
    color:#D4AF37;
    margin-bottom:16px;
}

.testimonial-card p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:18px;
}

.testimonial-card strong{
    display:block;
    color:#111;
    font-size:16px;
    font-weight:700;
}

/*======================================================
                FREE ACCOUNT AUDIT
======================================================*/

.contact-audit{
    padding:70px 20px;
    background:#ffffff;
}

.contact-image{
    margin:35px 0;
}

.contact-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.audit-form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.audit-form input,
.audit-form select,
.audit-form textarea{

    width:100%;

    padding:18px;

    border:1px solid #ddd;

    border-radius:16px;

    font-size:16px;

    outline:none;

    transition:.3s;

    background:#fff;
}

.audit-form input:focus,
.audit-form select:focus,
.audit-form textarea:focus{

    border-color:#D4AF37;

    box-shadow:0 0 0 4px rgba(212,175,55,.15);

}

.audit-form textarea{
    resize:vertical;
}

.audit-form .btn-primary{

    width:100%;

    border:none;

    cursor:pointer;
}

/*======================================================
                SECURE PAYMENT
======================================================*/

.secure-payment{
    padding:70px 20px;
    background:#fafafa;
}

.payment-image{
    margin:35px 0;
}

.payment-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.payment-steps{
    display:grid;
    gap:18px;
    margin:35px 0;
}

.payment-step{
    background:#fff;
    border:1px solid #ececec;
    border-radius:20px;
    padding:24px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.payment-step span{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#D4AF37;
    color:#fff;
    font-weight:700;
    font-size:20px;
    margin-bottom:15px;
}

.payment-step h3{
    margin-bottom:10px;
    font-size:22px;
    color:#111;
}

.payment-step p{
    color:#666;
    line-height:1.7;
}

.secure-payment .btn-primary{
    width:100%;
    display:block;
    text-align:center;
}

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

.faq-section{
    padding:70px 20px;
    background:#ffffff;
}

.faq-image{
    margin:35px 0;
}

.faq-image img{
    width:100%;
    display:block;
    border-radius:24px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.faq-container{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-item{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:18px 22px;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.faq-item summary{
    cursor:pointer;
    font-size:18px;
    font-weight:700;
    color:#111;
    list-style:none;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item p{
    margin-top:15px;
    color:#666;
    line-height:1.8;
}

/*======================================================
                    FOOTER
======================================================*/

.footer{
    background:#111111;
    color:#ffffff;
    padding:70px 20px 30px;
}

.footer-top{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.footer-company h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:15px;
}

.footer-company h2 span{
    color:#D4AF37;
}

.footer-company p{
    color:#cccccc;
    line-height:1.8;
    font-size:16px;
}

.footer-links h3,
.footer-contact h3,
.payment-methods h3{
    color:#D4AF37;
    margin-bottom:18px;
    font-size:22px;
}

.footer-links a,
.footer-contact a{
    display:block;
    text-decoration:none;
    color:#dddddd;
    margin-bottom:14px;
    transition:.3s;
    font-size:16px;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#D4AF37;
    padding-left:8px;
}

.payment-methods{
    margin-top:45px;
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.08);
}

.payment-icons{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:20px;
}

.payment-icons span{
    background:#1b1b1b;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:16px;
    text-align:center;
    font-weight:600;
}

.footer-bottom{
    margin-top:45px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    flex-direction:column;
    gap:15px;
    text-align:center;
}

.footer-bottom a{
    color:#bbbbbb;
    text-decoration:none;
    transition:.3s;
}

.footer-bottom a:hover{
    color:#D4AF37;
}

.footer-bottom p{
    color:#888888;
    font-size:14px;
    margin-top:10px;
}

/*==========================
      ONBOARDING FORM
==========================*/

.onboarding-section{
    padding:70px 20px;
    background:#ffffff;
}

.onboarding-form{
    max-width:700px;
    margin:40px auto 0;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.onboarding-form input,
.onboarding-form select,
.onboarding-form textarea{

    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:16px;
    font-size:16px;
    outline:none;
    transition:.3s;
    background:#fff;
    font-family:'Poppins',sans-serif;

}

.onboarding-form input:focus,
.onboarding-form select:focus,
.onboarding-form textarea:focus{

    border-color:#D4AF37;
    box-shadow:0 0 0 4px rgba(212,175,55,.15);

}

.onboarding-form textarea{
    min-height:130px;
    resize:vertical;
}

.onboarding-form .btn-primary{

    width:100%;
    border:none;
    cursor:pointer;
    font-size:18px;
    padding:18px;

}

.onboarding-section{
    position:relative;
}

.onboarding-section::before{

    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:90px;
    height:5px;
    background:#D4AF37;
    border-radius:20px;

}

/*======================================================
                    LEGAL PAGES
======================================================*/

.legal-hero{

    background:linear-gradient(135deg,#111111,#1f1f1f);

    color:#fff;

    text-align:center;

    padding:90px 20px;

}

.legal-hero h1{

    font-size:42px;

    margin:20px 0;

    font-weight:800;

}

.legal-hero p{

    max-width:750px;

    margin:auto;

    color:#dddddd;

    font-size:18px;

    line-height:1.8;

}

.legal-hero .btn-primary{

    margin-top:35px;

    display:inline-block;

}

.legal-content{

    padding:70px 20px;

    background:#ffffff;

}

.legal-content .container{

    max-width:950px;

    margin:auto;

}

.legal-content h2{

    color:#111;

    margin-top:40px;

    margin-bottom:18px;

    font-size:30px;

    font-weight:700;

}

.legal-content p{

    color:#555;

    line-height:1.9;

    margin-bottom:18px;

    font-size:17px;

}

.legal-content ul{

    margin:20px 0 30px 25px;

}

.legal-content li{

    margin-bottom:12px;

    color:#555;

    line-height:1.8;

}

@media(max-width:768px){

.legal-hero h1{

    font-size:34px;

}

.legal-content h2{

    font-size:24px;

}

}

/*==============================
    HERO EXTRA BUTTONS
==============================*/

.btn-whatsapp,
.btn-call{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    padding:16px;
    border-radius:12px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.btn-whatsapp{
    background:#25D366;
    color:#fff;
}

.btn-whatsapp:hover{
    background:#1EBE5D;
    transform:translateY(-3px);
}

.btn-call{
    background:#111;
    color:#fff;
}

.btn-call:hover{
    background:#D4AF37;
    color:#111;
    transform:translateY(-3px);
}

/*==============================
   HERO BUTTON RESPONSIVE
==============================*/

@media (min-width:992px){

.hero-buttons{
    grid-template-columns:repeat(4,1fr);
}

}

/*==============================
    FLOATING CONTACT BUTTONS
==============================*/

.floating-contact{
    position:fixed;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:12px;
    z-index:9999;
}

.floating-contact a{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:28px;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
    transition:.3s;
}

.floating-call{
    background:#111;
    color:#fff;
}

.floating-whatsapp{
    background:#25D366;
    color:#fff;
}

.floating-contact a:hover{
    transform:scale(1.1);
}

/* ==========================
   WEBSITE LOGO
========================== */

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-img{
    width:65px;
    height:65px;
    object-fit:contain;
}

.logo-text h2{
    margin:0;
}

.logo-text p{
    margin:0;
}