:root {
    --primary-yellow: #ffcc00;
    --asphalt-dark: #1a1a1a;
    --asphalt-gray: #333333;
    --header-bg: #ffffff;
    --text-light: #ffffff;
    --text-dark: #222222;
    --transition: all 0.3s ease;
    --radius: 4px;
    --header-height: 115px;
    --hero-bg-image: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1533035353720-f1c6a75cd8ab?auto=format&fit=crop&q=80&w=2000');
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f4f4f4;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
}

.brand-logo {
    height: 85px;
    width: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    transition: var(--transition);
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 12px 0;
}

.top-bar {
    background: var(--asphalt-dark);
    color: var(--text-light);
    font-size: 0.8rem;
    padding: 8px 5%;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

nav {
    background: var(--header-bg);
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--asphalt-dark);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--asphalt-dark);
    font-weight: 700;
    transition: var(--transition);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--asphalt-dark);
    border-radius: 3px;
    transition: var(--transition);
}

.hero {
    position: relative;
    background: var(--hero-bg-image) no-repeat center center/cover;
    color: white;
    padding: 140px 5%;
    text-align: center;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    font-weight: 900;
}

.hero p {
    max-width: 800px;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

.btn {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--asphalt-dark);
    padding: 18px 45px;
    text-decoration: none;
    font-weight: 800;
    border-radius: var(--radius);
    transition: var(--transition);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    letter-spacing: 1px;
}

.btn:hover {
    background: #e6b800;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
}

section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
    scroll-margin-top: var(--header-height);
}

.grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid var(--asphalt-dark);
    transition: var(--transition);
    flex: 1 1 350px;
    max-width: 500px;
}

.icon-box {
    width: 65px;
    height: 65px;
    background: var(--asphalt-dark);
    color: var(--primary-yellow);
    border-radius: var(--radius);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.about-section {
    background: #fff;
    border-radius: 8px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.about-content {
    flex: 1.2;
    min-width: 320px;
}

.about-badge {
    flex: 0.8;
    min-width: 300px;
    max-width: 400px;
    background: var(--asphalt-dark);
    height: 350px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    border-bottom: 10px solid var(--primary-yellow);
}

.badge-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--primary-yellow);
    line-height: 1;
}

.badge-text {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.contact-container {
    background: var(--asphalt-dark);
    color: white;
    padding: clamp(30px, 6vw, 80px);
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 60px;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

input,
textarea,
select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    border: 1px solid #333;
    background: #252525;
    color: white;
    font-size: 1rem;
}

select option {
    background: #252525;
}

turnstile-container {
    display: flex;
    justify-content: flex-start;
    margin: 15px 0;
}
.cf-turnstile {
    margin-bottom: 20px;
}

footer {
    background: var(--hero-bg-image) no-repeat center center/cover;
    color: #ccc;
    padding: 100px 5% 40px;
    text-align: center;
    border-top: 5px solid var(--primary-yellow);
    position: relative;
}

.footer-logo-img {
    height: 85px;
    width: auto;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}

.footer-title {
    color: white;
    font-weight: 900;
    font-size: 1.4rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-credits {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 40px;
}

@media (max-width: 850px) {
    :root {
        --header-height: 90px;
    }

    .top-bar {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--header-bg);
        flex-direction: column;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        border-top: 3px solid var(--asphalt-dark);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li a {
        display: block;
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
}