/* About Page Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Syne', sans-serif;
    background-image: url('../images/background-website.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    color: #ffffff;
    overflow-x: hidden;
}



/* Hero & Mission Section */
.hero-mission-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 4rem;
    max-width: 1500px;
    margin: 0 auto;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 2;
    position: relative;
    margin-bottom: 4rem;
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b0bec5;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* Decorative Elements */
.hero-bg-decoration {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(100, 181, 246, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}

.mission-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.mission-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #b0bec5;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
}

/* Information & Values Section */
.info-values-section {
    padding: 6rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    margin-bottom: 3rem;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Info Cards */
.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(100, 181, 246, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.card-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.card-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.info-card:hover .card-logo {
    filter: brightness(1) invert(0);
    transform: scale(1.1);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.card-subtitle {
    font-size: 1rem;
    color: #b0bec5;
    line-height: 1.5;
}

/* Values Cards */
.values-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(100, 181, 246, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}

.values-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.values-card .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.card-description {
    font-size: 1rem;
    color: #b0bec5;
    line-height: 1.6;
    text-align: center;
}

/* Decorative Arc */
.decorative-arc {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 100px;
    background: linear-gradient(135deg, rgba(100, 181, 246, 0.2) 0%, rgba(156, 39, 176, 0.2) 100%);
    border-radius: 100px 100px 0 0;
    filter: blur(20px);
    z-index: -1;
}

/* Worldwide Offices Section */
.offices-section {
    padding: 6rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.office-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(100, 181, 246, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.office-flag {
    margin-bottom: 1.5rem;
}

.flag-image {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.office-country {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.company-name {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.company-number {
    font-size: 0.875rem;
    color: #b0bec5;
    margin: 0;
}

.office-address {
    font-size: 0.875rem;
    color: #b0bec5;
    line-height: 1.4;
    margin: 0;
}

.office-email {
    font-size: 0.875rem;
    color: #64b5f6;
    margin: 0;
    font-weight: 500;
}

/* Platforms Section */
.platforms-section {
    padding: 6rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
}

.platforms-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.platforms-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.1) 0%, rgba(100, 181, 246, 0.1) 100%);
    border-radius: 20px;
    z-index: -1;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.platform-logo:hover {
    transform: translateY(-5px);
}

.platform-image {
    width: 150px;
    height: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.platform-logo:hover .platform-image {
    filter: brightness(1) invert(0);
    transform: scale(1.1);
}

/* Call to Action Section */
.cta-section {
    padding: 2rem 2rem;
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    color: #b0bec5;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: linear-gradient(135deg, #9c27b0 0%, #64b5f6 100%);
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(156, 39, 176, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(156, 39, 176, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-mission-section {
        padding: 100px 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .info-values-section {
        padding: 4rem 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card,
    .values-card {
        padding: 2rem 1.5rem;
    }
    
    .offices-section {
        padding: 4rem 1rem;
    }
    
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .office-card {
        padding: 1.5rem;
    }
    
    .platforms-section {
        padding: 4rem 1rem;
    }
    
    .platforms-container {
        padding: 2rem;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .platform-image {
        width: 80px;
        height: 80px;
    }
    
    .cta-section {
        padding: 4rem 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-mission-section {
        padding: 80px 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .mission-card {
        padding: 2rem;
    }
    
    .mission-title {
        font-size: 1.75rem;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .platform-image {
        width: 60px;
        height: 60px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
