/* ===============================================
   UAGC Homepage Styles
   =============================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* UAGC Brand Colors */
    --arizona-red: #AB0520;
    --arizona-blue: #0C234B;
    --highlight-orange: #EF9600;
    --highlight-sky: #81D3EB;
    --highlight-blue: #0076A8;
    --highlight-purple: #621244;
    --cta-gold: #E8A93E;
    --river: #007D8A;
    --color-text: #53565A;
    --color-text-light: #98A4AE;
    --color-bg: #FFFFFF;
    --color-bg-light: #F5F5F5;
    --color-border: #D0D0CE;
    
    /* Spacing */
    --container-width: 100%;
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;
    
    /* Typography */
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ===============================================
   Header
   =============================================== */

.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
}

.header-utilities {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-sm) 0;
    font-size: 0.875rem;
}

.utility-link {
    color: var(--arizona-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.utility-link:hover {
    color: var(--arizona-red);
}

/* Request Info button - Golden/amber per live site */
.utility-link-apply {
    background: #E8A93E;
    color: var(--arizona-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.utility-link-apply:hover {
    background: #D4952F;
    color: var(--arizona-blue);
    transform: translateY(-1px);
}

.header-main {
    padding: var(--spacing-md) 0;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

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

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

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background-color: var(--arizona-blue);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-xl);
    align-items: center;
}

.nav-link {
    color: var(--arizona-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--arizona-red);
}

.nav-cta {
    display: flex;
    gap: var(--spacing-md);
}

.btn-primary-outline {
    background: #E8A93E;
    color: var(--arizona-blue);
    border: none;
    padding: 12px 32px;
    font-size: 0.9375rem;
    line-height: 1.5;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.btn-primary-outline:hover {
    background: #D4952F;
    color: var(--arizona-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 169, 62, 0.3);
}

/* ===============================================
   Hero Section - UAGC Style (Full-Width Layout)
   =============================================== */

.hero-section {
    position: relative;
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    overflow: hidden;
    background: var(--arizona-blue);
}

/* Secondary Navigation in Hero */
.hero-subnav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(12, 35, 75, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.subnav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.subnav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.subnav-links a:hover {
    opacity: 0.75;
}

/* Hero content overlays full-width image */
.hero-content {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-self: stretch;
    padding: 80px 60px 80px 80px;
    background: linear-gradient(to top, rgba(12, 35, 75, 0.92), rgba(12, 35, 75, 0.4) 50%, transparent);
    color: white;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.3;
}

/* Hero image - full width spanning entire area */
.hero-background {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    min-height: 600px;
    object-fit: cover;
    object-position: center center;
}

@media (min-width: 768px) {
    .overlay {
        background-color: rgba(12, 35, 75, 0.3);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100%;
        z-index: 2;
    }
    
    .hero-background img {
        position: relative;
        z-index: 1;
    }
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--cta-gold);
    color: var(--arizona-blue);
    border-color: var(--cta-gold);
}

.btn-primary:hover {
    background: #D4952F;
    border-color: #D4952F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 169, 62, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--arizona-blue);
}

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.125rem;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-3xl);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--highlight-orange);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ===============================================
   RFI Section - Primary (After Hero) - UAGC Style
   =============================================== */

.rfi-section-primary {
    background: #FFFFFF;
    padding: 40px 20px 60px;
    margin-top: 1px;
    position: relative;
    z-index: 10;
}

.rfi-section-primary .container {
    max-width: 1000px;
}

.rfi-section-primary h2 {
    font-size: 2.125rem;
    font-weight: 700;
    color: var(--arizona-red);
    text-align: center;
    line-height: 1.3;
    margin-bottom: 24px;
}

.rfi-section-primary .rfi-container {
    background: transparent;
    padding: 0;
    min-height: auto;
}

.rfi-section-primary .rfi-form {
    padding: 20px;
    box-shadow: none;
    border: none;
}

/* Hide progress indicator in primary section for cleaner look */
.rfi-section-primary .progress-container {
    display: none;
}

/* Step 1 form fields in a row */
.rfi-section-primary .form-step[data-step="1"] .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 0;
}

/* Three column layout for area + level + program */
.rfi-section-primary .form-step[data-step="1"] .form-row-three {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.rfi-section-primary .form-step[data-step="1"] > .form-group {
    margin-bottom: 0;
}

.rfi-section-primary .form-group {
    margin-bottom: 0;
}

/* Center and style the Next button */
.rfi-section-primary .btn-next {
    background: var(--cta-gold);
    color: var(--arizona-blue);
    border: none;
    padding: 16px 56px;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 300px;
    margin: 48px auto 0;
}

.rfi-section-primary .btn-next:hover {
    background: #D4952F;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(232, 169, 62, 0.3);
}

/* Form labels and inputs */
.rfi-section-primary .form-label {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--arizona-blue);
    text-align: left;
    display: block;
    margin-bottom: 12px;
}

.rfi-section-primary .form-select,
.rfi-section-primary .form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
}

