/* RESET */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f8ff;
    color: #111;
}

/* CONTAINER */

.container{
    width: 1200px;
    max-width: 95%;
    margin: auto;
}

/* HEADER */

.site-header{
    width: 100%;
    height: 90px;
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid #e8edf5;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    backdrop-filter: blur(10px);
    z-index: 999;
}

.header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    text-decoration: none;
}

.logo img{
    height: 58px;
    display: block;
}

/* NAV */

.main-nav{
    display: flex;
    gap: 35px;
}

.main-nav a{
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.main-nav a:hover{
    color: #1746ff;
}

.header-actions{
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone{
    font-size: 15px;
    color: #333;
}

/* BUTTONS */

.btn{
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary{
    background: #1746ff;
    color: #ffffff !important;
}

.btn-primary:hover{
    background: #0f35d6;
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(23,70,255,0.18);
    transform: translateY(-3px);
}

.btn-light{
    background: white;
    color: #111;
    border: 1px solid #dbe1ea;
}

.btn-light:hover{
    background: #f3f6fb;
    transform: translateY(-3px);
}

/* MENU TOGGLE */

.menu-toggle{
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: #1746ff;
    color: white;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
}

/* HERO */

.hero{
    padding: 70px 0 90px;
}

.hero-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}

.hero-content h1{
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 25px;
    max-width: 700px;
}

.hero-content h1 span{
    color: #1746ff;
}

.hero-label{
    color: #1746ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.hero-content p{
    font-size: 20px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 650px;
    margin-bottom: 35px;
}

.hero-buttons{
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-stats{
    display: flex;
    align-items: center;
    gap: 45px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid #dbe1ea;
}

.hero-stats div{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-stats strong{
    font-size: 28px;
    font-weight: 800;
    color: #111;
}

.hero-stats span{
    font-size: 14px;
    color: #6b7280;
}

/* HERO IMAGE */

.hero-image{
    flex: 1;
    height: 500px;
    min-width: 450px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    background-image: url('../assets/images/hero.jpg');
    background-size: cover;
    background-position-y: 30%;
    background-repeat: no-repeat;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.hero-image::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(2, 8, 23, 0.35),
        rgba(23, 70, 255, 0.12)
    );
    z-index: 1;
}

.hero-image:hover{
    transform: translateY(-6px);
}

.status-card{
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 20px 24px;
    border-radius: 18px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.status-card strong{
    font-size: 18px;
}

.status-card span{
    color: #6b7280;
    font-size: 14px;
}

/* SERVICES */

.services{
    padding: 110px 0;
}

.section-header{
    text-align: center;
    max-width: 800px;
    margin: auto;
    margin-bottom: 70px;
}

.section-header span{
    color: #1746ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-header h2{
    font-size: 46px;
    line-height: 1.2;
    margin-top: 18px;
    margin-bottom: 20px;
}

.section-header p{
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
}

.services-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card{
    background: #ffffff;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    min-height: 290px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.service-card:hover{
    transform: translateY(-12px);
    border-color: rgba(23,70,255,0.20);
    box-shadow:
    0 25px 60px rgba(23,70,255,0.15),
    0 12px 30px rgba(0,0,0,0.08);
}

.service-icon{
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(23,70,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1746ff;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 22px;
    transition: 0.3s ease;
}

.service-card:hover .service-icon{
    background: #1746ff;
    color: white;
    transform: translateY(-4px) scale(1.08);
}

.service-card h3{
    font-size: 21px;
    margin-bottom: 18px;
}

.service-card p{
    color: #6b7280;
    line-height: 1.7;
    font-size: 16px;
}

/* ABOUT */

.about-section{
    padding: 110px 0;
}

.about-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img{
    width: 100%;
    border-radius: 28px;
    display: block;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}

.about-image:hover img{
    transform: translateY(-8px);
}

.about-content span{
    color: #1746ff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content h2{
    font-size: 48px;
    line-height: 1.2;
    margin-top: 18px;
    margin-bottom: 24px;
}

.about-content p{
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 20px;
}

.about-stats{
    display: flex;
    gap: 45px;
    margin-top: 35px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
}

.about-stats div{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-stats strong{
    font-size: 30px;
    font-weight: 800;
}

.about-stats span{
    color: #6b7280;
    font-size: 14px;
}

/* WHY US */

.why-us{
    padding: 110px 0;
}

.why-inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.why-content span{
    color: #1746ff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-content h2{
    font-size: 48px;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 25px;
}

.why-content p{
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
}

.why-list{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.why-item{
    background: white;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #e6ebf2;
    display: flex;
    gap: 25px;
    transition: 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.why-item:hover{
    transform: translateY(-5px);
    border-color: #1746ff;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.why-item strong{
    min-width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(23,70,255,0.10);
    color: #1746ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
}

.why-item:hover strong{
    transform: scale(1.08);
}

.why-item h3{
    font-size: 22px;
    margin-bottom: 10px;
}

.why-item p{
    color: #6b7280;
    line-height: 1.7;
}

/* CONTACT */

.contact-section{
    padding: 100px 0;
}

.contact-inner{
    background: linear-gradient(135deg, #1746ff, #0f35d6);
    border-radius: 35px;
    padding: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    color: white;
    overflow: hidden;
    position: relative;
}

.contact-content{
    max-width: 650px;
    flex: 1;
}

.contact-content span{
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.contact-content h2{
    font-size: 48px;
    line-height: 1.15;
    margin-top: 18px;
    margin-bottom: 22px;
}

.contact-content p{
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
}

.contact-box{
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 24px;
    min-width: 260px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-box h3{
    font-size: 26px;
    margin-bottom: 8px;
}

.contact-btn{
    text-decoration: none;
    background: white;
    color: #1746ff;
    padding: 15px 20px;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    transition: 0.3s;
}

.contact-btn:hover{
    transform: translateY(-3px);
}

.contact-btn.secondary{
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
}

/* FOOTER */

.site-footer{
    background: #0f172a;
    color: white;
    margin-top: 100px;
}

.footer-inner{
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
}

.footer-brand img{
    height: 58px;
    margin-bottom: 25px;
}

.footer-brand p{
    color: #cbd5e1;
    line-height: 1.8;
    max-width: 380px;
}

.footer-links,
.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links h4,
.footer-contact h4{
    font-size: 22px;
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact p{
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color: white;
}

.footer-contact a{
    margin-top: 10px;
    display: inline-flex;
    width: fit-content;
    padding: 12px 20px;
    border-radius: 12px;
    background: #1746ff;
    color: white;
    font-weight: 600;
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    text-align: center;
}

.footer-bottom p{
    color: #94a3b8;
    font-size: 14px;
}

/* RESPONSIVE */

@media(max-width: 1100px){

    .hero-inner{
        flex-direction: column;
    }

    .hero-content{
        width: 100%;
    }

    .hero-image{
        width: 100%;
        min-width: 100%;
        height: 500px;
    }

    .services-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .why-inner,
    .about-inner{
        grid-template-columns: 1fr;
    }
}

@media(max-width: 768px){

    .site-header{
        height: auto;
        padding: 14px 0;
        position: relative;
    }

    .header-inner{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 15px;
    }

    .logo img{
        width: 140px;
        height: auto;
    }

    .header-actions{
        display: none;
    }

    .menu-toggle{
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .main-nav{
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 25px;
        flex-direction: column;
        gap: 20px;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        z-index: 999;
    }

    .main-nav.active{
        display: flex !important;
    }

    .hero{
        padding: 45px 0;
    }

    .hero-content h1{
        font-size: 40px;
    }

    .hero-content p{
        font-size: 17px;
    }

    .hero-buttons{
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn{
        text-align: center;
    }

    .hero-stats{
        flex-wrap: wrap;
        gap: 25px;
    }

    .hero-image{
        height: 380px;
    }

    .section-header h2,
    .why-content h2,
    .about-content h2,
    .contact-content h2{
        font-size: 34px;
    }

    .services-grid{
        grid-template-columns: 1fr;
    }

    .service-card{
        min-height: auto;
    }

    .why-item{
        flex-direction: column;
    }

    .contact-inner{
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 35px;
    }

    .contact-box{
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .footer-inner{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-brand img{
        height: 50px;
    }
}

@media(max-width: 480px){

    .container{
        max-width: 92%;
    }

    .hero-content h1{
        font-size: 30px;
        line-height: 1.12;
    }

    .hero-label{
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-stats{
        justify-content: space-between;
    }

    .section-header h2,
    .why-content h2,
    .about-content h2,
    .contact-content h2{
        font-size: 28px;
    }

    .service-card,
    .why-item{
        padding: 25px;
    }

    .contact-inner{
        padding: 40px 25px;
        border-radius: 24px;
    }

    .services{
        padding: 70px 0;
    }
}

/* CONTACT FORM */

.contact-form{
    background: rgba(255,255,255,0.10);

    border: 1px solid rgba(255,255,255,0.15);

    backdrop-filter: blur(12px);

    padding: 35px;

    border-radius: 24px;

    min-width: 320px;

    display: flex;
    flex-direction: column;

    gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{

    width: 100%;

    border: none;

    outline: none;

    background: rgba(255,255,255,0.12);

    border: 1px solid rgba(255,255,255,0.12);

    padding: 15px 18px;

    border-radius: 14px;

    color: white;

    font-size: 15px;
}

.contact-form textarea{
    resize: vertical;
    min-height: 120px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: rgba(255,255,255,0.70);
}

.contact-form select{
    color: white;
}

.contact-form option{
    color: #111;
}

.contact-form button{
    border: none;

    background: white;

    color: #1746ff;

    padding: 16px;

    border-radius: 14px;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.contact-form button:hover{
    transform: translateY(-3px);
}

@media(max-width: 768px){

    .contact-form{
        width: 100%;
        min-width: 100%;
    }

}

.phone-link{

    color: inherit;

    text-decoration: none;

    transition: 0.3s;
}

.phone-link:hover{

    color: #25D366;
}

.whatsapp-nav{

    width: 48px;
    height: 48px;

    border-radius: 14px;

    background: transparent;

    color: #25D366;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 24px;

    transition: 0.3s;
}

.whatsapp-nav:hover{

    transform: translateY(-3px);

    background: #1ebe5d;
}

.social-links{

    display: flex;

    gap: 12px;

    margin-top: 18px;
}

.social-links a{

    width: 42px;
    height: 42px;

    border-radius: 12px;

    background: rgba(255,255,255,0.08);

    color: white !important;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    font-size: 20px;

    transition: 0.3s ease;
}

.social-links a:hover{

    transform: translateY(-4px);

    background: #1746ff;
}