/* ================================== */
/* ABOUT.CSS - ENHANCED ABOUT PAGE STYLES */
/* assets/css/about.css */
/* ================================== */

/* Page Hero Section Enhancement */
.page-hero {
    background: linear-gradient(135deg, #E91E63 0%, #FF6B9D 100%);
    padding: 8rem 0 4rem;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::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 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,0 1000,80 1000,100 0,100"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* About Main Section */
.about-main {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-image {
    position: relative;
}

.story-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #F8BBD9, #FFE4E1);
    border-radius: var(--border-radius);
    z-index: 1;
}

.story-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(233, 30, 99, 0.2);
    transition: transform 0.3s ease;
}

.story-image img:hover {
    transform: translateY(-5px);
}

.story-content {
    padding: 2rem 0;
}

.story-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 2rem;
    color: var(--text-dark);
    position: relative;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.story-content p {
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-light);
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Qualifications Section */
.qualifications {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #fff 100%);
}

.qualifications .section-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    text-align: center;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.qualification-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(233, 30, 99, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 30, 99, 0.1);
    position: relative;
    overflow: hidden;
}

.qualification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.05), transparent);
    transition: left 0.5s ease;
}

.qualification-card:hover::before {
    left: 100%;
}

.qualification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(233, 30, 99, 0.2);
    border-color: var(--primary-color);
}

.qual-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.qualification-card:hover .qual-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.3);
}

.qual-icon i {
    font-size: 2rem;
    color: var(--white);
}

.qualification-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 600;
}

.qualification-card p {
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
}

/* Philosophy Section */
.philosophy {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.philosophy::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" fill="rgba(233,30,99,0.02)"><circle cx="50" cy="50" r="2"/></svg>');
    background-size: 50px 50px;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.philosophy-content h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.philosophy-item {
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.philosophy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.philosophy-item:hover::before {
    transform: scaleX(1);
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(233, 30, 99, 0.15);
    border-color: rgba(233, 30, 99, 0.2);
}

.philosophy-item h3 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.philosophy-item h3 .accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.philosophy-item p {
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
}

/* Enhanced CTA Section */
.cta-section {
    background: var(--gradient);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary-color);
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .about-main {
        padding: 4rem 0;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .story-image::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }

    .story-content {
        padding: 1rem 0;
    }

    .story-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .qualifications,
    .philosophy {
        padding: 4rem 0;
    }

    .qualifications-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }

    .qualification-card {
        padding: 2.5rem 2rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-item {
        padding: 2.5rem 1.5rem;
    }

    .cta-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .qualification-card,
    .philosophy-item {
        padding: 2rem 1.5rem;
    }

    .qual-icon {
        width: 70px;
        height: 70px;
    }

    .qual-icon i {
        font-size: 1.7rem;
    }

    .story-content h2 {
        text-align: center;
    }
}

/* Print Styles */
@media print {
    .page-hero,
    .cta-section {
        background: none !important;
        color: black !important;
    }
    
    .qualification-card,
    .philosophy-item {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}