/*
Theme Name: Frontline Dental Jobs
Theme URI: https://www.frontlinedentaljobs.com
Author: Frontline Source Group
Author URI: https://www.frontlinesourcegroup.com
Description: Professional dental staffing and recruiting theme for Frontline Dental Jobs — a division of Frontline Source Group. America's premier nationwide dental staffing agency specializing in dentist, dental hygienist, and dental assistant placement with an industry-leading 5-year placement warranty. Over 22 years of expert recruiting for dental professionals.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: frontline-dental
Tags: dental, staffing, recruitment, healthcare, one-column, custom-menu, custom-logo, featured-images, full-width-template, theme-options
*/

/* ========================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ======================================================== */
:root {
    /* Brand Colors */
    --fdj-navy: #0F2041;
    --fdj-navy-light: #1a3566;
    --fdj-teal: #0096A0;
    --fdj-teal-light: #00BEC8;
    --fdj-teal-dark: #007580;
    --fdj-gold: #C6AA6E;
    --fdj-gold-light: #D4BF8E;
    --fdj-white: #FFFFFF;
    --fdj-light: #F5F7FA;
    --fdj-gray-100: #EDF0F5;
    --fdj-gray-200: #D8DDE6;
    --fdj-gray-300: #B0B8C8;
    --fdj-gray-500: #646E82;
    --fdj-gray-700: #3A4255;
    --fdj-dark: #0A1428;
    --fdj-success: #28A745;
    --fdj-danger: #DC3545;

    /* Typography */
    --fdj-font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fdj-font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --fdj-section-padding: 80px 0;
    --fdj-container-max: 1200px;
    --fdj-container-wide: 1400px;

    /* Shadows */
    --fdj-shadow-sm: 0 2px 8px rgba(15, 32, 65, 0.08);
    --fdj-shadow-md: 0 4px 20px rgba(15, 32, 65, 0.12);
    --fdj-shadow-lg: 0 8px 40px rgba(15, 32, 65, 0.16);
    --fdj-shadow-xl: 0 16px 60px rgba(15, 32, 65, 0.20);

    /* Borders */
    --fdj-radius-sm: 6px;
    --fdj-radius-md: 12px;
    --fdj-radius-lg: 20px;
    --fdj-radius-xl: 30px;

    /* Transitions */
    --fdj-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================================
   RESET & BASE
   ======================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--fdj-font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--fdj-gray-700);
    background-color: var(--fdj-white);
    overflow-x: hidden;
}

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

a {
    color: var(--fdj-teal);
    text-decoration: none;
    transition: var(--fdj-transition);
}

a:hover {
    color: var(--fdj-teal-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--fdj-font-heading);
    color: var(--fdj-navy);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1em; }

/* ========================================================
   LAYOUT
   ======================================================== */
.fdj-container {
    width: 100%;
    max-width: var(--fdj-container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.fdj-container--wide {
    max-width: var(--fdj-container-wide);
}

.fdj-section {
    padding: var(--fdj-section-padding);
}

.fdj-section--light {
    background-color: var(--fdj-light);
}

.fdj-section--navy {
    background-color: var(--fdj-navy);
    color: var(--fdj-white);
}

.fdj-section--navy h2,
.fdj-section--navy h3 {
    color: var(--fdj-white);
}

.fdj-section--teal {
    background: linear-gradient(135deg, var(--fdj-teal) 0%, var(--fdj-navy) 100%);
    color: var(--fdj-white);
}

.fdj-section--teal h2,
.fdj-section--teal h3 {
    color: var(--fdj-white);
}

.fdj-grid {
    display: grid;
    gap: 30px;
}

.fdj-grid--2 { grid-template-columns: repeat(2, 1fr); }
.fdj-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fdj-grid--4 { grid-template-columns: repeat(4, 1fr); }

.fdj-flex {
    display: flex;
    align-items: center;
    gap: 20px;
}

.fdj-text-center { text-align: center; }
.fdj-text-white { color: var(--fdj-white); }

/* ========================================================
   SECTION HEADERS
   ======================================================== */
.fdj-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.fdj-section-header .fdj-overline {
    display: inline-block;
    font-family: var(--fdj-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fdj-teal);
    margin-bottom: 12px;
}

.fdj-section-header h2 {
    margin-bottom: 16px;
}

.fdj-section-header .fdj-section-desc {
    font-size: 1.1rem;
    color: var(--fdj-gray-500);
    max-width: 650px;
    margin: 0 auto;
}

.fdj-section--navy .fdj-overline,
.fdj-section--teal .fdj-overline {
    color: var(--fdj-gold);
}

.fdj-section--navy .fdj-section-desc,
.fdj-section--teal .fdj-section-desc {
    color: var(--fdj-gray-200);
}

.fdj-accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--fdj-teal), var(--fdj-gold));
    border-radius: 2px;
    margin: 0 auto 20px;
}

