/**
 * GF Investment - Design System
 * Version: 1.0.0
 *
 * Questo file contiene tutte le variabili, componenti e stili
 * riutilizzabili su tutte le pagine del sito GF Investment.
 */

/* ============================================
   1. CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
    /* Colori Brand */
    --gf-primary: #007384;
    --gf-primary-dark: #005a68;
    --gf-primary-light: #00a3b8;
    --gf-accent: #d2232a;
    --gf-accent-dark: #b01e24;
    --gf-accent-light: #e84c52;

    /* Colori Neutri */
    --gf-text: #333333;
    --gf-text-light: #666666;
    --gf-text-muted: #999999;
    --gf-bg-light: #f8f9fa;
    --gf-bg-dark: #1a1a2e;
    --gf-white: #ffffff;
    --gf-black: #000000;

    /* Spacing */
    --gf-spacing-xs: 8px;
    --gf-spacing-sm: 16px;
    --gf-spacing-md: 24px;
    --gf-spacing-lg: 40px;
    --gf-spacing-xl: 60px;
    --gf-spacing-xxl: 100px;

    /* Border Radius */
    --gf-radius-sm: 4px;
    --gf-radius-md: 8px;
    --gf-radius-lg: 12px;
    --gf-radius-xl: 16px;
    --gf-radius-full: 50px;

    /* Shadows */
    --gf-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --gf-shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --gf-shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
    --gf-shadow-primary: 0 4px 15px rgba(0, 115, 132, 0.4);
    --gf-shadow-accent: 0 4px 15px rgba(210, 35, 42, 0.4);

    /* Typography */
    --gf-font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --gf-font-size-sm: 0.875rem;
    --gf-font-size-base: 1rem;
    --gf-font-size-md: 1.1rem;
    --gf-font-size-lg: 1.4rem;
    --gf-font-size-xl: clamp(2rem, 4vw, 2.8rem);
    --gf-font-size-xxl: clamp(2.5rem, 5vw, 4rem);

    /* Transitions */
    --gf-transition-fast: 0.2s ease;
    --gf-transition-base: 0.3s ease;
    --gf-transition-slow: 0.5s ease;
}

/* ============================================
   2. BASE STYLES
   ============================================ */
.gf-page {
    font-family: var(--gf-font-family);
    color: var(--gf-text);
    line-height: 1.6;
}

.gf-page * {
    box-sizing: border-box;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Container */
.gf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
.gf-section-label {
    display: inline-block;
    color: var(--gf-primary);
    font-weight: 600;
    font-size: var(--gf-font-size-sm);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.gf-section-title {
    font-size: var(--gf-font-size-xl);
    font-weight: 700;
    color: var(--gf-text);
    margin: 0 0 25px;
    line-height: 1.2;
}

.gf-section-text {
    font-size: var(--gf-font-size-md);
    color: var(--gf-text-light);
    line-height: 1.8;
}

.gf-section-text p {
    margin-bottom: 20px;
}

/* ============================================
   4. BUTTONS
   ============================================ */
.gf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: var(--gf-font-size-md);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--gf-radius-md);
    transition: all var(--gf-transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.gf-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.gf-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Primary Button (Blu GF) */
.gf-btn-primary {
    background: var(--gf-primary);
    color: var(--gf-white);
    box-shadow: var(--gf-shadow-primary);
}

.gf-btn-primary:hover {
    background: var(--gf-primary-dark);
    color: var(--gf-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 115, 132, 0.5);
}

/* Secondary Button (Rosso GF) */
.gf-btn-secondary {
    background: var(--gf-accent);
    color: var(--gf-white);
    border: 2px solid var(--gf-accent);
    box-shadow: var(--gf-shadow-accent);
}

.gf-btn-secondary:hover {
    background: var(--gf-accent-dark);
    color: var(--gf-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(210, 35, 42, 0.5);
}

/* White Button */
.gf-btn-white {
    background: var(--gf-white);
    color: var(--gf-text);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gf-btn-white:hover {
    background: var(--gf-bg-light);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.gf-btn-white::before {
    background: rgba(0, 115, 132, 0.1);
}

/* Outline Buttons */
.gf-btn-outline-primary {
    background: transparent;
    color: var(--gf-primary);
    border: 2px solid var(--gf-primary);
}

.gf-btn-outline-primary:hover {
    background: var(--gf-primary);
    color: var(--gf-white);
}

.gf-btn-outline-white {
    background: transparent;
    color: var(--gf-white);
    border: 2px solid var(--gf-white);
}

.gf-btn-outline-white:hover {
    background: var(--gf-white);
    color: var(--gf-primary);
}

/* Button Sizes */
.gf-btn-sm {
    padding: 10px 24px;
    font-size: var(--gf-font-size-sm);
}

.gf-btn-lg {
    padding: 20px 48px;
    font-size: 1.2rem;
}

/* ============================================
   5. HEADER / NAVIGATION
   ============================================ */
.gf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--gf-transition-base);
    background: transparent;
}

.gf-header-logo {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

/* Offset for WordPress admin bar */
.admin-bar .gf-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .gf-header {
        top: 46px;
    }
}

.gf-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.gf-header.scrolled .gf-nav a {
    color: #333;
}

.gf-header.scrolled .gf-nav a:hover {
    color: #007384;
}

.gf-header.scrolled .gf-nav-cta {
    background: #007384;
    color: #fff !important;
}

.gf-header-logo img {
    height: 45px;
    width: auto;
    transition: height var(--gf-transition-base);
}

.gf-header.scrolled .gf-header-logo img {
    height: 38px;
}

.gf-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gf-nav a {
    color: var(--gf-white);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--gf-radius-md);
    transition: all var(--gf-transition-fast);
    position: relative;
}

.gf-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gf-white);
}

