/* =====================================================
   RESET GLOBAL
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Segoe UI", Roboto, Arial, sans-serif;
    background:#ffffff;
    color:#0f172a;
    line-height:1.6;
    overflow-x:hidden;
}

/* =====================================================
   VARIABLES
===================================================== */

:root{
    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --orange:#ff7a00;

    --dark:#0f172a;
    --dark-light:#1e293b;

    --text:#334155;
    --text-light:#64748b;

    --border:#e2e8f0;

    --white:#ffffff;

    --section:#f8fafc;

    --shadow:0 10px 30px rgba(15,23,42,0.08);
}

/* =====================================================
   LOADER
===================================================== */

#loader{
    position:fixed;
    inset:0;
    background:#ffffff;
    z-index:99999;

    display:flex;
    align-items:center;
    justify-content:center;
}

.loader-logo{
    font-size:34px;
    font-weight:700;
    color:var(--dark);
    letter-spacing:1px;
}

/* =====================================================
   HEADER
===================================================== */

.header-top{
    position:fixed;
    top:0;
    left:0;

    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0px 5%;

    background:rgba(255,255,255,0.85);

    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border-bottom:1px solid rgba(15,23,42,0.06);

    z-index:1000;
}

/* =====================================================
   LOGO
===================================================== */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    height:100px;
    width:auto;
    object-fit:c2ntain;

}

/* =====================================================
   HEADER ACTIONS
===================================================== */

.header-actions{
    display:flex;
    align-items:center;
    gap:10px;
}

/* =====================================================
   LOGIN BUTTON
===================================================== */

.login-btn{
    text-decoration:none;

    background:var(--primary);
    color:white;

    padding:11px 18px;

    border-radius:10px;

    font-size:14px;
    font-weight:600;

    transition:0.3s ease;
}

.login-btn:hover{
    background:var(--primary-dark);
    transform:translateY(-2px);
}

/* =====================================================
   SEARCH ICON
===================================================== */

.search-icon{
    width:44px;
    height:44px;

    border:none;
    background:transparent;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    color:var(--dark);

    cursor:pointer;

    font-size:18px;

    transition:0.3s ease;
}

.search-icon:hover{
    background:rgba(15,23,42,0.06);
}

/* =====================================================
   SEARCH OVERLAY
===================================================== */

.search-box{
    position:fixed;

    top:92px;
    left:0;

    width:100%;
    height:0;

    overflow:hidden;

    background:rgba(255,255,255,0.96);

    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);

    display:flex;
    align-items:flex-start;
    justify-content:center;

    transition:0.4s ease;

    z-index:1500;
}

.search-box.active{
    height:120px;
    padding:22px 0;
}

/* =====================================================
   SEARCH CONTAINER
===================================================== */

.search-container{
    width:100%;
    max-width:650px;

    display:flex;
    align-items:center;
    gap:12px;

    padding:0 20px;
}

.search-container input{
    flex:1;

    padding:15px 18px;

    border-radius:14px;
    border:1px solid var(--border);

    background:#ffffff;

    font-size:15px;

    outline:none;

    transition:0.3s ease;
}

.search-container input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(37,99,235,0.08);
}

.close-search{
    width:46px;
    height:46px;

    border:none;

    background:var(--dark);
    color:white;

    border-radius:12px;

    cursor:pointer;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:0.3s ease;
}

.close-search:hover{
    background:var(--dark-light);
}

/* =====================================================
   HAMBURGER
===================================================== */

.hamburger{
    background:transparent;
    border:none;

    display:flex;
    flex-direction:column;
    justify-content:center;

    cursor:pointer;

    padding:6px;
}

.hamburger span{
    width:26px;
    height:3px;

    background:var(--dark);

    margin:3px 0;

    border-radius:20px;
}

/* =====================================================
   MOBILE MENU
===================================================== */

.main-menu{
    position:fixed;

    top:0;
    right:-340px;

    width:320px;
    height:100vh;

    background:rgba(255,255,255,0.92);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border-left:1px solid rgba(15,23,42,0.08);

    display:flex;
    flex-direction:column;

    padding:25px;

    z-index:2000;

    transition:0.4s ease;
}

.main-menu.active{
    right:0;
}

/* =====================================================
   MENU CLOSE
===================================================== */

.menu-close{
    align-self:flex-end;

    background:none;
    border:none;

    font-size:24px;

    color:var(--dark);

    cursor:pointer;
}

/* =====================================================
   MENU LINKS
===================================================== */

.main-menu ul{
    list-style:none;

    margin-top:50px;

    flex:1;
}

.main-menu ul li{
    margin-bottom:22px;
}

.main-menu ul li a{
    text-decoration:none;

    color:var(--dark);

    font-size:18px;
    font-weight:500;

    transition:0.3s ease;
}

.main-menu ul li a:hover,
.main-menu ul li a.active{
    color:var(--orange);
    padding-left:6px;
}

/* =====================================================
   MENU FOOTER
===================================================== */

.menu-footer{
    border-top:1px solid rgba(15,23,42,0.08);

    padding-top:18px;

    text-align:center;

    color:var(--text-light);

    font-size:13px;
}

/* =====================================================
   HERO SECTION
===================================================== */

