/* ===== ABOUT PAGE STYLES ===== */

/* Hero Section */
.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.2;
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.about-title {
    font-family: var(--heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.about-subtitle {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
}

.about-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Profile Image */
.about-profile-image {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.profile-image-wrapper {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0b9a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.profile-icon {
    font-size: 8rem;
    color: white;
}

.profile-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    z-index: 1;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    opacity: 0.3;
}

.circle-1 {
    width: 350px;
    height: 350px;
    top: 25px;
    left: 25px;
    animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
    width: 380px;
    height: 380px;
    top: 10px;
    left: 10px;
    animation: pulse 4s ease-in-out infinite 0.5s;
}

.circle-3 {
    width: 400px;
    height: 400px;
    top: 0;
    left: 0;
    animation: pulse 4s ease-in-out infinite 1s;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
}

/* Biography Section */
.biography-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.biography-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.biography-content p {
    margin-bottom: 1.5rem;
}

.quote-card {
    background: linear-gradient(135deg, rgba(236, 208, 194, 0.1) 0%, rgba(247, 233, 224, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 0 10px 10px 0;
    position: relative;
    overflow: hidden;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0.05;
    z-index: 1;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.quote-text {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    color: var(--dark-text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.quote-author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Quick Info Card */
.quick-info-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

[data-theme="dark"] .quick-info-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.info-card-title {
    font-family: var(--heading-font);
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .info-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-icon {
    background: var(--primary-color);
    color: var(--dark-text);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
}

.info-content h4 {
    font-family: var(--heading-font);
    font-size: 1.1rem;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.info-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Education Section */
.education-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(236, 208, 194, 0.15) 0%, rgba(247, 233, 224, 0.15) 100%);
    overflow: hidden;
}

[data-theme="dark"] .education-section {
    background: linear-gradient(135deg, rgba(166, 127, 111, 0.1) 0%, rgba(58, 46, 42, 0.1) 100%);
}

.section-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ecd0c2' fill-opacity='0.4' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.section-subtitle {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 4rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
}

.timeline-group {
    margin-bottom: 4rem;
    position: relative;
}

.timeline-group:last-child {
    margin-bottom: 0;
}

.timeline-group-title {
    display: flex;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.group-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    background: var(--card-bg);
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.timeline-group-title h3 {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 0;
    font-size: 1.8rem;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    padding: 0.5rem;
    background: var(--primary-color);
    color: var(--dark-text);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.timeline-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .timeline-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px 0 0 4px;
}

.timeline-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.timeline-card-title {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    line-height: 1.4;
}

.timeline-card-badge {
    background: var(--primary-color);
    color: var(--dark-text);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.timeline-card-body {
    color: var(--text-color);
}

.timeline-card-institution {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.timeline-card-description {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-card-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: rgba(236, 208, 194, 0.2);
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(236, 208, 194, 0.3);
}

[data-theme="dark"] .skill-tag {
    background: rgba(166, 127, 111, 0.2);
    border-color: rgba(166, 127, 111, 0.3);
}

/* Specializations Section */
.specializations-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.specialization-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .specialization-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.specialization-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.specialization-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
}

.specialization-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.specialization-card-icon.anxiety {
    background: rgba(236, 208, 194, 0.2);
    color: #e74c3c;
}

.specialization-card-icon.depression {
    background: rgba(155, 89, 182, 0.1);
    color: #9b59b6;
}

.specialization-card-icon.relationships {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.specialization-card-title {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.specialization-card-description {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.specialization-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specialization-card-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.specialization-card-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Philosophy Section */
.philosophy-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(247, 233, 224, 0.3) 0%, rgba(236, 208, 194, 0.3) 100%);
}

[data-theme="dark"] .philosophy-section {
    background: linear-gradient(135deg, rgba(58, 46, 42, 0.3) 0%, rgba(166, 127, 111, 0.3) 100%);
}

.philosophy-image {
    text-align: center;
}

.philosophy-image-wrapper {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0b9a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite 1s;
}

.philosophy-icon {
    font-size: 8rem;
    color: white;
}

.philosophy-content {
    padding-left: 2rem;
}

.philosophy-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.philosophy-point:last-child {
    margin-bottom: 0;
}

.philosophy-point-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.philosophy-point-content h4 {
    font-family: var(--heading-font);
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.philosophy-point-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e0b9a7 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.about-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-cta-title {
    font-family: var(--heading-font);
    font-size: 2.5rem;
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.about-cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.about-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-title {
        font-size: 2.8rem;
    }

    .profile-image-wrapper {
        width: 250px;
        height: 250px;
        margin-top: 2rem;
    }

    .profile-icon {
        font-size: 6rem;
    }

    .profile-decoration {
        width: 320px;
        height: 320px;
    }

    .circle-1 {
        width: 280px;
        height: 280px;
    }

    .circle-2 {
        width: 300px;
        height: 300px;
    }

    .circle-3 {
        width: 320px;
        height: 320px;
    }

    .philosophy-image-wrapper {
        width: 250px;
        height: 250px;
        margin-bottom: 3rem;
    }

    .philosophy-icon {
        font-size: 6rem;
    }

    .philosophy-content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }

    .about-title {
        font-size: 2.2rem;
    }

    .about-subtitle {
        font-size: 1.2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-date {
        width: 50px;
        font-size: 0.8rem;
    }

    .about-cta-title {
        font-size: 2rem;
    }

    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .timeline-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 1.8rem;
    }

    .profile-image-wrapper {
        width: 200px;
        height: 200px;
    }

    .profile-icon {
        font-size: 4rem;
    }

    .profile-decoration {
        width: 260px;
        height: 260px;
    }

    .circle-1 {
        width: 220px;
        height: 220px;
    }

    .circle-2 {
        width: 240px;
        height: 240px;
    }

    .circle-3 {
        width: 260px;
        height: 260px;
    }

    .philosophy-image-wrapper {
        width: 200px;
        height: 200px;
    }

    .philosophy-icon {
        font-size: 4rem;
    }

    .info-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-icon {
        margin-bottom: 0.75rem;
    }

    .quick-info-card {
        position: static;
        margin-top: 2rem;
    }
}