/* About Page Specific Styles */

/* Page Header */
.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 8rem 0 4rem;
    margin-top: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="beauty-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23beauty-pattern)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Decorative Line */
.decorative-line {
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

/* About Content */
.about-content {
    padding: 4rem 0;
    background: var(--cream);
}

/* First Row: Slideshow */
.about-slideshow-row {
    margin-bottom: 4rem;
}

.about-slideshow-row .about-image {
    max-width: 1400px;
    margin: 0 auto;
}

/* Second Row: Our Story */
.about-story-row {
    margin-bottom: 4rem;
    text-align: center;
}

.about-story-row .section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.about-story-row .lead {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-story-row p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Third Row: Value Cards */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.lead {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.value-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--white);
    box-shadow: var(--box-shadow);
}

.value-item h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Image Slideshow */
.about-image .image-slideshow {
    width: 100%;
    height: 600px;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background: var(--white);
}

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--white);
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    animation: fadeIn 0.8s ease-in-out;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.prev-slide,
.next-slide {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 1rem 1.2rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: var(--transition);
    z-index: 10;
}

.prev-slide:hover,
.next-slide:hover {
    background: rgba(0, 0, 0, 0.8);
}

.prev-slide {
    left: 15px;
}

.next-slide {
    right: 15px;
}

.slideshow-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--white);
}

.about-image .image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 100%);
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--box-shadow);
    position: relative;
    overflow: hidden;
}


.about-image .image-placeholder::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 25px;
    z-index: -1;
}

.about-image .image-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-image .image-placeholder h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-image .image-placeholder p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--white);
    padding: 6rem 0;
}

.why-choose-us .section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--light-pink);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-number {
    display: none;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: var(--box-shadow);
}

.feature-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    text-align: center;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.feature-benefits i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

/* Services Overview */
.services-overview {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 100%);
    padding: 6rem 0;
}

.services-overview .section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-showcase-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-showcase-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: var(--gradient);
}

.service-showcase-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.showcase-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--box-shadow);
}

.showcase-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.showcase-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.showcase-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.1rem;
}

.showcase-link:hover {
    color: var(--accent-color);
}

/* Commitment Section */
.commitment-section {
    background: var(--white);
    padding: 6rem 0;
}

.commitment-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.commitment-text .section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: left;
}

.commitment-lead {
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.commitment-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.commitment-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-pink);
    border-radius: 15px;
    transition: var(--transition);
}

.commitment-point:hover {
    transform: translateX(10px);
    box-shadow: var(--box-shadow);
}

.point-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--box-shadow);
}

.point-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.point-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1rem;
}

/* Stats */
.commitment-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-pink);
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Testimonials */
.testimonials-section {
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 100%);
    padding: 6rem 0;
}

.testimonials-section .section-header h2 {
    font-size: 3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stars {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.stars i {
    color: #ffd700;
    font-size: 1.3rem;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--box-shadow);
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-slideshow-row {
        margin-bottom: 3rem;
    }
    
    .about-story-row {
        margin-bottom: 3rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-showcase-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .service-showcase-item:hover {
        transform: translateY(-10px);
    }
    
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .commitment-text .section-header h2 {
        text-align: center;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-text .section-header h2,
    .about-story-row .section-header h2,
    .why-choose-us .section-header h2,
    .services-overview .section-header h2,
    .commitment-text .section-header h2,
    .testimonials-section .section-header h2 {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image .image-placeholder {
        height: 350px;
        border-radius: 20px;
    }
    
    .about-image .image-slideshow {
        height: 350px;
    }
    
    .prev-slide,
    .next-slide {
        padding: 0.8rem 1rem;
        font-size: 1.2rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
    
    .feature-number {
        display: none;
    }
    
    .service-showcase-item {
        padding: 2.5rem 2rem;
    }
    
    .showcase-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .commitment-point {
        padding: 1.5rem;
    }
    
    .point-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .commitment-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonial-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 480px) {
    .about-content,
    .why-choose-us,
    .services-overview,
    .commitment-section,
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .about-slideshow-row {
        margin-bottom: 2rem;
    }
    
    .about-story-row {
        margin-bottom: 2rem;
    }
    
    .about-story-row .section-header h2 {
        font-size: 2rem;
    }
    
    .about-text .section-header h2,
    .why-choose-us .section-header h2,
    .services-overview .section-header h2,
    .commitment-text .section-header h2,
    .testimonials-section .section-header h2 {
        font-size: 2rem;
    }
    
    .about-image .image-placeholder {
        height: 300px;
        border-radius: 15px;
    }
    
    .about-image .image-slideshow {
        height: 300px;
    }
    
    .prev-slide,
    .next-slide {
        padding: 0.6rem 0.8rem;
        font-size: 1rem;
    }
    
    .prev-slide {
        left: 10px;
    }
    
    .next-slide {
        right: 10px;
    }
    
    .slideshow-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .value-item {
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .service-showcase-item {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .showcase-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .commitment-point {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    .stat-item {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
}

/* Animation enhancements */
.value-item,
.feature-card,
.service-showcase-item,
.commitment-point,
.stat-item,
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.service-showcase-item:nth-child(1) { animation-delay: 0.1s; }
.service-showcase-item:nth-child(2) { animation-delay: 0.2s; }
.service-showcase-item:nth-child(3) { animation-delay: 0.3s; }
.service-showcase-item:nth-child(4) { animation-delay: 0.4s; }
.service-showcase-item:nth-child(5) { animation-delay: 0.5s; }

.commitment-point:nth-child(1) { animation-delay: 0.1s; }
.commitment-point:nth-child(2) { animation-delay: 0.2s; }
.commitment-point:nth-child(3) { animation-delay: 0.3s; }

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }