/* ===== CSS Variables ===== */
:root {
    --dark-green: #014421;
    --dark-green-hover: #013318;
    --gold: #D4AF37;
    --gold-hover: #C9A227;
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
}

/* ===== Reset & Base Styles ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

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

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ===== Utility Classes ===== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(1, 68, 33, 0.95);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--dark-green);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

@media (min-width: 768px) {
    .nav-content {
        height: 80px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 48px;
    width: auto;
}

@media (min-width: 768px) {
    .logo-image {
        height: 56px;
    }
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-cta {
    background-color: var(--gold);
    color: var(--dark-green);
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover {
    background-color: var(--gold-hover);
}

.mobile-menu-btn {
    display: block;
    color: var(--white);
    padding: 0.5rem;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-icon,
.close-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    background-color: var(--dark-green);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-nav-link {
    display: block;
    width: 100%;
    text-align: left;
    color: var(--white);
    padding: 0.5rem 0;
    font-weight: 500;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-nav-cta {
    width: 100%;
    background-color: var(--gold);
    color: var(--dark-green);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-top: 1rem;
    transition: background-color 0.2s ease;
}

.mobile-nav-cta:hover {
    background-color: var(--gold-hover);
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(1, 68, 33, 0.95), rgba(1, 68, 33, 0.8), rgba(1, 68, 33, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.hero-text {
    max-width: 48rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.hero-badge-line {
    height: 4px;
    width: 3rem;
    background-color: var(--gold);
}

.hero-badge-text {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-title-gold {
    color: var(--gold);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-200);
    margin-bottom: 2rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background-color: var(--gold);
    color: var(--dark-green);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    background: transparent;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--dark-green);
}

.btn-dark {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-dark:hover {
    background-color: var(--dark-green-hover);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gold);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat-label {
    color: var(--gray-300);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
}

.scroll-icon {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-light {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-title-light {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title-light {
        font-size: 2.25rem;
    }
}

.section-divider {
    height: 4px;
    width: 5rem;
    background-color: var(--gold);
    margin: 0 auto 1.5rem;
}

.section-divider-left {
    margin: 0 0 1.5rem;
}

.section-description {
    color: var(--gray-600);
    max-width: 42rem;
    margin: 0 auto;
}

.section-description-light {
    color: var(--gray-300);
    max-width: 42rem;
    margin: 0 auto;
}

/* ===== Careers Section ===== */
.careers-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

.careers-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .careers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.career-card {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.career-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--gold);
}

.career-card-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.career-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.career-card:hover .career-card-image img {
    transform: scale(1.05);
}

.career-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 68, 33, 0.8), transparent);
}

