/* About Page Specific Styles */

/* Floating Section Navigation */
.floating-nav {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 20px 16px;
    z-index: 999;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.1);
    width: 160px;
}

.floating-nav.visible {
    opacity: 1;
    visibility: visible;
}

.floating-nav:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-50%) scale(1.02);
    box-shadow: 
        0 16px 50px rgba(0, 0, 0, 0.25),
        0 6px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.nav-progress {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1px;
    margin-top: 8px;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 1px;
    width: 0%;
    transition: width 0.3s ease;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    opacity: 0;
    border-radius: 12px;
    transition: opacity 0.2s ease;
    z-index: -1;
}

.nav-item:hover {
    color: white;
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    text-shadow: none;
}

.nav-item:hover::before {
    opacity: 0.9;
}

.nav-item.active {
    color: white;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    box-shadow: 
        0 4px 12px rgba(128, 90, 213, 0.4),
        0 2px 6px rgba(128, 90, 213, 0.2);
    text-shadow: none;
}

.nav-item.active .nav-dot {
    background: white;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-secondary);
    transition: all 0.2s ease;
    flex-shrink: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-item:hover .nav-dot {
    background: white;
    transform: scale(1.3);
}

.nav-label {
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.2);
}

/* Section title colors for dark backgrounds */
.personal-side .section-title {
    color: white;
    text-align: center;
}

/* Center section titles for specific sections */
.working-together .section-title {
    text-align: center;
}

/* Hide on tablets and mobile */
@media (max-width: 1024px) {
    .floating-nav {
        display: none;
    }
}

/* Mobile FAB Navigation */
.floating-fab {
    position: fixed;
    bottom: 30px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(128, 90, 213, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
}

.floating-fab.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.floating-fab:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 32px rgba(128, 90, 213, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-fab:active {
    transform: scale(0.95);
}

.fab-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
}

.fab-number {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.fab-total {
    font-size: 0.6rem;
    opacity: 0.9;
}

/* Mobile Section Modal */
.section-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.section-modal.visible {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 24px 24px 0 0;
    padding: 24px 20px 32px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 70vh;
    overflow-y: auto;
}

.section-modal.visible .modal-content {
    transform: translateY(0);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.modal-handle {
    width: 40px;
    height: 4px;
    background: #e2e8f0;
    border-radius: 2px;
    margin: 0 auto 16px;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    position: absolute;
    top: -8px;
    right: 0;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: var(--text-primary);
}

.modal-sections {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modal-section-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-primary);
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.modal-section-item.active {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    border-color: var(--accent-color);
}

.modal-section-item:not(.active):hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateX(4px);
}

.modal-section-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.modal-section-item.active .modal-section-dot {
    background: white;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.modal-section-info {
    flex: 1;
}

.modal-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.modal-section-subtitle {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
    line-height: 1.3;
}

.modal-section-item.active .modal-section-subtitle {
    opacity: 0.9;
}

.modal-progress {
    width: 100%;
    height: 3px;
    background: #e2e8f0;
    border-radius: 2px;
    margin-top: 20px;
    overflow: hidden;
}

.modal-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-light));
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
}

/* Show FAB only on mobile */
@media (max-width: 1024px) {
    .floating-fab {
        display: flex;
    }
    
    .section-modal {
        display: block;
    }
}

/* Scroll indicator animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Flowing path animation for learning connections */
@keyframes flowingPath {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(15deg) translateX(0px);
    }
    25% {
        opacity: 0.5;
        transform: rotate(17deg) translateX(20px);
    }
    50% {
        opacity: 0.4;
        transform: rotate(13deg) translateX(-10px);
    }
    75% {
        opacity: 0.6;
        transform: rotate(16deg) translateX(15px);
    }
}

/* Ribbon flow animation for creative connections */
@keyframes ribbonFlow {
    0%, 100% {
        transform: rotate(-3deg) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: rotate(-1deg) scale(1.02);
        opacity: 0.9;
    }
    66% {
        transform: rotate(-5deg) scale(0.98);
        opacity: 0.7;
    }
}

/* Connection pulse animation for learning pathways */
@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* Glass morphism floating animations */
@keyframes glassFloat1 {
    0%, 100% {
        transform: rotate(-15deg) translateY(0px) scale(1);
        opacity: 0.25;
    }
    50% {
        transform: rotate(-12deg) translateY(-15px) scale(1.02);
        opacity: 0.3;
    }
}

