:root {
    --black: #0A0A0A;
    --dark-gray: #1A1A1A;
    --viking-red: #B91C1C;
    --gold: #D4AF37;
    --light-gold: #F0C808;
    --gray: #888888;
    --light: #E5E5E5;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, Arial, sans-serif; }
body { color: var(--gray); background: var(--black); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
section { padding: 3.5rem 0; }
.section-dark { background: var(--dark-gray); }

h1, h2, h3, h4 { color: var(--white); margin-bottom: 1rem; font-weight: 700; }
h1 { font-size: 2.6rem; line-height: 1.2; }
h2 { font-size: 1.7rem; color: var(--gold); border-bottom: 2px solid var(--viking-red); padding-bottom: 0.5rem; display: inline-block; }
p { margin-bottom: 1rem; font-size: 1.05rem; }
ul { margin-left: 1.5rem; margin-bottom: 1.5rem; }

.btn { display: inline-block; padding: 0.95rem 2.2rem; border-radius: 0; font-weight: 700; transition: 0.3s ease; border: none; cursor: pointer; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--light-gold); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid var(--viking-red); margin-left: 1rem; }
.btn-secondary:hover { background: var(--viking-red); color: var(--white); }
.btn-full { width: 100%; }

.header { background: rgba(10,10,10,0.95); padding: 1rem 0; position: sticky; top: 0; z-index: 100; border-bottom: 2px solid var(--viking-red); }
.header .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.logo-text { font-size: 1.4rem; margin-bottom: 0; letter-spacing: 1px; }
.logo-text span { color: var(--viking-red); }
.tagline { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 2px; margin-top: 0.25rem; }
.nav a { color: var(--light); margin-left: 1.5rem; font-weight: 600; text-transform: uppercase; font-size: 0.9rem; border-bottom: 3px solid transparent; padding-bottom: 0.3rem; }
.nav a:hover, .nav a.active { color: var(--gold); border-bottom-color: var(--viking-red); }
.menu-toggle { display: none; background: none; color: var(--gold); font-size: 1.8rem; border: none; cursor: pointer; }

/* ===== HERO BANNER — WITH LOGO ===== */
.hero {
    background:
        linear-gradient(rgba(10,10,10,0.9), rgba(26,26,26,0.85)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: var(--light);
    border-bottom: 3px solid var(--viking-red);
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    width: 120px;
    height: 120px;
    background: url('../images/logo.png') center/contain no-repeat;
    z-index: 2;
}

.hero-title { font-size: 3rem; line-height: 1.1; margin-bottom: 1rem; }
.red-text { color: var(--viking-red); }
.hero-subtitle { font-size: 1.3rem; color: var(--gold); font-weight: 600; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 2px; }
.hero-desc { font-size: 1.1rem; max-width: 650px; margin-bottom: 2rem; }
.hero-buttons { margin-bottom: 2.5rem; }
.hero-contact-banner { display: flex; gap: 2rem; flex-wrap: wrap; }
.contact-item { display: flex; align-items: center; gap: 0.8rem; background: rgba(25,25,25,0.8); padding: 1rem 1.5rem; border-left: 3px solid var(--viking-red); }
.contact-item i { font-size: 1.8rem; color: var(--gold); }
.contact-item strong { color: var(--gold); font-size: 1.2rem; display: block; margin-top: 0.2rem; }

.services-bar { background: var(--dark-gray); border-bottom: 1px solid #2A2A2A; }
.services-grid-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 1.5rem; }
.service-icon-card { text-align: center; padding: 1.5rem 1rem; border: 1px solid #333; border-top: 3px solid var(--viking-red); transition: 0.3s; }
.service-icon-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.service-icon-card i { font-size: 2rem; color: var(--gold); margin-bottom: 0.8rem; }
.service-icon-card h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0; color: var(--light); }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 2rem; }
.feature-card { background: rgba(30,30,30,0.5); padding: 2rem; border: 1px solid #333; border-top: 3px solid var(--gold); transition: 0.3s; }
.feature-card:hover { border-color: var(--viking-red); }
.feature-card i { font-size: 2.2rem; color: var(--viking-red); margin-bottom: 1rem; }

/* ===== PAGE HEADERS — WITH LOGO ===== */
.page-header {
    background:
        linear-gradient(rgba(10,10,10,0.9), rgba(26,26,26,0.9)),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid var(--viking-red);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}
.page-header::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    width: 100px;
    height: 100px;
    background: url('../images/logo.png') center/contain no-repeat;
    z-index: 2;
}
.page-header h1 { color: var(--gold); margin-bottom: 0.3rem; }
.page-header p { color: var(--light); font-size: 1.1rem; }

.page-content { padding: 3rem 0; }
.styled-list { list-style: none; margin-left: 0; }
.styled-list li { padding: 0.7rem 0; border-bottom: 1px solid #2A2A2A; }
.styled-list i { color: var(--gold); margin-right: 0.7rem; }

/* ===== SERVICE BANNERS — WITH LOGO ===== */
.service-section {
    background: rgba(30,30,30,0.5);
    padding: 2rem;
    border: 1px solid #333;
    border-left: 4px solid var(--viking-red);
    margin-bottom: 2rem;
    transition: 0.3s;
}
.service-section:hover { border-left-color: var(--gold); }
.service-banner {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 1.2rem;
    border-radius: 4px;
    border-bottom: 2px solid var(--gold);
    position: relative;
}
.service-banner::after {
    content: "";
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 70px;
    height: 70px;
    background: url('../images/logo.png') center/contain no-repeat;
    opacity: 0.9;
    z-index: 2;
}
.service-section h3 {
    color: var(--gold);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vacancies-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; margin: 2rem 0; }
.vacancy-card { background: rgba(30,30,30,0.5); padding: 1.5rem; border: 1px solid #333; border-top: 3px solid var(--gold); }
.vacancy-card i { font-size: 1.8rem; color: var(--viking-red); margin-bottom: 0.8rem; }

.requirements-box, .application-box { background: rgba(30,30,30,0.5); padding: 2rem; border: 1px solid #333; margin-top: 2rem; border-left: 4px solid var(--gold); }
.email-banner { text-align: center; padding: 1.5rem; background: rgba(0,0,0,0.3); margin: 1rem 0; border: 2px solid var(--viking-red); }
.apply-email { font-size: 1.4rem; font-weight: 700; color: var(--gold); }
.apply-email a { color: var(--gold); text-decoration: underline; }
.note { text-align: center; margin-top: 1rem; }

.coverage-area { background: rgba(30,30,30,0.5); padding: 2rem; border: 1px solid #333; margin: 2rem 0; text-align: center; border-top: 3px solid var(--viking-red); }
.contact-box { background: rgba(30,30,30,0.5); padding: 2rem; border: 1px solid #333; margin-top: 2.5rem; text-align: center; border-top: 3px solid var(--gold); }
.big-link { color: var(--gold); font-size: 1.4rem; font-weight: bold; }

.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-method { display: flex; gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid #2A2A2A; }
.contact-method i { font-size: 1.6rem; color: var(--gold); margin-top: 0.2rem; min-width: 30px; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group label { display: block; margin-bottom: 0.4rem; color: var(--light); text-transform: uppercase; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 0.95rem; background: rgba(30,30,30,0.5); border: 1px solid #444; border-radius: 0; color: var(--white); font-size: 1rem; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--gold); }

/* ===== FOOTER — WITH LOGO ===== */
.footer {
    background: var(--dark-gray);
    border-top: 3px solid var(--viking-red);
    padding: 3rem 0;
    margin-top: 2rem;
}
.footer-logo {
    width: 80px;
    height: 80px;
    background: url('../images/logo.png') center/contain no-repeat;
    margin-bottom: 1rem;
}
.footer h3 { color: var(--gold); font-size: 1.1rem; text-transform: uppercase; }
.footer h4 { color: var(--light); font-size: 0.95rem; text-transform: uppercase; border-bottom: 1px solid #333; padding-bottom: 0.3rem; }
.footer a { color: var(--gray); font-size: 0.95rem; line-height: 1.8; }
.footer a:hover { color: var(--gold); }
.footer-bottom { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #333; text-align: center; font-size: 0.9rem; color: var(--gray); }

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
    .nav { margin-top: 1rem; width: 100%; display: none; }
    .nav.active { display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem 0; }
    .nav a { margin: 0; padding: 0.5rem 0; }
    .menu-toggle { display: block; }
    .hero-title { font-size: 2rem; }
    .hero-buttons { display: flex; flex-direction: column; gap: 1rem; }
    .btn-secondary { margin-left: 0; }

    .hero::before { width: 90px; height: 90px; top: 15px; left: 15px; }
    .page-header::before { width: 80px; height: 80px; left: 15px; }
    .service-banner::after { width: 50px; height: 50px; }