/* Reset and Base Styles - Asset Alley Design System */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-accent: #01e194;
    --color-light-gray-bg: #f5f5f5;
    --color-medium-gray: #666666;
    --color-light-gray-text: #999999;
    --color-border: #e5e5e5;
    --color-border-card:rgba(0, 0, 0, 0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Screen */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    height: 120px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideDown 0.6s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

header .call-button {
    position: relative;
    width: auto;
    height: 44px;
    background-color: var(--color-accent);
    border-radius: 4px;
    border: 2px solid var(--color-accent);
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    padding: 0 24px;
    white-space: nowrap;
    overflow: hidden;
}

header .call-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

header .call-button:hover::before {
    left: 100%;
}

header .call-button:hover {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 225, 148, 0.3);
}

header .call-button.scrolled {
    background-color: #000000;
    border-color: #000000;
    color: white;
}

header .call-button.scrolled:hover {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

header .call-button:active {
    transform: scale(0.95);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

header .logo-link img,
header .nav-link {
    color: var(--color-white);
    transition: all 0.3s ease;
}

header.scrolled .nav-link {
    color: var(--color-black);
}

header .hamburger-line {
    background: var(--color-white);
    transition: all 0.3s ease;
}

header.scrolled .hamburger-line {
    background: var(--color-accent);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.logo-link {
    display: block;
    width: 280px;
    height: 62px;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.mobile-logo {
    display: none;
}

nav {
    display: flex;
    align-items: center;
}

/* Dropdown Styles */
.nav-item {
    position: relative;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    padding: 10px 16px;
    text-decoration: none;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-black);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link:hover {
    color: var(--color-accent);
}

/* Dropdown arrow */
.dropdown-arrow {
    font-size: 9px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega Dropdown Menu */
.mega-dropdown {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--color-white);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    padding: 50px 60px;
    min-width: 1100px;
    max-width: 1200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.dropdown-column {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s ease forwards;
}

.dropdown-column:nth-child(1) { animation-delay: 0.1s; }
.dropdown-column:nth-child(2) { animation-delay: 0.15s; }
.dropdown-column:nth-child(3) { animation-delay: 0.2s; }
.dropdown-column:nth-child(4) { animation-delay: 0.25s; }

.dropdown-column-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--color-black);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    position: relative;
}

.dropdown-column-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.dropdown-column-title:hover {
    color: var(--color-accent);
    
}

.dropdown-column:hover .dropdown-column-title::after {
    width: 100%;
}

.dropdown-link {
    color: var(--color-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 10px 12px;
    transition: all 0.25s ease;
    display: block;
    border-radius: 4px;
    line-height: 1.4;
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-link:hover::before {
    transform: scaleY(1);
}

.dropdown-link:hover {
    color: var(--color-accent);
    background: rgba(0, 255, 157, 0.08);
    padding-left: 18px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 8px;
}

.menu-toggle:hover .hamburger-line {
    background: var(--color-accent);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-black);
    z-index: 9999;
    padding: 0;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-menu-content {
    width: 100%;
    max-width: 600px;
    padding: 120px 24px 40px 24px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

.mobile-menu-close {
    display: none;
    background: none;
    border: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu.active .mobile-menu-close {
    display: flex !important;
}

body.menu-open .mobile-menu-close {
    display: flex !important;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100002;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
    margin: 0;
    padding: 0;
    width: 100%;
}

.mobile-nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.5s ease forwards;
}

.mobile-nav-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav-item:nth-child(2) { animation-delay: 0.2s; }
.mobile-nav-item:nth-child(3) { animation-delay: 0.3s; }
.mobile-nav-item:nth-child(4) { animation-delay: 0.4s; }
.mobile-nav-item:nth-child(5) { animation-delay: 0.5s; }

.mobile-nav-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    color: var(--color-white);
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.mobile-nav-link-wrapper:hover {
    color: var(--color-accent);
    padding-left: 10px;
}

.mobile-dropdown-arrow {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.mobile-nav-item.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 12px 0 0 20px;
}

.mobile-nav-item.active .mobile-dropdown-content {
    max-height: 1500px;
    padding-bottom: 24px;
}

.mobile-dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    padding: 14px 0;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-dropdown-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.mobile-dropdown-link:hover::before,
.mobile-dropdown-link:active::before {
    opacity: 1;
    left: -15px;
}

.mobile-dropdown-link:hover,
.mobile-dropdown-link:active {
    color: var(--color-accent);
    padding-left: 10px;
}

.mobile-submenu-item {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-submenu-item:first-child {
    border-top: none;
}

.mobile-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0 18px 10px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-submenu-toggle:hover {
    color: var(--color-accent);
    padding-left: 20px;
}

.mobile-submenu-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.mobile-submenu-item.active .mobile-submenu-arrow {
    transform: rotate(180deg);
}

.mobile-submenu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding-left: 20px;
}

.mobile-submenu-item.active .mobile-submenu-content {
    max-height: 800px;
    padding-bottom: 10px;
}

.mobile-submenu-content .mobile-dropdown-link {
    font-size: 15px;
    padding: 10px 0 10px 10px;
}

.mobile-nav-link {
    font-size: 28px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    display: block;
    padding: 24px 0;
    transition: all 0.3s ease;
    text-align: left;
}

.mobile-nav-link:hover {
    color: var(--color-accent);
    padding-left: 10px;
}

.mobile-menu-cta {
    display: block;
    background: var(--color-accent);
    color: var(--color-black);
    text-align: center;
    padding: 20px 60px;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    margin-top: 80px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 500px;
    position: relative;
    overflow: hidden;
}

.mobile-menu-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.mobile-menu-cta:hover::before {
    width: 300px;
    height: 300px;
}

.mobile-menu-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(1, 225, 148, 0.3);
}

.mobile-menu-footer {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #333;
    width: 100%;
    opacity: 0;
    animation: fadeIn 0.6s ease 0.8s forwards;
}

body.menu-open .mobile-logo {
    display: none !important;
}

body.menu-open .logo-link {
    display: block !important;
    margin-left: 0 !important;
    position: relative;
    z-index: 100001 !important;
}

body.menu-open #desktop-logo {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.menu-open header {
    background: var(--color-black) !important;
    z-index: 100000 !important;
}

body.menu-open .menu-toggle {
    display: none !important;
}

/* Hero Section */
.hero-section {
    margin-top: 0;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    background-image: url('your-image-path.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    animation: fadeIn 1s ease;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1400px;
    padding: 80px 48px;
    animation: slideUp 1s ease;
}

.hero-text {
    max-width: 800px;
    text-align: center;
}

.hero-label {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--color-white);
    text-transform: uppercase;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

.hero-heading {
    font-size: 64px;
    line-height: 1.1;
    color: var(--color-white);
    font-weight: 700;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-heading .accent {
    color: var(--color-accent);
    display: inline-block;
    animation: glow 2s ease-in-out infinite;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

/* Filter Section */
.filter-section {
    padding: 60px 48px;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.filter-container {
    max-width: 1400px;
    margin: 0 auto;
}

.search-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--color-medium-gray);
    transition: color 0.3s ease;
}

.search-input:focus + .search-icon {
    color: var(--color-accent);
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--color-white);
    color: var(--color-black);
}

.search-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(1, 225, 148, 0.1);
    transform: translateY(-2px);
}

.filter-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--color-border);
    background: var(--color-white);
    border-radius: 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-medium-gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    position: relative;
    overflow: hidden;
}

.filter-btn:nth-child(1) { animation-delay: 0.2s; }
.filter-btn:nth-child(2) { animation-delay: 0.3s; }
.filter-btn:nth-child(3) { animation-delay: 0.4s; }
.filter-btn:nth-child(4) { animation-delay: 0.5s; }
.filter-btn:nth-child(5) { animation-delay: 0.6s; }

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(1, 225, 148, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(1, 225, 148, 0.2);
}

.filter-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-black);
    transform: scale(1.05);
}

