/* ============================================================
   HomeBuddy - Premium Landing Page Styles
   ============================================================ */

/* Hide native browser password reveal/clear buttons (Edge/IE) */
::-ms-reveal,
::-ms-clear {
    display: none !important;
}

/* ----- GLOBAL & TYPOGRAPHY ----- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@700;800;900&display=swap');

html {
    scroll-behavior: smooth;
}

/* Smooth transitions — but exclude transforms so animations aren't broken */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ----- SCROLLBAR ----- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: #94a3b8;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* ============================================================
   NAVBAR — Premium Header (Original Primary Blue Color)
   ============================================================ */
.hb-navbar {
    background: rgba(37, 99, 235, 0.97);
    /* matches original bg-primary/95 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 12px rgba(37, 99, 235, 0.15);
}

.hb-navbar.scrolled {
    background: rgba(29, 78, 216, 0.99);
    /* slightly darker on scroll */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

/* ============================================================
   OUR MISSION — Guaranteed Side-by-Side Layout
   ============================================================ */
.hb-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hb-mission-text {
    min-width: 0;
    /* prevent overflow */
}

@media (max-width: 768px) {
    .hb-mission-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.hb-logo-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hb-logo-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.hb-logo-icon img {
    width: 24px;
    height: 24px;
}

.hb-logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.5px;
}

.hb-logo-text .logo-buddy {
    color: #fbbf24;
}

/* Navbar links */
.hb-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
    text-decoration: none;
}

.hb-nav-link:hover,
.hb-nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.hb-nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #f97316;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hb-nav-link:hover::after,
.hb-nav-link.active::after {
    left: 14px;
    right: 14px;
}

/* Auth Buttons */
.hb-btn-login {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.hb-btn-login:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
}

.hb-btn-register {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border: none;
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

.hb-btn-register:hover {
    background: linear-gradient(135deg, #ea580c, #c2410c);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

/* ============================================================
   HERO SECTION — Premium Split Design
   ============================================================ */
#hb-hero {
    min-height: 100vh;
    padding-top: 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #1d4ed8 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Animated blob backgrounds */
.hb-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blobFloat 8s ease-in-out infinite;
    pointer-events: none;
}

.hb-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3b82f6, #8b5cf6);
    top: -100px;
    right: 10%;
    animation-delay: 0s;
}

.hb-blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f97316, #ec4899);
    bottom: -80px;
    left: 5%;
    animation-delay: 3s;
}

.hb-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #06b6d4, #3b82f6);
    top: 30%;
    right: 30%;
    animation-delay: 5s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

/* Hero content area */
.hb-hero-content {
    position: relative;
    z-index: 10;
}

/* Badge */
.hb-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.4);
    border-radius: 100px;
    color: #fbbf24;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    width: fit-content;
    animation: fadeInDown 0.6s ease both;
}

.hb-hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    animation: pulseBadge 1.5s ease-in-out infinite;
}

@keyframes pulseBadge {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* Hero headline */
.hb-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hb-hero-title .title-highlight {
    background: linear-gradient(135deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hb-hero-title .title-underline {
    position: relative;
}

.hb-hero-title .title-underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fbbf24);
    border-radius: 2px;
}

.hb-hero-sub {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 520px;
    margin-top: 16px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

/* Search Box */
.hb-search-box {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.7s ease 0.3s both;
    margin-top: 28px;
}

.hb-search-input {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 14px 12px 44px;
    font-size: 0.9rem;
    color: #1e293b;
    width: 100%;
    transition: all 0.25s ease;
    outline: none;
}

.hb-search-input:focus {
    border-color: #2563eb;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.hb-search-input::placeholder {
    color: #94a3b8;
}

.hb-search-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.hb-search-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* Category pills */
.hb-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.hb-category-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

/* Stats row */
.hb-stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hb-stat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}

.hb-stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.hb-stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.75rem;
    font-weight: 500;
}

/* Hero image panel */
.hb-hero-image-panel {
    position: relative;
    animation: fadeInRight 0.9s ease 0.1s both;
}

.hb-hero-image-main {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 255, 255, 0.1);
}

/* Floating cards on hero image */
.hb-float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    animation: floatCard 4s ease-in-out infinite;
}

.hb-float-card-1 {
    top: 20px;
    left: -24px;
    animation-delay: 0s;
}

.hb-float-card-2 {
    bottom: 60px;
    right: -24px;
    animation-delay: 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ============================================================
   CINEMATIC HERO IMAGE — Ken Burns Effect
   ============================================================ */
@keyframes showcaseZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.animate-showcase-zoom {
    animation: showcaseZoom 15s ease-in-out infinite alternate;
}

@keyframes heroCinematic {
    0% {
        transform: scale(1.0) translateX(0) translateY(0);
    }

    33% {
        transform: scale(1.06) translateX(-1%) translateY(-1%);
    }

    66% {
        transform: scale(1.04) translateX(1%) translateY(0.5%);
    }

    100% {
        transform: scale(1.08) translateX(-0.5%) translateY(-1.5%);
    }
}

/* Verified badge pill on image */
.hb-verified-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 16px rgba(34, 197, 94, 0.35);
}

