/* =================================================================
 * Future Building - Custom Styles v2
 * Minden hover, gradient, animáció, reszponzív design itt
 * ================================================================= */

/* CSS Variables */
:root {
    --fb-dark: #1A1A1A;
    --fb-cream: #F7F5F1;
    --fb-gold: #C5A04A;
    --fb-gold-light: #E0CB94;
    --fb-muted: #EEEAE3;
    --fb-muted-text: #6B6B6B;
    --fb-border: #E2DDD3;
    --fb-white: #FFFFFF;
    --fb-font-heading: 'Playfair Display', serif;
    --fb-font-body: 'Inter', sans-serif;
    --fb-gold-gradient: linear-gradient(135deg, #C5A04A, #E0CB94);
}

/* Globális finomítások */
body { font-family: var(--fb-font-body); color: var(--fb-dark); background: var(--fb-cream); }
h1, h2, h3, h4, h5, h6 { font-family: var(--fb-font-heading); }

/* Gold helper osztályok */
.fb-gold-text { color: var(--fb-gold); }
.fb-gold-bg { background: var(--fb-gold-gradient); }

/* Section header közös */
.fb-section-header { margin-bottom: 60px; }
.fb-section-header-center { text-align: center; }
.fb-section-overline {
    font-family: var(--fb-font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 3px;
    color: var(--fb-gold);
    margin-bottom: 12px;
    text-transform: uppercase;
}
.fb-section-title {
    font-family: var(--fb-font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--fb-dark);
    margin-bottom: 12px;
    line-height: 1.1;
}
.fb-section-desc {
    font-size: 16px;
    color: var(--fb-muted-text);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .fb-section-title { font-size: 32px; }
}

/* ============================================================
 * GOMBOK
 * ============================================================ */
.fb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--fb-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.fb-btn-gold {
    background: var(--fb-gold-gradient);
    color: var(--fb-dark) !important;
}
.fb-btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(197, 160, 74, 0.3);
    opacity: 0.95;
}
.fb-btn-outline {
    background: transparent;
    color: var(--fb-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.6);
}
.fb-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--fb-white);
}
.fb-btn-full { width: 100%; }

/* ============================================================
 * HEADER (sticky, glass effect)
 * ============================================================ */
.fb-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(247, 245, 241, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}
.fb-header.scrolled {
    background: rgba(247, 245, 241, 0.98);
    border-bottom-color: var(--fb-border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.fb-header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.fb-header-logo {
    font-family: var(--fb-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--fb-dark) !important;
    text-decoration: none !important;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.fb-header-nav { flex: 1; display: flex; justify-content: center; }
.fb-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 32px;
}
.fb-menu-list li { position: relative; }
.fb-menu-list a {
    font-family: var(--fb-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--fb-muted-text);
    text-decoration: none !important;
    transition: color 0.3s ease;
    padding-bottom: 4px;
    position: relative;
}
.fb-menu-list a:hover { color: var(--fb-dark); }
.fb-menu-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fb-gold-gradient);
    transition: width 0.3s ease;
}
.fb-menu-list a:hover::after,
.fb-menu-list .current-menu-item a::after {
    width: 100%;
}
.fb-header-langs { flex-shrink: 0; }
.fb-lang-switcher {
    display: flex;
    gap: 4px;
}
.fb-lang-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 18px;
    text-decoration: none !important;
    border-radius: 4px;
    opacity: 0.6;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.fb-lang-flag:hover { opacity: 1; }
.fb-lang-active {
    opacity: 1;
    transform: scale(1.1);
    border-color: var(--fb-gold);
}

/* Mobile menu */
.fb-mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--fb-dark);
    padding: 8px;
}
.fb-mobile-toggle .fb-mobile-icon-close { display: none; }
.fb-mobile-toggle.active .fb-mobile-icon-open { display: none; }
.fb-mobile-toggle.active .fb-mobile-icon-close { display: block; }

.fb-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(247, 245, 241, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--fb-border);
    padding: 32px 24px;
    z-index: 998;
}
.fb-mobile-menu.active { display: block; }
.fb-mobile-nav .fb-menu-list { flex-direction: column; gap: 8px; }
.fb-mobile-nav .fb-menu-list a {
    display: block;
    padding: 16px;
    font-size: 18px;
    font-family: var(--fb-font-heading);
    color: var(--fb-dark);
    border-radius: 8px;
    transition: background 0.2s;
}
.fb-mobile-nav .fb-menu-list a:hover { background: rgba(197, 160, 74, 0.1); }
.fb-mobile-langs { margin-top: 24px; display: flex; justify-content: center; }