/* Insurance Section */
.insurance-section {
    padding: 80px 48px;
    background: var(--color-light-gray-bg);
    min-height: 600px;
}

.insurance-container {
    max-width: 1400px;
    margin: 0 auto;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 32px;
}

.insurance-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 2px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 2px solid var(--color-border-card);
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    overflow: hidden;
    position: relative;
}

.insurance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.insurance-card:hover::before {
    transform: scaleX(1);
}

.insurance-card:nth-child(1) { animation-delay: 0.1s; }
.insurance-card:nth-child(2) { animation-delay: 0.2s; }
.insurance-card:nth-child(3) { animation-delay: 0.3s; }
.insurance-card:nth-child(4) { animation-delay: 0.4s; }
.insurance-card:nth-child(5) { animation-delay: 0.5s; }
.insurance-card:nth-child(6) { animation-delay: 0.6s; }

.insurance-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-accent);
}

.card-image-wrapper {
    width: 100%;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--color-light-gray-bg);
    overflow: hidden;
    border-radius: 0;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insurance-card:hover .card-image {
    transform: scale(1.1);
}

.card-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-bottom: 0;
}

.card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 32px;
    background: var(--color-accent);
    transition: transform 0.3s ease;
}

.insurance-card:hover .card-icon {
    transform: rotate(360deg);
}

.card-title-wrapper {
    padding: 24px 32px 0 32px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-black);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.insurance-card:hover .card-title {
    color: var(--color-accent);
}

.card-category {
    display: inline-block;
    padding: 4px 14px;
    background: var(--color-light-gray-bg);
    color: var(--color-medium-gray);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: capitalize;
    transition: all 0.3s ease;
}

.insurance-card:hover .card-category {
    background: var(--color-accent);
    color: var(--color-black);
}