.services-hero{
    padding:170px 5% 100px;

    background:linear-gradient(135deg,#0f172a 0%, #1e293b 100%);

    color:white;
}

/* =====================================================
   HERO ANIMATION
===================================================== */

.hero-content{
    max-width:1300px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:70px;

    transition:all 0.6s ease-in-out;
}

/* REVERSE POSITION */

.hero-content.reverse{
    flex-direction:row-reverse;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:52px;
    line-height:1.15;

    margin-bottom:24px;

    font-weight:700;
}

.hero-text p{
    font-size:18px;

    color:rgba(255,255,255,0.82);

    max-width:620px;
}

.hero-image{
    flex:1;

    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:520px;

    border-radius:28px;

    object-fit:cover;

    box-shadow:0 25px 60px rgba(0,0,0,0.25);
}

/* =====================================================
   SERVICES SECTION
===================================================== */

.service-section{
    padding:100px 5%;
}

.service-section.alt{
    background:var(--section);
}

.service-row{
    max-width:1250px;

    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:70px;
}

.service-row.reverse{
    flex-direction:row-reverse;
}

/* =====================================================
   SERVICE TEXT
===================================================== */

.service-text{
    flex:1;
}

.service-text h2{
    font-size:38px;

    color:var(--dark);

    margin-bottom:18px;

    line-height:1.2;
}

.service-text p{
    color:var(--text);

    margin-bottom:22px;

    font-size:16px;
}

.service-text ul{
    list-style:none;
}

.service-text ul li{
    position:relative;

    padding-left:28px;

    margin-bottom:14px;

    color:var(--text);

    font-size:15px;
}

.service-text ul li::before{
    content:"✓";

    position:absolute;
    left:0;
    top:0;

    color:var(--primary);

    font-weight:700;
}

/* =====================================================
   SERVICE IMAGE
===================================================== */
/* =====================================================
   IMAGE SLIDER - ALL SECTIONS
===================================================== */

.service-image-slider{
    position:relative;

    width:100%;
    max-width:560px;
    height:400px;

    overflow:hidden;

    border-radius:28px;

    box-shadow:var(--shadow);
}

/* IMAGES */

.service-image-slider .slide{
    position:absolute;

    width:100%;
    height:100%;

    object-fit:cover;

    opacity:0;

    transition:opacity 1s ease-in-out;
}

/* ACTIVE IMAGE */

.service-image-slider .slide.active{
    opacity:1;
}


/* =====================================================
   FOOTER
===================================================== */

.footer{
    background:linear-gradient(180deg,#f8fafc 0%, #eef2ff 100%);

    padding:90px 8% 35px;

    border-top:1px solid rgba(15,23,42,0.08);
}

/* =====================================================
   FOOTER CONTAINER
===================================================== */

.footer-container{
    max-width:1300px;

    margin:auto;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:50px;
}

/* =====================================================
   FOOTER BOX
===================================================== */

.footer-box h3{
    font-size:21px;

    margin-bottom:20px;

    color:var(--dark);
}

.footer-box p{
    font-size:14px;

    color:var(--text);

    line-height:1.8;

    margin-bottom:12px;
}

.footer-box i{
    margin-right:10px;

    color:var(--primary);
}

/* =====================================================
   SOCIAL ICONS
===================================================== */

.social-icons{
    display:flex;
    align-items:center;

    gap:14px;

    margin-top:15px;
}

.social-icons a{
    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    border-radius:14px;

    background:rgba(37,99,235,0.08);

    border:1px solid rgba(37,99,235,0.12);

    color:var(--primary);

    transition:0.3s ease;
}

.social-icons a:hover{
    background:var(--primary);
    color:white;

    transform:translateY(-4px);
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.footer-bottom{
    margin-top:60px;

    padding-top:22px;

    border-top:1px solid rgba(15,23,42,0.08);

    text-align:center;

    color:var(--text-light);

    font-size:13px;
}

/* =====================================================
   WHATSAPP FLOAT
===================================================== */

.whatsapp-float{
    position:fixed;

    right:24px;
    bottom:24px;

    width:62px;
    height:62px;

    background:#25d366;
    color:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    font-size:30px;

    box-shadow:0 15px 35px rgba(0,0,0,0.18);

    z-index:999;

    transition:0.3s ease;
}

.whatsapp-float:hover{
    transform:scale(1.08);
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */

@media(max-width:992px){

    .hero-content,
    .service-row,
    .service-row.reverse{
        flex-direction:column;
        text-align:center;
    }

    .hero-text p{
        margin:auto;
    }

    .service-text ul li{
        padding-left:0;
    }

    .service-text ul li::before{
        position:relative;
        margin-right:8px;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .social-icons{
        justify-content:center;
    }
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */

@media(max-width:768px){

    .header-top{
        padding:12px 20px;
    }

    .logo img{
        height:60px;
    }

    .login-btn{
        display:none;
    }

    .services-hero{
        padding:150px 20px 80px;
    }

    .hero-text h1{
        font-size:38px;
    }

    .hero-text p{
        font-size:16px;
    }

    .service-section{
        padding:80px 20px;
    }

    .service-text h2{
        font-size:30px;
    }

    .service-image-slider{
        height:320px;
    }

    .main-menu{
        width:100%;
        right:-100%;
    }

    .search-box{
        top:84px;
    }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media(max-width:480px){

    .hero-text h1{
        font-size:32px;
    }

    .service-text h2{
        font-size:26px;
    }

    .footer{
        padding:70px 20px 30px;
    }

    .whatsapp-float{
        width:56px;
        height:56px;

        font-size:26px;
    }
}