* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000000;
    color: #d3d3d3;
}

.container {
    width: 82%;
    max-width: 1300px;
    margin: 0 auto;
}

/* HEADER */

.header {
    background: #000000;
    padding: 18px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #ffffff;
    font-size: 38px;
    font-style: italic;
    line-height: 1;
}


.logo img {
    height: 100px !important;
    width: auto !important;
}

.logo span {
    display: block;
    color: #194fad;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 4px;
}

.nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav a {
    color: #d3d3d3;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
}

.nav a.active {
    color: #ffffff;
    border-bottom: 3px solid #194fad;
    padding-bottom: 8px;
}

.btn-contact {
    background: #194fad;
    color: #ffffff !important;
    padding: 16px 28px;
    border-radius: 4px;
}

.btn-contact:hover {
    background: #123f8d;
}

/* HERO */

.hero {
    position: relative;
    min-height: 590px;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.78) 34%, rgba(0,0,0,0.25) 68%, rgba(0,0,0,0.08) 100%),
        url("images/hero01.jpg") center center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    max-width: 610px;
}

.hero h1 {
    color: #ffffff;
    font-size: 66px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 26px;
}

.hero h1 span {
    color: #194fad;
}

.hero p {
    color: #d3d3d3;
    font-size: 19px;
    line-height: 1.65;
    max-width: 600px;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
}

.btn-primary {
    background: #194fad;
    color: #ffffff;
    padding: 18px 36px;
}

.btn-secondary {
    color: #ffffff;
    padding: 18px 34px;
    border: 2px solid #d3d3d3;
}

.hero-image {
    width: 520px;
    min-height: 360px;
}

/* SERVICES */

.services {
    background: #d3d3d3;
    color: #000000;
    padding: 36px 0 54px;
    border-top: 5px solid #194fad;
    border-bottom: 5px solid #194fad;
}

.services-header {
    text-align: center;
    margin-bottom: 34px;
}

.services-header span {
    color: #194fad;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
}

.services-header h2 {
    font-size: 34px;
    line-height: 1.2;
    margin-top: 8px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
}

.service-item {
    text-align: center;
    padding: 0 20px;
    border-right: 1px solid rgba(0,0,0,0.18);
}

.service-item:last-child {
    border-right: none;
}

.service-item img {
    width: 76px;
    height: 76px;
    object-fit: contain;
    margin-bottom: 18px;
}

.service-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 15px;
    line-height: 1.55;
}

/* BOTTOM STRIP */

.bottom-strip {
    background: #000000;
    padding: 34px 0;
}

.bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.location {
    display: flex;
    align-items: center;
    gap: 18px;
}

.location img {
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.location h4 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 6px;
}

.location p {
    color: #d3d3d3;
    font-size: 15px;
}

.btn-outline {
    color: #ffffff;
    border: 2px solid #194fad;
    padding: 18px 42px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .container {
        width: 90%;
    }

    .header-inner {
        flex-direction: column;
        gap: 22px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 18px;
    }

    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-content {
        display: block;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-image {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px;
    }

    .service-item {
        border-right: none;
    }

    .bottom-inner {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .location {
        flex-direction: column;
    }
}



.back-tv{
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: block;
}

.back-tv img{
    width: 110px;
    height: auto;
    display: block;
    transition: transform 0.2s ease;
}

.back-tv:hover img{
    transform: scale(1.05);
}

@media (max-width: 600px){
    .back-tv{
        right: 14px;
        bottom: 14px;
    }

    .back-tv img{
        width: 82px;
    }
}




@media (max-width: 600px) {
    .logo {
        font-size: 34px;
        text-align: center;
    }

    .nav ul {
        gap: 14px;
    }

    .nav a {
        font-size: 14px;
    }

    .btn-contact {
        padding: 12px 20px;
    }

    .hero {
        padding: 64px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}



@media (max-width: 768px){

    .hero{
        background: url('images/hero-mobile.jpg') no-repeat center center/cover;
    }

}