:root{
    --yellow:#E7B008;
    --yellowdark:#ce9f0f;
    --text:#1c1c1c;
    --muted:#6c757d;
}

/* Base */
body{
    font-family: Inter, sans-serif;
    background:#f7f7f7;
    color:var(--text);
}

/* Navbar */
.navbar{
    background:#fff;
    padding:14px 0;
    border-bottom:1px solid #eee;
    position:sticky;
    top:0;
    z-index:999;
}

.nav-link{
    color:#444 !important;
    margin:0 12px;
    font-weight:500;
}

.btn-cta{
    background:var(--yellow);
    border-radius:10px;
    padding:10px 22px;
    font-weight:600;
}
.btn-cta:hover{
    background-color: var(--yellowdark);
    border-color: var(--yellowdark);
    color: #fff;
}

img.header-logo{width: 100px;}
/* Hero */
.hero{
    padding:90px 0 70px;
    background: radial-gradient(circle at 10% 20%, #fdf8ef 0%, #f3efe7 40%, #ece8df 100%);
}

/* Badge */
.badge-top{
    background:#fff3d6;
    color:#b98200;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    display:inline-block;
    margin-bottom:20px;
}

/* Heading */
.hero h1{
    font-size:56px;
    font-weight:800;
    line-height:1.1;
    margin-bottom:15px;
}

/* Yellow highlight EXACT */
.highlight{
    color:var(--yellow);
    display:inline-block;
}

/* Paragraph */
.hero p{
    color:var(--muted);
    font-size:16px;
    max-width:520px;
}

/* Service Cards */
.service-card{
    border:1px solid #eaeaea;
    border-radius:12px;
    padding:12px 16px;
    background:#fff;
    display:flex;
    align-items:center;
    gap:10px;
    transition:0.25s;
}

.service-card i{
    color:var(--yellow);
}

.service-card:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
}
/* WRAPPER */
.mobile-wrapper{
    display:flex;
    justify-content:end;
}

/* DEVICE BODY */
.mobile-device{
    width: 320px;
    height: 550px;
    background: #111;
    border-radius: 45px;
    padding: 10px;
    position: relative;

    /* Real device feel */
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.25),
        inset 0 0 0 2px #2a2a2a,
        inset 0 0 0 6px #000;
}

/* SCREEN */
.mobile-screen{
    background: #f9f9f9;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    padding: 45px 10px 10px 10px;
    overflow: hidden;
}

