:root {
    --navy: #0E2A47;
    --red: #C63636;
    --light-bg: #F4F6F8;
    --gray: #6B7280;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: var(--navy);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.header {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
    width: auto;
    display: block;
}

.logo a {
    display: flex;
    align-items: center;
}


.logo-icon {
    font-size: 32px;
    font-weight: bold;
    margin-right: 10px;
    color: var(--navy);
}

.logo-text span {
    display: block;
    font-weight: bold;
}

.brand-red {
    color: var(--red);
}

.brand-blue {
    color: var(--navy);
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
}

.btn-primary {
    background: var(--red);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
}

.hero {
    background: var(--navy);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    margin-bottom: 30px;
}

.section {
    padding: 70px 0;
}

.section.light {
    background: var(--light-bg);
}
.section.team-section {
    background: var(--light-bg);
}

.section h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    padding: 25px;
    background: white;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.footer {
    background: var(--navy);
    color: white;
    text-align: center;
    padding: 20px 0;
    /*margin-top: 40px;*/
}

.large {
    padding: 12px 25px;
}

.icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    color: var(--red);
}

.icon svg {
    width: 100%;
    height: 100%;
}

.card {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-cta {
    position: relative;
    background: url('images/truck-bg.webp') center/cover no-repeat;
    padding: 120px 0;
    color: white;
    overflow: hidden;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 42, 71, 0.85); /* navy overlay */
}

.contact-content {
    position: relative;
    text-align: left;
    max-width: 700px;
}

.contact-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #E5E7EB;
}

.contact-buttons {
	width: 100%;
    display: flex;
	justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-cta {
    background: var(--red);
    color: white;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta:hover {
    background: #a82b2b;
    transform: translateY(-3px);
}

.btn-cta.secondary {
    background: transparent;
    border: 2px solid white;
}

.btn-cta.secondary:hover {
    background: white;
    color: var(--navy);
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 30px;
    font-size: 15px;
    color: #D1D5DB;
}

.contact-details p {
    margin-bottom: 8px;
}

.contact-details .contact-col:last-child {
    text-align: right;
}

.contact-col strong {
    color: white;
}

.lang-switch {
    display: flex;
    gap: 12px;
    margin-left: 30px;
}

.lang-switch a {
    text-decoration: none;
    font-weight: 600;
    color: var(--navy);
    font-size: 14px;
    opacity: 0.6;
    transition: 0.3s ease;
}

.lang-switch a:hover {
    opacity: 1;
}

.lang-switch a.active {
    opacity: 1;
    border-bottom: 2px solid var(--red);
}

.coverage-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
}

@media (max-width: 900px) {
    .coverage-wrapper {
        grid-template-columns: 1fr;
    }

    .coverage-image {
        order: -1; /* картинка сверху на мобилке */
        text-align: center;
        margin-bottom: 30px;
    }
}

.team-section {
    text-align: center;
	padding-top: 0 !important;
	padding-bottom: 70px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 50px;
}

.team-card {
    text-align: center;
}

.team-photo {
    width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--red);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.team-card p {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #6B7280;
    font-weight: 600;
}

.brand-accent {
    color: var(--red);
}


@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header .nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 15px 0;
    }

    .logo-img {
        max-height: 55px;
    }

    nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 18px;
    }

    nav a {
        display: inline-flex;
        align-items: center;
        height: 36px;
    }

    .btn-primary {
        height: 36px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
    }

    .lang-switch {
        display: flex;
        gap: 12px;
        font-size: 14px;
    }
}


.cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(240, 242, 245, 0.95);
    backdrop-filter: blur(6px);
    padding: 14px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    color: #333;
}

.cookie-content button {
    background: var(--red);
    border: none;
    color: white;
    padding: 6px 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s ease;
}

.cookie-content button:hover {
    opacity: 0.85;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

.section h2 {
    position: relative;
    margin-bottom: 50px;
    padding-left: 18px;
}

.section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 28px;
    background: var(--red);
}

#services {
    padding-top: 50px;
}

#services h2 {
    margin-bottom: 15px;
}

/* Counter */

.stats-section {
    background: linear-gradient(135deg, #c73636, #e85d2a);
    color: white;
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 40px;
}

.stat h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat p {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 900px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}