@keyframes glassFloat2 {
    0%, 100% {
        transform: rotate(20deg) translateY(0px) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: rotate(23deg) translateY(-10px) scale(0.98);
        opacity: 0.25;
    }
}

@keyframes glassFloat3 {
    0%, 100% {
        transform: rotate(45deg) translateY(0px) scale(1);
        opacity: 0.15;
    }
    50% {
        transform: rotate(42deg) translateY(-8px) scale(1.03);
        opacity: 0.2;
    }
}

@keyframes glassFloat4 {
    0%, 100% {
        transform: rotate(-25deg) translateY(0px) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: rotate(-28deg) translateY(-12px) scale(0.97);
        opacity: 0.25;
    }
}

/* Scroll Animation System */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grouped elements */
.fade-in-up.delay-100 { transition-delay: 0.1s; }
.fade-in-up.delay-200 { transition-delay: 0.2s; }
.fade-in-up.delay-300 { transition-delay: 0.3s; }
.fade-in-up.delay-400 { transition-delay: 0.4s; }
.fade-in-up.delay-500 { transition-delay: 0.5s; }
.fade-in-up.delay-600 { transition-delay: 0.6s; }

/* About Hero Section - Layered Glass Morphism */
.about-hero {
    padding: 120px 0 var(--space-3xl);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 30%, #fdf2f8 70%, #f3f4f6 100%);
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Glass morphism floating elements */
.about-hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -5%;
    width: 300px;
    height: 400px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: rotate(-15deg);
    z-index: 1;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: glassFloat1 8s ease-in-out infinite;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -8%;
    width: 250px;
    height: 350px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform: rotate(20deg);
    z-index: 1;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: glassFloat2 10s ease-in-out infinite;
}

/* Additional floating glass elements */
.about-hero-content::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 60%;
    width: 150px;
    height: 200px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: rotate(45deg);
    z-index: 1;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.03);
    animation: glassFloat3 6s ease-in-out infinite;
}

.about-hero-content::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 15%;
    width: 120px;
    height: 160px;
    background: rgba(251, 207, 232, 0.2);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform: rotate(-25deg);
    z-index: 1;
    box-shadow: 0 8px 28px rgba(251, 207, 232, 0.1);
    animation: glassFloat4 12s ease-in-out infinite;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: var(--space-xl);
    position: relative;
    z-index: 2;
}

/* Glass morphism text background panel */
.about-hero .hero-text {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    padding: var(--space-2xl) var(--space-xl);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 3;
}

.hero-text {
    width: 100%;
}

.hero-greeting {
    display: inline-block;
    font-size: 1.125rem;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-shadow: none;
}

.about-hero .title-accent {
    display: block;
    color: var(--text-secondary);
    font-size: 40px;
    font-weight: 500;
    margin-top: 15px;
    margin-bottom: 15px;
    line-height: 1.4;
    max-width: 100%;
    white-space: normal;
    font-family: "professor", sans-serif !important;
    text-transform: lowercase;
    animation: none !important;
    border-right: none !important;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Hero image styles removed - content is now centered */

/* My Story Section */
.my-story {
    padding: var(--space-3xl) 0;
    background: #fafbfc;
    position: relative;
    overflow: hidden;
}

.my-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(128, 90, 213, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.02) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: revert;
}

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

.story-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-style: italic;
}

.work-showcase {
    display: grid;
    gap: var(--space-xl);
    justify-items: center;
}

.work-highlight.featured {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
    font-style: italic;
    background: white;
    padding: var(--space-2xl);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.work-highlight.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.02) 50%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.work-highlight.featured .work-content {
    position: relative;
    z-index: 1;
}

.work-content {
    flex: 1;
}

.work-highlight.featured .work-content h2.section-title {
    text-align: center;
    font-style: normal;
}

.work-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.work-highlight.featured .work-content p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: normal;
}

.work-content p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.work-highlight.featured .work-icon {
    font-size: 4rem;
    opacity: 0.8;
    margin-bottom: var(--space-md);
    display: block;
    text-align: center;
}

