/* ============================================
   ABOUT PAGE - ThinkPulse Design System
   Ultra-Premium About Page Styles
   ============================================ */

/* ========================================
   CSS VARIABLES - ThinkPulse Color Palette
   ======================================== */
:root {
    /* Primary Colors */
    --deep-blue: #0A1F44;
    --electric-blue: #2563EB;
    --cyan-glow: #06B6D4;
    --navy: #1E3A8A;

    /* Accent Colors */
    --warm-orange: #F59E0B;
    --success-green: #10B981;
    --neutral-gray: #64748B;
    --light-gray: #F8FAFC;
    --white: #FFFFFF;

    /* Gradients */
    --hero-gradient: linear-gradient(135deg, #0A1F44 0%, #1E3A8A 50%, #2563EB 100%);
    --card-gradient: linear-gradient(145deg, #FFFFFF 0%, #F8FAFC 100%);
    --accent-gradient: linear-gradient(90deg, #06B6D4 0%, #2563EB 100%);
    --text-gradient: linear-gradient(90deg, #06B6D4 0%, #2563EB 50%, #06B6D4 100%);
    --glass-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));

    /* Shadows */
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.12), 0 0 40px rgba(6, 182, 212, 0.15);
    --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.25);

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: all 0.3s ease;
}


/* ========================================
   PAGE LOAD ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes borderRotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px) translateX(10px);
        opacity: 1;
    }
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes timelineGrow {
    to {
        height: 100%;
    }
}

@keyframes eventReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes dotPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/* ========================================
   SECTION 1: HERO SECTION
   ======================================== */
.about-hero {
    position: relative;
    min-height: 100vh;
    background: var(--hero-gradient);
    overflow: hidden;
    padding: 120px 0 100px;
    display: flex;
    align-items: center;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Mesh Gradient Background */
.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(37, 99, 235, 0.15) 0%, transparent 50%);
    animation: pulseGlow 20s ease-in-out infinite alternate;
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.3);
    filter: blur(1px);
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.particle-2 {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 80%;
    animation-delay: 1s;
    background: rgba(245, 158, 11, 0.4);
}

.particle-3 {
    width: 6px;
    height: 6px;
    top: 80%;
    left: 25%;
    animation-delay: 2s;
}

.particle-4 {
    width: 10px;
    height: 10px;
    top: 30%;
    right: 20%;
    animation-delay: 3s;
    background: rgba(37, 99, 235, 0.4);
}

.particle-5 {
    width: 8px;
    height: 8px;
    top: 70%;
    right: 35%;
    animation-delay: 4s;
}

/* Floating Orbs */
.floating-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 10s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.2);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: rgba(37, 99, 235, 0.15);
    bottom: 20%;
    right: -5%;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(245, 158, 11, 0.1);
    top: 50%;
    left: 30%;
    animation-delay: 4s;
}

/* Hero Row */
.about-hero-row {
    position: relative;
    z-index: 2;
    min-height: 80vh;
}

/* Hero Photo */
.about-hero-photo {
    text-align: center;
    animation: fadeInUp 0.8s ease-out forwards;
}

.photo-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: visible;
}

.photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

/* Animated Gradient Border */
.photo-border-animation {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #06B6D4, #2563EB, #F59E0B, #06B6D4);
    background-size: 300% 300%;
    animation: borderRotate 4s linear infinite;
    z-index: 1;
}

/* Glow Effect */
.photo-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

/* Availability Badge */
.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--success-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.availability-badge span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--success-green);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Content */
.about-hero-content {
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-greeting {
    display: block;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-name {
    margin-bottom: 24px;
}

.hero-name .name-line {
    display: block;
    font-family: 'Space Grotesk', 'Barlow Condensed', sans-serif;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.gradient-text-animated {
    display: block;
    font-family: 'Space Grotesk', 'Barlow Condensed', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    background: var(--text-gradient);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 4s ease-in-out infinite;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-bio {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 550px;
}

/* Quick Facts */
.hero-quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.quick-fact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.quick-fact:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
}

.fact-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    color: var(--white);
}

.fact-content {
    display: flex;
    flex-direction: column;
}

.fact-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fact-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(6, 182, 212, 0.3);
}

.btn-primary-gradient:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.4);
    color: var(--white);
}

.btn-primary-gradient.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    color: var(--white);
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 4;
}

.wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* ========================================
   SECTION 2: MY STORY
   ======================================== */
.my-story {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--electric-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-tag.light {
    background: rgba(6, 182, 212, 0.15);
    border-color: rgba(6, 182, 212, 0.3);
    color: var(--cyan-glow);
}

.section-title {
    font-family: 'Space Grotesk', 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--deep-blue);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Story Content */
.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin: 60px 0;
    align-items: start;
}

.story-intro {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--deep-blue);
    font-weight: 500;
    margin-bottom: 32px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--neutral-gray);
    margin-bottom: 24px;
}

.story-visual {
    position: sticky;
    top: 120px;
}

.story-visual img {
    width: 100%;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

.visual-caption {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--neutral-gray);
    font-style: italic;
    text-align: center;
}

/* Journey Cards */
.journey-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 80px;
}

.journey-card {
    text-align: center;
    padding: 40px 32px;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-smooth);
}

.journey-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(6, 182, 212, 0.3);
}

.journey-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.journey-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.journey-card p {
    font-size: 1rem;
    color: var(--neutral-gray);
    line-height: 1.6;
}


/* ========================================
   SECTION 3: VALUES & PHILOSOPHY
   ======================================== */
.values-philosophy {
    padding: 100px 0 140px;
    background: var(--hero-gradient);
    position: relative;
    overflow: hidden;
}

.values-philosophy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: var(--shadow-glow);
}

.value-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
}

.value-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    z-index: 2;
}

.value-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(37, 99, 235, 0.2));
    border-radius: 50%;
    animation: iconPulse 3s ease-in-out infinite;
    z-index: 1;
}

.value-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Wave Divider Dark */
.wave-divider-dark {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    z-index: 4;
}

.wave-divider-dark svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* ========================================
   SECTION 4: CAREER TIMELINE
   ======================================== */
.career-timeline {
    padding: 100px 0;
    background: var(--white);
}

.timeline-wrapper {
    max-width: 900px;
    margin: 60px auto;
    position: relative;
}

.timeline-track {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 2px;
}

.timeline-progress {
    width: 100%;
    height: 0%;
    background: var(--accent-gradient);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
    transition: height 2s ease-out;
}

.timeline-events {
    padding-left: 60px;
}

.timeline-event {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-event.visible {
    opacity: 1;
    transform: translateX(0);
}

.event-dot {
    position: absolute;
    left: -68px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 3px solid rgba(6, 182, 212, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
    transition: var(--transition-fast);
}

.timeline-event.active .event-dot,
.timeline-event:hover .event-dot {
    background: var(--accent-gradient);
    border-color: transparent;
    transform: scale(1.3);
    box-shadow:
        0 0 0 8px rgba(6, 182, 212, 0.15),
        0 4px 12px rgba(6, 182, 212, 0.4);
}

.timeline-event.active .event-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid var(--cyan-glow);
    border-radius: 50%;
    animation: dotPulse 2s ease-out infinite;
}

.event-content {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-card);
    border-left: 4px solid rgba(6, 182, 212, 0.3);
    transition: var(--transition-fast);
}

.timeline-event:hover .event-content {
    box-shadow: var(--shadow-hover);
    border-left-color: var(--cyan-glow);
    transform: translateX(8px);
}

.event-year {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--electric-blue);
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.event-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.event-description {
    font-size: 1rem;
    color: var(--neutral-gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.event-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.event-tag {
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(37, 99, 235, 0.1));
    color: var(--electric-blue);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}


/* ========================================
   SECTION 5: BEHIND THE SCENES
   ======================================== */
.behind-scenes {
    padding: 100px 0 140px;
    background: linear-gradient(180deg, #0A1F44 0%, #1E3A8A 100%);
    position: relative;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px 0;
}

.lifestyle-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.lifestyle-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lifestyle-card:hover img {
    transform: scale(1.1);
}

.lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 31, 68, 0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lifestyle-card:hover .lifestyle-overlay {
    opacity: 1;
}

.lifestyle-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.lifestyle-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Interests Section */
.interests-section {
    margin-top: 80px;
    text-align: center;
}

.interests-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.interest-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.interest-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-4px);
}

.interest-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.interest-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-align: left;
}


/* ========================================
   SECTION 6: CREDENTIALS & RECOGNITION
   ======================================== */
