/* Ron Dor Profile Page - RÉDOR Aesthetic */

.profile-page {
    background: var(--black-primary);
}

/* Custom Scrollbar - RÉDOR Gold */
.profile-page ::-webkit-scrollbar {
    width: 12px;
}

.profile-page ::-webkit-scrollbar-track {
    background: var(--black-primary);
    border-left: 1px solid rgba(212, 175, 55, 0.1);
}

.profile-page ::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 6px;
    border: 2px solid var(--black-primary);
}

.profile-page ::-webkit-scrollbar-thumb:hover {
    background: var(--gold-light);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Profile Hero */
.profile-hero {
    padding: 3rem 0 6rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,
        var(--black-primary) 0%,
        var(--black-secondary) 30%,
        var(--black-tertiary) 60%,
        var(--black-secondary) 80%,
        var(--black-primary) 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    margin-top: 0;
    min-height: 550px;
}

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

.profile-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.quantum-grid {
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.1) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.profile-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.profile-image-container {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--gold-primary);
    box-shadow:
        0 0 40px rgba(212, 175, 55, 0.4),
        0 0 80px rgba(212, 175, 55, 0.25);
    background: var(--black-secondary);
    transition: all 0.4s ease;
    position: relative;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow:
            0 0 40px rgba(212, 175, 55, 0.4),
            0 0 80px rgba(212, 175, 55, 0.25);
    }
    50% {
        box-shadow:
            0 0 60px rgba(212, 175, 55, 0.6),
            0 0 100px rgba(212, 175, 55, 0.4);
    }
}

.profile-image-container:hover {
    transform: scale(1.05);
    animation: none;
    box-shadow:
        0 0 60px rgba(212, 175, 55, 0.7),
        0 0 100px rgba(212, 175, 55, 0.5);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header {
    text-align: center;
}

.profile-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 5rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    background: linear-gradient(110deg,
        var(--gold-dark) 0%,
        var(--gold-light) 25%,
        var(--gold-primary) 50%,
        var(--gold-light) 75%,
        var(--gold-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.profile-title {
    font-family: 'Source Serif Pro', serif;
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-bottom: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    font-style: italic;
}

.profile-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: var(--gold-light);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* Bio Section */
.profile-bio {
    padding: 5rem 0 0 0;
    background: var(--black-primary);
}

.bio-content {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: var(--gold-primary);
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg,
        transparent,
        var(--gold-primary),
        transparent);
    border-radius: 2px;
    animation: expandLine 2s ease-in-out infinite;
}

@keyframes expandLine {
    0%, 100% {
        width: 100px;
        opacity: 1;
    }
    50% {
        width: 200px;
        opacity: 0.7;
    }
}

.bio-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gold-light);
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.bio-text p {
    margin-bottom: 1.75rem;
}

/* Journey Section */
.profile-journey {
    padding: 5rem 0 0 0;
    background: linear-gradient(180deg,
        var(--black-primary) 0%,
        var(--black-secondary) 50%,
        var(--black-primary) 100%);
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.journey-card {
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(42, 42, 42, 0.5) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    padding: 3rem 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 175, 55, 0.15),
        transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.journey-card:hover::before {
    left: 100%;
}

.journey-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center,
        rgba(212, 175, 55, 0.1) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.journey-card:hover::after {
    opacity: 1;
}

.journey-card:hover {
    border-color: var(--gold-primary);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.3);
    transform: translateY(-12px) scale(1.02);
    background: linear-gradient(135deg,
        rgba(42, 42, 42, 0.8) 0%,
        rgba(26, 26, 26, 0.6) 100%);
}

.journey-icon {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
    transition: all 0.4s ease;
    display: inline-block;
}

.journey-card:hover .journey-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.7));
}

.journey-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
    color: var(--gold-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: capitalize;
}

.journey-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gold-light);
    opacity: 0.93;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Expertise Section */
.profile-expertise {
    padding: 5rem 0;
    background: var(--black-primary);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.expertise-item {
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.85) 0%,
        rgba(10, 10, 10, 0.95) 100%);
    border-left: 3px solid var(--gold-primary);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.08) 0%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.expertise-item:hover::before {
    opacity: 1;
}

