/* =====================================================
   ABOUT PAGE STYLES - Digital Boost DZ Theme
===================================================== */

/* =====================================================
   HERO SECTION
===================================================== */
.about-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, 
        var(--bg-hero-gradient-start) 0%, 
        #F0EBFD 50%, 
        #FFFFFF 100%
    );
    padding: 160px 40px 80px;
    text-align: center;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--text-main);
    margin-bottom: 30px;
}

.about-hero-title .desktop-text {
    display: block;
}

.about-hero-title .mobile-text {
    display: none;
}

.about-hero-title .line1 {
    display: block;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.about-hero-title .line2 {
    display: block;
    font-size: 3.5rem;
    color: var(--text-main);
}

.about-hero-title .line1.highlight {
    color: var(--primary-purple);
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* =====================================================
   TEAM IMAGE SECTION
===================================================== */
.team-image-section {
    padding: 0 40px 80px;
    background: white;
}

.team-image-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-image-container picture {
    display: block;
    width: 100%;
}

.team-image-container img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(109, 91, 151, 0.15);
}

/* =====================================================
   WHO WE ARE SECTION
===================================================== */
.who-we-are-section {
    padding: 100px 40px;
    background: white;
}

.who-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.who-content .intro-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 40px;
}

.who-text-content {
    text-align: right;
}

.who-text-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 25px;
}

.who-text-content p strong {
    color: var(--primary-purple);
    font-weight: 700;
}

/* =====================================================
   APPROACH SECTION
===================================================== */
.approach-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--bg-hero-gradient-start) 0%, var(--bg-hero-gradient-end) 100%);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.approach-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 40px;
    border-radius: 24px;
}

.approach-item:hover {
    transform: translateY(-10px);
}

.approach-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    opacity: 0.3;
    line-height: 1;
    flex-shrink: 0;
}

.approach-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.approach-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* =====================================================
   NUMBERS SECTION
===================================================== */
.numbers-section {
    padding: 100px 40px;
    background: white;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.number-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.number-item:hover {
    transform: translateY(-10px);
}

.number-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1;
    margin-bottom: 15px;
}

.number-value span {
    font-size: 2.5rem;
    color: var(--accent-pink);
}

.number-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* =====================================================
   WHY CHOOSE US SECTION
===================================================== */
.why-choose-section {
    padding: 100px 40px;
    background: var(--gray-100);
}

.why-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-point-card {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    padding: 40px;
    border-radius: 24px;
}

.why-point-card:hover {
    transform: translateY(-10px);
}

.point-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.point-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.point-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Choose Title - Desktop/Mobile */
.why-choose-title .desktop-text {
    display: inline;
}

.why-choose-title .mobile-text {
    display: none;
}

.why-choose-title .mobile-text .line1 {
    display: block;
    color: var(--text-main);
    margin-bottom: 5px;
}

.why-choose-title .mobile-text .line2 {
    display: block;
}

/* =====================================================
   VALUES SECTION
===================================================== */
.values-section {
    padding: 100px 40px;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.value-card {
    text-align: center;
    padding: 45px 35px;
    border-radius: 24px;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =====================================================
   LOCATION SECTION
===================================================== */
.location-section {
    padding: 100px 40px;
    background: var(--gray-100);
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.location-content > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.location-info-card {
    margin-top: 50px;
    padding: 45px;
    border-radius: 24px;
    text-align: center;
}

.location-info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 20px;
}

.location-info-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 2;
}

.location-info-card a {
    color: var(--primary-purple);
    font-weight: 600;
    transition: color 0.3s ease;
}

.location-info-card a:hover {
    color: var(--accent-pink);
}

/* =====================================================
   CTA SECTION (ABOUT PAGE)
===================================================== */
.about-hero-section + .cta-section,
.location-section + .cta-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #5A4B7D 100%);
}

.cta-buttons-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Secondary Button - أبيض مع حدود */
.btn-secondary {
    background: white;
    color: var(--primary-purple);
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

/* Primary Button in CTA Section - شفاف مع حدود بيضاء */
.cta-section .btn-primary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    box-shadow: none;
}

.cta-section .btn-primary:hover {
    background: white;
    color: var(--primary-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-divider {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

/* About Page CTA Title */
.about-cta-title {
    color: var(--accent-pink) !important;
}

.about-cta-title .desktop-text {
    display: block;
}

.about-cta-title .mobile-text {
    display: none;
}

.about-cta-title .mobile-text .line1,
.about-cta-title .mobile-text .line2 {
    display: block;
    color: var(--accent-pink);
}

/* =====================================================
   RESPONSIVE - TABLET (max-width: 1024px)
===================================================== */
@media (max-width: 1024px) {
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-hero-title .line1 {
        font-size: 2.2rem;
    }
    
    .approach-grid,
    .why-points-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =====================================================
   RESPONSIVE - MOBILE (max-width: 768px)
===================================================== */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 130px 25px 60px;
        min-height: auto;
    }
    
    /* Hero Title Mobile */
    .about-hero-title .desktop-text {
        display: none;
    }
    
    .about-hero-title .mobile-text {
        display: block;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-title .line1 {
        font-size: 1.6rem;
    }
    
    .about-hero-title .line2 {
        font-size: 2rem;
    }
    
    /* Why Choose Title Mobile */
    .why-choose-title .desktop-text {
        display: none;
    }
    
    .why-choose-title .mobile-text {
        display: block;
    }
    
    /* CTA Title Mobile */
    .about-cta-title .desktop-text {
        display: none;
    }
    
    .about-cta-title .mobile-text {
        display: block;
    }
    
    /* Icons centered in cards */
    .point-icon,
    .value-icon {
        text-align: center;
        width: 100%;
        display: block;
    }
    
    .why-point-card,
    .value-card {
        text-align: center;
    }
    
    .point-content,
    .approach-content {
        text-align: center;
    }
    
    .about-hero-subtitle {
        font-size: 1.05rem;
    }
    
    .team-image-section {
        padding: 0 25px 60px;
    }
    
    .team-image-container img {
        border-radius: 16px;
    }
    
    .who-we-are-section,
    .approach-section,
    .numbers-section,
    .why-choose-section,
    .values-section,
    .location-section {
        padding: 60px 25px;
    }
    
    .who-content .intro-text {
        font-size: 1.2rem;
    }
    
    .who-text-content p {
        font-size: 1rem;
    }
    
    .approach-item,
    .why-point-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    
    .approach-number {
        font-size: 2.5rem;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .number-item {
        padding: 30px 20px;
    }
    
    .number-value {
        font-size: 2.5rem;
    }
    
    .number-value span {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 35px 25px;
    }
    
    .location-info-card {
        padding: 35px 25px;
    }
    
    .cta-buttons-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-divider {
        display: none;
    }
    
    .btn-secondary,
    .btn-primary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Location Contact Title - أسود في الموبايل */
.location-contact-title {
    color: var(--primary-purple);
}

@media (max-width: 768px) {
    .location-contact-title {
        color: var(--text-main) !important;
    }
}

/* =====================================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
===================================================== */
@media (max-width: 480px) {
    .about-hero-section {
        padding: 110px 20px 50px;
    }
    
    .about-hero-title {
        font-size: 1.75rem;
    }
    
    .about-hero-title .line1 {
        font-size: 1.4rem;
    }
    
    .about-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .team-image-section {
        padding: 0 20px 50px;
    }
    
    .who-we-are-section,
    .approach-section,
    .numbers-section,
    .why-choose-section,
    .values-section,
    .location-section {
        padding: 50px 20px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .number-value {
        font-size: 2.2rem;
    }
    
    .approach-item,
    .why-point-card,
    .value-card {
        padding: 25px 20px;
    }

/* تأكيد توسيط الأيقونات */
    .point-icon,
    .value-icon,
    .approach-number {
        text-align: center;
        width: 100%;
        margin: 0 auto 15px;
    }
    
    .about-hero-title .line1 {
        font-size: 1.4rem;
    }
    
    .about-hero-title .line2 {
        font-size: 1.75rem;
    }
}