/* ========================================
   FINANCIAL AID - COLOR PALETTE
   "Supportive Growth" Theme
   Warm Teal + Soft Gold + Comforting Sage
   ======================================== */
:root {
    --fa-deep: #1a4a4a;
    --fa-teal: #2d7a7a;
    --fa-teal-light: #4a9e9e;
    --fa-sage: #7cb69d;
    --fa-mint: #a8d5c2;
    --fa-gold: #d4a853;
    --fa-gold-light: #e8c87d;
    --fa-cream: #faf9f6;
    --fa-warm-white: #fffdfb;
    --fa-sand: #f5f0e8;
    --fa-text: #1e2f2f;
    --fa-text-light: #5a6b6b;
    --fa-border: rgba(45, 122, 122, 0.12);
    --fa-gradient-hero: linear-gradient(135deg, #1a4a4a 0%, #2d7a7a 50%, #4a9e9e 100%);
    --fa-gradient-teal: linear-gradient(135deg, #2d7a7a 0%, #4a9e9e 100%);
    --fa-gradient-gold: linear-gradient(135deg, #d4a853 0%, #e8c87d 100%);
    --fa-gradient-sage: linear-gradient(135deg, #7cb69d 0%, #a8d5c2 100%);
}

/* ========================================
   HERO SECTION - FINANCIAL AID
   ======================================== */
.fa-hero {
    position: relative;
    min-height: 580px;
    background: var(--fa-gradient-hero);
    padding: 140px 60px 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Radial glow overlays */
.fa-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.18) 0%, transparent 60%);
    pointer-events: none;
    animation: faGlow 10s ease-in-out infinite;
}
.fa-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 182, 157, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

@keyframes faGlow {
    0%, 100% { transform: scale(1); opacity: 0.18; }
    50% { transform: scale(1.15); opacity: 0.25; }
}

/* Subtle grid pattern */
.fa-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 70px 70px;
    pointer-events: none;
}

/* Floating support icons decoration */
.fa-hero-icons {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.fa-float-icon {
    position: absolute;
    opacity: 0.08;
    color: #fff;
}
.fa-float-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}
.fa-float-icon-1 {
    width: 100px; height: 100px;
    top: 18%; right: 25%;
    animation: faFloat 8s ease-in-out infinite;
}
.fa-float-icon-2 {
    width: 70px; height: 70px;
    top: 55%; right: 15%;
    animation: faFloat 10s ease-in-out infinite 1s;
}
.fa-float-icon-3 {
    width: 50px; height: 50px;
    top: 35%; right: 8%;
    animation: faFloat 7s ease-in-out infinite 2s;
}
.fa-float-icon-4 {
    width: 80px; height: 80px;
    top: 70%; right: 35%;
    animation: faFloat 9s ease-in-out infinite 0.5s;
}

@keyframes faFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Hero Container */
.fa-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Eyebrow */
.fa-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.fa-hero-eyebrow-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fa-gradient-gold);
    border-radius: 50%;
}
.fa-hero-eyebrow-icon svg {
    width: 16px; height: 16px;
    stroke: #fff;
}
.fa-hero-eyebrow span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

/* Hero Title */
.fa-hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 24px;
    max-width: 800px;
}
.fa-hero-title .accent {
    background: var(--fa-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.fa-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 650px;
}

/* Hero Body Text */
.fa-hero-body {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 600px;
    margin: 0;
}

/* Hero CTA */
.fa-hero-cta {
    margin-top: 36px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.fa-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.fa-hero-btn svg {
    width: 20px; height: 20px;
}

.fa-btn-gold {
    background: var(--fa-gradient-gold);
    color: var(--fa-deep);
    box-shadow: 0 8px 30px rgba(212, 168, 83, 0.35);
}
.fa-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212, 168, 83, 0.45);
    color: var(--fa-deep);
}

.fa-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}
.fa-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

/* Trust Badge */
.fa-hero-trust {
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: fit-content;
}
.fa-hero-trust-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}
.fa-hero-trust-icon svg {
    width: 28px; height: 28px;
    stroke: var(--fa-gold-light);
}
.fa-hero-trust-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}
.fa-hero-trust-text strong {
    color: #fff;
    display: block;
    margin-bottom: 2px;
}

/* Hero Disclaimer */
.fa-hero-disclaimer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 600px;
    margin-top: 16px;
    padding-left: 16px;
    border-left: 2px solid rgba(212, 168, 83, 0.4);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .fa-hero {
        padding: 120px 24px 70px;
        min-height: 500px;
    }
    .fa-hero-title {
        font-size: 2.2rem;
    }
    .fa-hero-subtitle {
        font-size: 1.05rem;
    }
    .fa-hero-icons {
        display: none;
    }
    .fa-hero-cta {
        flex-direction: column;
    }
    .fa-hero-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ========================================
   SECTION 1: HOW FINANCIAL AID WORKS
   ======================================== */
.fa-process {
    padding: 100px 60px;
    background: var(--fa-cream);
    position: relative;
}

.fa-process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fa-process-header {
    text-align: center;
    margin-bottom: 60px;
}

.fa-section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fa-deep);
    margin: 0 0 16px;
}

.fa-section-subtitle {
    font-size: 1.1rem;
    color: var(--fa-text-light);
    margin: 0;
}

