/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    background:#f5f7fa;
}

/* ===== HEADER ===== */
header{
    background:#0f172a;
    padding:15px 5%;
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* ===== LOGO ===== */
.logo{
    font-size:22px;
    font-weight:bold;
    color:#fff;
}

.logo span{
    color:#38bdf8;
}

/* ===== MENU ===== */
.nav-links{
    list-style:none;
    display:flex;
    gap:30px;
}

.nav-links li a{
    text-decoration:none;
    color:#e2e8f0;
    font-size:15px;
    transition:0.3s;
}

.nav-links li a:hover{
    color:#38bdf8;
}

/* ===== CALL BUTTON ===== */
.call-btn{
    background:#38bdf8;
    color:#0f172a;
    padding:8px 16px;
    border-radius:5px;
    font-weight:bold;
    text-decoration:none;
    transition:0.3s;
}

.call-btn:hover{
    background:#0ea5e9;
    color:#fff;
}

/* ===== MOBILE MENU ICON ===== */
.menu-toggle{
    display:none;
    font-size:26px;
    color:#fff;
    cursor:pointer;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#0f172a;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:20px 0;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

    .call-btn{
        display:none;
    }

    .menu-toggle{
        display:block;
    }
}
/* ================= PREMIUM HERO ================= */

.hero-premium{
    position:relative;
    padding:100px 5%;
    background:#0f172a;
    overflow:hidden;
    color:#fff;
}

.hero-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

/* LEFT CONTENT */

.hero-content{
    flex:1;
    max-width:600px;
}

.hero-badge{
    background:#1e293b;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    display:inline-block;
    margin-bottom:25px;
    border:1px solid rgba(255,255,255,0.1);
}

.hero-content h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:#38bdf8;
}

.hero-content p{
    font-size:18px;
    color:#cbd5e1;
    margin-bottom:30px;
}

/* BUTTONS */

.hero-actions{
    display:flex;
    gap:20px;
    margin-bottom:30px;
    flex-wrap:wrap;
}