.career-card-icon {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.career-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.career-card-content {
    padding: 1.5rem;
}

.career-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.career-card-description {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.career-card-link {
    display: flex;
    align-items: center;
    color: var(--gold);
    font-weight: 600;
    transition: color 0.2s ease;
}

.career-card-link:hover {
    color: var(--dark-green);
}

.career-card-link svg {
    width: 16px;
    height: 16px;
    margin-left: 0.25rem;
}

/* ===== Benefits Section ===== */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.benefit-card {
    background-color: var(--gray-50);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: box-shadow 0.3s ease;
    border: 1px solid var(--gray-100);
}

.benefit-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--gold);
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.benefit-description {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ===== Requirements Section ===== */
.requirements-section {
    padding: 5rem 0;
    background-color: var(--dark-green);
}

.requirements-grid {
    display: grid;
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.requirement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

.requirement-icon {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.requirement-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.requirement-title {
    color: var(--white);
    font-weight: 600;
}

.requirement-description {
    color: var(--gray-300);
    font-size: 0.875rem;
}

.requirements-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ===== Training Section ===== */
.training-section {
    padding: 5rem 0;
    background-color: var(--gray-50);
}

.training-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.training-image-wrapper {
    position: relative;
}

.training-image {
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.training-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: var(--gold);
    color: var(--dark-green);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .training-badge {
        display: block;
    }
}

.training-badge-number {
    font-size: 1.875rem;
    font-weight: 700;
}

.training-badge-text {
    font-size: 0.875rem;
    font-weight: 600;
}

.training-content {
    padding: 0;
}

.training-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

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

.training-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.training-feature-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.training-feature-icon svg {
    width: 1rem;
    height: 1rem;
    color: var(--gold);
}

.training-feature-title {
    font-weight: 600;
    color: var(--dark-green);
}

.training-feature-description {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.training-content .btn-dark {
    margin-top: 2rem;
}

/* ===== About Section ===== */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-content {
    order: 2;
}

@media (min-width: 1024px) {
    .about-content {
        order: 1;
    }
}

.about-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.about-stat {
    background-color: var(--gray-50);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.about-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.about-stat-label {
    color: var(--gray-600);
    font-size: 0.875rem;
}

.about-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-badge-image {
    height: 5rem;
    width: auto;
}

.about-image-wrapper {
    position: relative;
    order: 1;
}

@media (min-width: 1024px) {
    .about-image-wrapper {
        order: 2;
    }
}

.about-image {
    border-radius: 8px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    width: 100%;
}

.about-image-badge {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: var(--dark-green);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: none;
}

@media (min-width: 768px) {
    .about-image-badge {
        display: block;
    }
}

.about-image-badge-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--gold);
}

.about-image-badge-text {
    font-size: 0.875rem;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 5rem 0;
    background-color: var(--dark-green);
}

.contact-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    color: var(--white);
}

.contact-description {
    color: var(--gray-300);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-detail svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.contact-detail span {
    color: var(--white);
}

.contact-recruiter {
    display: flex;
    gap: 1rem;
}

.recruiter-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
}

.recruiter-title {
    color: var(--white);
    font-weight: 600;
}

.recruiter-description {
    color: var(--gray-300);
    font-size: 0.875rem;
}

.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

/* Form Success/Error States */
.form-success,
.form-error {
    text-align: center;
    padding: 2rem 0;
}

.success-icon,
.error-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon {
    background-color: #dcfce7;
}

.success-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #16a34a;
}

.error-icon {
    background-color: #fee2e2;
}

.error-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #dc2626;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 0.75rem;
}

.error-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #b91c1c;
    margin-bottom: 0.75rem;
}

.success-description,
.error-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

/* Form Styles */
.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-label {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}

.form-label svg {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
    color: var(--dark-green);
}

.required {
    color: #ef4444;
    margin-left: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    background-color: var(--white);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--dark-green);
    box-shadow: 0 0 0 3px rgba(1, 68, 33, 0.1);
}

.form-input.error,
.form-select.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

.form-textarea {
    resize: none;
}

.form-error-text {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.radio-group {
    display: flex;
    gap: 1.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.radio-input {
    width: 1rem;
    height: 1rem;
    accent-color: var(--dark-green);
}

.radio-label span {
    margin-left: 0.5rem;
    color: var(--gray-700);
}

.submit-btn {
    width: 100%;
    background-color: var(--gold);
    color: var(--dark-green);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn:hover:not(:disabled) {
    background-color: var(--gold-hover);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.spinner {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    animation: spin 1s linear infinite;
}

.spinner-circle {
    stroke-dasharray: 60;
    stroke-dashoffset: 45;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.form-disclaimer {
    color: var(--gray-500);
    font-size: 0.75rem;
    text-align: center;
}

.ghl-placeholder {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--gray-50);
    border-radius: 8px;
    border: 2px dashed var(--gray-300);
    display: none;
}

.ghl-placeholder-text {
    color: var(--gray-500);
    font-size: 0.875rem;
    text-align: center;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--black);
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-info {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .footer-info {
        grid-column: span 1;
    }
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 3.5rem;
    width: auto;
}

.footer-description {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-address {
    color: var(--gray-500);
    font-size: 0.75rem;
    line-height: 1.75;
}

.footer-links {
    padding-top: 0;
}

.footer-heading {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav button {
    color: var(--gray-400);
    font-size: 0.875rem;
    transition: color 0.2s ease;
    text-align: left;
}

.footer-nav button:hover {
    color: var(--white);
}

.footer-apply {
    padding-top: 0;
}

.footer-apply-text {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-cta {
    width: 100%;
    background-color: var(--gold);
    color: var(--dark-green);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
}

.footer-cta:hover {
    background-color: var(--gold-hover);
}

.footer-divider {
    height: 1px;
    background-color: rgba(212, 175, 55, 0.3);
    margin-bottom: 2rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--gray-500);
    font-size: 0.75rem;
}

.footer-eeo {
    color: var(--gray-500);
    font-size: 0.75rem;
    text-align: center;
    max-width: 40rem;
}

@media (min-width: 768px) {
    .footer-eeo {
        text-align: right;
    }
}

/* ===== Responsive Adjustments ===== */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}
