:root {
    --primary-blue: #134094;
    --primary-red: #E3000F;
    --secondary-yellow: #FFDE00;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --bg-white: #ffffff;
    --bg-gray: #f9f9f9;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.grid {
    display: grid;
    gap: 40px;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.sticky {
    position: sticky;
    top: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    background: none;
    border: 1px solid #ddd;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.lang-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.lang-btn:hover:not(.active) {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Hero */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(19, 64, 148, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
    display: flex;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background-color: #c4000d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 0, 15, 0.3);
}

/* Stats */
.stats {
    background: var(--bg-gray);
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
}

/* Cargobull Horizontal Banner Styles */
.top-banner {
    background: #eeeeee;
    border-bottom: 1px solid #ddd;
    position: relative;
    z-index: 1100;
}

.top-banner-content {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 120px;
    position: relative;
    overflow: hidden;
}

.top-banner__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.top-banner__background img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: left center;
}

/* Gradient to fade image into background */
.top-banner__background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(238, 238, 238, 0) 0%, rgba(238, 238, 238, 0) 400px, rgba(238, 238, 238, 0.9) 600px, #eeeeee 700px);
}

.top-banner__text {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #333;
    padding-left: 420px;
    /* Increased to completely avoid the face */
}

.top-banner__subtitle {
    font-size: 0.95rem;
    margin-bottom: 2px;
    color: #555;
    font-weight: 400;
}

.top-banner__main-line {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.top-banner__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
}

.top-banner__callout {
    font-size: 1.4rem;
    font-weight: 800;
    color: #111;
}

.top-banner__actions {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-banner-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-banner-phone:hover {
    background: #333;
    transform: scale(1.05);
}

.close-banner {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
}

.close-banner:hover {
    color: #000;
}

@media (max-width: 992px) {
    .top-banner-content {
        padding: 0 20px;
        height: auto;
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .top-banner__background {
        display: none;
    }

    .top-banner__actions {
        margin-top: 15px;
        width: 100%;
        justify-content: space-between;
    }
}

/* Redesigned Contact Section containing Map */
.contact-section {
    padding-bottom: 0;
}

.contact-map-container {
    margin-top: 60px;
    position: relative;
}

.map-header {
    margin-top: 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.contact-header {
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.contact-header p {
    font-size: 1.2rem;
    color: #666;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-card {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    border: 1px solid #eee;
}

.contact-card:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 25px;
    flex-shrink: 0;
}

.card-body {
    flex-grow: 1;
}

.card-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.card-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.card-arrow {
    color: #ccc;
    font-size: 18px;
    transition: var(--transition);
}

.contact-card:hover .card-arrow {
    transform: translateX(5px);
    color: var(--primary-blue);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Imprint Section */
.imprint-section {
    background: #f8f9fa;
    padding: 60px 0;
    border-top: 1px solid #eee;
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
}

.imprint-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.imprint-column h4 {
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1px;
}

.imprint-column p {
    margin-bottom: 10px;
}

/* 1:1 Map Marker Styles */
.custom-marker-container {
    background: none !important;
    border: none !important;
}

.labels {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    border: 1px solid #ccc;
    z-index: 1000;
}

.marker-img {
    width: 34px;
    height: 34px;
    display: block;
}

/* Remove old map styles */
.marker-pin,
.marker-pin::after,
.pulse,
.pulse::after {
    display: none;
}

/* Map Section */
.map-section {
    padding-top: 100px;
    background: white;
}

.map-header {
    margin-bottom: 50px;
}

#map {
    height: 600px;
    width: 100%;
    z-index: 1;
}

/* Professional Footer */
.footer-professional {
    background: #0a0a0a;
    color: #fff;
    padding: 80px 0 30px 0;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 35px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-col.about p {
    color: #999;
    max-width: 350px;
    font-size: 0.95rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #222;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

.footer-bottom .domain {
    color: var(--primary-red);
    font-weight: 600;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col.about {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col.about {
        grid-column: span 1;
    }
}