/* ========================================
   CAREERS PAGE - SPECIFIC STYLES
   ======================================== 
   
   This file contains styles ONLY for the Careers page.
   Global styles (navbar, footer, buttons, news carousel, CTA) are in style.css
   
   Sections:
   1. Hero Banner (Figma #5)
   2. Accelerate Your Impact (Figma #4)
   3. Explore Opportunities (Figma #3)
   4. Why SLG (Figma #2)
   5. Benefits Carousel (Figma #1)
   6. Application Form
   
   ======================================== */

/* ========================================
   SECTION 1: HERO BANNER
   Full-viewport hero with Chicago skyline + tech overlay
   ======================================== */
.page-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(1, 26, 56, 0.5) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(1, 26, 56, 0.8) 100%
    );
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2.5rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hero-title {
    font-size: 6rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
    overflow: visible;
}

.title-line-1 {
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
    overflow: visible;
}

.title-line-2 {
    color: #ffffff;
    display: inline-block;
    background-color: #000000;
    padding: 0.5rem 1rem 0.5rem 0;
    margin-left: -0.25rem;
    overflow: visible;
}

.hero-subtitle {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    max-width: 700px;
    margin-top: 1.25rem;
}

/* Hero CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn-hero-outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* ========================================
   SECTION 2: ACCELERATE YOUR IMPACT
   Dark blue background, text left, image right
   ======================================== */
.accelerate-section {
    background-color: #011A38;
    padding: 6rem 1rem;
    overflow: hidden;
}

.accelerate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.accelerate-content {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.accelerate-content.visible {
    opacity: 1;
    transform: translateX(0);
}

.accelerate-heading {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.accelerate-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.75;
}

.accelerate-image {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.accelerate-image.visible {
    opacity: 1;
    transform: translateX(0);
}

.accelerate-img {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

.accelerate-img:hover {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
}

/* Video element in Accelerate section */
.accelerate-video {
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.accelerate-video:hover {
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
}

/* ========================================
   SECTION 3: EXPLORE OPPORTUNITIES
   Dark background with animated orbs
   Three career path cards
   ======================================== */
.opportunities-section {
    position: relative;
    background: #000000;
    padding: 6rem 1rem;
    overflow: hidden;
}

/* Animated Background */
.opportunities-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.opp-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(34, 211, 238, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 211, 238, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 50%, black 40%, transparent 100%);
}

.opp-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.opp-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.3) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: oppOrbFloat1 15s ease-in-out infinite;
}

.opp-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: oppOrbFloat2 18s ease-in-out infinite;
}

@keyframes oppOrbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-50px, 30px) scale(1.1); }
    66% { transform: translate(30px, 50px) scale(0.95); }
}

@keyframes oppOrbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -30px) scale(1.05); }
    66% { transform: translate(-30px, -40px) scale(0.9); }
}

.opportunities-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.opportunities-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.opportunities-title {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 2rem;
}

.opportunities-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    max-width: 960px;
    margin: 0 auto;
}

/* Career Path Cards — Content on top, image below */
.career-paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.career-path-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
}

.career-path-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.career-path-card:nth-child(1) { transition-delay: 0.1s; }
.career-path-card:nth-child(2) { transition-delay: 0.2s; }
.career-path-card:nth-child(3) { transition-delay: 0.3s; }

.career-path-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Content sits at the top of the card */
.career-path-content {
    padding: 1.75rem;
    background: rgba(1, 26, 56, 0.85);
    backdrop-filter: blur(4px);
    position: relative;
    z-index: 2;
}

/* Image fills the remaining space below content */
.career-path-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex: 1;
}

.career-path-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.career-path-card:hover .career-path-image img {
    transform: scale(1.05);
}

.career-path-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, transparent 40%);
}

