:root {
    --gm-primary: #0F4C81;
    --gm-secondary: #0A2540;
    --gm-accent: #D4A017;
    --gm-green: #2E8B57;
    --gm-light: #F8FAFC;
    --gm-border: #dcdde1;
    --gm-text: #64748B;
    --gm-text-dark: #1E293B;
}

.gm-about-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--gm-text);
    overflow: hidden;
}

.gm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gm-section {
    padding: 80px 0;
}

.gm-bg-light { background-color: var(--gm-light); }
.gm-bg-primary { background-color: var(--gm-primary); }

.gm-heading {
    color: var(--gm-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.gm-section-title {
    font-size: 36px;
    margin-bottom: 30px;
}

.gm-center { text-align: center; }
.gm-text-white { color: #fff !important; }
.gm-text-green { color: var(--gm-green) !important; }
.gm-max-width { max-width: 800px; margin-left: auto; margin-right: auto; margin-bottom: 40px; }

/* Grid System */
.gm-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.gm-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
    box-sizing: border-box;
}
.gm-align-center { align-items: center; }

/* Hero Section */
.gm-hero-section {
    background: linear-gradient(135deg, rgba(10,37,64,0.95) 0%, rgba(15,76,129,0.9) 100%);
    padding: 100px 0;
    color: #fff;
}
.gm-hero-title {
    font-size: 48px;
    color: #fff;
    line-height: 1.2;
}
.gm-hero-subtitle {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-weight: 400;
}
.gm-hero-desc {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.8);
}
.gm-hero-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}
.gm-stat-item {
    text-align: left;
}
.gm-stat-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--gm-accent);
}
.gm-stat-plus {
    font-size: 32px;
    font-weight: 800;
    color: var(--gm-accent);
}
.gm-stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.gm-hero-features {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.gm-hero-features li {
    font-weight: 600;
    color: #fff;
}
.gm-hero-features i {
    color: var(--gm-accent);
    margin-right: 8px;
}

/* Timeline */
.gm-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}
.gm-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--gm-primary);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.gm-timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}
.gm-timeline-item:nth-child(odd) { left: 0; }
.gm-timeline-item:nth-child(even) { left: 50%; }
.gm-timeline-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    right: -25px;
    background-color: #fff;
    border: 4px solid var(--gm-primary);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gm-primary);
    font-size: 20px;
    transition: all 0.3s ease;
}
.gm-timeline-item:hover .gm-timeline-icon {
    background-color: var(--gm-accent);
    border-color: var(--gm-accent);
    color: #fff;
}
.gm-timeline-item:nth-child(even) .gm-timeline-icon {
    left: -25px;
}
.gm-timeline-content {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.gm-timeline-content:hover {
    transform: translateY(-5px);
}
.gm-timeline-content h4 {
    margin: 0 0 10px 0;
    color: var(--gm-primary);
    font-size: 20px;
}

/* Icon Grid */
.gm-icon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.gm-icon-box {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--gm-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}
.gm-icon-box:hover {
    background: var(--gm-primary);
    color: #fff;
}
.gm-icon-box i {
    font-size: 24px;
    color: var(--gm-primary);
    margin-right: 15px;
    transition: color 0.3s ease;
}
.gm-icon-box:hover i { color: var(--gm-accent); }
.gm-icon-box span { font-weight: 600; color: var(--gm-text-dark); }
.gm-icon-box:hover span { color: #fff; }

/* Cards Grid */
.gm-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.gm-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.gm-card:hover {
    transform: translateY(-10px);
}
.gm-card i {
    font-size: 40px;
    color: var(--gm-accent);
    margin-bottom: 20px;
}
.gm-card h4 {
    color: var(--gm-text-dark);
    margin-bottom: 10px;
    font-size: 20px;
}

/* Sustainability */
.gm-green-list {
    list-style: none;
    padding: 0;
}
.gm-green-list li {
    margin-bottom: 15px;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.gm-green-list i {
    color: var(--gm-green);
    margin-right: 10px;
    font-size: 20px;
}
.gm-sustain-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 100%;
    color: var(--gm-green);
    font-size: 80px;
    opacity: 0.8;
}

/* Vision Chart */
.gm-vision-chart {
    max-width: 800px;
    margin: 0 auto;
}
.gm-vision-bar-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.gm-vision-label {
    width: 100px;
    font-weight: 700;
    color: var(--gm-primary);
}
.gm-vision-bar {
    height: 50px;
    background: var(--gm-primary);
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-radius: 4px;
    font-weight: 600;
    width: 0;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    white-space: nowrap;
}
.gm-bar-future { background: var(--gm-accent); color: var(--gm-text-dark); }

/* CTA Section */
.gm-cta-buttons {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.gm-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}
.gm-btn-primary {
    background: var(--gm-primary);
    color: #fff;
}
.gm-btn-primary:hover {
    background: var(--gm-secondary);
    color: #fff;
    transform: translateY(-2px);
}
.gm-btn-secondary {
    background: transparent;
    color: var(--gm-primary);
    border: 2px solid var(--gm-primary);
}
.gm-btn-secondary:hover {
    background: var(--gm-light);
    color: var(--gm-primary);
    transform: translateY(-2px);
}
.gm-contact-info {
    margin-top: 40px;
    font-size: 16px;
}
.gm-contact-info p { margin-bottom: 10px; }
.gm-contact-info a { color: var(--gm-primary); text-decoration: none; }
.gm-contact-info a:hover { text-decoration: underline; }
.gm-contact-info i { color: var(--gm-primary); width: 25px; }

/* Animations */
.gm-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.gm-animate.gm-in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .gm-card-grid { grid-template-columns: repeat(2, 1fr); }
    .gm-col-md-6 { flex: 0 0 100%; max-width: 100%; margin-bottom: 40px; }
    .gm-reverse { flex-direction: column-reverse; }
}
@media (max-width: 767px) {
    .gm-hero-title { font-size: 36px; }
    .gm-hero-stats { flex-direction: column; gap: 20px; }
    .gm-timeline::after { left: 31px; }
    .gm-timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; }
    .gm-timeline-item:nth-child(even) { left: 0%; }
    .gm-timeline-icon { left: 6px !important; }
    .gm-card-grid { grid-template-columns: 1fr; }
    .gm-cta-buttons { flex-direction: column; }
}