.work-icon {
    font-size: 3rem;
    opacity: 0.8;
    flex-shrink: 0;
}

.work-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
}

.work-highlight {
    background: linear-gradient(135deg, white 0%, #fdfdfe 100%);
    border-radius: 20px;
    padding: var(--space-2xl);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(128, 90, 213, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 calc(50% - var(--space-lg));
    min-width: 300px;
    max-width: 500px;
}

.work-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.02) 50%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.work-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 8px 15px rgba(0, 0, 0, 0.12);
    border-color: rgba(128, 90, 213, 0.15);
}

.work-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 15px rgba(128, 90, 213, 0.3);
}

.work-highlight h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.work-highlight p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Design Philosophy Section - Blueprint Methodology */
.design-philosophy {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.design-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Grid pattern */
        linear-gradient(rgba(148, 163, 184, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(148, 163, 184, 0.1) 1px, transparent 1px),
        /* Blueprint wireframes */
        radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 50% 20%, rgba(147, 197, 253, 0.08) 0%, transparent 45%);
    background-size: 40px 40px, 40px 40px, 300px 300px, 250px 250px, 400px 400px;
    background-position: 0 0, 0 0, 0 0, 100% 100%, 50% 0;
    z-index: 0;
    pointer-events: none;
}

.design-philosophy::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(147, 197, 253, 0.15);
    border-radius: 20px;
    transform: rotate(15deg);
    z-index: 1;
    pointer-events: none;
}

/* Add geometric shapes */
.design-philosophy .philosophy-content::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    transform: rotate(-20deg);
    z-index: 1;
}

.design-philosophy .philosophy-content::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    z-index: 1;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 1;
}

.philosophy-content .section-title {
    text-align: center;
    color: white;
}

.philosophy-intro {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.6;
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--space-xl);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(147, 197, 253, 0.2);
}

.philosophy-principles {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
}

.principle {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: var(--space-2xl);
    border-radius: 20px;
    border: 1px solid rgba(147, 197, 253, 0.2);
    box-shadow: 
        0 6px 25px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 calc(50% - var(--space-lg));
    min-width: 300px;
    max-width: 500px;
}

.principle::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(99, 102, 241, 0.02) 50%, transparent 70%);
    transform: rotate(15deg);
    pointer-events: none;
}

.principle:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 8px 15px rgba(0, 0, 0, 0.3);
    border-color: rgba(147, 197, 253, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.principle-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-bottom: var(--space-lg);
    box-shadow: 0 4px 15px rgba(128, 90, 213, 0.3);
}

.principle-content {
    position: relative;
    z-index: 1;
}

.principle-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.principle-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* My Process Section */
.my-process {
    padding: var(--space-3xl) 0;
    background-color: var(--background-color);
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.process-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
    line-height: 1.6;
}

