/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 !important;
}


.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Section Common Styles */
.our-story,
.mission-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* Our Story Section */
.our-story {
    background-color: var(--white);
}

.our-story-img{
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 600px;
    box-shadow: var(--shadow-lg);
}

.our-story img {
    transition: var(--transition);
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.our-story img:hover {
    transform: scale(1.03);
}


/* Mission Section */
.mission-section {
    background-color:  var(--light-gray);
}

.mission-img{
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 600px;
    box-shadow: var(--shadow-lg);
}

.mission-section img {
    transition: var(--transition);
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;  
}

.mission-section img:hover {
    transform: scale(1.03);
}






.feature-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 2px;
}

.feature-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
}

/* CTA Section */
.cta-section {
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
    z-index: 0;
}

/* رفع محتوى السيكشن فوق الـ overlay */
.cta-section > .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
}

.cta-section .btn {
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    transition: var(--transition);
}

.cta-section .btn-light {
    background-color: var(--white);
    color: var(--primary-pink);
}

.cta-section .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-outline-light {
    border: 2px solid var(--white);
    background: transparent;
}

.cta-section .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 2.8rem;
    }
    
    .about-hero p {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .feature-item span {
        font-size: 1rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }
}