:root {
    --color-brand-navy: #0f2745;
    --color-brand-navy-deep: #0e2643;
    --color-brand-gold: #f2c94c;
    --color-brand-gold-hover: rgba(242, 201, 76, 1);
    --color-footer-bg: #2f4a67;
    --font-sans: 'Montserrat', system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: disc !important;
    margin-left: 2.25rem !important;
}

section {
    position: relative;
    z-index: 1;
}

.text-center {
    text-align: center;
}

.btn-industrial-outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    background: transparent;
}

.btn-industrial-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    transform: translateY(-1px);
}

.btn-industrial-premium {
    background: rgba(242, 201, 76, 0.92);
    color: #0b1220;
    border-radius: 14px;
    padding: 14px 18px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-industrial-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.3);
    background: var(--color-brand-gold-hover);
}

.cta {
    background: #f2c94c;
    color: #0e2643;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    font-weight: 900;
}

.cta2 {
    background: #0e2643;
    padding: 1rem 2rem;
    border: none;
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: #0f2745ee;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 700;
}

.navbar li.contact {
    background-color: #f2c94c;
    padding: 10px;
}

.navbar li.cta a {
    color: #000;
    font-weight: bold;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 100%;
    max-width: 200px;
    min-width: 120px;
    height: auto;
    margin-right: 30px;
    padding: 20px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-left,
.nav-right {
    display: flex;
    gap: 40px;
    list-style: none !important;
}

.burger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

.cta a {
    background: #f2c94c;
    color: black;
    padding: 10px 20p;
    border-radius: 5px;
}

.nav-menu .cta {
    background: #f2c94c;
    color: black;
    border-radius: 2px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0e2643;
    list-style: none !important;
    padding: 10px 0;
    margin: 0px !important;
    min-width: 200px;
    z-index: 1000;
    border-radius: 10px;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    color: white;
    text-decoration: none;
    display: block;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #0f2745ee;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.3s ease-in-out;
    transition: background 0.3s, box-shadow 0.3s;
}

.nav-close {
    display: none;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.footer {
    position: relative;
    background: #2f4a67;
    color: white;
    padding: 60px 40px 20px;
    overflow: hidden;
    text-align: center;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: #0f2745;
    opacity: 0.9;
}

.footer-content {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 10px;
    z-index: 2;
}

.footer-links ul {
    list-style: none !important;
    padding: 0;
    margin-left: 0 !important;
}

.footer-links li {
    margin-bottom: 10px;
    cursor: pointer;
}

.footer-links li:hover {
    text-decoration: underline;
}

a.linkedin i {
    color: #fff;
    font-size: 2rem;
}

.footer-bottom {
    position: relative;
    text-align: center;
    margin-top: 40px;
    opacity: 0.7;
    z-index: 2;
}

.footer-left img {
    width: clamp(120px, 15vw, 285px);
    height: auto;
}

@media (max-width: 1024px) {
    .dropdown-menu {
        position: static;
        background: #0e2643;
        box-shadow: none;
        border-radius: 10px;
        transform: translateY(0);
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-top: 0;
        border: 0;
        opacity: 0;
        pointer-events: none;
        transition: max-height 0.22s ease, opacity 0.18s ease, padding 0.22s ease, margin-top 0.22s ease;
    }

    .dropdown.active .dropdown-menu {
        max-height: 520px;
        padding: 8px;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu .cta {
        background: #f2c94c;
        color: black;
        border-radius: 2px;
        max-width: 150px;
        padding: 0px;
        justify-content: center;
        display: flex;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .burger {
        display: block;
        padding: 28px;
    }

    .nav-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow-y: auto;
        background: rgba(15, 39, 69, 0.96);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        padding: 96px 22px 22px;
        gap: 18px;
        opacity: 0;
        transform: translateY(-8px);
        pointer-events: none;
        visibility: hidden;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu.show {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
    }

    .nav-left,
    .nav-right {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .nav-left li a,
    .nav-right li a {
        display: block;
        padding: 12px 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-left li a:hover,
    .nav-right li a:hover {
        background: rgba(255, 255, 255, 0.12);
    }

    .dropdown-menu {
        margin-top: 10px;
        padding: 8px;
        background: rgba(14, 38, 67, 0.55);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu li {
        padding: 0;
    }

    .dropdown-menu li a {
        padding: 10px 12px;
        border-radius: 10px;
    }

    .nav-close {
        display: none;
        position: absolute;
        top: 18px;
        right: 18px;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        cursor: pointer;
    }

    .nav-menu.show .nav-close {
        display: inline-flex;
    }
}

@media (min-width: 1400px) {
    .navbar {
        padding: 10px 0;
    }

    .nav-container {
        padding: 0 80px;
    }

    .nav-menu {
        gap: 80px;
    }

    .nav-left {
        gap: 60px;
    }

    .nav-right {
        margin-left: 40px;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .cta a {
        padding: 12px 25px;
    }
}

@media (max-width: 966px) {
    .footer-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .footer-left {
        width: 100%;
        text-align: center;
    }

    .footer-links {
        width: 45%;
    }
}

@media (min-width: 1400px) {
    .footer {
        padding: 80px 100px 30px;
    }

    .footer-content {
        gap: 80px;
    }
}