/* ========================================================
   BUTTONS
   ======================================================== */
.fdj-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--fdj-font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--fdj-radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--fdj-transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    line-height: 1.2;
}

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

.fdj-btn--primary:hover {
    background-color: var(--fdj-teal-dark);
    border-color: var(--fdj-teal-dark);
    color: var(--fdj-white);
    transform: translateY(-2px);
    box-shadow: var(--fdj-shadow-md);
}

.fdj-btn--secondary {
    background-color: var(--fdj-gold);
    color: var(--fdj-navy);
    border-color: var(--fdj-gold);
}

.fdj-btn--secondary:hover {
    background-color: var(--fdj-gold-light);
    border-color: var(--fdj-gold-light);
    color: var(--fdj-navy);
    transform: translateY(-2px);
    box-shadow: var(--fdj-shadow-md);
}

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

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

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

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

.fdj-btn--large {
    padding: 18px 42px;
    font-size: 1.05rem;
}

.fdj-btn--small {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.fdj-btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================================
   HEADER / NAVIGATION
   ======================================================== */
.fdj-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 32, 65, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--fdj-transition);
}

.fdj-header.scrolled {
    box-shadow: var(--fdj-shadow-lg);
    background: rgba(15, 32, 65, 0.98);
}

.fdj-top-bar {
    background-color: var(--fdj-dark);
    padding: 8px 0;
    font-size: 0.85rem;
    color: var(--fdj-gray-300);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fdj-top-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fdj-top-bar a {
    color: var(--fdj-gray-300);
}

.fdj-top-bar a:hover {
    color: var(--fdj-teal-light);
}

.fdj-top-bar__division {
    font-style: italic;
    opacity: 0.8;
}

.fdj-top-bar__phone {
    font-weight: 600;
    color: var(--fdj-gold) !important;
    font-size: 0.95rem;
}

.fdj-nav-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.fdj-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.fdj-logo img {
    height: 50px;
    width: auto;
}

.fdj-logo__text {
    display: flex;
    flex-direction: column;
}

.fdj-logo__name {
    font-family: var(--fdj-font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--fdj-white);
    line-height: 1.1;
}

.fdj-logo__tagline {
    font-size: 0.7rem;
    color: var(--fdj-teal-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.fdj-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fdj-nav a {
    color: var(--fdj-white);
    font-family: var(--fdj-font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--fdj-radius-sm);
    transition: var(--fdj-transition);
    position: relative;
}

.fdj-nav a:hover,
.fdj-nav a.active {
    color: var(--fdj-teal-light);
    background: rgba(0, 150, 160, 0.1);
}

.fdj-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--fdj-teal);
    border-radius: 1px;
}

.fdj-nav .fdj-btn {
    margin-left: 12px;
}

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

.fdj-mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--fdj-white);
    border-radius: 2px;
    transition: var(--fdj-transition);
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.fdj-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('images/hero-banner.jpg') center center / cover no-repeat;
    padding-top: 120px;
    overflow: hidden;
}

.fdj-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 32, 65, 0.92) 0%,
        rgba(15, 32, 65, 0.75) 50%,
        rgba(0, 150, 160, 0.4) 100%
    );
    z-index: 1;
}

.fdj-hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.fdj-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(198, 170, 110, 0.15);
    border: 1px solid rgba(198, 170, 110, 0.3);
    color: var(--fdj-gold);
    font-family: var(--fdj-font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: var(--fdj-radius-xl);
    margin-bottom: 24px;
}

.fdj-hero__badge svg {
    width: 16px;
    height: 16px;
}