.card-description {
    color: var(--color-medium-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0 32px;
}

.card-features {
    list-style: none;
    margin-bottom: 28px;
    padding: 0 32px;
}

.card-features li {
    padding: 10px 0;
    color: var(--color-medium-gray);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.card-features li:hover {
    padding-left: 10px;
    color: var(--color-black);
}

.card-features li:before {
    content: "✓";
    color: var(--color-accent);
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.card-features li:hover:before {
    transform: scale(1.2);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px 32px 32px;
    border-top: 0;
}

.card-price {
    font-size: 14px;
    color: var(--color-medium-gray);
}

.price-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-black);
    display: block;
}

.card-btn {
    padding: 12px 28px;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.card-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    /* background: var(--color-accent); */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.card-btn:hover::before {
    width: 300px;
    height: 300px;
} 

.card-btn:hover {
    /* color: var(--color-black); */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 225, 148, 0.3);
}

/* No Results */
.no-results {
    text-align: center;
    padding: 100px 20px;
    animation: fadeIn 0.6s ease;
}

.no-results-icon {
    width: 64px;
    height: 64px;
    color: var(--color-medium-gray);
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.no-results h3 {
    font-size: 28px;
    color: var(--color-black);
    margin-bottom: 12px;
}

.no-results p {
    color: var(--color-medium-gray);
    font-size: 16px;
}

/* CTA Banner */
.cta-banner {
    background: var(--color-accent);
    padding: 48px;
    cursor: pointer;
    text-decoration: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.cta-banner:hover::before {
    left: 0;
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-black);
    transition: all 0.4s ease;
}

.cta-banner:hover .cta-text {
    color: var(--color-accent);
    transform: translateX(10px);
}

.cta-arrow {
    width: 48px;
    height: 48px;
    stroke: var(--color-black);
    stroke-width: 2.5;
    transition: all 0.4s ease;
}

.cta-banner:hover .cta-arrow {
    stroke: var(--color-accent);
    transform: translateX(10px);
}

/* Footer */
footer {
    background: var(--color-black);
    color: var(--color-light-gray-text);
    padding: 80px 48px;
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(20%);
    font-size: clamp(100px, 30vw, 400px);
    font-weight: 900;
    color: var(--color-white);
    opacity: 0.03;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 48px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-center {
    display: flex;
    align-items: start;
    gap: 8px;
}

.footer-icon {
    width: 16px;
    height: 16px;
    margin-top: 4px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-center:hover .footer-icon {
    transform: scale(1.2);
}

.footer-right {
    text-align: right;
}

.footer-bottom {
    font-size: 14px;
    line-height: 1.8;
}

.footer-bottom p {
    margin-bottom: 16px;
    color: var(--color-light-gray-text);
}

/* Keyframe Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* @keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(1, 225, 148, 0.5);
    }
    50% {
        text-shadow: 0 0 20px rgba(1, 225, 148, 0.8), 0 0 30px rgba(1, 225, 148, 0.6);
    }
} */

/* Responsive */
@media (max-width: 1024px) {
    .mega-dropdown {
        min-width: 90vw;
        max-width: 90vw;
        padding: 40px 35px;
    }

    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .insurance-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 80px;
        padding: 0 24px;
    }

    .logo-link {
        display: none;
    }

    .mobile-logo {
        display: block;
        width: 56px;
        height: 56px;
    }

    nav .nav-list {
        display: none;
    }

    .mega-dropdown {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-section {
        margin-top: 0;
        min-height: 100vh;
    }

    .hero-content {
        padding: 60px 24px;
    }

    .hero-heading {
        font-size: 40px;
    }

    .hero-description {
        font-size: 18px;
    }

    .filter-section {
        padding: 40px 24px;
    }

    .filter-buttons {
        gap: 8px;
    }

    .filter-btn {
        font-size: 14px;
        padding: 10px 20px;
    }

    .insurance-section {
        padding: 60px 24px;
    }

    .insurance-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .card-image-wrapper {
        height: 200px;
    }
    
    .card-title-wrapper {
        padding: 20px 24px 0 24px;
    }
    
    .card-description {
        padding: 0 24px;
    }
    
    .card-features {
        padding: 0 24px;
    }
    
    .card-footer {
        padding: 20px 24px 24px 24px;
    }

    .cta-banner {
        padding: 32px 24px;
    }

    .cta-text {
        font-size: 24px;
    }

    .cta-arrow {
        width: 32px;
        height: 32px;
    }

    footer {
        padding: 60px 24px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-center {
        justify-content: center;
    }

    .footer-right {
        text-align: center;
    }
}

@media (max-width: 768px) {
    body.menu-open .logo-link {
        display: block !important;
        width: 200px;
        height: 62px;
    }
    
    body.menu-open #desktop-logo {
        width: 300px !important;
        height: 80px !important;
    }
}