/* PROFESSIONAL ABOUT PAGE - BLACK AND YELLOW THEME */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: #FFFFFF;
    padding: 100px 0 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFC107" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFC107" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.header-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: #FFC107;
    color: #1A1A1A;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* About Hero Section */
.about-hero {
    padding: 100px 0;
    background: #FFFFFF;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    background: #FFF3CD;
    color: #1A1A1A;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.about-hero h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 25px;
    line-height: 1.2;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: #2D2D2D;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 20px;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    font-size: 1.2rem;
    color: #FFC107;
}

.trust-item span {
    font-weight: 600;
    color: #1A1A1A;
}

.about-hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.placeholder-image {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1A1A1A;
}

.placeholder-image i {
    font-size: 4rem;
    margin-bottom: 15px;
}

.placeholder-image span {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: #F8F9FA;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: #1A1A1A;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.service-card p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-card li {
    padding: 5px 0;
    color: #666666;
    position: relative;
    padding-left: 20px;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC107;
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: #FFFFFF;
}

.stats-header {
    text-align: center;
    margin-bottom: 80px;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.stats-header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 1.8rem;
    color: #1A1A1A;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFC107;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.stat-desc {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Mission Vision */
.mission-vision {
    padding: 100px 0;
    background: #FFFFFF;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
}

.mission-card {
    background: #F8F9FA;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: #FFC107;
    transform: translateY(-5px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.card-icon i {
    font-size: 2rem;
    color: #1A1A1A;
}

.mission-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
}

.mission-card p {
    color: #666666;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: #F8F9FA;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-item {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: #1A1A1A;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1A1A 0%, #2D2D2D 100%);
    color: #FFFFFF;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #FFC107;
    color: #1A1A1A;
}

.btn-primary:hover {
    background: #FFB300;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFC107;
}

.btn-secondary:hover {
    background: #FFC107;
    color: #1A1A1A;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-hero-grid {
        gap: 60px;
    }
    
    .trust-indicators {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-hero h2 {
        font-size: 2.2rem;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .stats-grid {
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-hero,
    .services-overview,
    .stats-section,
    .mission-vision,
    .why-choose-us {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .mission-card {
        padding: 30px 20px;
    }
}
