﻿/* ================= BRAND VARIABLES ================= */
:root {
    --ggf-dark: #1e453e;
    --ggf-dark-2: #16352f;
    --ggf-gold: #c5a059;
    --ggf-light: #f8faf9;
    --ggf-white: #ffffff;
    --ggf-text: #555;
}

/* ================= GLOBAL RESET ================= */
body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--ggf-light);
}

/* ================= HERO ================= */
.about-hero-wrapper {
    min-height: 60vh;
    background: linear-gradient(to right, rgba(30,69,62,0.9), rgba(30,69,62,0.5)), url('../images/about/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--ggf-white);
    padding: 80px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-top: 10px;
}

/* BADGE */
.badge-tag {
    background: var(--ggf-gold);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================= STORY ================= */
.story-section {
    padding: 100px 0;
    background: var(--ggf-light);
}

.story-image-container {
    position: relative;
}

.main-story-img {
    border-radius: 25px;
    width: 100%;
    transition: 0.4s ease;
}

    .main-story-img:hover {
        transform: scale(1.03);
    }

/* FLOATING BADGE */
.experience-badge-mini {
    position: absolute;
    bottom: -25px;
    right: 20px;
    background: var(--ggf-dark);
    padding: 18px;
    border-radius: 15px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

    .experience-badge-mini .number {
        display: block;
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--ggf-gold);
    }

    .experience-badge-mini .label {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* ================= TEXT ================= */
.section-label {
    color: var(--ggf-gold);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-label-gold {
    color: var(--ggf-gold);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.values-section .section-title {
    color: white;
}

.text-gold {
    color: var(--ggf-gold) !important;
}

.description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ggf-text);
}

/* ================= VALUES ================= */
.values-section {
    padding: 100px 0;
    background: var(--ggf-dark);
}

.value-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
}

    .value-card:hover {
        background: rgba(197, 160, 89, 0.1);
        border-color: var(--ggf-gold);
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

.value-icon {
    font-size: 2.8rem;
    color: var(--ggf-gold);
    margin-bottom: 20px;
}

/* ================= BUTTON ================= */
.btn-ggf-gold {
    background: var(--ggf-gold);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    transition: 0.3s ease;
}

    .btn-ggf-gold:hover {
        background: #ac8a4a;
        transform: scale(1.05);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

/* ================= ANIMATION ================= */
.fade-up {
    animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

    .about-hero-wrapper {
        text-align: center;
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .story-section {
        padding: 60px 0;
    }

    .story-text-content {
        text-align: center;
        padding-left: 0 !important;
    }

    .experience-badge-mini {
        bottom: -15px;
        right: 10px;
    }
}

@media (max-width: 768px) {

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .value-card {
        padding: 25px;
    }

    .experience-badge-mini {
        position: relative;
        margin-top: 15px;
        bottom: 0;
        right: 0;
    }
}
/* PROCESS */
.process-section {
    background: #f8faf9;
}

.process-card {
    padding: 20px;
    border-radius: 15px;
    background: #fff;
    transition: 0.3s;
}

    .process-card:hover {
        transform: translateY(-5px);
    }

.process-icon {
    font-size: 30px;
    color: #c5a059;
    margin-bottom: 10px;
}

/* WHY US */
.why-list {
    list-style: none;
    padding: 0;
}

    .why-list li {
        margin-bottom: 10px;
        font-weight: 500;
    }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #1e453e, #145a41);
    color: white;
}

