/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

/* Container */
.gln-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.gln-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s ease;
}

.gln-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.gln-company-name {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 1px;
}

.gln-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.gln-nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
    outline: none;
}

.gln-nav-menu a:focus {
    outline: none;
}

.gln-nav-menu a:hover {
    color: #2563eb;
}

.gln-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.gln-nav-menu a:hover::after {
    width: 100%;
}

.gln-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.gln-nav-toggle span {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    margin: 4px 0;
    transition: 0.3s;
}

/* Breadcrumb */
.gln-breadcrumb {
    background: #f8fafc;
    padding: 20px 0;
    margin-top: 70px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.gln-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.gln-breadcrumb-nav a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.gln-breadcrumb-nav a:hover {
    color: #2563eb;
}

.gln-breadcrumb-separator {
    color: #cbd5e1;
}

.gln-breadcrumb-current {
    color: #1a1a1a;
    font-weight: 500;
}

/* History Hero */
.gln-history-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.gln-history-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.gln-history-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* History Sections */
.gln-history-section {
    padding: 80px 0;
}

.gln-history-section-alt {
    background: #f8fafc;
}

.gln-history-header {
    text-align: center;
    margin-bottom: 60px;
}

.gln-history-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.gln-history-header p {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* History Cards */
.gln-history-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.gln-history-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.gln-history-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.gln-history-text p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.gln-history-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.gln-history-stat {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.gln-history-stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 8px;
}

.gln-history-stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.gln-history-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Timeline */
.gln-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.gln-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #2563eb;
    transform: translateX(-50%);
}

.gln-timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.gln-timeline-item:nth-child(odd) {
    flex-direction: row;
}

.gln-timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.gln-timeline-marker {
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.gln-timeline-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 0 40px;
    flex: 1;
    max-width: 300px;
}

.gln-timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.gln-timeline-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Expansion Grid */
.gln-expansion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.gln-expansion-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.gln-expansion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.gln-expansion-icon {
    width: 64px;
    height: 64px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background-color 0.3s ease;
}

.gln-expansion-card:hover .gln-expansion-icon {
    background: #2563eb;
}

.gln-expansion-icon svg {
    width: 32px;
    height: 32px;
    transition: stroke 0.3s ease;
    stroke: #64748b;
}

.gln-expansion-card:hover .gln-expansion-icon svg {
    stroke: white;
}

.gln-expansion-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.gln-expansion-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Awards Grid */
.gln-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.gln-award-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.gln-award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.gln-award-icon {
    width: 64px;
    height: 64px;
    background: #f8fafc;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: background-color 0.3s ease;
}

.gln-award-card:hover .gln-award-icon {
    background: #2563eb;
}

.gln-award-icon svg {
    width: 32px;
    height: 32px;
    transition: stroke 0.3s ease;
    stroke: #64748b;
}

.gln-award-card:hover .gln-award-icon svg {
    stroke: white;
}

.gln-award-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.gln-award-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.gln-award-year {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Future Card */
.gln-future-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.gln-future-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.gln-future-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.gln-future-goals {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.gln-future-goal {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.gln-future-icon {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.gln-future-goal:hover .gln-future-icon {
    background: #2563eb;
}

.gln-future-icon svg {
    width: 24px;
    height: 24px;
    transition: stroke 0.3s ease;
    stroke: #64748b;
}

.gln-future-goal:hover .gln-future-icon svg {
    stroke: white;
}

.gln-future-goal-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.gln-future-goal-text p {
    color: #64748b;
    line-height: 1.6;
}

.gln-future-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.gln-future-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Buttons */
.gln-btn {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.gln-btn-primary {
    background: #2563eb;
    color: white;
}

.gln-btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.gln-btn-secondary {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}

.gln-btn-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.gln-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.gln-footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.gln-footer-section h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.gln-footer .gln-company-name {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.gln-footer-section ul {
    list-style: none;
}

.gln-footer-section ul li {
    margin-bottom: 12px;
}

.gln-footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.gln-footer-section a:hover {
    color: #2563eb;
}

.gln-footer-section p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.gln-social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.gln-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.gln-social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.gln-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.gln-footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gln-nav-menu {
        display: none;
    }

    .gln-nav-toggle {
        display: flex;
    }

    .gln-history-title {
        font-size: 2rem;
    }

    .gln-history-header h2 {
        font-size: 2rem;
    }

    .gln-history-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gln-history-stats {
        grid-template-columns: 1fr;
    }

    .gln-timeline::before {
        left: 20px;
    }

    .gln-timeline-item {
        flex-direction: row !important;
        margin-left: 40px;
    }

    .gln-timeline-content {
        margin: 0 0 0 20px;
        max-width: none;
    }

    .gln-expansion-grid {
        grid-template-columns: 1fr;
    }

    .gln-awards-grid {
        grid-template-columns: 1fr;
    }

    .gln-future-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gln-future-goal {
        text-align: left;
    }

    .gln-footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gln-container {
        padding: 0 16px;
    }

    .gln-history-title {
        font-size: 1.75rem;
    }

    .gln-history-header h2 {
        font-size: 1.75rem;
    }

    .gln-history-card {
        padding: 24px;
    }

    .gln-future-card {
        padding: 24px;
    }

    .gln-future-actions {
        flex-direction: column;
    }
}