.fdj-hero h1 {
    color: var(--fdj-white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    line-height: 1.15;
}

.fdj-hero h1 span {
    color: var(--fdj-teal-light);
}

.fdj-hero__subtitle {
    color: var(--fdj-gray-200);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 600px;
}

.fdj-hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

.fdj-hero__stats {
    display: flex;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.fdj-hero__stat {
    text-align: center;
}

.fdj-hero__stat-number {
    font-family: var(--fdj-font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--fdj-teal-light);
    line-height: 1;
    margin-bottom: 4px;
}

.fdj-hero__stat-label {
    font-size: 0.8rem;
    color: var(--fdj-gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================================
   TRUST BAR
   ======================================================== */
.fdj-trust-bar {
    background-color: var(--fdj-white);
    padding: 30px 0;
    border-bottom: 1px solid var(--fdj-gray-100);
}

.fdj-trust-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.fdj-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fdj-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fdj-gray-500);
}

.fdj-trust-item svg {
    width: 24px;
    height: 24px;
    color: var(--fdj-teal);
    flex-shrink: 0;
}

/* ========================================================
   SERVICES / SPECIALIZATIONS
   ======================================================== */
.fdj-service-card {
    background: var(--fdj-white);
    border-radius: var(--fdj-radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--fdj-transition);
    border: 1px solid var(--fdj-gray-100);
    position: relative;
    overflow: hidden;
}

.fdj-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fdj-teal), var(--fdj-gold));
    transform: scaleX(0);
    transition: var(--fdj-transition);
}

.fdj-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--fdj-shadow-lg);
    border-color: transparent;
}

.fdj-service-card:hover::before {
    transform: scaleX(1);
}

.fdj-service-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fdj-teal), var(--fdj-navy));
}

.fdj-service-card__icon img {
    width: 80px;
    height: 80px;
}

.fdj-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.fdj-service-card p {
    color: var(--fdj-gray-500);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.fdj-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--fdj-font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--fdj-teal);
}

.fdj-service-card__link:hover {
    gap: 12px;
}

/* ========================================================
   ABOUT / WHY CHOOSE US
   ======================================================== */
.fdj-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fdj-about-image {
    position: relative;
    border-radius: var(--fdj-radius-md);
    overflow: hidden;
    box-shadow: var(--fdj-shadow-lg);
}

.fdj-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fdj-about-image__badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--fdj-teal);
    color: var(--fdj-white);
    padding: 16px 24px;
    border-radius: var(--fdj-radius-sm);
    text-align: center;
    box-shadow: var(--fdj-shadow-md);
}

.fdj-about-image__badge .number {
    font-family: var(--fdj-font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.fdj-about-image__badge .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fdj-about-content .fdj-overline {
    display: block;
    font-family: var(--fdj-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fdj-teal);
    margin-bottom: 12px;
}

.fdj-feature-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px;
}

.fdj-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
}

.fdj-feature-list li svg {
    width: 22px;
    height: 22px;
    color: var(--fdj-teal);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ========================================================
   STATS BAR
   ======================================================== */
.fdj-stats {
    background: url('images/stats-bg.jpg') center center / cover no-repeat;
    position: relative;
    padding: 60px 0;
}

.fdj-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 32, 65, 0.9);
}

.fdj-stats__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.fdj-stat-item__number {
    font-family: var(--fdj-font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--fdj-teal-light);
    line-height: 1;
    margin-bottom: 8px;
}

.fdj-stat-item__label {
    font-size: 0.9rem;
    color: var(--fdj-gray-200);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.fdj-testimonials {
    background: url('images/testimonial-bg.jpg') center center / cover no-repeat;
}

.fdj-testimonial-card {
    background: var(--fdj-white);
    border-radius: var(--fdj-radius-md);
    padding: 40px;
    box-shadow: var(--fdj-shadow-md);
    border-top: 4px solid var(--fdj-teal);
    position: relative;
}

.fdj-testimonial-card__quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--fdj-gray-700);
    margin-bottom: 24px;
    line-height: 1.8;
}

.fdj-testimonial-card__quote::before {
    content: '\201C';
    font-size: 3rem;
    font-family: Georgia, serif;
    color: var(--fdj-teal);
    line-height: 0;
    position: relative;
    top: 12px;
    margin-right: 4px;
}

