/* Base */

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #0d0d0d;
    color: #e6e6e6;
}

/* Hero */

.hero {
    position: relative;
    min-height: 80vh;
    overflow: hidden;
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    filter: contrast(1.1) saturate(1.1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 42, 42, 0.25), transparent 55%),
                radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.9), #000000);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 40px 20px;
    max-width: 520px;
    margin-left: 8vw;
}

.hero-logo {
    width: 160px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 18px rgba(255, 42, 42, 0.7));
}

/* Brand Title (animated) */
.brand-title {
    font-family: 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: #ffffff;
    text-shadow: 0 0 22px rgba(255, 42, 42, 0.85);
    line-height: 1.1;
    animation: pulseGlow 3.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% { text-shadow: 0 0 18px rgba(255, 42, 42, 0.7); }
    50% { text-shadow: 0 0 32px rgba(255, 42, 42, 1); }
    100% { text-shadow: 0 0 18px rgba(255, 42, 42, 0.7); }
}

.hero-tagline {
    font-size: 18px;
    line-height: 1.6;
    color: #d0d0d0;
    margin-bottom: 24px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Buttons */

.btn-primary,
.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #ff2a2a;
    color: #ffffff;
    box-shadow: 0 0 18px rgba(255, 42, 42, 0.6);
    border: 1px solid #ff4a4a;
}

.btn-primary:hover {
    background: #ff4444;
    box-shadow: 0 0 26px rgba(255, 42, 42, 0.9);
}

.btn-ghost {
    background: transparent;
    color: #ff2a2a;
    border: 1px solid #ff2a2a;
}

.btn-ghost:hover {
    background: rgba(255, 42, 42, 0.12);
    box-shadow: 0 0 16px rgba(255, 42, 42, 0.6);
}

.full-width {
    width: 100%;
}

/* Sections */

.section {
    padding: 70px 20px;
    background: #0d0d0d;
}

.section:nth-of-type(odd) {
    background: #101010;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.section-inner::before {
    content: "";
    position: absolute;
    inset: -40px;
    background-image: url("images/metallic-texture.png");
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.section h2 {
    position: relative;
    z-index: 1;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    color: #ff2a2a;
    text-shadow: 0 0 12px rgba(255, 42, 42, 0.7);
}

.section-grid,
.section-content {
    position: relative;
    z-index: 1;
}

/* Cards */

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.card {
    background: radial-gradient(circle at top left, rgba(255, 42, 42, 0.12), #141414);
    border-radius: 12px;
    padding: 20px 22px;
    border: 1px solid #262626;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.7);
}

.card h3 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    color: #ffffff;
}

.card p {
    margin: 0;
    color: #c4c4c4;
    font-size: 15px;
    line-height: 1.6;
}

/* Lists */

.bullet-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.bullet-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #d0d0d0;
}

.bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff2a2a;
    box-shadow: 0 0 8px rgba(255, 42, 42, 0.8);
}

.city-list {
    columns: 2;
    column-gap: 40px;
    list-style: none;
    padding-left: 0;
    margin: 16px 0;
}

.city-list li {
    margin-bottom: 6px;
    font-size: 15px;
    color: #e0e0e0;
}

/* Territory */

.territory p {
    font-size: 15px;
    color: #c8c8c8;
}

/* Contact */

.contact-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
}

.contact-line a {
    color: #ff2a2a;
    text-decoration: none;
    font-weight: 600;
}

.contact-line a:hover {
    text-shadow: 0 0 10px rgba(255, 42, 42, 0.9);
}

/* Form */

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: #e0e0e0;
    gap: 6px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #262626;
    background: #151515;
    color: #ffffff;
    font-size: 15px;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff2a2a;
    box-shadow: 0 0 14px rgba(255, 42, 42, 0.7);
    background: #181818;
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

/* Footer */

.footer {
    padding: 26px 20px 30px;
    text-align: center;
    background: #050505;
    color: #777777;
    font-size: 13px;
    position: relative;
}

.footer-line {
    width: 100%;
    height: 2px;
    background: radial-gradient(circle, rgba(255, 42, 42, 0.9), transparent 60%);
    margin-bottom: 14px;
}

/* Responsive */

@media (max-width: 900px) {
    .hero {
        min-height: 70vh;
        justify-content: center;
    }

    .hero-content {
        margin-left: 0;
        max-width: 90%;
        text-align: center;
        align-items: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .city-list {
        columns: 1;
    }
}

@media (max-width: 600px) {
    .brand-title {
        font-size: 40px;
        animation-duration: 4s;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .section {
        padding: 50px 18px;
    }

    .card {
        padding: 18px 18px;
    }
}
