/* Floating Header */
.site-header {
    padding: 32px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-dark);
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-body);
}

.nav a:hover {
    color: var(--primary);
}

.mobile-header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

.mobile-blog-link {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(8, 10, 33, 0.88);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 30px rgba(8, 10, 33, 0.18);
    backdrop-filter: blur(10px);
}

.mobile-blog-link:hover {
    transform: translateY(-1px);
    background: linear-gradient(135deg, var(--primary), #4c8dff);
    color: var(--white);
}

/* Footer (Stripe Style) */
/* Footer Refined */
.site-footer {
    padding: 100px 0 60px;
    background: #F6F9FC;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo {
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.footer-location {
    font-size: 15px;
    color: var(--text-dim);
}

.footer-business-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 32px;
}

.footer-business-info p {
    margin: 0;
}

.footer-contact {
    margin-top: 8px;
    color: var(--text-body);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-dim);
    margin-top: 48px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Hide Desktop Elements */
    .desktop-only {
        display: none !important;
    }

    /* Show Mobile Elements */
    .mobile-header-actions {
        display: flex;
    }

    .mobile-blog-link {
        display: inline-flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    /* Hamburger Animation */
    .site-header.nav-active .mobile-menu-btn span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.nav-active .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }

    .site-header.nav-active .mobile-menu-btn::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--text-dark);
        transform: translateY(8px) rotate(-45deg);
        top: 8px;
        /* Offset to match middle position */
        left: 0;
    }
}

/* Base Styles for Mobile Elements (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 0;
    position: relative;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-header.nav-active .mobile-nav {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.mobile-nav-links a {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

.mobile-cta {
    width: 200px;
    text-align: center;
}
