:root {
    --fgi-green: #009E60;
    --fgi-orange: #FF8C00;
    --fgi-green-dark: #006B47;
    --fgi-black: #1A1A1A;
    --fgi-gray: #666666;
    --fgi-bg-light: #FAFAFA;
    --radius-card: 16px;
}

/* Micro-animations */
.fgi-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fgi-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Force visibility in Elementor Editor */
.elementor-editor-active .fgi-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

/* Hover effects */
.fgi-hover-scale {
    transition: transform 0.3s ease;
}

.fgi-hover-scale:hover {
    transform: scale(1.02);
}

.fgi-btn {
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.fgi-btn-primary {
    background-color: var(--fgi-orange);
    color: white;
}

.fgi-btn-primary:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.fgi-btn-outline {
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(4px);
}

.fgi-btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Header & Footer Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

#masthead {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: transparent;
}

#masthead .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: var(--fgi-orange);
}

#colophon {
    background-color: var(--fgi-green-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-info p {
    margin-top: 20px;
    opacity: 0.8;
}

.footer-menu ul {
    list-style: none;
    margin-top: 20px;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-menu a:hover {
    opacity: 1;
}

.footer-contact h4 {
    margin-bottom: 20px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.site-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}