@media (max-width: 1024px) {
    .fb-header-nav { display: none; }
    .fb-header-langs { margin-right: 8px; }
    .fb-mobile-toggle { display: block; }
}
@media (max-width: 768px) {
    .fb-header-inner { padding: 12px 20px; }
    .fb-header-logo { font-size: 18px; }
}

/* Body padding for sticky header */
body { padding-top: 0; }
.fb-hero-section { margin-top: 0; }

/* ============================================================
 * HERO
 * ============================================================ */
.fb-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: var(--fb-white);
}
.fb-hero-overline {
    font-family: var(--fb-font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--fb-gold-light);
    margin-bottom: 24px;
    text-transform: uppercase;
}
.fb-hero-title {
    font-family: var(--fb-font-heading);
    font-size: 80px;
    font-weight: 700;
    line-height: 1.05;
    color: var(--fb-white);
    margin-bottom: 24px;
}
@media (max-width: 1024px) { .fb-hero-title { font-size: 56px; } }
@media (max-width: 768px) { .fb-hero-title { font-size: 40px; } }

.fb-hero-typewriter-wrap {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.fb-typewriter-text {
    font-family: var(--fb-font-heading);
    font-size: 22px;
    font-style: italic;
    color: var(--fb-gold-light);
}
.fb-typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: var(--fb-gold);
    margin-left: 4px;
    animation: fb-blink 1s step-end infinite;
}
@keyframes fb-blink { 50% { opacity: 0; } }

.fb-hero-tagline {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.fb-hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.fb-hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    animation: fb-bounce 2s infinite;
}
@keyframes fb-bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

/* ============================================================
 * STATS
 * ============================================================ */
.fb-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .fb-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.fb-stat-item { padding: 0 16px; }
.fb-stat-number {
    display: block;
    font-family: var(--fb-font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--fb-gold);
    line-height: 1;
    margin-bottom: 12px;
}
@media (max-width: 768px) { .fb-stat-number { font-size: 40px; } }
.fb-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
}

/* ============================================================
 * ABOUT
 * ============================================================ */
.fb-about-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1024px) {
    .fb-about-grid { grid-template-columns: 1fr; gap: 32px; }
}
.fb-about-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--fb-muted-text);
    margin-bottom: 16px;
}
.fb-about-card {
    background: var(--fb-white);
    padding: 32px;
    border-left: 4px solid var(--fb-gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}
.fb-about-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--fb-border);
    font-size: 14px;
    gap: 16px;
}
.fb-about-info-row:last-child { border-bottom: none; }
.fb-info-label { color: var(--fb-gold); font-weight: 600; flex-shrink: 0; }
.fb-info-value { color: var(--fb-dark); text-align: right; }
.fb-info-value a { color: var(--fb-dark); text-decoration: none; }

/* ============================================================
 * SERVICES (hover effekt - kép zoom + emelkedés)
 * ============================================================ */
.fb-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1024px) { .fb-svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .fb-svc-grid { grid-template-columns: 1fr; } }

.fb-svc-card {
    background: var(--fb-white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--fb-border);
    transition: all 0.3s ease;
    cursor: pointer;
}
.fb-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--fb-gold);
}
.fb-svc-image-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.fb-svc-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fb-svc-card:hover .fb-svc-image-wrap img { transform: scale(1.1); }
.fb-svc-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
}
.fb-svc-body { padding: 24px; }
.fb-svc-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--fb-gold);
    margin-bottom: 8px;
    text-transform: uppercase;
}
.fb-svc-title {
    font-family: var(--fb-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--fb-dark);
    margin: 0 0 12px;
}
.fb-svc-desc {
    font-size: 14px;
    color: var(--fb-muted-text);
    line-height: 1.6;
    margin: 0 0 16px;
}
.fb-svc-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--fb-gold);
    font-size: 14px;
    font-weight: 600;
    transition: gap 0.3s ease;
}
.fb-svc-card:hover .fb-svc-link { gap: 8px; }

/* ============================================================
 * REFERENCES (zigzag layout)
 * ============================================================ */
