* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: -apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    /*    padding: 0 20px*/
}

/* NAV */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .8rem 20px;
    max-width: 1200px;
    margin: 0 auto
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px
}

.logo-img {
    height: 55px;
    width: auto;
    object-fit: contain
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem
}

    .nav-links a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: color .3s
    }

        .nav-links a:hover {
            color: #1e3a8a
        }

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1100;
    background: none;
    border: none;
    padding: 5px
}

    .hamburger span {
        display: block;
        width: 25px;
        height: 3px;
        background: #333;
        border-radius: 3px;
        transition: .3s
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px,6px)
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px,-6px)
    }

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1050;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem
}

    .mobile-menu.open {
        display: flex
    }

    .mobile-menu a {
        color: #1e3a8a;
        text-decoration: none;
        font-size: 1.5rem;
        font-weight: 600;
        transition: color .3s
    }

        .mobile-menu a:hover {
            color: #3b82f6
        }

.mobile-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    color: #1e3a8a;
    line-height: 1;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background .2s
}

    .mobile-close:hover {
        background: #f1f5f9
    }

/* HERO */
.hero {
    background: linear-gradient(135deg,#1e3a8a 0%,#3b82f6 100%);
    color: #fff;
    padding: 140px 0 80px;
    text-align: center
}

    .hero h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
        font-weight: 700;
        line-height: 1.2
    }

    .hero p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        opacity: .95
    }

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #1e3a8a;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform .3s,box-shadow .3s
}

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(0,0,0,.2)
    }

/* SECTIONS */
section {
    padding: 80px 0
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e3a8a
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2rem
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    transition: transform .3s,box-shadow .3s
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,.15)
    }

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem
}

.feature-card h3 {
    color: #1e3a8a;
    margin-bottom: .5rem;
    font-size: 1.3rem
}

/* ABOUT */
.about-section {
    background: #f8fafc
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.about-content h2 {
    color: #1e3a8a;
    font-size: 2rem;
    margin-bottom: 1rem
}

.about-content p {
    margin-bottom: 1rem;
    font-size: 1.05rem
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap
}

.stat-box {
    text-align: center
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a
}

.about-visual {
    background: linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem
}

/* SERVICES */
.services-section {
    background: linear-gradient(135deg,#1e3a8a 0%,#3b82f6 100%);
    color: #fff
}

    .services-section .section-title {
        color: #fff
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 2rem
}

.service-card {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.2);
    transition: background .3s
}

    .service-card:hover {
        background: rgba(255,255,255,.18)
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: .5rem
    }

/* TEAM */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 2rem
}

.team-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    text-align: center;
    transition: transform .3s
}

    .team-card:hover {
        transform: translateY(-4px)
    }

.team-avatar {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg,#667eea 0%,#764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 1rem
}

.team-card h3 {
    color: #1e3a8a;
    margin-bottom: .4rem
}

.team-role {
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: .4rem
}

/* CONTACT */
.contact-section {
    background: #f8fafc;
    text-align: center
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    transition: transform .3s,box-shadow .3s
}

    .contact-form-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,.15)
    }

.contact-form {
    text-align: left
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem
}

.form-group {
    margin-bottom: 1.5rem
}

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 14px 18px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        font-size: 1rem;
        font-family: inherit;
        transition: all .3s;
        background: #f8fafc;
        color: #333
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: #3b82f6;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(59,130,246,.1)
        }

    .form-group textarea {
        resize: vertical
    }

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg,#1e3a8a 0%,#3b82f6 100%);
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(30,58,138,.4)
    }

.form-message {
    margin-top: 1rem;
    padding: 14px 18px;
    border-radius: 10px;
    display: none;
    font-weight: 500
}

    .form-message.success {
        background: #d1fae5;
        color: #065f46;
        border: 2px solid #10b981;
        display: block
    }

    .form-message.error {
        background: #fee2e2;
        color: #991b1b;
        border: 2px solid #ef4444;
        display: block
    }

/* FOOTER */
footer {
    background: #1e293b;
    color: #fff;
    text-align: center;
    padding: 2rem 0
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease,transform .6s ease
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0)
    }

/* RESPONSIVE */
@media(max-width:768px) {
    .hamburger {
        display: flex
    }

    .nav-links {
        display: none
    }

    .hero h1 {
        font-size: 2rem
    }

    .hero p {
        font-size: 1rem
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .about-visual {
        height: 200px;
        font-size: 3rem
    }

    .stats {
        justify-content: center;
        gap: 1.5rem
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .contact-form-container {
        padding: 1.5rem
    }

    .section-title {
        font-size: 2rem
    }

    .logo-img {
        height: 42px
    }

    nav {
        padding: .7rem 16px
    }
}

@media(max-width:480px) {
    .hero {
        padding: 120px 0 60px
    }

        .hero h1 {
            font-size: 1.7rem
        }

    section {
        padding: 60px 0
    }

    .section-title {
        font-size: 1.6rem
    }

    .feature-card, .service-card, .team-card {
        padding: 1.5rem
    }

    .stat-number {
        font-size: 2rem
    }
}
