/* ===================================
   About Us Page Styles - Gumex Webshop
   =================================== */

/* Hero Section */
.about-hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    margin-bottom: 60px;
    background-image: url(/images/gumex-landing.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 187, 52, 0.95) 0%, rgba(255, 187, 52, 0.75) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 20px;
    text-align: center;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 0;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    max-width: 800px;
    margin: 0 auto;
}

/* Main Image Section */
.about-main-image-section {
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-main-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-main-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.about-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Story Section */
.about-story-section {
    margin-bottom: 60px;
}

.about-content-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.about-content-card:hover {
    border-color: #2a5298;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-content-card h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.about-content-card h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c 0%, #ffbb34 100%);
    border-radius: 2px;
}

.about-content-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1.5rem;
}

.about-content-card p:last-child {
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #2a5298;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    color: #fff;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 10px;
}

.service-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Services List */
.services-list {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid #e74c3c;
}

.services-list h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 1.5rem;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
    font-size: 1.1rem;
    color: #495057;
    position: relative;
    padding-left: 35px;
    transition: all 0.3s ease;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 1.2rem;
}

.services-list li:hover {
    padding-left: 40px;
    color: #1e3c72;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 20px;
    border-radius: 16px;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 600;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 60px 40px;
    border-radius: 16px;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.mission-section:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s infinite;
}

.mission-content {
    position: relative;
    z-index: 1;
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.mission-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

/* CTA Section */
.about-cta-section {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #ffbb34 0%, #e67e22 100%);
    border-radius: 16px;
    color: #fff;
}

.about-cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.about-cta-section .btn-light {
    background: #fff;
    color: #1e3c72;
    font-weight: 600;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.about-cta-section .btn-light:hover {
    background: #1e3c72;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb Enhancement */
.page-container .breadcrumb {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 0;
}

.page-container .breadcrumb-item a {
    color: #2a5298;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-container .breadcrumb-item a:hover {
    color: #e74c3c;
}

.page-container .breadcrumb-item.active {
    color: #6c757d;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(180deg);
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .about-content-card {
        padding: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 300px;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .about-hero-content {
        padding: 50px 20px;
    }

    .about-content-card {
        padding: 25px;
    }

    .about-content-card h2 {
        font-size: 1.6rem;
    }

    .about-content-card p {
        font-size: 1rem;
    }

    .services-list {
        padding: 25px;
    }

    .services-list li {
        font-size: 1rem;
    }

    .mission-section {
        padding: 40px 25px;
    }

    .mission-title {
        font-size: 2rem;
    }

    .mission-text {
        font-size: 1.1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 1.8rem;
    }

    .about-hero-subtitle {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-cta-section {
        padding: 30px 20px;
    }

    .about-cta-title {
        font-size: 1.6rem;
    }

    .about-cta-text {
        font-size: 1rem;
    }

    .about-cta-section .btn-light {
        width: 100%;
        padding: 12px 30px;
    }
}