.fdj-testimonial-card__author {
    font-family: var(--fdj-font-heading);
    font-weight: 600;
    color: var(--fdj-navy);
}

.fdj-testimonial-card__role {
    font-size: 0.85rem;
    color: var(--fdj-gray-500);
}

.fdj-testimonial-card__stars {
    color: var(--fdj-gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

/* ========================================================
   CTA SECTIONS
   ======================================================== */
.fdj-cta {
    background: url('images/cta-banner.jpg') center center / cover no-repeat;
    position: relative;
    padding: 80px 0;
    text-align: center;
}

.fdj-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 150, 160, 0.92), rgba(15, 32, 65, 0.95));
}

.fdj-cta__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.fdj-cta h2 {
    color: var(--fdj-white);
    margin-bottom: 16px;
}

.fdj-cta p {
    color: var(--fdj-gray-200);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.fdj-cta__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ========================================================
   MILITARY SECTION
   ======================================================== */
.fdj-military {
    background: url('images/military-banner.jpg') center center / cover no-repeat;
    position: relative;
    padding: 80px 0;
}

.fdj-military::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 50, 0.92), rgba(15, 32, 65, 0.88));
}

.fdj-military__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.fdj-military__text h2 {
    color: var(--fdj-white);
}

.fdj-military__text p {
    color: var(--fdj-gray-200);
    font-size: 1.05rem;
}

.fdj-military__text .fdj-overline {
    color: var(--fdj-gold);
    display: block;
    font-family: var(--fdj-font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.fdj-military__benefits {
    list-style: none;
    padding: 0;
    margin: 24px 0 30px;
}

.fdj-military__benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--fdj-gray-200);
    font-size: 0.95rem;
}

.fdj-military__benefits li svg {
    width: 20px;
    height: 20px;
    color: var(--fdj-gold);
    flex-shrink: 0;
}

.fdj-military__cta-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(198, 170, 110, 0.3);
    border-radius: var(--fdj-radius-md);
    padding: 40px;
    text-align: center;
}

.fdj-military__cta-box h3 {
    color: var(--fdj-gold);
    margin-bottom: 12px;
}

.fdj-military__cta-box p {
    color: var(--fdj-gray-300);
    margin-bottom: 24px;
}

/* ========================================================
   JOB LISTINGS
   ======================================================== */
.fdj-job-card {
    background: var(--fdj-white);
    border-radius: var(--fdj-radius-md);
    padding: 30px;
    border: 1px solid var(--fdj-gray-100);
    transition: var(--fdj-transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fdj-job-card:hover {
    border-color: var(--fdj-teal);
    box-shadow: var(--fdj-shadow-md);
    transform: translateY(-4px);
}

.fdj-job-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.fdj-job-card__title {
    font-family: var(--fdj-font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--fdj-navy);
    margin-bottom: 4px;
}

.fdj-job-card__company {
    font-size: 0.9rem;
    color: var(--fdj-teal);
    font-weight: 500;
}

.fdj-job-card__badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--fdj-radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.fdj-job-card__badge--fulltime {
    background: rgba(0, 150, 160, 0.1);
    color: var(--fdj-teal);
}

.fdj-job-card__badge--contract {
    background: rgba(198, 170, 110, 0.15);
    color: var(--fdj-gold);
}

.fdj-job-card__badge--temp {
    background: rgba(100, 110, 130, 0.1);
    color: var(--fdj-gray-500);
}

.fdj-job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--fdj-gray-500);
}

.fdj-job-card__meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.fdj-job-card__meta svg {
    width: 16px;
    height: 16px;
}

.fdj-job-card__excerpt {
    font-size: 0.9rem;
    color: var(--fdj-gray-500);
    line-height: 1.6;
}

.fdj-job-card__actions {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--fdj-gray-100);
    margin-top: auto;
}

/* ========================================================
   APPLICATION FORM
   ======================================================== */
.fdj-form-section {
    background: var(--fdj-light);
}

.fdj-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--fdj-white);
    border-radius: var(--fdj-radius-md);
    padding: 50px;
    box-shadow: var(--fdj-shadow-md);
}

.fdj-form-group {
    margin-bottom: 24px;
}

