/* ============================================
   About Page Specific Styles
   ============================================ */

/* ============================================
   ABOUT HERO SECTION
   ============================================ */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 150px 20px 80px;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--teal-dark) 100%);
    z-index: 0;
}

.about-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    color: var(--white);
    margin-bottom: 25px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.about-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* ============================================
   INTRODUCTION SECTION
   ============================================ */
.about-intro {
    padding: 100px 20px;
    background: var(--white);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-intro-image {
    position: sticky;
    top: 100px;
}

.professional-photo {
    border-radius: 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 4px solid var(--white);
    background: var(--white);
}

.about-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: var(--transition);
}

.about-photo:hover {
    transform: scale(1.02);
}

/* Fallback for image placeholder (if needed) */
.image-placeholder {
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 20px;
    aspect-ratio: 4/5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border: 3px dashed var(--gray-300);
    position: relative;
    overflow: hidden;
}

.placeholder-content {
    text-align: center;
    color: var(--gray-500);
    padding: 40px;
}

.placeholder-content i {
    font-size: 80px;
    margin-bottom: 20px;
    color: var(--gray-400);
}

.placeholder-content p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.placeholder-note {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-style: italic;
}

.intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.intro-stat {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.intro-stat .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Stats counter animation effects */
.intro-stat .stat-number.animating {
    color: #FFD700;
    transform: scale(1.08);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.intro-stat .stat-number.animated {
    animation: statPulse 0.6s ease;
}

@keyframes statPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
        color: #4FD1C5;
    }
}

.intro-stat .stat-label {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
}

.about-intro-text {
    padding-top: 20px;
}

.intro-lead {
    font-size: 1.3rem;
    color: var(--teal);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.intro-highlight {
    background: linear-gradient(135deg, var(--gray-50), var(--gray-100));
    border-left: 4px solid var(--gold);
    padding: 30px;
    border-radius: 12px;
    margin: 30px 0;
    position: relative;
}

.intro-highlight i {
    font-size: 32px;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.intro-highlight p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--navy);
    font-weight: 500;
    margin-bottom: 0;
    padding-left: 50px;
}

/* ============================================
   PROFESSIONAL IDENTITY SECTION
   ============================================ */
.professional-identity {
    padding: 100px 20px;
    background: var(--gray-50);
}

.identity-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.identity-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--teal);
}

.identity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-top-color: var(--gold);
}

.identity-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
}

.identity-card h3 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.identity-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

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

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.credential-item {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.credential-item:hover {
    border-color: var(--teal);
    transform: translateY(-5px);
    background: var(--white);
}

.credential-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--gold);
    margin: 0 auto 20px;
}

.credential-item h4 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.credential-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   PUBLISHED WORKS SECTION
   ============================================ */
.published-works {
    padding: 100px 20px;
    background: var(--gray-50);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.work-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.work-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.work-card:hover::before {
    transform: scaleX(1);
}

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

.work-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 15px;
}

.work-card h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.work-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.work-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal);
    font-weight: 600;
    transition: var(--transition);
}

.work-link:hover {
    gap: 12px;
    color: var(--teal-dark);
}

/* ============================================
   THOUGHT LEADERSHIP SECTION
   ============================================ */
.thought-leadership {
    padding: 100px 20px;
    background: var(--white);
}

.thought-leadership-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.leadership-intro {
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 30px;
}

.leadership-features {
    list-style: none;
}

.leadership-features li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--gray-200);
}

.leadership-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.leadership-features i {
    font-size: 32px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 5px;
}

.leadership-features h4 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.leadership-features p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 0;
}

.leadership-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.leadership-stat-card {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.leadership-stat-card i {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 20px;
    right: 20px;
}

.leadership-stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Stats counter animation effects for leadership cards */
.leadership-stat-card .stat-number.animating {
    color: #FFD700;
    transform: scale(1.08);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.leadership-stat-card .stat-number.animated {
    animation: statPulse 0.6s ease;
}

.leadership-stat-card .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.known-for {
    background: var(--gray-50);
    border-radius: 16px;
    padding: 30px;
}

.known-for h3 {
    color: var(--navy);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.known-for-tags {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--navy);
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 2px solid var(--teal);
    transition: var(--transition);
}

.tag:hover {
    background: var(--teal);
    color: var(--white);
    transform: translateX(5px);
}

.tag i {
    color: var(--teal);
    font-size: 16px;
}

.tag:hover i {
    color: var(--white);
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-quote {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.philosophy-quote i {
    font-size: 60px;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 20px;
}

.philosophy-quote h2 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 30px;
}

.philosophy-quote blockquote {
    font-size: 1.8rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--white);
    margin-bottom: 30px;
    font-family: var(--font-display);
}

.philosophy-signature {
    margin-top: 30px;
}

.philosophy-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.philosophy-principle {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--gold);
    padding: 30px;
    border-radius: 12px;
    margin: 40px 0;
}

.philosophy-principle h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0;
    text-align: center;
}

/* ============================================
   WHO BENEFITS SECTION
   ============================================ */
.who-benefits {
    padding: 100px 20px;
    background: var(--gray-50);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--teal-light), var(--teal));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--navy);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0;
}

/* ============================================
   ABOUT CTA SECTION
   ============================================ */
.about-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
    color: var(--white);
}

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

.about-cta h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    border-color: var(--white);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .about-intro-grid,
    .thought-leadership-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro-image {
        position: relative;
        top: 0;
    }
    
    .works-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 20px 60px;
        min-height: 50vh;
    }
    
    .about-intro,
    .professional-identity,
    .credentials,
    .published-works,
    .thought-leadership,
    .philosophy,
    .who-benefits,
    .about-cta {
        padding: 60px 20px;
    }
    
    .intro-stats {
        grid-template-columns: 1fr;
    }
    
    .identity-content,
    .credentials-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-quote blockquote {
        font-size: 1.4rem;
    }
    
    .philosophy-principle h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}