/* Process Grid - 3 Cards */
.fa-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.fa-process-card {
    background: var(--fa-warm-white);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26, 74, 74, 0.06);
    border: 1px solid var(--fa-border);
    transition: all 0.3s ease;
    position: relative;
}

.fa-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 74, 74, 0.12);
}

.fa-process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fa-gradient-teal);
    border-radius: 20px;
    position: relative;
}

.fa-process-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 24px;
    background: var(--fa-gradient-teal);
    opacity: 0.15;
    z-index: -1;
}

.fa-process-icon svg {
    width: 36px;
    height: 36px;
    stroke: #fff;
}

.fa-process-step {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--fa-teal);
    background: rgba(45, 122, 122, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.fa-process-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--fa-deep);
    margin: 0 0 16px;
}

.fa-process-desc {
    font-size: 0.95rem;
    color: var(--fa-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Process Note */
.fa-process-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 32px;
    background: rgba(45, 122, 122, 0.06);
    border-radius: 16px;
    border-left: 4px solid var(--fa-teal);
}

.fa-process-note svg {
    width: 24px;
    height: 24px;
    stroke: var(--fa-teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.fa-process-note p {
    font-size: 0.9rem;
    color: var(--fa-text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Process */
@media (max-width: 992px) {
    .fa-process-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .fa-process {
        padding: 70px 24px;
    }
    .fa-section-title {
        font-size: 2rem;
    }
}


/* ========================================
   SECTION 2: FINANCIAL AID ENQUIRY FORM
   ======================================== */
.fa-enquiry {
    padding: 100px 60px;
    background: var(--fa-warm-white);
    position: relative;
}

.fa-enquiry::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fa-border), transparent);
}

.fa-enquiry-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Left Content */
.fa-enquiry-content {
    position: sticky;
    top: 120px;
}

.fa-enquiry-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(212, 168, 83, 0.12);
    border-radius: 50px;
    margin-bottom: 24px;
}

.fa-enquiry-badge svg {
    width: 18px;
    height: 18px;
    stroke: var(--fa-gold);
}

.fa-enquiry-badge span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fa-gold);
    letter-spacing: 0.5px;
}

.fa-enquiry-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--fa-deep);
    margin: 0 0 20px;
}

.fa-enquiry-desc {
    font-size: 1.05rem;
    color: var(--fa-text-light);
    line-height: 1.8;
    margin: 0 0 32px;
}

/* Features List */
.fa-enquiry-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fa-enquiry-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--fa-cream);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fa-enquiry-feature:hover {
    background: rgba(45, 122, 122, 0.08);
}

.fa-enquiry-feature svg {
    width: 22px;
    height: 22px;
    stroke: var(--fa-teal);
    flex-shrink: 0;
}

.fa-enquiry-feature span {
    font-size: 0.9rem;
    color: var(--fa-text);
    font-weight: 500;
}

/* Form Wrapper */
.fa-enquiry-form-wrapper {
    background: var(--fa-cream);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(26, 74, 74, 0.08);
    border: 1px solid var(--fa-border);
}

.fa-enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.fa-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fa-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--fa-text);
}

.fa-form-group label .required {
    color: #e74c3c;
}

.fa-form-group label .optional {
    font-weight: 400;
    color: var(--fa-text-light);
    font-size: 0.85rem;
}

.fa-form-group input,
.fa-form-group select,
.fa-form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--fa-border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--fa-text);
    background: var(--fa-warm-white);
    transition: all 0.3s ease;
}

.fa-form-group input:focus,
.fa-form-group select:focus,
.fa-form-group textarea:focus {
    outline: none;
    border-color: var(--fa-teal);
    box-shadow: 0 0 0 4px rgba(45, 122, 122, 0.1);
}

.fa-form-group input::placeholder,
.fa-form-group textarea::placeholder {
    color: var(--fa-text-light);
    opacity: 0.6;
}

.fa-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235a6b6b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 48px;
}

.fa-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Consent Checkbox */
.fa-form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(45, 122, 122, 0.04);
    border-radius: 12px;
}

.fa-form-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--fa-teal);
    cursor: pointer;
    flex-shrink: 0;
}

.fa-form-consent label {
    font-size: 0.85rem;
    color: var(--fa-text-light);
    line-height: 1.6;
    cursor: pointer;
}

.fa-form-consent label a {
    color: var(--fa-teal);
    text-decoration: underline;
}

/* Submit Button */
.fa-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--fa-gradient-teal);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(45, 122, 122, 0.3);
}

.fa-form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(45, 122, 122, 0.4);
}

.fa-form-submit svg {
    width: 20px;
    height: 20px;
}

/* Microcopy */
.fa-form-microcopy {
    font-size: 0.8rem;
    color: var(--fa-text-light);
    line-height: 1.7;
    text-align: center;
    margin: 0;
    padding-top: 8px;
    border-top: 1px solid var(--fa-border);
}

/* Responsive Enquiry */
@media (max-width: 992px) {
    .fa-enquiry-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .fa-enquiry-content {
        position: static;
    }
}

@media (max-width: 768px) {
    .fa-enquiry {
        padding: 70px 24px;
    }
    .fa-enquiry-form-wrapper {
        padding: 32px 24px;
    }
    .fa-form-row {
        grid-template-columns: 1fr;
    }
    .fa-enquiry-title {
        font-size: 1.8rem;
    }
}

