/* ============================================
   HAGANET - קומפוננטות
   HAGANET - Components
   ============================================ */

/* ========== Navigation ========== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-neutral-200);
    transition: all var(--transition-default);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding-inline: var(--space-4);
    max-width: var(--container-xl);
    margin-inline: auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--color-primary-700);
    text-decoration: none;
}

.navbar-brand img {
    height: 40px;
    width: auto;
}

.navbar-nav {
    display: none;
    list-style: none;
    gap: var(--space-1);
}

@media (min-width: 1024px) {
    .navbar-nav {
        display: flex;
    }
}

.navbar-link {
    display: block;
    padding: var(--space-2) var(--space-4);
    color: var(--color-neutral-600);
    font-weight: var(--font-medium);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.navbar-link:hover,
.navbar-link.active {
    color: var(--color-primary-600);
    background: var(--color-primary-50);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

@media (min-width: 1024px) {
    .navbar-toggle {
        display: none;
    }
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-neutral-700);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.navbar-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggle.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--color-neutral-0);
    padding: var(--space-4);
    transform: translateX(100%);
    transition: transform var(--transition-default);
    z-index: var(--z-fixed);
    overflow-y: auto;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-nav {
    list-style: none;
}

.mobile-menu-link {
    display: block;
    padding: var(--space-4);
    color: var(--color-neutral-700);
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    text-decoration: none;
    border-bottom: 1px solid var(--color-neutral-100);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: var(--color-primary-600);
    background: var(--color-primary-50);
}

/* ========== Hero Section ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: var(--color-neutral-0);
    overflow: hidden;
    padding-top: 72px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 41, 92, 0.9) 0%,
            rgba(0, 20, 46, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: var(--space-8);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-secondary-300);
    margin-bottom: var(--space-6);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease-out;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, var(--color-secondary-400), var(--color-secondary-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--color-neutral-300);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
    margin-top: var(--space-16);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-value {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    color: var(--color-secondary-400);
}

.hero-stat-label {
    font-size: var(--text-sm);
    color: var(--color-neutral-400);
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.hero-decoration-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-500) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.hero-decoration-2 {
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-secondary-500) 0%, transparent 70%);
    opacity: 0.15;
    border-radius: 50%;
    filter: blur(80px);
}

/* ========== Feature Cards ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: var(--space-8);
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-default);
    border: 1px solid var(--color-neutral-100);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-200);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-6);
    color: var(--color-neutral-0);
    font-size: var(--text-2xl);
}

.feature-icon.secondary {
    background: var(--gradient-secondary);
}

.feature-icon.accent {
    background: var(--gradient-accent);
}

.feature-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--color-neutral-900);
    margin-bottom: var(--space-3);
}

.feature-description {
    color: var(--color-neutral-600);
    line-height: var(--leading-relaxed);
}

/* ========== Settlement Cards ========== */
.settlement-card {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-default);
}

.settlement-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.settlement-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.settlement-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--color-neutral-0);
}

.settlement-card-name {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-2);
}

.settlement-card-region {
    font-size: var(--text-sm);
    color: var(--color-neutral-300);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.settlement-card-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    padding: var(--space-1) var(--space-3);
    background: var(--color-success-500);
    color: var(--color-neutral-0);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
}

/* ========== Donation Progress ========== */
.donation-progress {
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.donation-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--space-4);
}

.donation-amount {
    font-size: var(--text-3xl);
    font-weight: var(--font-extrabold);
    color: var(--color-primary-600);
}

.donation-goal {
    font-size: var(--text-sm);
    color: var(--color-neutral-500);
}

.donation-bar {
    height: 16px;
    background: var(--color-neutral-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-4);
}

.donation-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 1s ease-out;
    position: relative;
}

.donation-bar-fill::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.donation-stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.donation-stat-value {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--color-neutral-800);
}

.donation-stat-label {
    font-size: var(--text-xs);
    color: var(--color-neutral-500);
}

/* ========== Team Member Card ========== */
.team-member {
    text-align: center;
    padding: var(--space-6);
}

.team-member-avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin-bottom: var(--space-4);
    border: 4px solid var(--color-primary-100);
    box-shadow: var(--shadow-lg);
}

.team-member-name {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    color: var(--color-neutral-900);
    margin-bottom: var(--space-1);
}

.team-member-role {
    font-size: var(--text-sm);
    color: var(--color-primary-600);
    font-weight: var(--font-medium);
}

.team-member.fallen {
    position: relative;
}

.team-member.fallen::before {
    content: '';
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 24px;
    height: 24px;
    background: var(--color-neutral-800);
    border-radius: var(--radius-full);
}

.team-member.fallen .team-member-avatar {
    filter: grayscale(100%);
    border-color: var(--color-neutral-400);
}