.credentials {
    padding: 100px 0;
    background: var(--white);
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.credential-card {
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

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

.credential-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(6, 182, 212, 0.1);
}

.credential-icon {
    font-size: 2.5rem;
}

.credential-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
}

.credential-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.credential-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: 4px;
}

.credential-institution {
    font-size: 0.95rem;
    color: var(--neutral-gray);
    margin-bottom: 2px;
}

.credential-year {
    font-size: 0.85rem;
    color: var(--electric-blue);
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    margin-top: 80px;
}

.stats-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item {
    text-align: center;
    padding: 40px 24px;
    background: var(--card-gradient);
    border-radius: var(--radius-md);
    border: 1px solid rgba(6, 182, 212, 0.1);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(6, 182, 212, 0.3);
}

.stat-badge {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.stat-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 1rem;
    color: var(--neutral-gray);
}


/* ========================================
   SECTION 7: WORKING TOGETHER
   ======================================== */
.working-together {
    padding: 100px 0 140px;
    background: var(--hero-gradient);
    position: relative;
}

.collaboration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.expect-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 40px;
}

.expect-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.expect-card h3 i {
    color: var(--cyan-glow);
}

.expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expect-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.expect-list li i {
    color: var(--success-green);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.expect-list li span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.expect-list li strong {
    color: var(--white);
}

/* Process Steps */
.process-steps {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 40px;
}

.process-steps h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

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


/* ========================================
   SECTION 8: CTA CONNECT
   ======================================== */
.cta-connect {
    padding: 120px 0;
    background: var(--light-gray);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 32px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--success-green);
}

.cta-title {
    font-family: 'Space Grotesk', 'Barlow Condensed', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 8px;
}

.cta-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 24px;
}

.cta-description {
    font-size: 1.15rem;
    color: var(--neutral-gray);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
    color: var(--white);
    background: #22c55e;
}

.btn-whatsapp.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.cta-contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--neutral-gray);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--electric-blue);
}

.cta-socials {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-socials a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: var(--deep-blue);
    font-size: 1.3rem;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-card);
}

.cta-socials a:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-4px);
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Large Screens */
@media (max-width: 1199px) {
    .photo-wrapper {
        width: 280px;
        height: 280px;
    }

    .story-content {
        gap: 40px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .about-hero {
        padding: 140px 0 100px;
    }

    .about-hero-row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .about-hero-photo {
        margin-bottom: 40px;
    }

    .about-hero-content {
        text-align: center;
    }

    .hero-bio {
        margin: 0 auto 32px;
    }

    .hero-quick-facts {
        justify-content: center;
    }

    .hero-ctas {
        justify-content: center;
    }

    .story-content {
        grid-template-columns: 1fr;
    }

    .story-visual {
        position: relative;
        top: 0;
    }

    .journey-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline-wrapper {
        padding-left: 40px;
    }

    .event-dot {
        left: -48px;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lifestyle-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .interests-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .credentials-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collaboration-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .about-hero {
        padding: 120px 0 80px;
    }

    .photo-wrapper {
        width: 240px;
        height: 240px;
    }

    .hero-name .name-line {
        font-size: 2rem;
    }

    .gradient-text-animated {
        font-size: 1.25rem;
    }

    .hero-quick-facts {
        flex-direction: column;
        gap: 16px;
    }

    .quick-fact {
        width: 100%;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-gradient,
    .btn-outline-hero {
        width: 100%;
        justify-content: center;
    }

    .story-intro {
        font-size: 1.2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .timeline-events {
        padding-left: 40px;
    }

    .event-dot {
        left: -38px;
        width: 16px;
        height: 16px;
    }

    .event-content {
        padding: 24px;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .lifestyle-card.large {
        grid-column: span 1;
    }

    .interests-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary-gradient.btn-lg,
    .btn-whatsapp.btn-lg {
        width: 100%;
        justify-content: center;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 16px;
    }
}

/* Small Mobile */
@media (max-width: 479px) {
    .photo-wrapper {
        width: 200px;
        height: 200px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .event-title {
        font-size: 1.25rem;
    }

    .credential-card {
        padding: 24px;
    }

    .expect-card,
    .process-steps {
        padding: 24px;
    }
}


/* ========================================
   ACCESSIBILITY - Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .photo-border-animation,
    .photo-glow,
    .timeline-progress,
    .value-icon-bg {
        animation: none;
    }
}