.rfi-section-primary .form-select:hover:not(:disabled),
.rfi-section-primary .form-input:hover {
    border-color: #b8b8b8;
}

.rfi-section-primary .form-select:focus,
.rfi-section-primary .form-input:focus {
    border-color: #E67E22;
    outline: none;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.rfi-section-primary .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='%23AB0520' d='M4.5 6L8 9.5L11.5 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 44px;
    cursor: pointer;
}

.rfi-section-primary .form-select:disabled {
    background-color: #f9fafb;
    color: #9ca3af;
    cursor: not-allowed;
}

/* Hide help text and benefits in primary section */
.rfi-section-primary .form-help {
    display: none;
}

/* Show help text for Education Level field - hidden by default, shown via JS */
.rfi-section-primary #educationLevelHelp {
    display: none;
    font-size: 0.85rem;
    color: #374151;
    margin-top: 10px;
    padding: 10px 12px;
    background-color: #f0f9ff;
    border-left: 4px solid #0C234B;
    border-radius: 0 4px 4px 0;
}

.rfi-section-primary #educationLevelHelp.visible {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.rfi-section-primary .rfi-info,
.rfi-section-primary .rfi-benefits,
.rfi-section-primary .rfi-contact {
    display: none;
}

/* Ensure error messages have proper spacing */
.rfi-section-primary .form-error {
    margin-top: 8px;
    font-size: 0.875rem;
}

/* Tablet responsive for RFI */
@media (max-width: 968px) {
    .rfi-section-primary {
        margin-top: 0;
        padding: 40px 20px 50px;
    }
}

/* Mobile responsive for primary RFI */
@media (max-width: 768px) {
    .rfi-section-primary {
        margin-top: 0;
        padding: 30px 0 40px;
    }
    
    .rfi-section-primary .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .rfi-section-primary h2 {
        font-size: 1.625rem;
        margin-bottom: 20px;
    }
    
    .rfi-section-primary .rfi-form {
        padding: 16px;
    }
    
    .rfi-section-primary .form-step[data-step="1"] .form-row,
    .rfi-section-primary .form-step[data-step="1"] .form-row-three {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .rfi-section-primary .btn-next {
        width: 100%;
        justify-content: center;
        margin-top: 36px;
        padding: 14px 40px;
    }
    
    .rfi-section-primary .form-label {
        font-size: 1rem;
    }
}

/* ===============================================
   Wildcat Community Section
   =============================================== */

.wildcat-community-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8e8e7 0%, #f5f5f4 100%);
    position: relative;
    overflow: hidden;
}

.wildcat-community-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(171, 5, 32, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.wildcat-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--arizona-blue);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 28px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.wildcat-intro {
    font-size: 1.125rem;
    color: #4a5568;
    text-align: center;
    line-height: 1.8;
    margin-bottom: 64px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.wildcat-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 40px;
    margin-top: 48px;
    position: relative;
    z-index: 1;
}

