/* ========================================
   ABOUT PAGE - UNIQUE DESIGN
   Orange/Pink Gradient Theme
   ======================================== */

/* About Page Color Scheme */
.about-page {
    --about-primary: #ff6b35;
    --about-secondary: #f7931e;
    --about-accent: #ff006e;
    --about-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ff006e 100%);
    --about-gradient-light: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
}

/* About Page Header */
.about-page .page-header {
    background: var(--about-gradient);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.about-page .page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.about-page .page-header::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out reverse;
}

.about-page .page-header h1 {
    position: relative;
    z-index: 2;
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* About Intro Section */
.about-intro {
    background: linear-gradient(to bottom, rgba(255, 107, 53, 0.05), white);
    padding: 4rem 0;
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro-text h2 {
    background: var(--about-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-intro-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.about-intro-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--about-gradient);
    opacity: 0.1;
    z-index: 1;
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-intro-image:hover img {
    transform: scale(1.1);
}

/* Vision & Mission Cards */
.vision-mission {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 4rem 0;
}

.vm-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--about-gradient);
}

.vm-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--about-gradient-light);
    transition: top 0.4s ease;
}

.vm-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.vm-card:hover::after {
    top: 0;
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: var(--about-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.vm-icon i {
    font-size: 2rem;
    color: white;
}

.vm-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    background: var(--about-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vm-card p {
    position: relative;
    z-index: 2;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Why Choose Us Section */
.why-choose {
    background: var(--about-gradient-light);
    padding: 5rem 0;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--about-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    border-color: var(--about-primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--about-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.feature-icon i {
    font-size: 1.75rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Core Values Section */
.core-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--about-gradient);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-item:hover::before {
    transform: scaleX(1);
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.value-number {
    width: 50px;
    height: 50px;
    background: var(--about-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

/* Founder's Message Section */
.founders-message {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(to top, rgba(255, 107, 53, 0.05), white);
}

.founders-content {
    background: white;
    border-radius: var(--radius-xl);
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.founders-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--about-gradient);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 3rem;
    font-size: 8rem;
    color: rgba(255, 107, 53, 0.05);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
}

.founders-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    background: var(--about-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.founders-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.founder-sign {
    margin-top: 2rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.founder-role {
    font-size: 0.9rem;
    color: var(--about-primary);
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-page .page-header {
        min-height: 300px;
    }

    .about-page .page-header h1 {
        font-size: 2rem;
    }

    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro-text h2 {
        font-size: 1.8rem;
    }

    .vision-mission {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vm-card {
        padding: 2rem;
    }

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

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

    .founders-content {
        padding: 2.5rem 2rem;
    }

    .founders-text h2 {
        font-size: 2rem;
    }

    .quote-icon {
        font-size: 5rem;
        right: 1rem;
        top: 1rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-page .page-header::before,
    .about-page .page-header::after {
        width: 300px;
        height: 300px;
    }
}