@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
/* ── Variables ───────────────────────────────────────────── */
:root {
    --blue: #17529e;
    --blue-dark: #00254f;
    --gold: #ebbc3d;
    --gold-dark: #C9A84C;
    --white: #FFFFFF;
    --off-white: #F7F8FA;
    --text: #1A1A2E;
    --text-muted: #5A6478;
    --border: #DDE2EC;
    --radius: 8px;
    --shadow: 0 4px 24px rgba(27,58,107,0.10);
    --transition: 0.25s ease;
    --blue-overlay: #61a9fa;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
    line-height: 1.2;
    color: var(--blue);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    font-weight: 400;
    color: var(--text-muted);
}

/* ── Utilities ───────────────────────────────────────────── */
.container {
    width: min(1160px, 100% - 3rem);
    margin-inline: auto;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
}

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

    .btn-primary:hover {
        background: var(--blue-dark);
        border-color: var(--blue-dark);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(27,58,107,0.25);
    }

.btn-outline {
    background: transparent;
    color: var(--blue);
    border-color: var(--blue);
}

    .btn-outline:hover {
        background: var(--blue);
        color: var(--white);
        transform: translateY(-2px);
    }

.section-label {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue-dark);
    margin-bottom: 0.75rem;
}

    .section-label::before {
        content: '— ';
    }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(27,58,107,0.06);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.nav__logo {
    img {
        height: 70px;
        width: auto;
    }
}

    .nav__logo span {
        color: var(--blue-dark);
    }

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

    .nav__links a {
        font-size: 0.9rem;
        font-weight: 500;
        color: var(--text-muted);
        transition: color var(--transition);
        position: relative;
    }

        .nav__links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--blue-dark);
            transition: width var(--transition);
        }

        .nav__links a:hover {
            color: var(--blue);
        }

            .nav__links a:hover::after {
                width: 100%;
            }

        .nav__links a.active {
            color: var(--blue);
            font-weight: 600;
        }

            .nav__links a.active::after {
                width: 100%;
            }

.nav__cta {
    margin-left: 1rem;
}

/* Mobile nav toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

    .nav__toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background: var(--blue);
        transition: var(--transition);
    }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background-image: url("https://wolfcareerandtalent.com/wp-content/uploads/2024/10/hero1-scaled.jpeg");
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( to bottom, rgba(81, 122, 173, 0.85) 0%, rgba(23, 82, 158, 0.78) 45%, rgba(23, 82, 158, 0.72) 100% );
        z-index: 0;
    }

    .hero.about {
        background-image: url("https://wolfcareerandtalent.com/wp-content/uploads/2024/10/hero1-scaled.jpeg");
        background-size: cover;
        background-position: center;
        min-height: auto;
        padding: 7rem 0 5rem;
    }

    .hero .container {
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: center;
    }

    .hero.about .container {
        animation: fadeLeft 1s ease both;
    }

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero__content {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 16px;
    display: inline-block;
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: fadeUp 0.8s ease both;
}

.hero__eyebrow {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .hero__eyebrow::before {
        content: '';
        display: inline-block;
        width: 40px;
        height: 1px;
        background: var(--off-white);
    }

    .hero__eyebrow.gold {
        color: var(--gold);
    }

        .hero__eyebrow.gold::before {
            background: var(--gold);
        }

.hero h1 {
    color: var(--blue-dark);
    margin-bottom: 1.25rem;
    font-size: 55px;
    font-weight: 800;
}

    .hero h1 em {
        font-style: normal;
        color: white;
    }

.hero .btn-primary {
    background: var(--gold);
    color: var(--blue-dark);
    border-color: var(--gold);
}

    .hero .btn-primary:hover {
        background: var(--gold-dark);
        color: var(--blue-dark);
        border-color: var(--gold-dark);
    }

.hero__sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 560px;
}

    .hero__sub p {
        color: rgba(255,255,255,0.8);
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── About Section ───────────────────────────────────────── */
.about {
    padding: 6rem 0;
    background: var(--white);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__img {
    height: 520px;
    width: auto;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 16px;
    border: 6px solid var(--blue);
    box-shadow: 0 8px 32px rgba(27,58,107,0.18);
}

.about__text h2 {
    margin-bottom: 1.25rem;
}

.about__text p {
    margin-bottom: 1rem;
}

.about__text .btn {
    margin-top: 1rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--gold-dark);
    transition: transform ease-in-out 0.2s, box-shadow ease-in-out 0.2s;
}

    .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 6px 20px rgba(27,58,107,0.25);
    }

    .card h3 {
        margin-bottom: 0.75rem;
        color: var(--blue-dark);
    }