.fb-ref-list { max-width: 1200px; margin: 0 auto; }
.fb-ref-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}
.fb-ref-row:last-child { margin-bottom: 0; }
.fb-ref-reverse .fb-ref-image-col { order: 2; }
.fb-ref-reverse .fb-ref-text-col { order: 1; }
@media (max-width: 1024px) {
    .fb-ref-row { grid-template-columns: 1fr; gap: 32px; }
    .fb-ref-reverse .fb-ref-image-col,
    .fb-ref-reverse .fb-ref-text-col { order: initial; }
}
.fb-ref-image-wrap {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 4px;
}
.fb-ref-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.fb-ref-image-wrap:hover img { transform: scale(1.05); }
.fb-ref-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--fb-gold-gradient);
    color: var(--fb-dark);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}
.fb-ref-title {
    font-family: var(--fb-font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--fb-dark);
    margin: 0 0 16px;
    line-height: 1.2;
}
@media (max-width: 768px) { .fb-ref-title { font-size: 24px; } }
.fb-ref-desc {
    font-size: 16px;
    color: var(--fb-muted-text);
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
 * INNOVATION
 * ============================================================ */
.fb-inn-wrapper { max-width: 800px; margin: 0 auto; text-align: center; }
.fb-inn-stat { margin: 40px 0; }
.fb-inn-stat-number {
    font-family: var(--fb-font-heading);
    font-size: 96px;
    font-weight: 700;
    background: var(--fb-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
}
@media (max-width: 768px) { .fb-inn-stat-number { font-size: 64px; } }
.fb-inn-stat-label {
    font-size: 16px;
    color: var(--fb-muted-text);
    font-weight: 500;
}
.fb-inn-points {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.fb-inn-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--fb-dark);
}
.fb-inn-check {
    width: 24px;
    height: 24px;
    background: var(--fb-gold);
    color: var(--fb-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* ============================================================
 * PORTFOLIO (filter + grid + hover overlay)
 * ============================================================ */
.fb-pf-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
}
.fb-pf-filter {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--fb-border);
    color: var(--fb-muted-text);
    font-family: var(--fb-font-body);
    font-size: 14px;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.fb-pf-filter:hover {
    border-color: var(--fb-gold);
    color: var(--fb-dark);
}
.fb-pf-filter-active {
    background: var(--fb-gold-gradient);
    color: var(--fb-dark);
    border-color: transparent;
}
.fb-pf-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
@media (max-width: 1024px) { .fb-pf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .fb-pf-grid { grid-template-columns: 1fr; } }

.fb-pf-card { transition: opacity 0.3s ease, transform 0.3s ease; }
.fb-pf-card.fb-pf-hide { display: none; }
.fb-pf-image-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}
.fb-pf-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fb-pf-card:hover .fb-pf-image-wrap img { transform: scale(1.08); }
.fb-pf-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2) 60%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
}
.fb-pf-card:hover .fb-pf-overlay { opacity: 1; }
.fb-pf-overlay-content { padding: 20px; width: 100%; color: var(--fb-white); }
.fb-pf-name {
    font-family: var(--fb-font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}
.fb-pf-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}
.fb-pf-cat { color: var(--fb-gold-light); }
.fb-pf-view {
    color: var(--fb-gold-light);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ============================================================
 * WHY US
 * ============================================================ */
.fb-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
@media (max-width: 768px) { .fb-why-grid { grid-template-columns: 1fr; } }

.fb-why-card { padding: 32px 24px; }
.fb-why-icon {
    color: var(--fb-gold);
    display: inline-flex;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}
.fb-why-card:hover .fb-why-icon { transform: scale(1.1) rotate(5deg); }
.fb-why-title {
    font-family: var(--fb-font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--fb-dark);
    margin: 0 0 12px;
}
.fb-why-desc {
    font-size: 14px;
    color: var(--fb-muted-text);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
 * VIDEOS (modal lejátszó)
 * ============================================================ */
.fb-vid-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 768px) { .fb-vid-grid { grid-template-columns: 1fr; } }

.fb-vid-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fb-vid-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15); }
.fb-vid-thumb-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
    border-radius: 4px;
}
.fb-vid-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.fb-vid-card:hover .fb-vid-thumb-wrap img { transform: scale(1.05); }
.fb-vid-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}
.fb-vid-card:hover .fb-vid-overlay { background: rgba(0, 0, 0, 0.45); }
.fb-vid-play {
    width: 64px;
    height: 64px;
    background: var(--fb-gold-gradient);
    color: var(--fb-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    padding-left: 4px;
}
.fb-vid-card:hover .fb-vid-play { transform: scale(1.1); }
.fb-vid-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}
.fb-vid-title {
    color: var(--fb-white);
    font-family: var(--fb-font-heading);
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Video modal */
.fb-vid-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.fb-vid-modal.active { display: flex; }
.fb-vid-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: color 0.2s;
}
.fb-vid-modal-close:hover { color: var(--fb-white); }
.fb-vid-modal-content {
    width: 100%;
    max-width: 1024px;
    aspect-ratio: 16/9;
}
.fb-vid-modal iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 4px;
}