.wildcat-feature-card {
    background: transparent;
    padding: 0;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.wildcat-feature-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(171, 5, 32, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.wildcat-feature-card:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.5);
}

.wildcat-feature-card:hover {
    transform: translateY(-6px);
}

.wildcat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    height: 64px;
    position: relative;
}

.wildcat-icon svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 2px 8px rgba(171, 5, 32, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.wildcat-feature-card:hover .wildcat-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 12px rgba(171, 5, 32, 0.25));
}

.wildcat-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--arizona-blue);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.wildcat-feature-card:hover .wildcat-feature-title {
    color: var(--arizona-red);
}

.wildcat-feature-desc {
    font-size: 1rem;
    color: #5a6670;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Responsive for Wildcat Community Section */
@media (max-width: 968px) {
    .wildcat-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 56px 32px;
    }
    
    .wildcat-title {
        font-size: 2rem;
    }
    
    .wildcat-intro {
        font-size: 1.0625rem;
        margin-bottom: 56px;
    }
}

@media (max-width: 640px) {
    .wildcat-community-section {
        padding: 60px 0;
    }
    
    .wildcat-features-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .wildcat-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }
    
    .wildcat-intro {
        font-size: 1rem;
        margin-bottom: 48px;
        line-height: 1.7;
    }
}

/* ===============================================
   Why UAGC Section
   =============================================== */

.why-uagc-section {
    padding: var(--spacing-4xl) 0;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--arizona-blue);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.benefit-card {
    text-align: center;
    padding: var(--spacing-xl);
    border-radius: 1rem;
    transition: var(--transition);
    background: white;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(12, 35, 75, 0.15);
}

.benefit-icon {
    margin-bottom: var(--spacing-md);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--arizona-blue);
    margin-bottom: var(--spacing-sm);
}

.benefit-description {
    color: var(--color-text);
    line-height: 1.6;
}

/* ===============================================
   Programs Section
   =============================================== */

.programs-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-2xl) 0;
}

.program-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-top: 4px solid var(--arizona-red);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.program-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--arizona-blue);
    margin-bottom: var(--spacing-sm);
}

.program-description {
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    min-height: 60px;
}

.program-link {
    color: var(--arizona-red);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.program-link:hover {
    color: var(--arizona-blue);
}

.programs-cta {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

/* ===============================================
   RFI Section
   =============================================== */

.rfi-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--arizona-blue) 0%, #1a3d6b 100%);
}

.rfi-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.rfi-info {
    color: white;
    padding: var(--spacing-xl) 0;
}

.rfi-info-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.rfi-info-subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

.rfi-benefits {
    list-style: none;
    margin-bottom: var(--spacing-2xl);
}

.rfi-benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.check-icon {
    flex-shrink: 0;
}

