/* ==========================================================================
   DESIGN SYSTEM VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #C40000;
    --color-primary-hover: #A30000;
    --color-secondary: #E98A83;
    --color-light-accent: #FDE8E7;
    --color-bg: #FAFAFA;
    --color-white: #FFFFFF;
    --color-text: #222222;
    --color-muted: #777777;
    --color-border: #E5E5E5;
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Border Radius System */
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 999px;

    /* Spacing System (8px Scale) */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    --space-3xl: 80px;
    --space-4xl: 120px;

    /* Shadow System */
    --shadow-subtle: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 16px 32px rgba(0, 0, 0, 0.12);
    --shadow-focus: 0 0 0 4px rgba(196, 0, 0, 0.15);

    /* Transition Rules */
    --transition-speed: 300ms;
    --transition-ease: ease-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-main);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-speed) var(--transition-ease);
}

/* ==========================================================================
   LAYOUT CONTAINERS & TYPOGRAPHY
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
}

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

p {
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-muted);
}

.text-highlight {
    color: var(--color-primary);
}

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

/* ==========================================================================
   COMPONENT STYLES: BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform var(--transition-speed) var(--transition-ease),
                background-color var(--transition-speed) var(--transition-ease),
                border-color var(--transition-speed) var(--transition-ease),
                box-shadow var(--transition-speed) var(--transition-ease),
                color var(--transition-speed) var(--transition-ease);
}

.btn:active {
    transform: translateY(1px);
}

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

.btn-primary:hover {
    background-color: var(--color-primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(196, 0, 0, 0.25);
}

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

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(196, 0, 0, 0.15);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ==========================================================================
   COMPONENT STYLES: NAVBAR
   ========================================================================== */
.navbar-header {
    position: sticky;
    top: 0;
    background-color: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: background-color var(--transition-speed) var(--transition-ease);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--color-text);
}