.expertise-item:hover {
    background: linear-gradient(135deg,
        rgba(42, 42, 42, 0.9) 0%,
        rgba(26, 26, 26, 0.95) 100%);
    border-left-width: 6px;
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.expertise-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: var(--gold-primary);
    opacity: 0.25;
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.expertise-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--gold-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.expertise-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gold-light);
    opacity: 0.93;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Philosophy Section */
.profile-philosophy {
    padding: 5rem 0;
    background: linear-gradient(135deg,
        var(--black-secondary) 0%,
        var(--black-primary) 50%,
        var(--black-secondary) 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.philosophy-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gold-light);
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.philosophy-text p {
    margin-bottom: 1.75rem;
    text-align: left;
}

.philosophy-signature {
    font-family: 'Source Serif Pro', serif;
    font-size: 1.6rem;
    color: var(--gold-primary);
    margin-top: 2.5rem;
    font-style: italic;
    text-align: center !important;
    font-weight: 700;
    letter-spacing: 0.01em;
}

/* Network Section */
.profile-network {
    padding: 5rem 0;
    background: var(--black-primary);
}

.network-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.network-stat {
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(42, 42, 42, 0.5) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.network-stat::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(212, 175, 55, 0.15) 0%,
        transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.network-stat:hover::before {
    width: 300px;
    height: 300px;
}

.network-stat:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg,
        rgba(42, 42, 42, 0.8) 0%,
        rgba(26, 26, 26, 0.6) 100%);
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.network-stat:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    color: var(--gold-light);
    opacity: 0.85;
    letter-spacing: 0.03em;
    font-weight: 500;
}

/* Contact Form Section */
.contact-form-section {
    margin-top: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--gold-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.contact-form fieldset {
    border: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.contact-form .input {
    width: 100%;
    background-color: rgba(26, 26, 26, 0.6);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--gold-light);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}

.contact-form .input:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.contact-form .input::placeholder {
    color: var(--gold-light);
    opacity: 0.5;
}

.contact-form textarea.input {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.9) 0%,
        rgba(184, 148, 31, 0.9) 100%);
    border: 2px solid var(--gold-primary);
    border-radius: 8px;
    color: var(--black-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg,
        var(--gold-primary) 0%,
        var(--gold-light) 100%);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.contact-submit-btn .loading-text {
    display: none;
}

.contact-submit-btn.sending .default-text {
    display: none;
}

.contact-submit-btn.sending .loading-text {
    display: inline;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 0.75rem;
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-status.show {
    opacity: 1;
}

.form-status.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.4);
    color: #4caf50;
}

.form-status.error {
    background: rgba(244, 67, 54, 0.2);
    border: 1px solid rgba(244, 67, 54, 0.4);
    color: #f44336;
}

.social-links-section {
    margin-top: 4rem;
}

.social-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--gold-primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
}

.social-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg,
        rgba(26, 26, 26, 0.8) 0%,
        rgba(42, 42, 42, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    color: var(--gold-light);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.social-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link-card:hover::before {
    opacity: 1;
}

.social-link-card:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg,
        rgba(42, 42, 42, 0.9) 0%,
        rgba(26, 26, 26, 0.8) 100%);
}