.btn-main{
    background:#38bdf8;
    color:#0f172a;
    padding:14px 28px;
    border-radius:8px;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.btn-main:hover{
    background:#0ea5e9;
    color:#fff;
}

.btn-secondary{
    border:2px solid #38bdf8;
    color:#38bdf8;
    padding:14px 28px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.btn-secondary:hover{
    background:#38bdf8;
    color:#0f172a;
}

/* TRUST TEXT */

.hero-trust{
    display:flex;
    gap:25px;
    font-size:14px;
    color:#94a3b8;
    flex-wrap:wrap;
}

/* RIGHT IMAGE */

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    max-width:100%;
    animation:float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION */

@keyframes float{
    0%{ transform:translateY(0px); }
    50%{ transform:translateY(-15px); }
    100%{ transform:translateY(0px); }
}

/* GLOW EFFECTS */

.glow{
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(56,189,248,0.4) 0%, transparent 70%);
    filter:blur(80px);
    z-index:0;
}

.glow-1{
    top:-100px;
    left:-100px;
}

.glow-2{
    bottom:-100px;
    right:-100px;
}

/* RESPONSIVE */

@media(max-width:900px){

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-content h1{
        font-size:34px;
    }

    .hero-actions{
        justify-content:center;
    }

    .hero-trust{
        justify-content:center;
    }
}

/* ===== GLOBAL ===== */
section{
    padding:70px 5%;
}

.container{
    max-width:1200px;
    margin:auto;
}

h1,h2,h3{
    color:#0f172a;
}

p{
    color:#475569;
    line-height:1.6;
}

/* ================= FEATURES SECTION ================= */

.features-section{
    background:#f8fafc;
    text-align:center;
}

.features-section h2{
    margin-bottom:50px;
    font-size:32px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-box{
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    transition:0.3s;
}

.feature-box:hover{
    transform:translateY(-8px);
}

.feature-box i{
    font-size:40px;
    color:#2563eb;
    margin-bottom:15px;
}

/* ================= ABOUT SECTION ================= */

.legal-section{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.legal-section h1{
    margin-bottom:25px;
}

.legal-section p{
    margin-bottom:15px;
}

/* ================= INFO SECTION ================= */

.info-section{
    background:#ffffff;
}

.info-content{
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.info-text{
    flex:1;
}

.info-text h2{
    margin-bottom:20px;
}

.info-text ul{
    list-style:none;
    margin:20px 0;
}

.info-text ul li{
    margin-bottom:10px;
    font-weight:500;
}

.info-text ul li i{
    color:#2563eb;
    margin-right:8px;
}

.cta-button{
    display:inline-block;
    background:#2563eb;
    color:#fff;
    padding:12px 20px;
    border-radius:6px;
    text-decoration:none;
    transition:0.3s;
}

.cta-button:hover{
    background:#1e40af;
}

.info-image{
    flex:1;
}

.info-image img{
    width:100%;
    border-radius:12px;
}

/* ================= DIFFERENCE SECTION ================= */

.difference-section{
    background:#f1f5f9;
    text-align:center;
}

.difference-section h2{
    margin-bottom:50px;
}

.difference-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.diff-card{
    background:#ffffff;
    padding:30px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
    transition:0.3s;
}

.diff-card:hover{
    transform:translateY(-8px);
}

.diff-card i{
    font-size:35px;
    color:#2563eb;
    margin-bottom:15px;
}

/* ================= PARALLAX CTA ================= */

.parallax-cta{
    background:url('images/logo/banner.png') center/cover no-repeat fixed;
    position:relative;
    text-align:center;
    color:#fff;
}

.parallax-cta .overlay{
    background:rgba(15,23,42,0.8);
    padding:100px 20px;
}

.parallax-cta h2{
    font-size:32px;
    margin-bottom:20px;
    color:#fff;
}

.parallax-cta p{
    color:#e2e8f0;
    margin-bottom:25px;
}

.cta-btn{
    background:#2563eb;
    color:#fff;
    padding:12px 22px;
    border-radius:6px;
    text-decoration:none;
}

.cta-btn:hover{
    background:#1e3a8a;
}

/* ================= TESTIMONIALS ================= */

.testimonials-section{
    background:#ffffff;
    text-align:center;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#f8fafc;
    padding:30px;
    border-radius:12px;
    box-shadow:0 6px 18px rgba(0,0,0,0.05);
}

.testimonial-card i{
    font-size:25px;
    color:#2563eb;
    margin-bottom:15px;
}

.testimonial-card h4{
    margin-top:15px;
    font-weight:600;
}

/* ================= PROCESS SECTION ================= */

.process-modern{
    position:relative;
    color:#fff;
    text-align:center;
}

.process-bg img{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
    z-index:-1;
}

.process-content{
    padding:100px 20px;
    background:rgba(15,23,42,0.85);
}

.steps{
    display:flex;
    justify-content:center;
    gap:40px;
    flex-wrap:wrap;
    margin:40px 0;
}

.step{
    max-width:250px;
}

.step-number{
    background:#2563eb;
    color:#fff;
    width:50px;
    height:50px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    margin-bottom:15px;
}

.process-btn{
    background:#2563eb;
    color:#fff;
    padding:12px 25px;
    border-radius:6px;
    text-decoration:none;
}

/* ================= FAQ + ADVANTAGES ================= */

.advantages-faq-section{
    background:#f8fafc;
}

.adv-faq-wrapper{
    display:flex;
    gap:50px;
    flex-wrap:wrap;
}

.advantages-col,
.faq-col{
    flex:1;
}

.advantages-list{
    list-style:none;
}

.advantages-list li{
    display:flex;
    align-items:flex-start;
    gap:10px;
    margin-bottom:15px;
}

.advantages-list i{
    color:#2563eb;
    margin-top:5px;
}

/* FAQ */

.faq-item{
    margin-bottom:15px;
}

.faq-question{
    width:100%;
    background:#ffffff;
    padding:12px;
    border:none;
    text-align:left;
    cursor:pointer;
    border-radius:6px;
    font-weight:600;
}

.faq-answer{
    display:none;
    padding:10px 15px;
    background:#e2e8f0;
    border-radius:6px;
    margin-top:5px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .info-content{
        flex-direction:column;
    }

    .steps{
        flex-direction:column;
        align-items:center;
    }

    .adv-faq-wrapper{
        flex-direction:column;
    }
}

/* ================= FOOTER ================= */

.site-footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:60px 5% 100px;
    position:relative;
}

/* Container */
.footer-content{
    max-width:1200px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:40px;
}

/* ================= DISCLAIMER ================= */

.disclaimer{
    background:#1e293b;
    padding:25px;
    border-radius:10px;
    line-height:1.6;
    font-size:14px;
}

.disclaimer b{
    color:#38bdf8;
}

.disclaimer p{
    margin-bottom:12px;
}

/* ================= COMPANY INFO ================= */

.company-info{
    font-size:14px;
    line-height:1.6;
}

.company-info strong{
    color:#ffffff;
}

.company-info a{
    text-decoration:none;
    color:#38bdf8;
}

.company-info a:hover{
    text-decoration:underline;
}

/* ================= FOOTER LINKS ================= */

.footer-links{
    margin-top:10px;
    font-size:14px;
}

.footer-links a{
    color:#94a3b8;
    text-decoration:none;
    margin:0 8px;
    transition:0.3s;
}

.footer-links a:hover{
    color:#38bdf8;
}

.footer-links span{
    color:#475569;
}

/* ================= FIXED CALL BAR ================= */

.call-now-bar{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#2563eb;
    text-align:center;
    padding:14px 10px;
    box-shadow:0 -4px 15px rgba(0,0,0,0.2);
    z-index:999;
}

.call-now-bar a{
    color:#ffffff;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    letter-spacing:0.5px;
}

.call-now-bar:hover{
    background:#1e40af;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

    .footer-content{
        gap:30px;
    }

    .footer-links{
        display:flex;
        flex-wrap:wrap;
        gap:10px;
    }

    .footer-links span{
        display:none;
    }

    .call-now-bar a{
        font-size:14px;
    }
}
/* ================= CONTACT SECTION ================= */

.contact-section{
    padding:80px 5%;
    background:#f8fafc;
}

.contact-wrapper{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:60px;
    justify-content:space-between;
    flex-wrap:wrap;
}

/* ================= CONTACT INFO ================= */

.contact-info{
    flex:1;
    min-width:300px;
}

.contact-info h3{
    font-size:28px;
    margin-bottom:25px;
    color:#0f172a;
}

.contact-info p{
    margin-bottom:18px;
    font-size:15px;
    color:#475569;
    display:flex;
    align-items:flex-start;
    gap:10px;
    line-height:1.6;
}

.contact-info i{
    color:#2563eb;
    margin-top:4px;
    min-width:18px;
}

.contact-info a{
    color:#2563eb;
    text-decoration:none;
}

.contact-info a:hover{
    text-decoration:underline;
}

/* ================= CONTACT FORM ================= */

.contact-form{
    flex:1;
    min-width:300px;
    background:#ffffff;
    padding:40px;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.contact-form h3{
    margin-bottom:25px;
    font-size:24px;
    color:#0f172a;
}

.form-group{
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:14px 16px;
    border-radius:8px;
    border:1px solid #e2e8f0;
    font-size:14px;
    outline:none;
    transition:0.3s;
    background:#f9fafb;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#2563eb;
    background:#ffffff;
    box-shadow:0 0 0 3px rgba(37,99,235,0.15);
}

/* Button */

.contact-form button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:8px;
    background:#2563eb;
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#1e40af;
}

/* ================= RESPONSIVE ================= */

@media(max-width:900px){

    .contact-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .contact-form{
        padding:30px;
    }
}

