/* About Hero Section */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
    overflow: hidden;
    padding: 6rem 2rem;
}

/* Main Container */
.about-hero .about-hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* Left Content */
.about-hero .about-hero-content {
    display: flex;
    flex-direction: column;
}

/* Heading */
.about-hero h1 {
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.6rem;
}

.about-hero .badge {
    margin: 0 0 1rem;
}

/* Subheadline */
.about-hero .subheadline {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 550px;
}

/* Features List */
.about-hero .features-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.about-hero .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border-left: 4px solid var(--yellow-primary);
    transition: all 0.3s ease;
}

.about-hero .feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-hero .feature-icon {
    width: 50px;
    height: 50px;
    background: var(--yellow-lighter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--yellow-primary);
    flex-shrink: 0;
}

.about-hero .feature-icon.icon-green {
    background: var(--green-lighter);
    color: var(--green-primary);
}

.about-hero .feature-icon.icon-red {
    background: var(--red-lighter);
    color: var(--red-primary);
}

.about-hero .feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.about-hero .feature-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

/* CTA Group */
.about-hero .cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Trust Indicators */
.about-hero .trust-indicators {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.about-hero .trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.about-hero .trust-item i {
    color: var(--yellow-primary);
    font-size: 1.2rem;
}

/* Right Side - Image Wrapper */
.about-hero .about-hero-image-wrapper {
    position: relative;
    height: 600px;
}

.about-hero .image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-hero .main-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, var(--yellow-lighter) 0%, var(--green-lighter) 100%);
    max-height: 520px;
}

.about-hero .therapist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Cards */
.about-hero .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-hero .stats-card {
    bottom: 30px;
    left: -30px;
    border-left: 4px solid var(--yellow-primary);
    animation-delay: 0s;
}

.about-hero .experience-card {
    top: 30px;
    right: -30px;
    border-left: 4px solid var(--green-primary);
    animation-delay: 1.5s;
}

.about-hero .card-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow-lighter);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--yellow-primary);
    flex-shrink: 0;
}

.about-hero .experience-card .card-icon {
    background: var(--green-lighter);
    color: var(--green-primary);
}

.about-hero .card-content h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1;
}

.about-hero .card-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0.3rem 0 0 0;
    font-weight: 500;
}

/* Responsive Design */

@media (max-width: 1024px) {
    .about-hero .about-hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        display: flex;
        flex-direction: column-reverse;
    }
}
@media (max-width: 992px) {
    .about-hero .about-hero-content {
        text-align: left;
        align-items: flex-start;
    }

    .about-hero .subheadline {
        max-width: 100%;
    }

    .about-hero .subheadline {
        margin: 0 auto;
    }

    .about-hero .features-list {
        max-width: 100%;
        width: 100%;
    }

    .about-hero .feature-item {
        text-align: left;
    }

    .about-hero .cta-group {
        justify-content: center;
        width: 100%;
    }

    .about-hero .trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-hero .stats-card {
        left: 10px;
    }

    .about-hero .experience-card {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 2rem;
    }

    .about-hero .about-hero-image-wrapper {
        height: auto;
    }

    .about-hero .floating-card {
        padding: 1rem;
    }

    .about-hero .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .about-hero .card-content h3 {
        font-size: 1.5rem;
    }

    .about-hero .card-content p {
        font-size: 0.8rem;
    }

    .about-hero .trust-indicators {
        gap: 1rem;
    }

    .about-hero .main-image {
        max-height: 500px;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 3rem 1.5rem;
    }

    .about-hero .trust-indicators {
        align-items: flex-start;
    }

    .about-hero .trust-item {
        width: 100%;
    }

    .about-hero .trust-indicators {
        width: 100%;
    }

    .about-hero .trust-item i {
        flex: 0 0 25px;
    }

    .about-hero .main-image {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero .subheadline {
        font-size: 1rem;
    }

    .about-hero .cta-group {
        flex-direction: column;
        width: 100%;
    }


    .about-hero .stats-card,
    .about-hero .experience-card {
        position: static;
        margin: 1rem 0;
    }

    .about-hero .trust-indicators {
        flex-direction: column;
        gap: 0.8rem;
    }

    .about-hero {
        margin-top: 65px;
    }

    .about-hero .floating-card {
        display: none;
    }
}