/* About Page Styles - Service Mania */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #ff7a00 0%, #ff5e00 100%);
    color: white;
    padding: 100px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.about-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 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-stats .stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 15px;
    min-width: 150px;
}

.hero-stats h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.hero-stats p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #111827;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: #f9fafb;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-text h3 {
    font-size: 1.8rem;
    color: #111827;
    margin-bottom: 20px;
}

.story-text p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.story-highlight {
    background: linear-gradient(135deg, #fff3e8 0%, #ffe5cc 100%);
    border-left: 4px solid #ff7a00;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.story-highlight i {
    color: #ff7a00;
    font-size: 1.5rem;
    margin-top: 5px;
}

.story-highlight h4 {
    color: #111827;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.story-highlight p {
    margin: 0;
    font-size: 0.95rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #ffedd5;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 122, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #fff3e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: #ff7a00;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: #ff7a00;
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    color: #111827;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 25px;
    background: #f9fafb;
    border-radius: 15px;
    border: 1px solid #ffedd5;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: white;
    border-color: #ff7a00;
    transform: translateX(10px);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #fff3e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ff7a00;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: #111827;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-content p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin: 60px 0;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.about-cta::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" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="rgba(255,122,0,0.1)"/></svg>');
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.about-cta h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 180px;
    padding: 15px 30px;
}

.btn.secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn.secondary:hover {
    background: white;
    color: #111827;
}

/* Active nav link */
.nav-links a.active {
    color: #ff7a00;
    font-weight: 600;
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff7a00;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        gap: 40px;
    }
    
    .story-image img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 20px 40px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stats .stat-item {
        min-width: 120px;
        padding: 15px 20px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-image img {
        height: 300px;
    }
    
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-item {
        padding: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .story-highlight {
        flex-direction: column;
        text-align: center;
    }
    
    .value-card {
        padding: 20px;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .about-cta {
        padding: 60px 15px;
        border-radius: 20px;
    }
}