/* About Page Specific Styles */

/* Page Hero */
.page-hero {
    position: relative;
    height: 500px;
    margin-top: 120px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.page-hero.about-hero {
    position: relative;
    background: linear-gradient(rgba(), rgba());
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero2.jpg') center/cover no-repeat;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Company Overview */
.company-overview {
    padding: 80px 0;
    background: var(--white);
}

.overview-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.overview-text {
    flex: 1;
}

.overview-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.overview-text h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary-blue);
}

.overview-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.overview-image {
    flex: 1;
}

.overview-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.overview-image img:hover {
    transform: translateY(-5px);
}

/* Vision & Mission */
.vision-mission {
    padding: 80px 0;
    background: var(--light-gray);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vision-card, .mission-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.vm-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 30px;
}

.mission-card .vm-icon {
    background: var(--saudi-green);
}

.vision-card h3, .mission-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.vision-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
}

.mission-list {
    list-style: none;
}

.mission-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray);
    line-height: 1.6;
}

.mission-list li i {
    color: var(--saudi-green);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Core Values */
.core-values {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-blue);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--electric-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 30px;
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* Our Story */
.our-story {
    padding: 80px 0;
    background: var(--light-gray);
}

.story-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.story-text {
    flex: 1;
}

.story-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Why Choose AUREON */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.why-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--electric-blue);
    opacity: 0.3;
}

.why-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
}

/* Saudi Presence */
.saudi-presence {
    padding: 80px 0;
    background: var(--white);
}

.presence-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.presence-text {
    flex: 1;
}

.presence-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.presence-text p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.presence-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.presence-stat {
    text-align: center;
}

.presence-stat .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--electric-blue);
    margin-bottom: 5px;
}

.presence-stat .stat-label {
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 500;
}

.presence-map {
    flex: 1;
}

.presence-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-button {
    display: inline-block;
    background: var(--secondary-blue);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--electric-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: var(--saudi-green);
}

.cta-button.secondary:hover {
    background: #004d00;
}

/* Responsive Styles for About Page */
@media (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .overview-content,
    .story-content,
    .presence-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 400px;
        margin-top: 140px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .presence-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .page-hero {
        height: 350px;
        margin-top: 160px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .overview-text h2,
    .presence-text h2 {
        font-size: 28px;
    }
    
    .vision-card, .mission-card {
        padding: 30px 20px;
    }
    
    .why-card {
        padding: 30px 20px;
    }
}