.logo-accent {
    color: var(--color-primary);
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    transform-origin: bottom right;
    transition: transform 0.25s var(--transition-ease);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

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

.nav-actions {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

/* Burger Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-btn .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-text);
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-3xl);
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    max-width: 800px;
    margin-bottom: var(--space-sm);
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.hero-actions {
    margin-bottom: var(--space-xl);
}

.hero-image-wrapper {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.hero-image {
    width: 100%;
    max-height: 500px;
    transition: transform var(--transition-speed) var(--transition-ease);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.03);
}

/* ==========================================================================
   3. FINANCIAL CHALLENGE BANNER
   ========================================================================== */
.challenge-banner {
    background-color: var(--color-primary);
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    color: var(--color-white);
    text-align: center;
}

.challenge-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.challenge-title {
    font-size: 2rem;
    margin-bottom: var(--space-sm);
}

.challenge-divider {
    width: 80px;
    height: 3px;
    background-color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.challenge-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.services-section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    font-weight: 700;
    display: inline-block;
    margin-bottom: var(--space-xs);
}

.section-title {
    font-size: 2.25rem;
    color: var(--color-text);
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4xl);
}

.service-row {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.service-desc {
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.service-link {
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    transition: transform var(--transition-speed) var(--transition-ease);
}

.service-link:hover {
    transform: translateX(4px);
    color: var(--color-primary-hover);
}

.service-image-wrapper {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.service-image {
    width: 100%;
    height: 320px;
    transition: transform var(--transition-speed) var(--transition-ease);
}

.service-image-wrapper:hover .service-image {
    transform: scale(1.05);
}

/* ==========================================================================
   5. IMAGE CTA BANNER
   ========================================================================== */
.image-cta-banner {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-cta-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.image-cta-bg {
    width: 100%;
    height: 100%;
    filter: brightness(0.4);
}

.image-cta-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--space-md);
}

.image-cta-container {
    max-width: 800px;
}

.image-cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
}

.image-cta-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

/* ==========================================================================
   6. FEATURES ICON GRID
   ========================================================================== */
.features-section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
    transition: transform var(--transition-speed) var(--transition-ease),
                box-shadow var(--transition-speed) var(--transition-ease);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background-color: var(--color-light-accent);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.feature-svg {
    width: 28px;
    height: 28px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.feature-text {
    font-size: 0.9rem;
}

/* ==========================================================================
   7. ADVISOR PROFILE SECTION
   ========================================================================== */
.profile-section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.profile-container {
    display: flex;
    align-items: center;
    gap: var(--space-2xl);
}

.profile-text-content {
    flex: 1.2;
}

.profile-main-title {
    font-size: 2.25rem;
    margin-bottom: var(--space-md);
}

.profile-description {
    font-size: 1.05rem;
    margin-bottom: var(--space-md);
}

.profile-bullets {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.profile-bullet-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.bullet-check {
    color: var(--color-primary);
    font-weight: 800;
}

.profile-image-container {
    flex: 0.8;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.profile-image-file {
    width: 100%;
    max-height: 480px;
    transition: transform var(--transition-speed) var(--transition-ease);
}

.profile-image-container:hover .profile-image-file {
    transform: scale(1.03);
}

/* ==========================================================================
   8. EDUCATIONAL CONTENT SECTION
   ========================================================================== */
.educational-section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.educational-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.educational-title {
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
}

.educational-divider {
    width: 80px;
    height: 3px;
    background-color: var(--color-primary);
    margin-bottom: var(--space-md);
}

.educational-intro {
    max-width: 800px;
    font-size: 1.10rem;
    margin-bottom: var(--space-2xl);
}

.educational-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    width: 100%;
}

.edu-card {
    background-color: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-speed) var(--transition-ease),
                box-shadow var(--transition-speed) var(--transition-ease);
}

.edu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.edu-card-num {
    font-size: 3rem;
    color: var(--color-light-accent);
    position: absolute;
    top: var(--space-xs);
    right: var(--space-md);
    font-weight: 800;
    line-height: 1;
}

.edu-card-title {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
    color: var(--color-text);
    position: relative;
    z-index: 2;
}

.edu-card-text {
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   9. EDUCATIONAL CTA BANNER
   ========================================================================== */
.edu-cta-section {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.edu-cta-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.edu-cta-bg {
    width: 100%;
    height: 100%;
    filter: brightness(0.4);
}

.edu-cta-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: var(--space-md);
}

.edu-cta-container {
    max-width: 800px;
}

.edu-cta-title {
    font-size: 2.25rem;
    margin-bottom: var(--space-sm);
}

.edu-cta-subtitle {
    font-size: 1.10rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-lg);
}

/* ==========================================================================
   10. CAREER OPPORTUNITY SECTION
   ========================================================================== */
.career-section {
    background-color: var(--color-light-accent);
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    text-align: center;
}

.career-container {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.career-title {
    font-size: 2.25rem;
    color: var(--color-primary);
    margin-bottom: var(--space-sm);
}

.career-text {
    color: var(--color-text);
    font-size: 1.10rem;
    margin-bottom: var(--space-lg);
}







/* ==========================================================================
   11. CONTACT FORM SECTION
   ========================================================================== */
.contact-section {
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-4xl);
}

.contact-container {
    max-width: 700px;
}

.contact-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.contact-title {
    font-size: 2.25rem;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.contact-subtitle {
    font-size: 1.05rem;
}

.contact-form {
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-subtle);
    position: relative;
    overflow: hidden;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

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

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-family: var(--font-main);
    font-size: 0.95rem;
    background-color: var(--color-bg);
    color: var(--color-text);
    transition: border-color var(--transition-speed) var(--transition-ease),
                box-shadow var(--transition-speed) var(--transition-ease),
                background-color var(--transition-speed) var(--transition-ease);
}

.form-input::placeholder {
    color: #999999;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background-color: var(--color-white);
    box-shadow: var(--shadow-focus);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

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

.form-submit-wrapper {
    margin-top: var(--space-lg);
    display: flex;
    justify-content: center;
}

.btn-submit {
    width: 100%;
    max-width: 350px;
}

/* Validation Styling */
.form-error {
    font-size: 0.8rem;
    color: var(--color-primary);
    margin-top: 4px;
    display: none;
    font-weight: 500;
}

.form-input.invalid {
    border-color: var(--color-primary);
    background-color: #FFF6F6;
}

.form-input.invalid:focus {
    box-shadow: 0 0 0 4px rgba(196, 0, 0, 0.1);
}

/* Custom Success State Overlay */
.form-success-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.95);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-success-message.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-pill);
    background-color: var(--color-light-accent);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: var(--space-md);
}

.success-title {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: var(--space-xs);
}

.success-desc {
    font-size: 1rem;
    max-width: 450px;
}




/* ==========================================================================
   12. FOOTER SECTION
   ========================================================================== */
.footer {
    background-color: var(--color-text);
    color: var(--color-white);
    padding-top: var(--space-4xl);
    padding-bottom: var(--space-xl);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: var(--space-xl);
}

.footer-brand-column {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
    max-width: 320px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-contacts a:hover {
    color: var(--color-secondary);
}

.footer-links-grid {
    flex: 1.8;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    color: var(--color-white);
    position: relative;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.footer-link-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-link-item:hover {
    color: var(--color-white);
    padding-left: 2px;
}

.footer-bottom {
    margin-top: var(--space-3xl);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: var(--space-md);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
    display: flex;
    gap: var(--space-sm);
}

.social-icon-link {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-speed) var(--transition-ease);
}

.social-icon-link:hover {
    color: var(--color-white);
}

.social-svg {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   SCROLL REVEAL STYLING
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVENESS (Breakpoints: 992px & 768px)
   ========================================================================== */

/* Tablet Breakpoint */
@media (max-width: 992px) {
    .primary-nav {
        gap: var(--space-md);
    }
    
    .nav-links {
        gap: var(--space-sm);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-list {
        gap: var(--space-3xl);
    }

    .service-row, 
    .service-row.reverse {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }

    .service-image-wrapper {
        width: 100%;
    }

    .service-image {
        height: 260px;
    }

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

    .profile-container {
        flex-direction: column;
        text-align: center;
        gap: var(--space-xl);
    }

    .profile-bullets {
        display: inline-block;
        text-align: left;
    }

    .educational-features {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .footer-container {
        flex-direction: column;
        gap: var(--space-2xl);
    }
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    /* Mobile Menu Drawer Toggle */
    .mobile-menu-btn {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: var(--space-2xl);
        gap: var(--space-xl);
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border-top: 1px solid var(--color-border);
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    }

    .primary-nav.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        padding-left: var(--space-md);
        padding-right: var(--space-md);
        gap: var(--space-sm);
    }

    .nav-actions .btn {
        width: 100%;
    }

    /* Burger Menu Active Animation */
    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image {
        max-height: 300px;
    }

    .challenge-title {
        font-size: 1.5rem;
    }

    .challenge-text {
        font-size: 0.95rem;
    }

    .image-cta-banner {
        height: 350px;
    }

    .image-cta-title {
        font-size: 1.75rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .edu-cta-title {
        font-size: 1.75rem;
    }

    .edu-cta-section {
        height: 350px;
    }

    .career-title {
        font-size: 1.75rem;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom-flex {
        flex-direction: column-reverse;
        text-align: center;
    }
}
