/* RocFX About Page Styles - World-Class Design */
/* Matching Home Page Color Palette Exactly */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors - Matching Home Page Exactly */
    --primary-navy: #2c3e50;
    --secondary-navy: #34495e;
    --accent-orange: #f39c12;
    --accent-gold: #e67e22;
    --cream-light: #fef9e7;
    --cream-secondary: #fff8dc;
    --white-primary: #ffffff;
    --gray-light: #f8f9fa;
    --gray-medium: #7f8c8d;
    --gray-dark: #2c3e50;
    --text-dark: #2c3e50;
    --text-medium: #7f8c8d;
    --text-light: #95a5a6;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    --spacing-xxxl: 6rem;
    
    /* Layout */
    --container-max-width: 1200px;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(44, 62, 80, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 62, 80, 0.12);
    --shadow-lg: 0 8px 32px rgba(44, 62, 80, 0.16);
    --shadow-xl: 0 12px 48px rgba(44, 62, 80, 0.20);
    
    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

/* Base Typography */
body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Section Spacing */
section {
    padding: var(--spacing-xxxl) 0;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white-primary);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xxxl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(243, 156, 18, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(52, 73, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-weight-extra-bold);
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    line-height: 1.5;
}

.hero-cta {
    margin-top: var(--spacing-xl);
}

.cta-button {
    display: inline-block;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--accent-orange);
    color: var(--white-primary);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xxxl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    color: var(--text-medium);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.875rem;
    color: var(--accent-orange);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

/* Problem & Solution Section */
.problem-solution-section {
    background: var(--gray-light);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxxl);
    align-items: center;
    margin-bottom: var(--spacing-xxxl);
}

.problem-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.visual-column {
    display: flex;
    justify-content: center;
}

.blocks-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 300px;
}

.block {
    aspect-ratio: 1;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    transition: all var(--transition-normal);
}

.block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.block-orange {
    background: var(--accent-orange);
}

.block-navy {
    background: var(--primary-navy);
}

.block-cream {
    background: var(--cream-light);
    grid-column: 1 / -1;
}

.block-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

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

.solution-highlight {
    background: var(--white-primary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.solution-highlight h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-md);
}

.solution-highlight p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Approach Section */
.approach-section {
    background: var(--white-primary);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxxl);
    align-items: center;
}

.approach-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    color: var(--text-dark);
}

.approach-features {
    margin-top: var(--spacing-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--gray-light);
    border-radius: var(--border-radius);
    transition: all var(--transition-normal);
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-xs);
}

.feature-content p {
    color: var(--text-medium);
    line-height: 1.5;
}

.approach-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Education Section */
.education-section {
    background: var(--gray-light);
}

.education-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xxxl);
    align-items: center;
}

.education-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.education-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    color: var(--text-dark);
}

.goal-highlight {
    background: var(--white-primary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-orange);
    box-shadow: var(--shadow-sm);
}

.goal-highlight p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

.goal-highlight strong {
    color: var(--primary-navy);
}

/* Audience Section */
.audience-section {
    background: var(--white-primary);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.audience-card {
    background: var(--white-primary);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

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

.card-header {
    padding: var(--spacing-xl);
    text-align: center;
    background: var(--gray-light);
}

.audience-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto var(--spacing-md);
}

.card-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-navy);
}

.card-content {
    padding: var(--spacing-xl);
}

.problem-block,
.solution-block {
    margin-bottom: var(--spacing-lg);
}

.problem-block:last-child,
.solution-block:last-child {
    margin-bottom: 0;
}

.problem-block h4,
.solution-block h4 {
    font-size: 1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-xs);
}

.problem-block p,
.solution-block p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: var(--gray-light);
}

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

.benefit-card {
    background: var(--white-primary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.benefit-icon {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream-light);
    border-radius: 50%;
}

.benefit-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.feature-highlight {
    background: var(--white-primary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-orange);
}

.feature-highlight h4 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-xs);
}

.feature-highlight p {
    color: var(--text-medium);
    line-height: 1.5;
    margin: 0;
}

.benefit-title {
    font-size: 1.375rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-md);
}

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

/* Services Section */
.services-section {
    background: var(--white-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
}

.service-category {
    background: var(--gray-light);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
}

.category-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-lg);
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    color: var(--text-dark);
    line-height: 1.6;
    position: relative;
    padding-left: var(--spacing-lg);
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: var(--font-weight-bold);
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    color: var(--white-primary);
    text-align: center;
}

.mission-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
}

.mission-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-values {
    margin-top: var(--spacing-xl);
}

.value-item h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--accent-orange);
    margin-bottom: var(--spacing-sm);
}

.value-item p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
    background: var(--gray-light);
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-md);
}

.cta-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.assessment-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-group label {
    display: block;
    font-weight: var(--font-weight-semibold);
    color: var(--primary-navy);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid rgba(44, 62, 80, 0.1);
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1);
}

.submit-button {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--accent-orange);
    color: var(--white-primary);
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.submit-button:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    section {
        padding: var(--spacing-xxl) 0;
    }
    
    .content-grid,
    .approach-grid,
    .education-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .education-grid .education-visual {
        order: -1;
    }
    
    .blocks-container {
        max-width: 250px;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .blocks-container {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
    
    .block-cream {
        grid-column: 1;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.cta-button:focus,
.submit-button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-section,
    .mission-section {
        background: var(--white-primary) !important;
        color: var(--primary-navy) !important;
    }
}