.process-steps {
    display: grid;
    gap: var(--space-xl);
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    align-items: start;
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.step-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.step-icon.research {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.step-icon.research::before {
    content: '🔍';
}

.step-icon.ideation {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.step-icon.ideation::before {
    content: '💡';
}

.step-icon.design {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.step-icon.design::before {
    content: '🎨';
}

.step-icon.validate {
    background: linear-gradient(135deg, #10b981, #059669);
}

.step-icon.validate::before {
    content: '✅';
}

.step-icon.implement {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.step-icon.implement::before {
    content: '🚀';
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.step-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.deliverable {
    padding: 0.5rem 1rem;
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Skills & Expertise Section */
.skills-expertise {
    padding: var(--space-3xl) 0;
    background: var(--background-alt);
}

.skills-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.skill-category {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.skill-category h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    text-align: center;
}

.skills-list {
    display: grid;
    gap: var(--space-md);
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--border-color);
}

.skill-item:last-child {
    border-bottom: none;
}

.skill-name {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.skill-level {
    width: 60px;
    height: 6px;
    background: var(--border-color);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.skill-level::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--accent-color);
    border-radius: 3px;
}

.skill-level.expert::before {
    width: 90%;
    background: #10b981;
}

.skill-level.advanced::before {
    width: 75%;
    background: var(--accent-color);
}

.skill-level.intermediate::before {
    width: 60%;
    background: #f59e0b;
}

/* Personal Side Section - Creative Ecosystem */
.personal-side {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 30%, #1e3a8a 70%, #312e81 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.personal-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Organic flowing shapes */
        radial-gradient(ellipse at 25% 20%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 80%, rgba(147, 197, 253, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 70%, rgba(99, 102, 241, 0.1) 0%, transparent 45%),
        radial-gradient(ellipse at 90% 30%, rgba(168, 85, 247, 0.06) 0%, transparent 55%);
    background-size: 400px 300px, 350px 400px, 300px 250px, 450px 350px;
    z-index: 0;
    pointer-events: none;
}

.personal-side::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 5%;
    width: 90%;
    height: 70%;
    background: 
        /* Enhanced flowing ribbons for learning paths */
        linear-gradient(45deg, transparent 35%, rgba(147, 197, 253, 0.12) 45%, rgba(59, 130, 246, 0.15) 55%, transparent 65%),
        linear-gradient(-45deg, transparent 25%, rgba(99, 102, 241, 0.1) 40%, rgba(168, 85, 247, 0.12) 60%, transparent 75%),
        linear-gradient(120deg, transparent 40%, rgba(147, 197, 253, 0.08) 50%, transparent 60%);
    transform: rotate(-3deg);
    z-index: 1;
    pointer-events: none;
    animation: ribbonFlow 15s ease-in-out infinite;
}

/* Enhanced flowing ribbons for learning paths */
.personal-side .personal-content::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    right: -10%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(147, 197, 253, 0.3) 20%, 
        rgba(59, 130, 246, 0.4) 50%, 
        rgba(147, 197, 253, 0.3) 80%, 
        transparent 100%);
    transform: rotate(15deg);
    z-index: 1;
    animation: flowingPath 8s ease-in-out infinite;
}

.personal-side .personal-content::after {
    content: '';
    position: absolute;
    bottom: 30%;
    left: -10%;
    right: -10%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.25) 30%, 
        rgba(168, 85, 247, 0.35) 50%, 
        rgba(99, 102, 241, 0.25) 70%, 
        transparent 100%);
    transform: rotate(-12deg);
    z-index: 1;
    animation: flowingPath 10s ease-in-out infinite reverse;
}

.personal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    position: relative;
    z-index: 2;
}

.personal-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
}

/* Connection lines between personal items */
.personal-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 25%;
    right: 25%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(147, 197, 253, 0.4) 25%, 
        rgba(59, 130, 246, 0.5) 50%, 
        rgba(147, 197, 253, 0.4) 75%, 
        transparent 100%);
    z-index: 1;
    animation: connectionPulse 6s ease-in-out infinite;
}

.personal-grid::after {
    content: '';
    position: absolute;
    top: 25%;
    bottom: 25%;
    left: 50%;
    width: 1px;
    background: linear-gradient(0deg, 
        transparent 0%, 
        rgba(99, 102, 241, 0.3) 25%, 
        rgba(168, 85, 247, 0.4) 50%, 
        rgba(99, 102, 241, 0.3) 75%, 
        transparent 100%);
    z-index: 1;
    animation: connectionPulse 8s ease-in-out infinite reverse;
}

.personal-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(147, 197, 253, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: all var(--transition-normal);
    position: relative;
    z-index: 2;
}

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

.personal-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: var(--space-md);
}

.personal-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.personal-item a {
    color: rgba(147, 197, 253, 0.9);
    text-decoration: none;
    font-weight: 500;
}

.personal-item a:hover {
    color: rgba(147, 197, 253, 1);
    text-decoration: underline;
}

.inspiration-section {
    background: var(--background-alt);
    padding: var(--space-xl);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.inspiration-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.inspiration-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.inspiration-text a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

.inspiration-text a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

/* Working Together Section */
.working-together {
    padding: var(--space-3xl) 0;
    background: var(--background-alt);
}

.collaboration-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.collaboration-item {
    background: white;
    padding: var(--space-xl);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-light);
}

.collaboration-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.collaboration-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Current Status Section */
.current-status {
    padding: var(--space-3xl) 0;
    background-color: var(--background-color);
}

.status-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.status-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.status-card.employment {
    border-top: 4px solid #3b82f6;
}

.status-card.freelance {
    border-top: 4px solid var(--accent-color);
}