.social-link-card i {
    font-size: 2rem;
    opacity: 1;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-link-card:hover i {
    transform: scale(1.15);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.social-link-card span {
    position: relative;
    z-index: 1;
    letter-spacing: 0.02em;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .profile-name {
        font-size: 4rem;
    }

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

@media (max-width: 1024px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .social-link-card {
        padding: 1.75rem 1rem;
        font-size: 0.9rem;
    }

    .social-link-card i {
        font-size: 1.85rem;
    }
}

@media (max-width: 768px) {
    .profile-hero {
        padding: 3rem 0 4rem 0;
        min-height: 450px;
    }

    .profile-name {
        font-size: 3.5rem;
    }

    .profile-title {
        font-size: 1.4rem;
    }

    .profile-tagline {
        font-size: 1.1rem;
    }

    .profile-image-container {
        width: 200px;
        height: 200px;
    }

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

    .bio-text {
        font-size: 1.1rem;
    }

    .journey-title,
    .expertise-title {
        font-size: 1.6rem;
    }

    .journey-description,
    .expertise-description {
        font-size: 1.05rem;
    }

    .journey-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .network-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .social-link-card {
        padding: 1.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .social-link-card i {
        font-size: 1.75rem;
    }

    .profile-expertise,
    .profile-philosophy,
    .profile-network {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .profile-hero-content {
        gap: 1.5rem;
    }

    .profile-name {
        font-size: 2.8rem;
    }

    .profile-title {
        font-size: 1.3rem;
    }

    .profile-tagline {
        font-size: 1.05rem;
    }

    .profile-image-container {
        width: 150px;
        height: 150px;
    }

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

    .bio-text {
        font-size: 1.05rem;
        line-height: 1.75;
    }

    .journey-title,
    .expertise-title {
        font-size: 1.5rem;
    }

    .journey-description,
    .expertise-description {
        font-size: 1.05rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .contact-title,
    .social-title {
        font-size: 1.85rem;
    }

    .social-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .social-link-card {
        padding: 1.5rem 1rem;
    }

    .social-link-card i {
        font-size: 1.75rem;
    }
}

/* Read More Button */
.read-more-btn {
    display: none;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.15) 0%,
        rgba(212, 175, 55, 0.08) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: var(--gold-primary);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    width: 100%;
    position: relative;
    z-index: 10;
}

.read-more-btn:hover {
    background: linear-gradient(135deg,
        rgba(212, 175, 55, 0.25) 0%,
        rgba(212, 175, 55, 0.15) 100%);
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.read-more-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more-btn.expanded i {
    transform: rotate(180deg);
}

/* Expandable Content */
.expandable-content {
    position: relative;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.expandable-content.collapsed {
    max-height: 180px;
}

.expandable-content.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to bottom,
        transparent 0%,
        var(--black-primary) 90%);
    pointer-events: none;
}

.expandable-content.expanded {
    max-height: 2000px;
}

/* Mobile-only expandable sections */
@media (max-width: 768px) {
    .bio-text.has-read-more .expandable-content.collapsed {
        max-height: 150px;
    }

    .journey-description.has-read-more .expandable-content.collapsed {
        max-height: 120px;
    }

    .expertise-description.has-read-more .expandable-content.collapsed {
        max-height: 120px;
    }

    .bio-text.has-read-more .read-more-btn,
    .journey-description.has-read-more .read-more-btn,
    .expertise-description.has-read-more .read-more-btn {
        display: block;
    }

    .bio-text.has-read-more .expandable-content.collapsed::after {
        background: linear-gradient(to bottom,
            transparent 0%,
            var(--black-primary) 90%);
    }

    .journey-description.has-read-more .expandable-content.collapsed::after {
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(26, 26, 26, 0.7) 50%,
            rgba(26, 26, 26, 0.95) 90%);
    }

    .expertise-description.has-read-more .expandable-content.collapsed::after {
        background: linear-gradient(to bottom,
            transparent 0%,
            rgba(10, 10, 10, 0.85) 50%,
            rgba(10, 10, 10, 0.98) 90%);
    }

    .philosophy-text.has-read-more .expandable-content.collapsed {
        max-height: 150px;
    }

    .philosophy-text.has-read-more .read-more-btn {
        display: block;
    }

    .philosophy-text.has-read-more .expandable-content.collapsed::after {
        background: linear-gradient(to bottom,
            transparent 0%,
            var(--black-secondary) 50%,
            var(--black-primary) 90%);
    }
}

/* Animations */
.profile-hero-content,
.journey-card,
.expertise-item,
.network-stat,
.social-link-card {
    animation: fadeInUp 1s ease-out;
}

.journey-card:nth-child(2),
.expertise-item:nth-child(2) {
    animation-delay: 0.2s;
}

.journey-card:nth-child(3),
.expertise-item:nth-child(3) {
    animation-delay: 0.4s;
}
