/* =========================================
   ABOUT PAGE - PREMIUM INTERACTIVE STYLES
   ========================================= */

/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3xl) var(--space-lg);
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1025 50%, #0f1419 100%);
    overflow: hidden;
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease forwards;
}

.about-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-secondary) 50%, var(--text-primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto;
}

/* Floating Decorations */
.hero-decorations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    bottom: 10%;
    right: -5%;
    animation: float 18s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    right: 20%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }

    75% {
        transform: translate(15px, 5px) rotate(3deg);
    }
}

/* About Sections Base */
.about-section {
    padding: var(--space-3xl) var(--space-lg);
    position: relative;
}

.about-section .section-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-sm);
}

/* Introduction Section */
.intro-section {
    background: var(--bg-primary);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: center;
}

/* Profile Photo Styles */
.profile-photo-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 3;
    border: 4px solid rgba(255, 107, 53, 0.3);
    box-shadow:
        0 0 40px rgba(255, 107, 53, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow:
        0 0 60px rgba(255, 107, 53, 0.5),
        0 25px 70px rgba(0, 0, 0, 0.5);
}

.profile-photo-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.4) 0%, transparent 70%);
    filter: blur(30px);
    z-index: 1;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.profile-photo-ring {
    position: absolute;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 107, 53, 0.4);
    z-index: 2;
    animation: rotateRing 20s linear infinite;
}

.profile-photo-ring.ring-2 {
    width: 320px;
    height: 320px;
    border-color: rgba(168, 85, 247, 0.3);
    animation-direction: reverse;
    animation-duration: 25s;
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.profile-photo-badge {
    position: absolute;
    bottom: 20px;
    right: 10px;
    background: var(--gradient-accent);
    padding: 10px 20px;
    border-radius: 50px;
    z-index: 4;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
    animation: floatBadge 3s ease-in-out infinite;
}

.profile-photo-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Decorative Elements */
.profile-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.profile-decoration.dec-1 {
    width: 20px;
    height: 20px;
    background: var(--accent-primary);
    top: 10%;
    right: 5%;
    animation: floatDec 4s ease-in-out infinite;
}

.profile-decoration.dec-2 {
    width: 12px;
    height: 12px;
    background: var(--accent-purple);
    bottom: 15%;
    left: 10%;
    animation: floatDec 5s ease-in-out infinite reverse;
}

.profile-decoration.dec-3 {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    top: 40%;
    left: 0;
    animation: floatDec 3.5s ease-in-out infinite;
}

@keyframes floatDec {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -10px);
    }
}

/* Intro Text Content */
.intro-text-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.intro-text .lead-paragraph {
    font-size: 1.4rem;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.intro-text p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.stats-grid {
    display: grid;
    gap: var(--space-md);
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: var(--space-xs);
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Background Section */
.background-section {
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.experience-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.experience-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.experience-card:nth-child(1) {
    transition-delay: 0s;
}

.experience-card:nth-child(2) {
    transition-delay: 0.1s;
}

.experience-card:nth-child(3) {
    transition-delay: 0.2s;
}

.experience-card:nth-child(4) {
    transition-delay: 0.3s;
}

.experience-card:nth-child(5) {
    transition-delay: 0.4s;
}

.experience-card:nth-child(6) {
    transition-delay: 0.5s;
}

.experience-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.experience-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.experience-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.experience-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.experience-note {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
}

.experience-note p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Expertise Section */
.expertise-section {
    background: var(--bg-primary);
}

.expertise-list {
    max-width: 900px;
    margin: 0 auto;
}

.expertise-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.expertise-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.expertise-item:nth-child(1) {
    transition-delay: 0s;
}

.expertise-item:nth-child(2) {
    transition-delay: 0.1s;
}

.expertise-item:nth-child(3) {
    transition-delay: 0.2s;
}

.expertise-item:nth-child(4) {
    transition-delay: 0.3s;
}

.expertise-item:nth-child(5) {
    transition-delay: 0.4s;
}

.expertise-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.expertise-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    opacity: 0.6;
    min-width: 60px;
}

.expertise-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.expertise-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy-section {
    background: linear-gradient(135deg, #1a1025 0%, #0f1419 100%);
    padding: var(--space-3xl) var(--space-lg);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.philosophy-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    position: relative;
    padding-left: var(--space-lg);
    border-left: 4px solid var(--accent-primary);
}

.philosophy-quote .highlight {
    color: var(--accent-primary);
}

.philosophy-beliefs h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.beliefs-list {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.beliefs-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.belief-icon {
    font-size: 1.5rem;
}

.philosophy-goal {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-subtle);
}

/* Audience Section */
.audience-section {
    background: var(--bg-secondary);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.audience-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: scale(0.9);
}

.audience-card.animate-in {
    opacity: 1;
    transform: scale(1);
}

.audience-card:nth-child(1) {
    transition-delay: 0s;
}

.audience-card:nth-child(2) {
    transition-delay: 0.1s;
}

.audience-card:nth-child(3) {
    transition-delay: 0.2s;
}

.audience-card:nth-child(4) {
    transition-delay: 0.3s;
}

.audience-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
}

.audience-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.audience-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Offerings Section */
.offerings-section {
    background: var(--bg-primary);
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
}

.offering-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.offering-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.offering-item:nth-child(1) {
    transition-delay: 0s;
}

.offering-item:nth-child(2) {
    transition-delay: 0.1s;
}

.offering-item:nth-child(3) {
    transition-delay: 0.2s;
}

.offering-item:nth-child(4) {
    transition-delay: 0.3s;
}

.offering-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(5px);
}

.offering-icon {
    font-size: 1.8rem;
}

.offering-item span:last-child {
    color: var(--text-secondary);
    font-size: 1rem;
}

.offerings-note {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 107, 53, 0.05);
    border: 1px dashed rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
}

.offerings-note p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Closing Section */
.closing-section {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1025 100%);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
}

.closing-content h2 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

.mission-statement {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto var(--space-xl);
}

.mission-statement .highlight {
    color: var(--accent-primary);
    font-weight: 600;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 40px;
    background: var(--gradient-accent);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

/* Active Nav Item */
.nav-item.active {
    color: var(--accent-primary);
    background: rgba(255, 107, 53, 0.1);
}

.nav-item.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .intro-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-photo-container {
        order: -1;
        margin-bottom: var(--space-lg);
    }

    .profile-photo-wrapper {
        width: 280px;
        height: 280px;
    }

    .profile-photo {
        width: 220px;
        height: 220px;
    }

    .profile-photo-glow {
        width: 260px;
        height: 260px;
    }

    .profile-photo-ring {
        width: 250px;
        height: 250px;
    }

    .profile-photo-ring.ring-2 {
        width: 280px;
        height: 280px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding: var(--space-2xl) var(--space-md);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .expertise-item {
        flex-direction: column;
        text-align: center;
    }

    .expertise-number {
        margin-bottom: var(--space-sm);
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: var(--space-2xl) var(--space-sm);
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .philosophy-quote blockquote {
        font-size: 1.3rem;
        padding-left: var(--space-md);
    }
}