.status-icon {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.status-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.status-card > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.role-preferences,
.project-types {
    text-align: left;
    background: var(--background-alt);
    padding: var(--space-lg);
    border-radius: 12px;
    margin-top: var(--space-lg);
}

.role-preferences h4,
.project-types h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.role-preferences ul,
.project-types ul {
    margin: 0;
    padding-left: var(--space-md);
}

.role-preferences li,
.project-types li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

/* Connect CTA Section */
.connect-cta {
    padding: var(--space-3xl) 0;
    background: linear-gradient(-45deg, #667eea, #764ba2, #f093fb, #f5576c);
    background-size: 400% 400%;
    animation: oceanWave 23s ease-in-out infinite;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Ensure contact section elements are visible even if JS fails */
.connect-cta .fade-in-up {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes oceanWave {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 20%;
    }
    50% {
        background-position: 50% 100%;
    }
    75% {
        background-position: 20% 30%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.cta-description {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
}

.cta-option {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xl);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.cta-option h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.cta-option p {
    opacity: 0.9;
    margin-bottom: var(--space-lg);
    line-height: 1.5;
}

.cta-option .btn {
    background: white;
    color: var(--accent-color);
    border: none;
}

.cta-option .btn:hover {
    background: var(--background-alt);
    transform: translateY(-2px);
}

.cta-option .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-option .btn-secondary:hover {
    background: white;
    color: var(--accent-color);
}



/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-content {
        padding-top: var(--space-md);
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .about-hero .title-accent {
        font-size: 28px;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    /* Adjust glass elements for mobile */
    .about-hero::before {
        width: 200px;
        height: 280px;
        left: -10%;
        animation: none;
    }
    
    .about-hero::after {
        width: 180px;
        height: 250px;
        right: -12%;
        animation: none;
    }
    
    .about-hero-content::before {
        width: 100px;
        height: 140px;
        left: 70%;
        animation: none;
    }
    
    .about-hero-content::after {
        width: 80px;
        height: 120px;
        left: 10%;
        animation: none;
    }
    
    .about-hero .hero-text {
        padding: var(--space-lg) var(--space-md);
        margin: 0 var(--space-sm);
    }
    
    .work-highlight.featured {
        padding: var(--space-xl);
        max-width: none;
        margin: 0 auto var(--space-lg);
        font-size: 1.25rem;
    }
    

    
    .work-highlight.featured .work-content p {
        font-size: 1rem;
    }
    
    .work-highlight.featured .work-icon {
        position: static;
        transform: none;
        font-size: 3rem;
        margin-bottom: var(--space-md);
    }
    
    .work-grid {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .work-highlight {
        padding: var(--space-xl);
        flex: none;
        min-width: auto;
        max-width: none;
    }
    
    .philosophy-principles {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .principle {
        padding: var(--space-xl);
        flex: none;
        min-width: auto;
        max-width: none;
    }
    
    .philosophy-intro {
        font-size: 1.125rem;
        padding: var(--space-lg);
    }
    
    .process-steps {
        gap: var(--space-lg);
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .personal-grid {
        flex-direction: column;
    }
    
    .personal-item {
        max-width: none;
        min-width: auto;
    }
    
    .collaboration-grid {
        grid-template-columns: 1fr;
    }
    
    .status-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 var(--space-xl);
    }
    

    
    .personal-grid {
        gap: 15px;
    }
    
    .status-card {
        padding: var(--space-xl);
    }
    
    .process-step,
    .principle,
    .collaboration-item {
        padding: var(--space-lg);
    }
    
    .work-highlight.featured .work-content p {
        font-size: 0.9rem;
    }
    
    .principle {
        flex: none;
        min-width: auto;
        max-width: none;
    }
    
    .philosophy-intro {
        font-size: 1rem;
        padding: var(--space-md);
    }
    
    .principle-number {
        width: 60px;
        height: 60px;
        font-size: 1.25rem;
    }
}

/* Animation for skill levels */
@keyframes fillSkill {
    from {
        width: 0;
    }
    to {
        width: var(--skill-width);
    }
}

.skill-level::before {
    animation: fillSkill 1s ease-out;
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

/* Hover effects */
.highlight-item:hover,
.collaboration-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-large);
}

.personal-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(147, 197, 253, 0.4);
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.skill-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}