/* Rating chip */
.hb-rating-chip {
    position: absolute;
    bottom: 20px;
    left: 16px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(10px);
    color: white;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================================
   SECTION STYLES
   ============================================================ */

/* How It Works — already styled, just add subtle enhancements */
#how-it-works .step-icon-wrap {
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#how-it-works .step-icon-wrap:hover {
    transform: scale(1.12) rotate(-3deg);
}

/* ============================================================
   PROVIDER CARDS — Enhanced
   ============================================================ */
.provider-card {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.provider-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   TRUST BAR — Premium
   ============================================================ */
.hb-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f1f5f9;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    transition: all 0.25s ease;
}

.hb-trust-item:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.hb-trust-item i {
    font-size: 1rem;
}

/* ============================================================
   FOOTER — keep original primary color
   ============================================================ */
/* footer uses Tailwind bg-primary directly, no override needed */

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll reveal animation */
.scroll-reveal {
    animation: fadeInUp 0.7s ease both;
}

/* Communications Panel Refresh Animations */
.communications-card {
    transition: all 0.3s ease;
}

.communications-card.refresh-animation {
    animation: refreshPulse 0.6s ease-in-out;
}

@keyframes refreshPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(0.98);
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.communications-card.sync-animation {
    animation: syncGlow 1s ease-in-out;
}

@keyframes syncGlow {
    0% {
        box-shadow: 0 0 0 rgba(34, 197, 94, 0);
    }

    50% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
        border-color: #22c55e;
    }

    100% {
        box-shadow: 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Report Status Updates */
.report-status {
    transition: all 0.3s ease;
}

.report-status.status-resolved {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    animation: statusUpdate 0.5s ease-in-out;
}

@keyframes statusUpdate {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Badge Pulse Animation */
.badge-pulse {
    animation: badgePulse 1s ease-in-out infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* Customer Real-time Updates Animations */
.refresh-animation {
    animation: refreshPulse 0.6s ease-in-out;
}

.status-resolved-animation {
    animation: statusResolved 2s ease-in-out;
    border-left: 4px solid #22c55e !important;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.1) 0%, transparent 100%) !important;
}

@keyframes statusResolved {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    25% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(34, 197, 94, 0.1);
    }

    75% {
        transform: scale(1.02);
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.3);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Modal specific alignment */
.modal-body-scroll {
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 transparent;
}

/* Custom focus styles */
.focus-ring:focus {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}

/* Loading animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom button styles */
.btn-primary {
    background: #2563EB;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: rgba(37, 99, 235, 0.9);
}

.btn-secondary {
    background: #22c55e;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-accent {
    background: #f97316;
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

/* Modal animations */
.modal-enter {
    opacity: 0;
    transform: scale(0.9);
}

.modal-enter-active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 200ms, transform 200ms;
}

.modal-exit {
    opacity: 1;
    transform: scale(1);
}

.modal-exit-active {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 200ms, transform 200ms;
}

/* Toast notifications */
.toast-enter {
    opacity: 0;
    transform: translateX(100%);
}

.toast-enter-active {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 300ms, transform 300ms;
}

.toast-exit {
    opacity: 1;
    transform: translateX(0);
}

.toast-exit-active {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 300ms, transform 300ms;
}

/* Card styles */
.card {
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
}

.card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.card-body {
    padding: 1rem 1.5rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e5e7eb;
}

/* Status indicators */
.status-success {
    background: #dcfce7;
    color: #166534;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-warning {
    background: #fef9c3;
    color: #854d0e;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-info {
    background: #dbeafe;
    color: #1e40af;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Sidebar layout fixes */
.sidebar-section {
    flex-shrink: 0;
}

.sidebar-navigation {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.sidebar-footer {
    flex-shrink: 0;
    margin-top: auto;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

.sidebar-section+.sidebar-section {
    margin-top: 0;
}

.nav-section {
    margin-bottom: 1rem;
}

.nav-section:last-child {
    margin-bottom: 0;
}

/* Responsive utilities */
@media (max-width: 640px) {
    .mobile-hidden {
        display: none;
    }

    .hb-hero-image-panel {
        display: none;
    }

    #hb-hero {
        min-height: auto;
        padding-top: 90px;
        padding-bottom: 48px;
    }
}

@media (min-width: 641px) {
    .desktop-hidden {
        display: none;
    }
}

/* Compact spacing when a provider has only a single service */
.service-chip-list.single {
    margin-bottom: 0.25rem;
}

.service-chip-list.single+button {
    display: none !important;
}

/* ============================================================
   HERO SECTION ENHANCEMENTS - SECTION DIVIDER
   ============================================================ */
.hb-wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hb-wave-divider svg {
    width: 100%;
    height: 60px;
}

/* ============================================================
   WHY US — GLASS CARDS
   ============================================================ */
.hb-feature-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.hb-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hb-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.14);
}

.hb-feature-card:hover::before {
    opacity: 1;
}

/* ============================================================
   MOBILE NAV MENU
   ============================================================ */
.hb-mobile-menu {
    background: rgba(37, 99, 235, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}