.card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    background: rgba(23, 82, 158, 0.08);
    color: var(--blue);
}

    .card__icon svg {
        width: 26px;
        height: 26px;
    }

.card__intro {
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.75rem;
}
/* ── CTA Banner ──────────────────────────────────────────── */
.about-cta {
    background: var(--off-white);
    padding: 5rem 0;
}

.about-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.about-cta__text h2 {
    margin-bottom: 0.5rem;
}

.about-cta__text p {
    max-width: 480px;
}

.services-intro {
    padding: 5rem 0 4rem;
    background: var(--white);
    text-align: center;
    border-bottom: 1px solid var(--border);
}

    .services-intro .section-label {
        margin-bottom: 1rem;
    }

        .services-intro .section-label::after {
            content: ' —';
        }

    .services-intro h2 {
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        color: var(--blue);
        margin-bottom: 1rem;
        max-width: 680px;
        margin-inline: auto;
    }

    .services-intro p {
        max-width: 560px;
        margin-inline: auto;
        font-size: 1rem;
        color: var(--text-muted);
    }


/* ── Contact Section ─────────────────────────────────────── */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__info h2 {
    margin-bottom: 1rem;
}

.contact__info p {
    margin-bottom: 2rem;
}

.contact__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .contact__list li a {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 500;
        color: var(--blue);
        transition: color var(--transition);
    }

        .contact__list li a:hover {
            color: var(--blue-dark);
        }

    .contact__list svg {
        width: 18px;
        height: 18px;
        fill: var(--blue-dark);
        flex-shrink: 0;
    }

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .contact__form input,
    .contact__form textarea {
        width: 100%;
        padding: 0.85rem 1.1rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        font-size: 0.95rem;
        color: var(--text);
        background: var(--off-white);
        transition: border-color var(--transition), box-shadow var(--transition);
        outline: none;
        font-family: "Poppins", sans-serif;
    }

        .contact__form input:focus,
        .contact__form textarea:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(27,58,107,0.08);
            background: var(--white);
        }

    .contact__form textarea {
        min-height: 140px;
        resize: vertical;
    }

    .contact__form .btn {
        align-self: flex-start;
    }

    .contact__form button:disabled {
        pointer-events: none;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

#form-success {
    display: none;
    background: linear-gradient(135deg, rgba(23, 82, 158, 0.06), rgba(81, 122, 173, 0.1));
    border: 1px solid rgba(23, 82, 158, 0.2);
    border-left: 4px solid var(--blue);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    color: var(--blue);
    font-weight: 500;
    margin-top: 1rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
    background: var(--blue-dark);
    color: rgba(255,255,255,0.7);
    padding: 3rem 0 2rem;
}

.footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer__logo {
    height: 120px;
    width: auto;
    margin: 0;
}

    .footer__logo span {
        color: var(--blue-dark);
    }

.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

    .footer__links a {
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6);
        transition: color var(--transition);
    }

        .footer__links a:hover {
            color: var(--off-white);
        }

.footer__copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    width: 100%;
    text-align: center;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .nav__links {
        display: none;
        flex-direction: column;
    }

        .nav__links.open {
            display: flex;
            position: absolute;
            top: 80px;
            left: 0;
            right: 0;
            background: var(--off-white);
            padding: 1.5rem 2rem;
            border-bottom: 1px solid var(--border);
            box-shadow: var(--shadow);
            gap: 1.25rem;
            animation: navSlideDown 0.3s ease both;
        }

    @keyframes navSlideDown {
        from {
            opacity: 0;
            transform: translateY(-12px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav__cta {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: 50vh;
        padding: 3rem 0;
    }

    .hero__content {
        padding: 1.25rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .about__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about__img {
        width: 100%;
        height: auto;
        border-radius: 16px;
    }
    .about__images {
        height: 300px;
    }

    .about__img--main {
        width: 80%;
        height: 280px;
    }

    .about__img--accent {
        width: 55%;
        height: 180px;
    }
    .footer__copy {
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

/* Footer Tagline */
.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    max-width: 480px;
    line-height: 1.6;
}