.fdj-form-group label {
    display: block;
    font-family: var(--fdj-font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fdj-navy);
    margin-bottom: 8px;
}

.fdj-form-group label .required {
    color: var(--fdj-danger);
}

.fdj-form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--fdj-gray-200);
    border-radius: var(--fdj-radius-sm);
    font-family: var(--fdj-font-body);
    font-size: 0.95rem;
    color: var(--fdj-gray-700);
    transition: var(--fdj-transition);
    background-color: var(--fdj-white);
}

.fdj-form-control:focus {
    outline: none;
    border-color: var(--fdj-teal);
    box-shadow: 0 0 0 3px rgba(0, 150, 160, 0.15);
}

.fdj-form-control::placeholder {
    color: var(--fdj-gray-300);
}

textarea.fdj-form-control {
    min-height: 120px;
    resize: vertical;
}

select.fdj-form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23646E82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 45px;
}

.fdj-file-upload {
    border: 2px dashed var(--fdj-gray-200);
    border-radius: var(--fdj-radius-md);
    padding: 40px;
    text-align: center;
    background: var(--fdj-light);
    cursor: pointer;
    transition: var(--fdj-transition);
}

.fdj-file-upload:hover {
    border-color: var(--fdj-teal);
    background: rgba(0, 150, 160, 0.03);
}

.fdj-file-upload svg {
    width: 48px;
    height: 48px;
    color: var(--fdj-teal);
    margin-bottom: 12px;
}

.fdj-file-upload__text {
    font-size: 0.95rem;
    color: var(--fdj-gray-500);
}

.fdj-file-upload__text strong {
    color: var(--fdj-teal);
}

.fdj-file-upload__hint {
    font-size: 0.8rem;
    color: var(--fdj-gray-300);
    margin-top: 8px;
}

.fdj-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ========================================================
   PAGE HEADERS
   ======================================================== */
.fdj-page-header {
    position: relative;
    padding: 180px 0 80px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.fdj-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 32, 65, 0.92), rgba(0, 150, 160, 0.7));
}

.fdj-page-header__content {
    position: relative;
    z-index: 2;
}

.fdj-page-header h1 {
    color: var(--fdj-white);
    margin-bottom: 12px;
}

.fdj-page-header p {
    color: var(--fdj-gray-200);
    font-size: 1.15rem;
    max-width: 600px;
}

.fdj-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
}

.fdj-breadcrumb a {
    color: var(--fdj-gold);
}

.fdj-breadcrumb span {
    color: var(--fdj-gray-300);
}

/* ========================================================
   FAQ / SCHEMA
   ======================================================== */
.fdj-faq-item {
    background: var(--fdj-white);
    border-radius: var(--fdj-radius-sm);
    margin-bottom: 12px;
    border: 1px solid var(--fdj-gray-100);
    overflow: hidden;
}

.fdj-faq-item__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--fdj-font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--fdj-navy);
    text-align: left;
    transition: var(--fdj-transition);
}

.fdj-faq-item__question:hover {
    color: var(--fdj-teal);
}

.fdj-faq-item__question svg {
    width: 20px;
    height: 20px;
    transition: var(--fdj-transition);
    flex-shrink: 0;
    color: var(--fdj-teal);
}

.fdj-faq-item.active .fdj-faq-item__question svg {
    transform: rotate(180deg);
}

.fdj-faq-item__answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.fdj-faq-item.active .fdj-faq-item__answer {
    padding: 0 24px 20px;
    max-height: 500px;
}

.fdj-faq-item__answer p {
    color: var(--fdj-gray-500);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ========================================================
   FOOTER
   ======================================================== */
.fdj-footer {
    background-color: var(--fdj-dark);
    color: var(--fdj-gray-300);
    padding-top: 60px;
}

.fdj-footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fdj-footer__brand p {
    font-size: 0.9rem;
    margin-top: 16px;
    line-height: 1.7;
}

.fdj-footer__brand .fdj-logo {
    margin-bottom: 12px;
}

.fdj-footer h4 {
    color: var(--fdj-white);
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.fdj-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--fdj-teal);
}

.fdj-footer__links {
    list-style: none;
    padding: 0;
}

.fdj-footer__links li {
    margin-bottom: 10px;
}