.gf-nav a.active {
    background: rgba(255, 255, 255, 0.15);
}

.gf-nav a.gf-nav-cta {
    background: var(--gf-accent);
    color: var(--gf-white);
    margin-left: 10px;
}

.gf-nav a.gf-nav-cta:hover {
    background: var(--gf-accent-dark);
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.gf-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    position: absolute;
    right: 20px;
}

.gf-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gf-white);
    transition: all var(--gf-transition-fast);
}

.gf-header.scrolled .gf-menu-toggle span {
    background: var(--gf-text);
}

/* Tablet/Small Notebook (768px - 1024px) */
@media (max-width: 1024px) {
    .gf-nav {
        gap: 5px;
    }

    .gf-nav a {
        padding: 8px 14px;
        font-size: 0.9rem;
    }

    .gf-header-logo img {
        height: 40px;
    }

    .gf-header.scrolled .gf-header-logo img {
        height: 34px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
    .gf-menu-toggle {
        display: flex;
    }

    .gf-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--gf-bg-dark);
        flex-direction: column;
        justify-content: flex-start;
        gap: 5px;
        padding: 80px 20px 20px;
        transition: right var(--gf-transition-base);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    }

    .admin-bar .gf-nav {
        padding-top: 126px;
    }

    .gf-nav.open {
        right: 0;
    }

    .gf-nav a {
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        color: var(--gf-white) !important;
    }

    .gf-nav a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .gf-nav a.active {
        background: rgba(255, 255, 255, 0.15);
    }

    .gf-nav a.gf-nav-cta {
        margin-left: 0;
        margin-top: 10px;
        background: var(--gf-primary) !important;
    }

    .gf-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .gf-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }

    .gf-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.gf-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
}

.gf-hero-dark {
    background: linear-gradient(135deg, rgba(20, 20, 35, 0.85) 0%, rgba(30, 30, 50, 0.9) 100%),
                url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    color: var(--gf-white);
}

.gf-hero-light {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: var(--gf-text);
}

.gf-hero-content {
    max-width: 900px;
    z-index: 2;
}

body.gf-custom-page .gf-page .gf-hero .gf-hero-logo {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px !important; /* Spacing logo → gruppo testo */
}

body.gf-custom-page .gf-page .gf-hero h1 {
    font-size: var(--gf-font-size-xxl) !important;
    font-weight: 700 !important;
    line-height: 1.15 !important; /* Interlinea ridotta */
    margin: 0 0 32px !important; /* Spacing verso subtitle */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    color: var(--gf-white) !important;
}