/* ========== Timeline ========== */
.timeline {
    position: relative;
    padding-right: var(--space-8);
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
    padding-bottom: var(--space-8);
    padding-right: var(--space-8);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 20px;
    height: 20px;
    background: var(--color-primary-500);
    border: 4px solid var(--color-neutral-0);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.timeline-date {
    font-size: var(--text-sm);
    color: var(--color-primary-600);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.timeline-content {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    border-color: rgba(59, 130, 246, 0.15);
}

.timeline-title {
    font-size: var(--text-lg);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-2);
}

.timeline-description {
    color: var(--color-neutral-600);
}

/* ========== Testimonials ========== */
.testimonial {
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    font-size: 80px;
    font-family: serif;
    color: var(--color-primary-100);
    line-height: 1;
}

.testimonial-text {
    font-size: var(--text-lg);
    color: var(--color-neutral-700);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-author-name {
    font-weight: var(--font-semibold);
    color: var(--color-neutral-900);
}

.testimonial-author-title {
    font-size: var(--text-sm);
    color: var(--color-neutral-500);
}

/* ========== CTA Section ========== */
.cta-section {
    background: var(--gradient-primary);
    border-radius: var(--radius-3xl);
    padding: var(--space-16);
    text-align: center;
    color: var(--color-neutral-0);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    margin-bottom: var(--space-4);
}

.cta-description {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-inline: auto;
}

/* ========== Footer ========== */
.footer {
    background: var(--color-neutral-900);
    color: var(--color-neutral-300);
    padding-top: var(--space-16);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-8);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr repeat(3, 1fr);
    }
}

.footer-brand {
    margin-bottom: var(--space-8);
}

.footer-brand-name {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-neutral-0);
    margin-bottom: var(--space-4);
}

.footer-brand-description {
    color: var(--color-neutral-400);
    line-height: var(--leading-relaxed);
}

.footer-heading {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-neutral-0);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    margin-bottom: var(--space-4);
}

.footer-links {
    list-style: none;
}

.footer-link {
    display: block;
    padding: var(--space-2) 0;
    color: var(--color-neutral-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-secondary-400);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-neutral-800);
    border-radius: var(--radius-lg);
    color: var(--color-neutral-400);
    transition: all var(--transition-fast);
}

.footer-social-link:hover {
    background: var(--color-primary-600);
    color: var(--color-neutral-0);
}

.footer-bottom {
    border-top: 1px solid var(--color-neutral-800);
    padding: var(--space-6) 0;
    margin-top: var(--space-12);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-neutral-500);
}

/* ========== Modal ========== */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: var(--z-modal-backdrop);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-default);
}

.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    z-index: var(--z-modal);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-default);
}

.modal.open {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    padding: var(--space-6);
    border-bottom: 1px solid var(--color-neutral-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin: 0;
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-neutral-500);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--color-neutral-100);
    color: var(--color-neutral-700);
}

.modal-body {
    padding: var(--space-6);
}

.modal-footer {
    padding: var(--space-6);
    border-top: 1px solid var(--color-neutral-200);
    display: flex;
    justify-content: flex-end;
    gap: var(--space-3);
}

/* ========== Loading States ========== */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--color-neutral-200);
    border-top-color: var(--color-primary-500);
    border-radius: var(--radius-full);
    animation: spin 1s linear infinite;
}

.skeleton {
    background: linear-gradient(90deg,
            var(--color-neutral-200) 25%,
            var(--color-neutral-100) 50%,
            var(--color-neutral-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: var(--radius-default);
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: var(--space-2);
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: var(--space-4);
}

.skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
}

/* ========== Tabs ========== */
.tabs {
    border-bottom: 2px solid var(--color-neutral-200);
    margin-bottom: var(--space-6);
}

.tabs-list {
    display: flex;
    gap: var(--space-1);
    list-style: none;
}

.tab-button {
    padding: var(--space-3) var(--space-6);
    background: none;
    border: none;
    font-family: inherit;
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--color-neutral-500);
    cursor: pointer;
    position: relative;
    transition: color var(--transition-fast);
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-primary-500);
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.tab-button:hover {
    color: var(--color-neutral-700);
}

.tab-button.active {
    color: var(--color-primary-600);
}

.tab-button.active::after {
    transform: scaleX(1);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* ========== Tooltip ========== */
.tooltip {
    position: relative;
}

.tooltip-content {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: var(--space-2) var(--space-3);
    background: var(--color-neutral-900);
    color: var(--color-neutral-0);
    font-size: var(--text-sm);
    border-radius: var(--radius-lg);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: var(--z-tooltip);
}

.tooltip-content::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--color-neutral-900);
}