.career-path-name {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.career-path-card:hover .career-path-name {
    color: #22d3ee;
}

.career-path-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Explore All Careers CTA */
.opportunities-cta {
    text-align: right;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.4s;
}

.opportunities-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-explore-careers {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-explore-careers:hover {
    background: rgba(34, 211, 238, 0.15);
    border-color: #22d3ee;
    color: #22d3ee;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 211, 238, 0.2);
}

/* ========================================
   SECTION 4: WHY SLG
   Dark blue background with 3 image panels
   ======================================== */
.why-slg-section {
    background-color: #011A38;
    padding: 6rem 1rem;
}

.why-slg-heading {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.why-slg-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-slg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

.why-panel {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    cursor: default;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.why-panel.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-panel:nth-child(1) { transition-delay: 0.1s; }
.why-panel:nth-child(2) { transition-delay: 0.2s; }
.why-panel:nth-child(3) { transition-delay: 0.3s; }

.why-panel-image {
    position: absolute;
    inset: 0;
}

.why-panel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.why-panel:hover .why-panel-image img {
    transform: scale(1.05);
}

.why-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
    transition: background 0.4s ease;
}

.why-panel:hover .why-panel-overlay {
    background: linear-gradient(
        to top,
        rgba(1, 26, 56, 0.9) 0%,
        rgba(1, 26, 56, 0.5) 40%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

.why-panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
}

.why-panel-title {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.why-panel:hover .why-panel-title {
    color: #22d3ee;
}

.why-panel-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========================================
   SECTION 5: BENEFITS CAROUSEL
   Dark background, 3x2 card grid per slide
   ======================================== */
.benefits-section {
    background-color: #010e1f;
    padding: 6rem 1rem;
    overflow: hidden;
}

.benefits-heading {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 3.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.benefits-heading.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefits-carousel-wrapper {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.benefits-carousel {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.benefits-slide {
    display: none;
    animation: benefitsFadeIn 0.5s ease;
}

.benefits-slide.active {
    display: block;
}

@keyframes benefitsFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.benefit-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:hover {
    background: rgba(34, 211, 238, 0.08);
    border-color: rgba(34, 211, 238, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 14px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    transition: all 0.4s ease;
}

.benefit-icon i {
    width: 28px;
    height: 28px;
    color: #22d3ee;
}

/* Custom drawn benefit icons — keeps the same teal box as Lucide icons */
.benefit-custom-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    /* Render white lines to match Lucide stroke style */
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-custom-img {
    opacity: 1;
}

.benefit-card:hover .benefit-icon {
    background: rgba(34, 211, 238, 0.2);
    border-color: rgba(34, 211, 238, 0.5);
    transform: scale(1.1);
}

.benefit-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.benefit-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Arrows */
.benefits-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.benefits-arrow:hover {
    background: rgba(34, 211, 238, 0.15);
    border-color: #22d3ee;
    color: #22d3ee;
}

.benefits-arrow i {
    width: 20px;
    height: 20px;
}

/* Benefits Indicators */
.benefits-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #22d3ee;
    border-color: #22d3ee;
}

.indicator:hover {
    border-color: #22d3ee;
}

/* ========================================
   SECTION 6: APPLICATION FORM
   Dark navy background with glassmorphism form
   ======================================== */
.application-section {
    background-color: #011A38;
    padding: 6rem 1rem;
}

.application-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.application-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.application-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.application-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #22d3ee;
    margin-bottom: 1rem;
}

.application-title {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 1rem;
}

.application-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Form Styling */
.application-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-section-label {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #22d3ee;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

.form-section-label:first-child {
    margin-top: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.required {
    color: #22d3ee;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #22d3ee;
    background: rgba(34, 211, 238, 0.06);
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* File Upload Area */
.file-upload-area {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: #22d3ee;
    background: rgba(34, 211, 238, 0.05);
}

.file-upload-content {
    pointer-events: none;
}

.upload-icon {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.upload-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.upload-browse {
    color: #22d3ee;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.upload-hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

.file-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

/* File Selected State */
.file-selected {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(34, 211, 238, 0.1);
    border-radius: 8px;
    margin-top: 1rem;
}

.file-selected i:first-child {
    width: 20px;
    height: 20px;
    color: #22d3ee;
    flex-shrink: 0;
}

.file-selected span {
    flex: 1;
    font-size: 0.9rem;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.file-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.file-remove:hover {
    color: #ef4444;
}

.file-remove i {
    width: 18px;
    height: 18px;
}

/* Submit Button */
.btn-submit-application {
    display: block;
    width: 100%;
    padding: 1.125rem;
    background: linear-gradient(135deg, #22d3ee 0%, #0ea5e9 100%);
    border: none;
    border-radius: 10px;
    color: #011A38;
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-submit-application:hover {
    background: linear-gradient(135deg, #67e8f9 0%, #22d3ee 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3);
}

.btn-submit-application:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Messages */
.form-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.success-message {
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.success-message i {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

.error-message {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.error-message i {
    width: 20px;
    height: 20px;
    color: #ef4444;
    flex-shrink: 0;
}

/* ========================================
   CTA SECTION (from global style.css)
   Adding overrides if needed
   ======================================== */
.cta-section {
    padding: 6rem 2rem;
    background-color: #e8e8e8;
}

.cta-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.cta-heading {
    font-family: 'League Gothic', 'Impact', sans-serif;
    font-size: 6rem;
    font-weight: 400;
    color: #011A38;
    text-transform: lowercase;
    line-height: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

/* ========================================
   INLINE SEARCH BAR (Expandable)
   Duplicated from mission-style for standalone usage
   ======================================== */
.inline-search-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
}

.inline-search-input {
    width: 0;
    opacity: 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #ffffff;
    font-size: 1rem;
    padding: 0.5rem 0;
    outline: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.inline-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.search-icon-btn {
    background: none;
    border: none;
    color: #d1d5db;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.search-icon-btn i {
    width: 1.25rem;
    height: 1.25rem;
    transition: color 0.3s ease;
}

.search-icon-btn:hover i {
    color: #22d3ee;
}

.inline-search-container.expanded .inline-search-input {
    width: 180px;
    opacity: 1;
    border-bottom-color: #22d3ee;
    padding-right: 0.5rem;
    pointer-events: auto;
    margin-right: 0.5rem;
}

.inline-search-container.expanded .search-icon-btn {
    transform: translateX(-10px);
}

.inline-search-container.expanded .search-icon-btn i {
    color: #22d3ee;
}

.nav-links.search-active > a,
.nav-links.search-active > .spacer,
.nav-links.search-active > .btn-get-started {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links.search-active .inline-search-container {
    opacity: 1;
    pointer-events: auto;
}

.nav-links.search-active .inline-search-container.expanded .inline-search-input {
    width: 320px;
}

.nav-links > a,
.nav-links > .spacer,
.nav-links > .btn-get-started {
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                color 0.2s ease;
}

@media (max-width: 767px) {
    .inline-search-container {
        display: none;
    }
}

/* Footer Logo Image */
.footer-logo-image {
    height: 40px;
    width: 320px;
    display: block;
    transition: opacity 0.2s ease;
}

.footer-logo-image:hover {
    opacity: 0.8;
}

.footer-logo a {
    display: inline-block;
}

/* ========================================
   RESPONSIVE: LARGE DESKTOP (1440px+)
   ======================================== */
@media (min-width: 1440px) {
    .hero-title {
        font-size: 7rem;
    }
    
    .accelerate-heading {
        font-size: 4.5rem;
    }
    
    .opportunities-title {
        font-size: 5rem;
    }
    
    .why-slg-heading {
        font-size: 5rem;
    }
    
    .benefits-heading {
        font-size: 5rem;
    }
    
    .cta-heading {
        font-size: 7rem;
    }
}

/* ========================================
   RESPONSIVE: TABLET (768px - 1023px)
   ======================================== */
@media (max-width: 1023px) {
    .accelerate-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .career-paths-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .career-paths-grid .career-path-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .why-slg-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-panel {
        height: 350px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RESPONSIVE: MOBILE (767px and below)
   ======================================== */
@media (max-width: 767px) {
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
    }
    
    .title-line-1 {
        margin-bottom: 0.5rem;
    }
    
    .title-line-2 {
        padding: 0.4rem 0.5rem 0.4rem 0;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content-wrapper {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .btn-hero-outline {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    /* Accelerate */
    .accelerate-section {
        padding: 4rem 1rem;
    }
    
    .accelerate-heading {
        font-size: 2.5rem;
    }
    
    .accelerate-text {
        font-size: 1rem;
    }
    
    /* Opportunities */
    .opportunities-section {
        padding: 4rem 1rem;
    }
    
    .opportunities-title {
        font-size: 2.5rem;
    }
    
    .opportunities-subtitle {
        font-size: 0.95rem;
    }
    
    .career-paths-grid {
        grid-template-columns: 1fr;
    }
    
    .career-paths-grid .career-path-card:nth-child(3) {
        max-width: 100%;
    }
    
    .career-path-image {
        height: 200px;
    }
    
    /* Why SLG */
    .why-slg-section {
        padding: 4rem 1rem;
    }
    
    .why-slg-heading {
        font-size: 2.5rem;
    }
    
    .why-panel {
        height: 300px;
    }
    
    .why-panel-title {
        font-size: 1.5rem;
    }
    
    /* Benefits */
    .benefits-section {
        padding: 4rem 1rem;
    }
    
    .benefits-heading {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.25rem 1rem;
    }
    
    .benefit-name {
        font-size: 0.875rem;
    }
    
    .benefits-arrow {
        width: 40px;
        height: 40px;
    }
    
    /* Application */
    .application-section {
        padding: 4rem 1rem;
    }
    
    .application-title {
        font-size: 2.5rem;
    }
    
    .application-form {
        padding: 2rem 1.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* CTA */
    .cta-section {
        padding: 4rem 1rem;
    }
    
    .cta-heading {
        font-size: 4rem;
    }
    
    .cta-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    /* Mobile logo sizing */
    .logo img,
    .footer-logo-image {
        height: 28px !important;
        width: auto;
    }
}

/* ========================================
   RESPONSIVE: SMALL MOBILE (480px and below)
   ======================================== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .btn-hero-outline {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
    }
    
    .accelerate-heading {
        font-size: 2rem;
    }
    
    .opportunities-title {
        font-size: 2rem;
    }
    
    .why-slg-heading {
        font-size: 2rem;
    }
    
    .why-panel {
        height: 260px;
    }
    
    .why-panel-title {
        font-size: 1.25rem;
    }
    
    .benefits-heading {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .application-title {
        font-size: 2rem;
    }
    
    .application-form {
        padding: 1.5rem 1rem;
    }
    
    .cta-heading {
        font-size: 3rem;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
}