/* About Us Page Styles - Updated to match gh- prefix */

:root {
    --gh-primary: #0c30ce;
    --gh-secondary: #008cff;
    --gh-accent: #008cff;
    --gh-dark: #0A0A23;
    --gh-light: #FFFFFF;
}

.gh-about-page {
    background-color: #0A0A23;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    min-height: 100vh;
}

.gh-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.gh-about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(rgba(10, 10, 35, 0.9), rgba(10, 10, 35, 0.95)),
        url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?auto=format&fit=crop&w=1740&q=80') no-repeat center center/cover;
    position: relative;
}

.gh-about-hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--gh-secondary), var(--gh-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(0, 140, 255, 0.5);
    font-family: 'Oxanium', cursive;
}

.gh-about-hero-subtitle {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--gh-secondary);
    font-family: 'Oxanium', cursive;
    min-height: 60px;
}

.gh-about-hero-description {
    font-size: 1.3rem;
    margin: 2.5rem 0;
    color: #ddd;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Mission Section */
.gh-about-mission {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0A0A23, #0F0F2D);
}

.gh-about-mission-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--gh-secondary);
    text-align: center;
    font-family: 'Oxanium', cursive;
}

.gh-about-mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

.gh-about-mission-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.gh-about-stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 229, 255, 0.1);
}

.gh-about-stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--gh-secondary), var(--gh-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
    font-family: 'Oxanium', cursive;
}

.gh-about-stat-label {
    color: #ccc;
    font-size: 0.9rem;
}

/* Values Section */
.gh-about-values {
    padding: 80px 0;
    background: #0A0A23;
}

.gh-about-section-title {
    text-align: center;
    margin: 0 0 50px 0;
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Oxanium', cursive;
    color: var(--gh-secondary);
}

.gh-about-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 25%;
    width: 50%;
    height: 4px;
    background: linear-gradient(45deg, var(--gh-primary), var(--gh-accent));
    border-radius: 2px;
}

.gh-about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.gh-about-value-card {
    background: linear-gradient(145deg, #13132E, #0D0D21);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(0, 229, 255, 0.2);
    transition: 0.3s;
    position: relative;
}

.gh-about-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.gh-about-value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, var(--gh-primary), var(--gh-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.gh-about-value-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--gh-secondary);
    font-family: 'Oxanium', cursive;
}

.gh-about-value-description {
    color: #ccc;
    font-size: 0.95rem;
}

/* Story Section */
.gh-about-story {
    padding: 80px 0;
    background: #0A0A23;
    position: relative;
}

.gh-about-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gh-primary), var(--gh-secondary), var(--gh-accent));
}

.gh-about-story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.gh-about-story-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--gh-secondary);
    font-family: 'Oxanium', cursive;
}

.gh-about-story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
}

/* CTA Section */
.gh-about-cta {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(45deg, #13132E, #0D0D21);
    position: relative;
}

.gh-about-cta-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--gh-secondary), var(--gh-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Oxanium', cursive;
}

.gh-about-cta-text {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ccc;
    line-height: 1.6;
}

.gh-about-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gh-about-btn {
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oxanium', cursive;
    transition: 0.3s;
}

.gh-about-btn-primary {
    background: linear-gradient(45deg, var(--gh-primary), var(--gh-accent));
    color: white;
    border: none;
}

.gh-about-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--gh-secondary);
}

.gh-about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 110, 255, 0.4);
}

@media (max-width: 768px) {
    .gh-about-hero-title {
        font-size: 2.5rem;
    }

    .gh-about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}