/* NOTCH */
.mobile-notch{
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

/* INPUT STYLE */
.mobile-screen .form-control,
.mobile-screen .form-select{
    border-radius: 12px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    background: #fff;
}

/* BUTTON */
.btn-form{
    background: #E7B008;
    border-radius: 12px;
    padding: 11px;
    font-weight: 600;
}
.btn-form:hover{
    background-color: var(--yellowdark);
    border-color: var(--yellowdark);
    color: #fff;
}
/* HOME INDICATOR */
.mobile-screen::after{
    content:"";
    position:absolute;
    bottom:12px;
    left:50%;
    transform:translateX(-50%);
    width:120px;
    height:5px;
    background:#ccc;
    border-radius:10px;
}

/* RESPONSIVE */
@media(max-width:991px){
    .mobile-wrapper{
        justify-content:center;
        margin-top:40px;
    }
}

/* Responsive */
@media(max-width:991px){

.hero{
    text-align:center;
}

.form-box{
    margin:40px auto 0;
}

.hero h1{
    font-size:40px;
}

}

.challenge-section{
    background:#FCFAF3; /* same warm background */
    padding:80px 0;
}

/* Heading */
.challenge-section h2{
    font-size:38px;
    font-weight:700;
}

/* Subtext */
.challenge-section p{
    font-size:16px;
}

/* Card */
.challenge-card{
    background:#fff;
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    transition:0.3s;

    box-shadow:0 5px 20px rgba(0,0,0,0.04);
}

/* Hover */
.challenge-card:hover{
    transform:translateY(-5px);
}

/* Icon circle */
.challenge-section .icon-box{
    width:70px;
    height:70px;
    margin:0 auto 15px;
    border-radius:50%;
    background:#f5ead1;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* Icon */
.challenge-section .icon-box i{
    color:#f5b400;
    font-size:22px;
}

/* Text */
.challenge-card p{
    font-weight:500;
    color:#333;
    margin:0;
}

/* Responsive */
@media(max-width:991px){
    .challenge-section h2{
        font-size:28px;
    }
}


/* SECTION */
.services-section{
    background:#fff;
    padding:90px 0;
}

/* HEADING */
.services-section h2{
    font-size:38px;
    font-weight:700;
}

/* CARD */
.services-section .service-box{
    background:#fff;
    border-radius:16px;
    padding:25px;
    height:100%;
    border:1px solid #e5e5e5;

    transition:0.3s;
}

/* Hover */
.services-section .service-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

/* ICON BOX */
.services-section .icon-box{
    width:55px;
    height:55px;
    border-radius:12px;
    background:#f5ead1;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:15px;
}

/* ICON */
.services-section .icon-box i{
    color:#f5b400;
    font-size:20px;
}

/* TITLE */
.services-section .service-box h5{
    font-weight:600;
    margin-bottom:15px;
}

/* LIST */
.services-section .service-box ul{
    padding-left:0;
    list-style:none;
}

.services-section .service-box ul li{
    font-size:14px;
    color:#555;
    margin-bottom:8px;
    position:relative;
    padding-left:16px;
}

/* BULLET DOT */
.services-section .service-box ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:7px;
    width:6px;
    height:6px;
    background:#f5b400;
    border-radius:50%;
}

/* RESPONSIVE */
@media(max-width:991px){
    .services-section h2{
        font-size:28px;
    }
}


/* SECTION */
.why-section{
    background:#FCFAF3;
    padding:80px 0;
}

/* HEADING */
.why-section h2{
    font-size:36px;
    font-weight:700;
}

/* ITEM */
.why-item{
    text-align:center;
}

/* ICON CIRCLE */
.why-icon{
    width:70px;
    height:70px;
    margin:0 auto 15px;
    border-radius:50%;
    background:#f5ead1;

    display:flex;
    align-items:center;
    justify-content:center;
}
.why-icon:hover{background:#e7b008;}
/* ICON */
.why-icon i{
    color:#f5b400;
    font-size:22px;
}
.why-icon:hover i{
    color:#1C1A17;
}

/* TEXT */
.why-item p{
    font-size:15px;
    color:#333;
    max-width:180px;
    margin:0 auto;
}

/* RESPONSIVE */
@media(max-width:991px){
    .why-section h2{
        font-size:28px;
    }
}


/* SECTION */
.process-section{
    background:#fff;
    padding:80px 0;
}

/* HEADING */
.process-section h2{
    font-size:36px;
    font-weight:700;
}

/* ITEM */
.process-item{
    text-align:center;
}

/* STEP NUMBER CIRCLE */
.step-number{
    width:70px;
    height:70px;
    margin:0 auto 15px;
    border-radius:50%;
    background:#f5b400;
    color:#000;
    font-weight:700;
    font-size:22px;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* ICON */
.step-icon{
    margin-bottom:10px;
}

.step-icon i{
    color:#f5b400;
    font-size:20px;
}

/* TITLE */
.process-item h5{
    font-weight:600;
    margin-bottom:8px;
}

/* TEXT */
.process-item p{
    color:#666;
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:991px){
    .process-section h2{
        font-size:28px;
    }
}


/* SECTION */
.testimonial-section{
    background:#FCFAF3;
    padding:90px 0;
}

/* HEADING */
.testimonial-section h2{
    font-size:36px;
    font-weight:700;
}

/* CARD */
.testimonial-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    border:1px solid #e5e5e5;
    height:100%;
}

/* STARS */
.stars i{
    color:#f5b400;
    font-size:16px;
}

/* TEXT */
.testimonial-text{
    font-size:15px;
    color:#555;
    margin-bottom:15px;
}

/* DIVIDER */
.testimonial-card hr{
    border-top:1px solid #e5e5e5;
    margin:15px 0;
}

/* CLIENT NAMES */
.testimonial-card h6{
    font-weight:600;
}

/* CLIENT LOGOS */
.client-logos{
    display:flex;
    justify-content:center;
    gap:40px;
    font-weight:600;
    color:#999;
}

/* RESPONSIVE */
@media(max-width:991px){
    .testimonial-section h2{
        font-size:28px;
    }

    .client-logos{
        flex-wrap:wrap;
        gap:20px;
    }
}


/* SECTION */
.pricing-section{
    background:#fff;
    padding:90px 0;
}

/* BADGE */
.badge-top{
    background:#f5ead1;
    color:#b98200;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
}

/* CARD */
.price-card{
    background:#fff;
    border-radius:16px;
    padding:25px;
    border:1px solid #e5e5e5;
    height:100%;
    position:relative;
    transition:0.3s ease;
}

/* HOVER EFFECT */
.price-card:hover{
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* ACTIVE CARD */
.price-card.active{
    border:2px solid #f5b400;
    background:#fbf6ea;
    transform:scale(1.03);
}

/* POPULAR TAG */
.popular{
    position:absolute;
    top:-12px;
    left:20px;
    background:#f5b400;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
    font-weight:600;
}

/* LIST */
.price-card ul{
    list-style:none;
    padding-left:0;
    text-align:left;
    margin:20px 0;
}

.price-card ul li{
    margin-bottom:10px;
    position:relative;
    padding-left:18px;
    font-size:14px;
}

.price-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    color:#f5b400;
    font-weight:bold;
}

/* BUTTON */
.btn-yellow{
    background:#f5b400;
    border-radius:10px;
    padding:10px;
    font-weight:600;
}

.btn-yellow:hover{
    background:#000;
    color:#fff;
}

/* CTA BOX */
.cta-box{
    background:#f6efe3;
    padding:40px;
    border-radius:16px;
    border:1px solid #eadcc4;
}

/* CTA HOVER */
.cta-box .btn:hover{
    transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:991px){
    .price-card.active{
        transform:none;
    }
}

/* CTA SECTION */
.final-cta{
    padding:90px 0;

    /* GOLD GRADIENT BACKGROUND */
    background: linear-gradient(180deg, #d89c00 0%, #c88900 100%);
    color:#111;
}

/* HEADING */
.final-cta h2{
    font-size:42px;
    font-weight:700;
}

/* TEXT */
.final-cta p{
    font-size:18px;
    color:#2b2b2b;
}

/* BUTTONS */
.final-cta .btn{
    border-radius:10px;
    font-weight:600;
    padding:12px 28px;
    transition:0.3s;
}

/* DARK BUTTON */
.final-cta .btn-dark{
    background:#111;
    border:none;
}

.final-cta .btn-dark:hover{
    background:#000;
    transform:translateY(-2px);
}

/* LIGHT BUTTON */
.final-cta .btn-light{
    background:#fff;
    border:none;
}

.final-cta .btn-light:hover{
    background:#f1f1f1;
    transform:translateY(-2px);
}

/* RESPONSIVE */
@media(max-width:991px){
    .final-cta h2{
        font-size:30px;
    }
}

/* SECTION */
.lead-form-section{
    background:#FCFAF3;
    padding:90px 0;
}

/* HEADING */
.lead-form-section h2{
    font-size:36px;
    font-weight:700;
}

/* LAPTOP WRAPPER */
.laptop-wrapper{
    display:flex;
    flex-direction:column;
    align-items:center;
}

/* LAPTOP BODY */
.laptop{
    width:520px;
    background:#2c2c2c;
    border-radius:18px;
    padding:12px;
    position:relative;

    box-shadow:0 20px 40px rgba(0,0,0,0.2);
}

/* CAMERA */
.laptop-camera{
    width:8px;
    height:8px;
    background:#111;
    border-radius:50%;
    margin:0 auto 10px;
}

/* SCREEN */
.laptop-screen{
    background:#f9f9f9;
    border-radius:12px;
    padding:25px;
}

/* FORM */
.lead-form input,
.lead-form select{
    width:100%;
    margin-bottom:12px;
    padding:12px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:14px;
}

/* BUTTON */
.btn-submit{
    background:#f5b400;
    border:none;
    padding:12px;
    border-radius:10px;
    font-weight:600;
    margin-top:5px;
}

.btn-submit:hover{
    background:#000;
    color:#fff;
}

/* LAPTOP BASE */
.laptop-base{
    width:540px;
    height:20px;
    background:#dcdcdc;
    border-radius:10px;
    margin-top:10px;

    box-shadow:0 10px 20px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media(max-width:600px){
    .laptop{
        width:100%;
    }
    .laptop-base{
        width:100%;
    }
}

/* FOOTER */
.footer-section{
    background:#111;
    color:#ccc;
    padding:60px 0 20px;
    position:relative;
}

/* LOGO TEXT */
.footer-section p{
    font-size:14px;
    color:#aaa;
    max-width:300px;
}

/* TITLE */
.footer-title{
    color:#fff;
    font-weight:600;
    margin-bottom:15px;
}

/* LINKS */
.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:8px;
}

.footer-links a{
    color:#aaa;
    text-decoration:none;
    transition:0.3s;
}

.footer-links a:hover{
    color:#f5b400;
    padding-left:5px;
}

/* CONTACT ICON */
.footer-section i{
    color:#fff;
}

/* DIVIDER */
.footer-section hr{
    border-top:1px solid #333;
    margin:30px 0;
}

/* COPYRIGHT */
.footer-section .small{
    color:#777;
}

/* WHATSAPP FLOAT BUTTON */
.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    width:55px;
    height:55px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    box-shadow:0 10px 20px rgba(0,0,0,0.3);
    z-index:999;
    transition:0.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}

/* RESPONSIVE */
@media(max-width:991px){
    .footer-section{
        text-align:center;
    }

    .footer-section p{
        margin:auto;
    }
}

/* ── Form Validation Styles ── */
.mobile-screen .is-invalid,
.laptop-screen .is-invalid,
.lead-form .is-invalid {
    border-color: #dc3545 !important;
    background-image: none;
}
.mobile-screen .is-valid,
.laptop-screen .is-valid,
.lead-form .is-valid {
    border-color: #28a745 !important;
    background-image: none;
}
.invalid-feedback {
    display: block;
    font-size: 11px;
    color: #dc3545;
    margin-top: -6px;
    margin-bottom: 6px;
}