/* ============================================================
 * CONTACT (form + info)
 * ============================================================ */
.fb-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}
@media (max-width: 1024px) { .fb-contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.fb-contact-form { display: flex; flex-direction: column; gap: 16px; }
.fb-form-row { display: flex; flex-direction: column; gap: 6px; }
.fb-form-row label {
    font-size: 13px;
    font-weight: 500;
    color: var(--fb-dark);
}
.fb-form-row input,
.fb-form-row select,
.fb-form-row textarea {
    padding: 12px 16px;
    background: var(--fb-white);
    border: 1px solid var(--fb-border);
    border-radius: 2px;
    font-family: var(--fb-font-body);
    font-size: 14px;
    color: var(--fb-dark);
    transition: all 0.2s ease;
    width: 100%;
}
.fb-form-row input:focus,
.fb-form-row select:focus,
.fb-form-row textarea:focus {
    outline: none;
    border-color: var(--fb-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 74, 0.15);
}
.fb-form-row textarea { resize: vertical; min-height: 100px; }
.fb-form-msg { padding: 12px; border-radius: 2px; font-size: 14px; margin-top: 12px; }
.fb-form-msg.success { background: rgba(34, 197, 94, 0.1); color: rgb(34, 130, 70); }
.fb-form-msg.error { background: rgba(239, 68, 68, 0.1); color: rgb(180, 50, 50); }

.fb-contact-info { padding-left: 0; }
.fb-contact-info-title {
    font-family: var(--fb-font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--fb-dark);
    margin: 0 0 24px;
}
.fb-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--fb-muted-text);
    font-size: 15px;
}
.fb-contact-item svg { color: var(--fb-gold); flex-shrink: 0; }
.fb-contact-item a { color: var(--fb-muted-text); text-decoration: none; transition: color 0.2s; }
.fb-contact-item a:hover { color: var(--fb-gold); }

/* ============================================================
 * FOOTER
 * ============================================================ */
.fb-footer {
    background: var(--fb-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 32px;
}
.fb-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.fb-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
@media (max-width: 768px) {
    .fb-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .fb-footer-inner { padding: 0 24px; }
}
.fb-footer-brand {
    font-family: var(--fb-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--fb-white);
    margin: 0 0 12px;
}
.fb-footer-tagline {
    font-style: italic;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 8px;
}
.fb-footer-company { font-size: 12px; color: rgba(255, 255, 255, 0.4); margin: 0; }
.fb-footer-heading {
    font-family: var(--fb-font-body);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.fb-footer-col p {
    margin: 0 0 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}
.fb-footer-col a { color: rgba(255, 255, 255, 0.6); text-decoration: none; transition: color 0.2s; }
.fb-footer-col a:hover { color: var(--fb-gold); }
.fb-footer .fb-menu-list {
    flex-direction: column;
    gap: 8px;
}
.fb-footer .fb-menu-list a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}
.fb-footer .fb-menu-list a::after { display: none; }
.fb-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.fb-footer-bottom p { margin: 0; font-size: 12px; color: rgba(255, 255, 255, 0.4); }
.fb-footer-links { display: flex; gap: 16px; }
.fb-footer-links a { color: rgba(255, 255, 255, 0.4); font-size: 12px; }
.fb-footer-links a:hover { color: var(--fb-gold); }

/* ============================================================
 * SCROLL PROGRESS BAR (felül arany sáv)
 * ============================================================ */
#fb-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--fb-gold-gradient);
    z-index: 10000;
    width: 0;
    transition: width 0.1s linear;
}

/* ============================================================
 * AOS-szerű fade animációk (saját implementáció CSS-ben)
 * ============================================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-aos].fb-aos-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Reszponzív segédek */
@media (max-width: 768px) {
    .fb-hero-section { padding: 0 16px !important; }
    .fb-about-section, .fb-services-section, .fb-references-section,
    .fb-innovation-section, .fb-portfolio-section, .fb-why-section,
    .fb-videos-section, .fb-contact-section {
        padding-left: 16px !important;
        padding-right: 16px !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}
