.treatment-dermal-filler-hero {
    background-image: linear-gradient(rgba(20, 20, 20, 0.35), rgba(20, 20, 20, 0.35)), url('../img/hero-dermal-filler-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.treatment-dermal-filler-hero .hero-subtitle {
    color: var(--light-gray);
}

.treatment-dermal-filler-hero .hero-title {
    color: var(--primary-timberwolf);
}


.treatment-dermal-filler-hero .trust-list {
    animation: fadeInUp 1.8s ease-out 1s backwards;
}

.overview-section {
    background-color: var(--primary-lighter);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.overview-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.85;
}

.quick-view-section {
    background-color: var(--white);
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.quick-view-card .card-body {
    position: relative;
    padding: 1.25rem 1.25rem 1.25rem 5.25rem;
}

.quick-view-icon {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    color: var(--accent-gold);
    font-size: 3rem;
    line-height: 1;
}

.quick-view-title {
    color: var(--text-primary);
    font-size: 1.25rem; /* 1.05rem; */
}

.treatment-area-card {
    overflow: hidden;
}

.treatment-area-card .card-body {
    display: flex;
    flex-direction: column;
}

.treatment-area-image {
    width: 100%;
    height: auto; /*240px;*/
    object-fit: cover;
}



.antiwrinkle-journey-section {
    background-color: var(--primary-lighter);
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.journey-step {
    background-color: var(--white);
    border: 1px solid var(--primary-light);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.journey-step:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.journey-step-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--accent-gold);
    border: 1px solid var(--accent-gold);
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    margin-bottom: 0.9rem;
}

.journey-step-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.journey-step-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

@media (max-width: 1199px) {
    .journey-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .antiwrinkle-journey-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .journey-timeline {
        grid-template-columns: 1fr;
        gap: 0.9rem;
    }

    .journey-step {
        padding: 1.25rem;
    }
}
