/* ==========================================
   About Page - Professional Design
   ========================================== */

.about-page {
    background: #ffffff;
}

/* Hero */
.about-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #eff6ff 100%);
    padding: 60px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.about-hero__container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.about-hero__title {
    font-size: 3rem;
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}

.about-hero__title-highlight {
    display: block;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

.about-hero__subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

.about-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero__stat {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.about-hero__stat:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.12);
}

.about-hero__stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #3b82f6;
    margin-bottom: 8px;
    line-height: 1;
}

.about-hero__stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6b7280;
}

/* Our Story */
.about-story {
    padding: 80px 20px;
    background: #ffffff;
}

.about-story__container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px 0;
}

.about-story__text {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.8;
}

.about-story__text p {
    margin: 0 0 20px 0;
}

.about-story__text p:last-child {
    margin-bottom: 0;
}

.about-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.about-link:hover {
    border-bottom-color: #3b82f6;
}

.about-story__image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.about-story__image-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.12);
}

.about-story__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Values */
.about-values {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.about-values__container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-values__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin: 0 0 16px 0;
}

.about-values__subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 50px 0;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-value-card {
    padding: 40px 32px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.about-value-card:hover {
    border-color: #3b82f6;
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.12);
}

.about-value-card__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: #3b82f6;
    transition: all 0.3s ease;
}

.about-value-card:hover .about-value-card__icon {
    transform: scale(1.1);
}

.about-value-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.about-value-card__text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Services */
.about-services {
    padding: 80px 20px;
    background: #ffffff;
}

.about-services__container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-services__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin: 0 0 16px 0;
}

.about-services__subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 50px 0;
}

.about-services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-service-card {
    padding: 40px 32px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6 0%, #2563eb 100%);
}

.about-service-card:hover {
    border-color: #3b82f6;
    transform: translateY(-6px);
    box-shadow: 0 10px 35px rgba(59, 130, 246, 0.12);
}

.about-service-card__number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
}

.about-service-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
}

.about-service-card__text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.about-service-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-service-card__features li {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 600;
}

.about-service-card__features li::before {
    content: '✓ ';
    color: #10b981;
    font-weight: 900;
    margin-right: 8px;
}

.about-service-card__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.about-service-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Why Choose Us */
.about-why {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.about-why__container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-why__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin: 0 0 16px 0;
}

.about-why__subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin: 0 0 50px 0;
}

.about-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-why__card {
    padding: 32px;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.about-why__card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.1);
}

.about-why__card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.about-why__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    padding-right: 50px;
}

.about-why__card-text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Stats Banner */
.about-stats {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
}

.about-stats__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.about-stats__item {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-stats__item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.2);
}

.about-stats__icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    color: #3b82f6;
}

.about-stats__number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
}

.about-stats__label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* CTA */
.about-cta {
    padding: 80px 20px;
    background: #ffffff;
}

.about-cta__container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-cta__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 16px 0;
}

.about-cta__text {
    font-size: 1.125rem;
    color: #6b7280;
    margin: 0 0 40px 0;
}

.about-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-cta__button--primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.about-cta__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.4);
}

.about-cta__button--whatsapp {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.about-cta__button--whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
}

.about-cta__button--phone {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.about-cta__button--phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
    .about-story__container {
        gap: 40px;
    }
    
    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .about-hero {
        padding: 50px 20px;
    }
    
    .about-hero__title {
        font-size: 2rem;
    }
    
    .about-hero__subtitle {
        font-size: 1rem;
    }
    
    .about-hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .about-hero__stat {
        padding: 16px;
    }
    
    .about-hero__stat-number {
        font-size: 1.5rem;
    }
    
    .about-story {
        padding: 60px 20px;
    }
    
    .about-story__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-story__title {
        font-size: 1.75rem;
    }
    
    .about-story__text {
        font-size: 1rem;
    }
    
    .about-values {
        padding: 60px 20px;
    }
    
    .about-values__title {
        font-size: 1.75rem;
    }
    
    .about-values__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-services {
        padding: 60px 20px;
    }
    
    .about-services__title {
        font-size: 1.75rem;
    }
    
    .about-services__grid {
        grid-template-columns: 1fr;
    }
    
    .about-why {
        padding: 60px 20px;
    }
    
    .about-why__title {
        font-size: 1.75rem;
    }
    
    .about-why__grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        padding: 50px 20px;
    }
    
    .about-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .about-stats__item {
        padding: 24px 16px;
    }
    
    .about-stats__number {
        font-size: 2rem;
    }
    
    .about-cta {
        padding: 60px 20px;
    }
    
    .about-cta__title {
        font-size: 1.75rem;
    }
    
    .about-cta__text {
        font-size: 1rem;
    }
    
    .about-cta__buttons {
        flex-direction: column;
    }
    
    .about-cta__button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-hero__title {
        font-size: 1.75rem;
    }
    
    .about-hero__stats {
        grid-template-columns: 1fr;
    }
    
    .about-story__title {
        font-size: 1.5rem;
    }
    
    .about-values__title {
        font-size: 1.5rem;
    }
    
    .about-services__title {
        font-size: 1.5rem;
    }
    
    .about-why__title {
        font-size: 1.5rem;
    }
    
    .about-stats__grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta__title {
        font-size: 1.5rem;
    }
}