body.gf-custom-page .gf-page .gf-hero .gf-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem) !important;
    opacity: 0.95;
    margin-bottom: 60px !important; /* Spacing verso buttons */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6 !important;
    color: var(--gf-white) !important;
}

.gf-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   6. SECTIONS
   ============================================ */
.gf-section {
    padding: var(--gf-spacing-xxl) 20px;
}

.gf-section-alt {
    background: var(--gf-bg-light);
}

.gf-row {
    display: flex;
    align-items: center;
    gap: var(--gf-spacing-xl);
    flex-wrap: wrap;
}

.gf-row-reverse {
    flex-direction: row-reverse;
}

.gf-col {
    flex: 1;
    min-width: 300px;
}

.gf-col-image {
    overflow: hidden;
    border-radius: var(--gf-radius-lg);
}

.gf-col-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--gf-radius-lg);
    box-shadow: var(--gf-shadow-lg);
    transition: transform var(--gf-transition-slow);
}

.gf-col-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   7. CARDS
   ============================================ */
.gf-card {
    background: var(--gf-white);
    border-radius: var(--gf-radius-xl);
    padding: var(--gf-spacing-lg) var(--gf-spacing-md);
    box-shadow: var(--gf-shadow-sm);
    transition: all var(--gf-transition-base);
    border: 1px solid #eee;
}

.gf-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,115,132,0.15);
    border-color: var(--gf-primary);
}

/* Service Cards */
.gf-services {
    padding: var(--gf-spacing-xxl) 20px;
    text-align: center;
}

.gf-services-header {
    max-width: 700px;
    margin: 0 auto var(--gf-spacing-xl);
}

.gf-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.gf-service-card {
    background: var(--gf-white);
    border-radius: var(--gf-radius-xl);
    padding: var(--gf-spacing-lg) var(--gf-spacing-md);
    text-align: center;
    box-shadow: var(--gf-shadow-sm);
    transition: all var(--gf-transition-base);
    border: 1px solid #eee;
}

.gf-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,115,132,0.15);
    border-color: var(--gf-primary);
}

.gf-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gf-primary) 0%, var(--gf-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all var(--gf-transition-base);
}

.gf-service-card:hover .gf-service-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0,115,132,0.3);
}

.gf-service-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--gf-white);
}

.gf-service-card h3 {
    font-size: var(--gf-font-size-lg);
    color: var(--gf-text);
    margin: 0 0 15px;
}

.gf-service-card p {
    color: var(--gf-text-light);
    font-size: var(--gf-font-size-base);
    line-height: 1.7;
    margin: 0;
}

/* Staggered delay for cards */
.gf-service-card:nth-child(1) { transition-delay: 0.1s; }
.gf-service-card:nth-child(2) { transition-delay: 0.2s; }
.gf-service-card:nth-child(3) { transition-delay: 0.3s; }
.gf-service-card:nth-child(4) { transition-delay: 0.4s; }
.gf-service-card:nth-child(5) { transition-delay: 0.5s; }
.gf-service-card:nth-child(6) { transition-delay: 0.6s; }

/* ============================================
   8. CTA SECTION
   ============================================ */
.gf-cta {
    padding: var(--gf-spacing-xxl) 20px;
    background: linear-gradient(135deg, var(--gf-primary) 0%, var(--gf-primary-dark) 100%);
    text-align: center;
    color: var(--gf-white);
}

.gf-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin: 0 0 20px;
    color: var(--gf-white);
}

.gf-cta p {
    font-size: 1.2rem;
    color: var(--gf-white);
    max-width: 600px;
    margin: 0 auto var(--gf-spacing-lg);
}

/* ============================================
   9. FOOTER
   ============================================ */
.gf-footer {
    background: var(--gf-white);
    color: var(--gf-text);
    padding: var(--gf-spacing-xl) 20px var(--gf-spacing-md);
    border-top: 1px solid #e5e5e5;
}

.gf-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--gf-spacing-lg);
}

.gf-footer-brand img {
    max-width: 180px;
    margin-bottom: 20px;
}

.gf-footer-brand p {
    color: var(--gf-text-light);
    line-height: 1.8;
}

