/* About Page Specific Styles */

/* Page Header Section */
.about-header {
    background: linear-gradient(rgba(0, 0, 32, 0.7), rgba(0, 0, 32, 0.7)), url('../images/about-header-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.page-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb {
    font-size: 16px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Company Introduction Section */
.about-intro {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 32, 0.1);
}

.about-description {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #5e2d91;
}

.value-item h3 {
    color: #5e2d91;
    margin-bottom: 15px;
    font-size: 20px;
}

/* Distribution Brands Section */
.about-brands {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.brands-content {
    margin-top: 50px;
}

.brands-category {
    margin-bottom: 50px;
}

.brands-category h3 {
    color: #333;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.brands-category p {
    color: #666;
    margin-bottom: 25px;
}

.brands-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.brand-logo {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: translateY(-5px);
}

.brand-logo img {
    max-width: 100%;
    
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: #fff;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.reason-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    margin-bottom: 20px;
}

.reason-icon img {
    width: 60px;
    height: 60px;
}

.reason-item h3 {
    color: #5e2d91;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.reason-item p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

/* Global Presence Section */
.global-presence {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.global-content {
    margin-top: 50px;
}

.global-map {
    margin-bottom: 50px;
    text-align: center;
}

.global-map img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 32, 0.1);
}

.global-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-bottom: 50px;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #5e2d91;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 18px;
    color: #333;
}

.global-offices {
    margin-top: 50px;
}

.global-offices h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
}

.offices-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.office-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
}

.office-item h4 {
    color: #5e2d91;
    margin-bottom: 15px;
    font-size: 20px;
}

.office-item p {
    color: #555;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

/* Client Cases Section */
.client-cases {
    padding: 80px 0;
    background-color: #fff;
}

.cases-content {
    margin-top: 50px;
    text-align: center;
}

.cases-intro {
    font-size: 18px;
    color: #444;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cases-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.case-category {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    text-align: left;
}

.case-category h3 {
    color: #5e2d91;
    margin-bottom: 15px;
    font-size: 20px;
}

.case-category p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.cases-cta {
    margin-top: 40px;
}

.cases-cta .btn {
    display: inline-block;
    background-color: #5e2d91;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cases-cta .btn:hover {
    background-color: #4a2372;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .subtitle {
    color: #5e2d91;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-header .title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    position: relative;
    padding-bottom: 20px;
}

.section-header .title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #5e2d91;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .section-header .title {
        font-size: 30px;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 32px;
    }
    
    .about-header {
        padding: 60px 0;
    }
    
    .about-intro, .about-brands, .why-choose-us, .global-presence, .client-cases {
        padding: 60px 0;
    }
    
    .section-header .title {
        font-size: 26px;
    }
    
    .value-item, .reason-item, .office-item, .case-category {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .page-header-content h1 {
        font-size: 28px;
    }
    
    .about-header {
        padding: 40px 0;
    }
    
    .about-intro, .about-brands, .why-choose-us, .global-presence, .client-cases {
        padding: 40px 0;
    }
    
    .section-header .title {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-text {
        font-size: 16px;
    }
} 