﻿/* â”€â”€ NAVBAR BASE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fc-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    width: 100%;
    padding: 0 1.25rem;
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

/* Glassmorphism inner pill */
.fc-nav-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    margin-top: 0.75rem;
    border-radius: 999px;
    background: rgba(10, 10, 20, 0.45);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.08);
    transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

/* Scroll state â€” shrink + deepen glass for sticky */
.fc-navbar.scrolled .fc-nav-inner {
    background: rgba(5, 5, 15, 0.90);
    box-shadow: 0 12px 40px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.06);
    padding: 0.55rem 1.5rem;
    border-color: rgba(255,255,255,0.07);
}

/* Push page content below fixed navbar height */
.foldcraft-hero {
    padding-top: 0; /* hero is fullscreen behind the navbar */
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ LOGO Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.fc-logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    flex-shrink: 0;
}

.fc-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 9px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: box-shadow 0.3s, transform 0.3s;
}
.fc-logo:hover .fc-logo-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(67,2,178,0.45);
}

.fc-logo-text {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff;
    line-height: 1;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DESKTOP LINKS Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.fc-desktop-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    margin-left: 0.5rem;
    flex: 1;
}

@media (min-width: 960px) {
    .fc-desktop-links { display: flex; }
}

.fc-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: color 0.25s, background 0.25s;
    position: relative;
    white-space: nowrap;
}

.fc-nav-link span {
    position: relative;
}
/* animated underline */
.fc-nav-link span::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    width: 0%; height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
}
.fc-nav-link:hover span::after,
.fc-nav-link.active span::after { width: 100%; }

.fc-nav-link:hover,
.fc-nav-link.active {
    color: #fff;
    background: rgba(255,255,255,0.08);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ DROPDOWN Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.fc-has-dropdown { position: relative; }

.fc-chevron {
    flex-shrink: 0;
    transition: transform 0.3s;
}
.fc-has-dropdown:hover .fc-chevron { transform: rotate(180deg); }

.fc-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 210px;
    background: rgba(12, 12, 24, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 0.5rem;
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34,1.56,0.64,1), visibility 0.28s;
    z-index: 60;
}

.fc-has-dropdown:hover .fc-dropdown,
.fc-has-dropdown:focus-within .fc-dropdown {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* caret tip */
.fc-dropdown::before {
    content: '';
    position: absolute;
    top: -6px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px; height: 10px;
    background: rgba(255,255,255,0.08);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-left: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px;
}

.fc-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.fc-dropdown a:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}
.fc-dropdown a svg { flex-shrink: 0; opacity: 0.7; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ RIGHT SIDE Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.fc-nav-right {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: auto;
}

/* Phone pill Ã¢â‚¬â€ desktop only */
.fc-phone-pill {
    display: none;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    white-space: nowrap;
}
@media (min-width: 1100px) {
    .fc-phone-pill { display: flex; }
}
.fc-phone-pill:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}

/* CTA button */
.fc-btn-talk {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff 0%, #e8e8f0 100%);
    font-size: 0.82rem;
    font-weight: 600;
    color: #0a0a14;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(255,255,255,0.18), 0 1px 3px rgba(0,0,0,0.3);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s, filter 0.25s;
}
.fc-btn-talk:hover {
    transform: scale(1.06) translateY(-1px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.28), 0 2px 6px rgba(0,0,0,0.3);
    filter: brightness(1.04);
    color: #0a0a14;
}
.fc-btn-talk svg { flex-shrink: 0; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ HAMBURGER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.fc-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.15s;
}
@media (min-width: 960px) { .fc-hamburger { display: none; } }

.fc-hamburger:hover { background: rgba(255,255,255,0.14); }
.fc-hamburger:active { transform: scale(0.92); }

.fc-ham-line {
    display: block;
    width: 18px; height: 1.5px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.25s;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ MOBILE DRAWER Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬Ã¢â€â‚¬ */
.fc-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    pointer-events: none;
}

.fc-mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fc-mobile-drawer {
    position: absolute;
    top: 0; right: 0;
    width: min(340px, 85vw);
    height: 100%;
    background: linear-gradient(160deg, rgba(10,8,28,0.98) 0%, rgba(5,5,18,0.99) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-left: 1px solid rgba(255,255,255,0.08);
    box-shadow: -20px 0 60px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
    will-change: transform;
}

.fc-mobile-menu.open {
    pointer-events: auto;
}
.fc-mobile-menu.open .fc-mobile-backdrop { opacity: 1; }
.fc-mobile-menu.open .fc-mobile-drawer   { transform: translateX(0); }

/* Drawer header */
.fc-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.fc-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s;
}
.fc-mobile-close:hover { background: rgba(255,255,255,0.12); transform: rotate(90deg); }

/* Drawer links */
.fc-mobile-links {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem 1.25rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fc-mob-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.25s;
    /* stagger on open */
    opacity: 0;
    transform: translateX(20px);
    transition-delay: calc(var(--i) * 0.05s + 0.1s);
}
.fc-mobile-menu.open .fc-mob-link {
    opacity: 1;
    transform: translateX(0);
    transition: background 0.25s, color 0.25s, border-color 0.25s,
                opacity 0.4s cubic-bezier(0.16,1,0.3,1) calc(var(--i) * 0.06s + 0.15s),
                transform 0.45s cubic-bezier(0.16,1,0.3,1) calc(var(--i) * 0.06s + 0.15s);
}
.fc-mob-link:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
    border-color: rgba(255,255,255,0.1);
    transform: translateX(4px);
}
.fc-mob-link.active { color: #fff; background: rgba(255,255,255,0.1); }

.fc-mob-num {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.28);
    font-variant-numeric: tabular-nums;
}

/* Drawer footer */
.fc-mobile-footer {
    padding: 1.25rem 1.25rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fc-mob-phone {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    text-align: center;
    transition: color 0.25s;
}
.fc-mob-phone:hover { color: rgba(255,255,255,0.85); }

.fc-mob-cta {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
}