.gf-footer-links h4,
.gf-footer-contact h4 {
    font-size: var(--gf-font-size-md);
    margin: 0 0 20px;
    color: var(--gf-text);
    font-weight: 600;
}

.gf-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.gf-footer-links a {
    color: var(--gf-text-light);
    text-decoration: none;
    transition: color var(--gf-transition-base);
}

.gf-footer-links a:hover {
    color: var(--gf-primary);
}

.gf-footer-contact p {
    color: var(--gf-text-light);
    margin: 0 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gf-footer-contact p a {
    color: var(--gf-text-light) !important;
    text-decoration: none;
    transition: color var(--gf-transition-base);
}

.gf-footer-contact p a:hover {
    color: var(--gf-primary) !important;
}

.gf-footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--gf-primary);
}

.gf-footer-bottom {
    max-width: 1200px;
    margin: var(--gf-spacing-lg) auto 0;
    padding-top: var(--gf-spacing-md);
    border-top: 1px solid #e5e5e5;
    text-align: center;
    color: var(--gf-text-muted);
    font-size: var(--gf-font-size-sm);
}

/* ============================================
   10. ANIMATIONS
   ============================================ */

/* Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Animations */
.gf-hero-logo {
    animation: fadeInUp 1s ease-out 0.2s both;
}