.fdj-footer__links a {
    color: var(--fdj-gray-300);
    font-size: 0.9rem;
    transition: var(--fdj-transition);
}

.fdj-footer__links a:hover {
    color: var(--fdj-teal-light);
    padding-left: 6px;
}

.fdj-footer__contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.fdj-footer__contact svg {
    width: 18px;
    height: 18px;
    color: var(--fdj-teal);
    flex-shrink: 0;
}

.fdj-footer__contact a {
    color: var(--fdj-gray-300);
}

.fdj-footer__contact a:hover {
    color: var(--fdj-teal-light);
}

.fdj-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.fdj-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--fdj-gray-300);
    transition: var(--fdj-transition);
}

.fdj-footer__social a:hover {
    background: var(--fdj-teal);
    color: var(--fdj-white);
}

.fdj-footer__social svg {
    width: 18px;
    height: 18px;
}

.fdj-footer__bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.8rem;
}

.fdj-footer__bottom a {
    color: var(--fdj-gray-300);
}

.fdj-footer__division {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fdj-footer__division img {
    height: 30px;
    opacity: 0.6;
    transition: var(--fdj-transition);
}

.fdj-footer__division img:hover {
    opacity: 1;
}

/* ========================================================
   ACCESSIBILITY
   ======================================================== */
.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus-visible {
    outline: 3px solid var(--fdj-teal);
    outline-offset: 2px;
}

/* ========================================================
   ANIMATIONS
   ======================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fdj-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fdj-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1024px) {
    .fdj-grid--3 { grid-template-columns: repeat(2, 1fr); }
    .fdj-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .fdj-about-grid { grid-template-columns: 1fr; gap: 40px; }
    .fdj-military__content { grid-template-columns: 1fr; }
    .fdj-footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root {
        --fdj-section-padding: 50px 0;
    }

    .fdj-grid--2,
    .fdj-grid--3,
    .fdj-grid--4 {
        grid-template-columns: 1fr;
    }

    .fdj-stats__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .fdj-hero {
        min-height: auto;
        padding: 140px 0 60px;
    }

    .fdj-hero h1 {
        font-size: 1.8rem;
    }

    .fdj-hero__stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .fdj-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--fdj-navy);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--fdj-shadow-lg);
    }

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

    .fdj-nav a {
        width: 100%;
        padding: 12px 16px;
    }

    .fdj-mobile-toggle {
        display: flex;
    }

    .fdj-top-bar__inner {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    .fdj-form-row {
        grid-template-columns: 1fr;
    }

    .fdj-form-wrapper {
        padding: 30px 20px;
    }

    .fdj-footer__main {
        grid-template-columns: 1fr;
    }

    .fdj-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .fdj-hero__buttons {
        flex-direction: column;
    }

    .fdj-hero__buttons .fdj-btn {
        width: 100%;
    }

    .fdj-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .fdj-hero__stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .fdj-stats__inner {
        grid-template-columns: 1fr;
    }
}

/* ========================================================
   WORDPRESS SPECIFIC
   ======================================================== */
.wp-block-image img {
    border-radius: var(--fdj-radius-sm);
}

.alignwide {
    max-width: var(--fdj-container-wide);
    margin-left: auto;
    margin-right: auto;
}

.alignfull {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
}

/* WP admin bar adjustment */
body.admin-bar .fdj-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .fdj-header {
        top: 46px;
    }
}

/* WordPress comment form styling */
.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--fdj-gray-200);
    border-radius: var(--fdj-radius-sm);
    font-family: var(--fdj-font-body);
    font-size: 0.95rem;
    transition: var(--fdj-transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
    border-color: var(--fdj-teal);
    outline: none;
}

/* Pagination */
.fdj-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 40px 0;
}

.fdj-pagination a,
.fdj-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: var(--fdj-radius-sm);
    font-family: var(--fdj-font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--fdj-transition);
}

.fdj-pagination a {
    background: var(--fdj-white);
    color: var(--fdj-gray-700);
    border: 1px solid var(--fdj-gray-200);
}

.fdj-pagination a:hover {
    background: var(--fdj-teal);
    color: var(--fdj-white);
    border-color: var(--fdj-teal);
}

.fdj-pagination .current {
    background: var(--fdj-teal);
    color: var(--fdj-white);
}