.rfi-contact {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-label {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
    opacity: 0.9;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    margin-bottom: var(--spacing-xs);
}

.contact-hours {
    font-size: 0.875rem;
    opacity: 0.8;
}

.rfi-form-container {
    background: white;
    border-radius: 1rem;
    padding: var(--spacing-xl);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.rfi-container .step-title {
    font-size: 1.5rem;
}

/* ===============================================
   Testimonials Section
   =============================================== */

.testimonials-section {
    padding: var(--spacing-4xl) 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.testimonial-card {
    background: var(--color-bg-light);
    padding: var(--spacing-xl);
    border-radius: 1rem;
    border-left: 4px solid var(--arizona-red);
}

.testimonial-stars {
    color: var(--highlight-orange);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: var(--arizona-blue);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

/* ===============================================
   Facts Section
   =============================================== */

.facts-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(135deg, var(--arizona-blue) 0%, #1a3d6b 100%);
    color: white;
}

.facts-section .section-title {
    color: white;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.fact-item {
    text-align: center;
    padding: var(--spacing-xl);
}

.fact-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--highlight-orange);
    margin-bottom: var(--spacing-sm);
}

.fact-label {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* ===============================================
   Footer
   =============================================== */

.main-footer {
    background-color: var(--arizona-blue);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--highlight-orange);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-social {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--arizona-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--spacing-xl);
}

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

.footer-legal-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-accreditation {
    font-size: 0.75rem;
    opacity: 0.7;
    max-width: 800px;
}

/* ===============================================
   A Community of Diverse Learners Section
   =============================================== */

.diverse-learners-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7F7F7 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Elements */
.diverse-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
}

.diverse-decoration-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(171, 5, 32, 0.06) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.diverse-decoration-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(12, 35, 75, 0.04) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
}

.diverse-learners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Text Content */
.diverse-learners-text {
    padding-right: var(--spacing-xl);
}

/* Eyebrow Label */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
    padding: 0.5rem 1rem;
    background: rgba(171, 5, 32, 0.08);
    border-radius: 50px;
    color: var(--arizona-red);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.section-eyebrow:hover {
    background: rgba(171, 5, 32, 0.12);
    transform: translateX(4px);
}

.section-eyebrow svg {
    flex-shrink: 0;
}

/* Title */
.diverse-learners-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--arizona-blue);
    margin-bottom: var(--spacing-lg);
    line-height: 1.15;
    position: relative;
}

.diverse-learners-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--arizona-red), var(--highlight-orange));
    margin-top: var(--spacing-md);
    border-radius: 2px;
}

/* Description */
.diverse-learners-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--spacing-xl);
}

/* Stats */
.diverse-stats {
    display: flex;
    gap: var(--spacing-2xl);
    padding-top: var(--spacing-lg);
    border-top: 2px solid #E5E5E5;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--arizona-red);
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Section */
.diverse-learners-video {
    position: relative;
}

.video-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
    transition: all 0.4s ease;
}

.video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* Video Badge */
.video-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--arizona-blue);
    z-index: 2;
    transition: all 0.3s ease;
}

.video-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    color: var(--arizona-red);
}

.video-badge svg {
    color: var(--arizona-red);
}

/* ===============================================
   Sticky Bottom CTA Bar
   =============================================== */

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--arizona-blue);
    padding: 12px 20px;
    text-align: center;
}

.sticky-cta-bar .btn-cta {
    background: var(--cta-gold);
    color: var(--arizona-blue);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    max-width: 600px;
    width: 90%;
    justify-content: center;
}

.sticky-cta-bar .btn-cta:hover {
    background: #D4952F;
    transform: translateY(-1px);
}

/* ===============================================
   Responsive Design
   =============================================== */

@media (max-width: 1024px) {
    .rfi-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 968px) {
    /* Hero becomes stacked on tablet/mobile */
    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-content {
        padding: 60px 40px;
        order: 2;
    }
    
    .hero-background {
        order: 1;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    /* Diverse Learners Section - Tablet */
    .diverse-learners-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-3xl);
    }
    
    .diverse-learners-text {
        padding-right: 0;
    }
    
    .diverse-learners-title {
        font-size: 2.25rem;
    }
    
    .diverse-stats {
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-subnav {
        display: none;
    }
    
    .hero-content {
        padding: 50px 24px;
    }
    
    .hero-title {
        font-size: 2.25rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-background {
        min-height: 300px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: var(--spacing-xl);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .programs-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    /* Diverse Learners Section - Mobile */
    .section-eyebrow {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-eyebrow svg {
        width: 18px;
        height: 18px;
    }
    
    .diverse-learners-title {
        font-size: 1.75rem;
    }
    
    .diverse-learners-title::after {
        width: 40px;
        height: 3px;
    }
    
    .diverse-learners-description {
        font-size: 1rem;
    }
    
    .diverse-stats {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .video-badge {
        bottom: -15px;
        right: 15px;
        padding: 0.6rem 1rem;
        font-size: 0.75rem;
    }
    
    .video-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .diverse-decoration-1,
    .diverse-decoration-2 {
        display: none;
    }
}