.gf-hero h1 {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.gf-hero-subtitle {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.gf-hero-buttons {
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Scroll Animations - Initial State */
.gf-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.gf-animate-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.gf-animate-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.gf-animate-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Animated State */
.gf-animate.animated,
.gf-animate-left.animated,
.gf-animate-right.animated,
.gf-animate-scale.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Icon float animation on hover */
.gf-service-card:hover .gf-service-icon {
    animation: float 2s ease-in-out infinite;
}

/* ============================================
   11. UTILITIES
   ============================================ */

/* Text Alignment */
.gf-text-center { text-align: center; }
.gf-text-left { text-align: left; }
.gf-text-right { text-align: right; }

/* Colors */
.gf-text-primary { color: var(--gf-primary); }
.gf-text-accent { color: var(--gf-accent); }
.gf-text-white { color: var(--gf-white); }
.gf-text-muted { color: var(--gf-text-muted); }

.gf-bg-primary { background-color: var(--gf-primary); }
.gf-bg-accent { background-color: var(--gf-accent); }
.gf-bg-light { background-color: var(--gf-bg-light); }
.gf-bg-dark { background-color: var(--gf-bg-dark); }
.gf-bg-white { background-color: var(--gf-white); }

/* Spacing */
.gf-mt-sm { margin-top: var(--gf-spacing-sm); }
.gf-mt-md { margin-top: var(--gf-spacing-md); }
.gf-mt-lg { margin-top: var(--gf-spacing-lg); }
.gf-mb-sm { margin-bottom: var(--gf-spacing-sm); }
.gf-mb-md { margin-bottom: var(--gf-spacing-md); }
.gf-mb-lg { margin-bottom: var(--gf-spacing-lg); }
.gf-py-sm { padding-top: var(--gf-spacing-sm); padding-bottom: var(--gf-spacing-sm); }
.gf-py-md { padding-top: var(--gf-spacing-md); padding-bottom: var(--gf-spacing-md); }
.gf-py-lg { padding-top: var(--gf-spacing-lg); padding-bottom: var(--gf-spacing-lg); }

/* Display */
.gf-hidden { display: none; }
.gf-block { display: block; }
.gf-flex { display: flex; }
.gf-grid { display: grid; }

/* ============================================
   12. RESPONSIVE
   ============================================ */

/* Notebook (1024px - 1366px) */
@media (max-width: 1200px) {
    .gf-hero-logo {
        width: 45% !important;
        max-width: none !important;
    }

    .gf-hero h1 {
        font-size: 2.2rem !important;
    }

    .gf-hero .gf-hero-subtitle {
        font-size: 1.1rem !important;
    }

    .gf-section {
        padding: 80px 20px;
    }

    .gf-row {
        gap: var(--gf-spacing-lg);
    }

    .gf-col-image img {
        height: 350px;
    }

    .gf-services {
        padding: 80px 20px;
    }

    .gf-cta {
        padding: 70px 20px;
    }

    .gf-footer-content {
        gap: var(--gf-spacing-md);
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .gf-hero {
        min-height: 85vh;
        padding: 110px 20px 70px;
    }

    .gf-hero-logo {
        width: 55% !important;
        max-width: none !important;
    }

    .gf-hero h1 {
        font-size: 1.9rem !important;
    }

    .gf-hero .gf-hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }

    .gf-col-image img {
        height: 320px;
    }

    .gf-service-card {
        padding: var(--gf-spacing-md);
    }

    .gf-service-icon {
        width: 70px;
        height: 70px;
    }

    .gf-service-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 768px) {
    .gf-header {
        padding: 12px 20px;
        min-height: 60px;
    }

    .gf-header-logo {
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .gf-header-logo img {
        height: 35px;
    }

    .gf-hero {
        min-height: auto;
        padding: 90px 20px 50px;
    }

    .gf-hero-logo {
        width: 65% !important;
        max-width: none !important;
    }

    .gf-hero h1 {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
    }

    .gf-hero .gf-hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 30px !important;
    }

    .gf-row {
        gap: var(--gf-spacing-lg);
    }

    .gf-col {
        min-width: 100%;
    }

    .gf-row-reverse {
        flex-direction: column;
    }

    .gf-section {
        padding: var(--gf-spacing-xl) 20px;
    }

    .gf-col-image img {
        height: 300px;
    }

    .gf-hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .gf-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .gf-header {
        padding: 10px 15px;
        min-height: 50px;
    }

    .gf-header-logo {
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .gf-header-logo img {
        height: 30px;
    }

    .gf-hero {
        padding: 80px 15px 40px;
    }

    .gf-hero-logo {
        width: 75% !important;
        max-width: none !important;
    }

    .gf-hero h1 {
        font-size: 1.4rem !important;
    }

    .gf-hero .gf-hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 25px !important;
    }

    .gf-section-title {
        font-size: 1.8rem;
    }

    .gf-btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* ============================================
   13. COOKIE CONSENT BANNER
   ============================================ */
.gf-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.gf-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.gf-cookie-content p {
    flex: 1;
    min-width: 300px;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--gf-font-size-sm);
    line-height: 1.6;
    margin: 0;
}

.gf-cookie-content p a {
    color: var(--gf-primary-light);
    text-decoration: underline;
    transition: color var(--gf-transition-fast);
}

.gf-cookie-content p a:hover {
    color: var(--gf-white);
}

.gf-cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.gf-cookie-btn {
    padding: 12px 24px;
    font-size: var(--gf-font-size-sm);
    font-weight: 600;
    border: none;
    border-radius: var(--gf-radius-md);
    cursor: pointer;
    transition: all var(--gf-transition-fast);
}

.gf-cookie-accept {
    background: var(--gf-primary);
    color: var(--gf-white);
}

.gf-cookie-accept:hover {
    background: var(--gf-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--gf-shadow-primary);
}

.gf-cookie-necessary {
    background: transparent;
    color: var(--gf-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.gf-cookie-necessary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .gf-cookie-banner {
        padding: 15px;
    }

    .gf-cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .gf-cookie-content p {
        min-width: auto;
        font-size: 0.85rem;
    }

    .gf-cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .gf-cookie-btn {
        flex: 1;
        min-width: 120px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* ============================================
   14. FOOTER LEGAL LINKS
   ============================================ */
.gf-footer-legal {
    margin-bottom: 10px;
}

.gf-footer-legal a {
    color: var(--gf-primary);
    text-decoration: none;
    font-size: var(--gf-font-size-sm);
    transition: color var(--gf-transition-fast);
}

.gf-footer-legal a:hover {
    color: var(--gf-primary-dark);
    text-decoration: underline;
}

.gf-footer-legal span {
    color: var(--gf-text-muted);
    margin: 0 8px;
}

.gf-footer-copyright {
    color: var(--gf-text-muted);
    font-size: var(--gf-font-size-sm);
    margin: 0;
}

/* Footer site-info override */
.site-info {
    text-align: center;
    padding-top: var(--gf-spacing-md);
}

.site-footer .site-info a {
    color: var(--gf-primary-light);
}

.site-footer .site-info a:hover {
    color: var(--gf-primary);
}