.tooltip:hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-12px);
}

/* ========== Dropdown ========== */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background: var(--color-neutral-0);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    padding: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast);
    z-index: var(--z-dropdown);
}

.dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(8px);
}

.dropdown-item {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--color-neutral-700);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--color-neutral-100);
}

.dropdown-divider {
    height: 1px;
    background: var(--color-neutral-200);
    margin: var(--space-2) 0;
}

/* ========== Accordion ========== */
.accordion {
    border: 1px solid var(--color-neutral-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--color-neutral-200);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    padding: var(--space-4) var(--space-6);
    background: none;
    border: none;
    font-family: inherit;
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--color-neutral-800);
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: var(--color-neutral-50);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform var(--transition-default);
}

.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-default);
}

.accordion-item.open .accordion-content {
    max-height: 500px;
}

.accordion-body {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--color-neutral-600);
}

/* ========== Premium Component Enhancements ========== */

/* Enhanced Feature Cards */
.feature-card-premium {
    position: relative;
    padding: var(--space-8);
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-neutral-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-premium:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.feature-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--color-gold-200);
}

.feature-card-premium .feature-icon {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-premium:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

/* Premium Settlement Cards */
.settlement-card-premium {
    position: relative;
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.settlement-card-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.settlement-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(0, 102, 230, 0.15);
}

.settlement-card-premium:hover::after {
    opacity: 0.9;
}

/* Premium Progress Bar */
.progress-premium {
    height: 10px;
    background: var(--color-neutral-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.progress-premium-bar {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    position: relative;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-premium-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Premium CTA Section */
.cta-premium {
    position: relative;
    background: var(--gradient-luxury);
    border-radius: var(--radius-3xl);
    padding: var(--space-16);
    text-align: center;
    color: var(--color-neutral-0);
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
    animation: rotateSlow 15s linear infinite;
}

.cta-premium::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(0, 102, 230, 0.2) 0%, transparent 70%);
    filter: blur(40px);
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Premium Hero Stats */
.hero-stat-premium {
    text-align: center;
    padding: var(--space-6);
    position: relative;
}

.hero-stat-premium .stat-value {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
}

.hero-stat-premium .stat-label {
    font-size: var(--text-sm);
    color: var(--color-neutral-400);
    margin-top: var(--space-2);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

/* Premium Quote Block */
.quote-premium {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-neutral-0) 100%);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    margin: var(--space-12) 0;
    border-right: 6px solid transparent;
    border-image: var(--gradient-gold) 1;
}

.quote-premium::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    font-size: 100px;
    font-family: Georgia, serif;
    line-height: 1;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.quote-premium p {
    font-size: var(--text-xl);
    font-style: italic;
    color: var(--color-neutral-700);
    line-height: var(--leading-relaxed);
    position: relative;
    z-index: 1;
}

.quote-premium-author {
    margin-top: var(--space-4);
    font-weight: var(--font-semibold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Premium Value Cards */
.value-card-premium {
    text-align: center;
    padding: var(--space-10);
    background: var(--color-neutral-0);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-neutral-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card-premium:hover::before {
    opacity: 1;
}

.value-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl), var(--shadow-gold);
}

.value-card-premium .value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-6);
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-4xl);
    box-shadow: var(--shadow-gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card-premium:hover .value-icon {
    transform: scale(1.1) rotate(-10deg);
}

/* Premium Accordion */
.accordion-premium {
    border: none;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.accordion-premium .accordion-item {
    border-bottom: 1px solid var(--color-neutral-100);
}

.accordion-premium .accordion-header {
    padding: var(--space-5) var(--space-8);
    background: var(--color-neutral-0);
    font-weight: var(--font-semibold);
    transition: all 0.3s ease;
}

.accordion-premium .accordion-header:hover {
    background: linear-gradient(90deg, var(--color-gold-50), var(--color-neutral-0));
}

.accordion-premium .accordion-item.open .accordion-header {
    background: var(--color-gold-50);
    color: var(--color-gold-700);
}

/* Premium Team Member */
.team-member-premium {
    text-align: center;
    padding: var(--space-8);
    transition: all 0.4s ease;
}

.team-member-premium:hover {
    transform: translateY(-8px);
}

.team-member-premium .team-member-avatar {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-full);
    object-fit: cover;
    margin-bottom: var(--space-5);
    border: 5px solid var(--color-neutral-0);
    box-shadow: var(--shadow-lg), 0 0 0 3px var(--color-gold-300);
    transition: all 0.4s ease;
}

.team-member-premium:hover .team-member-avatar {
    box-shadow: var(--shadow-xl), 0 0 0 4px var(--color-gold-400), var(--shadow-gold);
}

/* Premium Contact Card */
.contact-card-premium {
    display: flex;
    align-items: flex-start;
    gap: var(--space-5);
    padding: var(--space-6);
    background: var(--color-neutral-0);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-neutral-100);
    transition: all 0.3s ease;
}

.contact-card-premium:hover {
    transform: translateX(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold-200);
}

.contact-card-premium .contact-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neutral-900);
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

