/* About Page Specific Styles */

/* About Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #ffffff;
    color: #000000;
    position: relative;
    padding: 120px 0 80px;
}

.about-hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-hero-text {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #000000;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}


/* Who We Are Section */
.who-we-are {
    padding: 80px 0;
    background: #ffffff;
}

.who-we-are-content {
    margin-top: 3rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000000;
}

.content-highlights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.highlight-text p {
    color: #000000;
    font-size: 0.9rem;
}

/* Mission & Values Section */
.mission-values {
    padding: 80px 0;
    background: #ffffff;
}

.mission-showcase {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.mission-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid #000000;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mission-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-content {
    text-align: center;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: missionFloat 4s ease-in-out infinite;
}

.mission-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000000;
}

.values-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-item:hover::before {
    width: 8px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.value-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.value-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}


/* Global Presence Section */
.global-presence {
    padding: 80px 0;
    background: #ffffff;
}

.global-showcase {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.global-map {
    display: flex;
    justify-content: center;
}

.map-container {
    width: 500px;
    height: 350px;
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    border: 2px solid #000000;
    overflow: hidden;
}

.route-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, transparent, #d4af37);
    animation: routeGlow 3s ease-in-out infinite;
}

.route-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.route-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
    animation: pointPulse 2s ease-in-out infinite;
    cursor: pointer;
}

.route-point:hover {
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

/* Route Point Positions */
.point-1 { top: 60%; left: 15%; }
.point-2 { top: 50%; left: 25%; }
.point-3 { top: 45%; left: 35%; }
.point-4 { top: 55%; left: 45%; }
.point-5 { top: 65%; left: 30%; }
.point-6 { top: 40%; right: 20%; }
.point-7 { top: 30%; left: 50%; }

.global-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #000000;
    font-size: 0.9rem;
}

/* Quick Facts Section */
.quick-facts {
    padding: 80px 0;
    background: #ffffff;
}

.facts-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.fact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.fact-card:hover::before {
    width: 8px;
}

.fact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.fact-card:hover .fact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.fact-content {
    flex: 1;
}

.fact-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.8rem;
}

.fact-highlight {
    font-size: 1.1rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.fact-description {
    font-size: 0.95rem;
    color: #000000;
    line-height: 1.5;
    margin: 0;
}

/* About CTA Section */
.about-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes officeFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-10px) rotateY(5deg); }
}

@keyframes chartFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes goldBarFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

@keyframes hubPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes factIconFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-content {
        text-align: center;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .leadership-showcase {
        grid-template-columns: 1fr;
    }

    .global-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        width: 100%;
        height: 250px;
    }

    .facts-showcase {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-subtitle {
        font-size: 0.9rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
    }

    .info-card {
        flex-direction: column;
        text-align: center;
    }

    .map-container {
        height: 200px;
    }
}

/* Global Presence - Clean & Simple */
.global-presence {
    padding: 80px 0;
    background: #ffffff;
}

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.location-card {
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    transition: width 0.3s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.location-card:hover::before {
    width: 8px;
}

.location-card.africa::before {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.location-card.dubai::before {
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
}

.location-card.europe::before {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon {
    transform: scale(1.1) rotate(5deg);
}

.location-card.africa .location-icon {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
}

.location-card.europe .location-icon {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.location-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.location-subtitle {
    color: #d4af37;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.location-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.country {
    background: #f8f9fa;
    border: 1px solid #000000;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    transition: all 0.3s ease;
}

.country:hover {
    background: #d4af37;
    color: #ffffff;
    transform: translateY(-2px);
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #000000;
}

.feature i {
    color: #d4af37;
    font-size: 0.9rem;
    width: 16px;
}

.location-description {
    color: #000000;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Global Presence */
@media (max-width: 768px) {
    .global-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .location-card {
        padding: 1.5rem;
    }
    
    .location-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .location-content h3 {
        font-size: 1.4rem;
    }
    
    .location-countries {
        gap: 0.3rem;
    }
    
    .country {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Animations */
@keyframes missionFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}