/* Premium Form Inputs */
.form-input-premium {
    width: 100%;
    padding: var(--space-4) var(--space-5);
    font-family: inherit;
    font-size: var(--text-base);
    color: var(--color-neutral-800);
    background: var(--color-neutral-0);
    border: 2px solid var(--color-neutral-200);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.form-input-premium:focus {
    outline: none;
    border-color: var(--color-gold-400);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15), var(--shadow-md);
}

.form-input-premium::placeholder {
    color: var(--color-neutral-400);
}

/* ============================================
   Premium Capability Pages Styles
   ============================================ */

/* Section Containers */
.section-premium {
    padding: var(--space-20) 0;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(59, 130, 246, 0.2) 20%,
        rgba(147, 51, 234, 0.2) 50%,
        rgba(236, 72, 153, 0.2) 80%,
        transparent 100%
    );
}

.section-premium.bg-light {
    background: var(--color-neutral-50);
}

.section-premium.bg-gradient {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    color: var(--color-neutral-0);
    position: relative;
    overflow: hidden;
}

.section-premium.bg-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(236, 72, 153, 0.08) 0%, transparent 40%);
    pointer-events: none;
    animation: bgShift 20s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

.section-premium.bg-gradient > * {
    position: relative;
    z-index: 1;
}

.container-premium {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-neutral-900);
    margin-bottom: var(--space-4);
}

.section-premium.bg-gradient .section-title {
    color: var(--color-neutral-0);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: var(--color-neutral-600);
    max-width: 700px;
    margin: 0 auto;
}

.section-premium.bg-gradient .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

@media (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Feature Cards */
.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.07),
        0 1px 3px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        0 0 0 1px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(59, 130, 246, 0.03) 100%);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    color: var(--color-neutral-0);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: var(--space-3);
}

.feature-description {
    font-size: var(--text-base);
    color: var(--color-neutral-600);
    line-height: 1.6;
}

/* Content Split Layout */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.content-split.reverse {
    direction: ltr;
}

.content-split.reverse > * {
    direction: rtl;
}

@media (max-width: 1024px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
}

.content-media {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

/* Metric Cards */
.metric-card {
    background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-primary-100) 100%);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid var(--color-primary-200);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.metric-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--color-primary-600);
    margin-bottom: var(--space-2);
}

.metric-label {
    font-size: var(--text-sm);
    color: var(--color-neutral-600);
    font-weight: 600;
}

.section-premium.bg-gradient .metric-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section-premium.bg-gradient .metric-card:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.section-premium.bg-gradient .metric-value {
    color: var(--color-neutral-0);
}

.section-premium.bg-gradient .metric-label {
    color: rgba(255, 255, 255, 0.85);
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.feature-list-item {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
}

.feature-list-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neutral-0);
}

.feature-list-icon svg {
    width: 18px;
    height: 18px;
}

.feature-list-content {
    flex: 1;
}

.feature-list-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: var(--space-2);
}

.feature-list-description {
    font-size: var(--text-base);
    color: var(--color-neutral-600);
    line-height: 1.6;
}

.section-premium.bg-gradient .feature-list-title,
.section-premium .feature-list-title {
    color: var(--color-neutral-900);
}

.section-premium.bg-gradient .feature-list-title {
    color: var(--color-neutral-0);
}

.section-premium.bg-gradient .feature-list-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Timeline (Enhanced) */
.timeline-marker {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neutral-0);
    font-weight: 700;
    font-size: var(--text-xl);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin-bottom: var(--space-4);
}

/* Benefit Cards */
.benefit-card {
    text-align: center;
    padding: var(--space-8);
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border-radius: var(--radius-2xl);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 1px 3px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(16, 185, 129, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
    display: block;
}

.benefit-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-neutral-900);
    margin-bottom: var(--space-3);
}

.benefit-description {
    font-size: var(--text-base);
    color: var(--color-neutral-600);
    line-height: 1.6;
}

/* CTA Box */
.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-neutral-0);
    margin-bottom: var(--space-4);
}

.cta-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-4);
}

.cta-note {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

/* Premium Buttons */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    background: linear-gradient(135deg, var(--color-primary-500) 0%, var(--color-primary-600) 100%);
    color: var(--color-neutral-0);
    font-weight: 700;
    font-size: var(--text-lg);
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-xl);
}

.btn-premium svg {
    width: 20px;
    height: 20px;
}