:root {
    /* HCA Windsor Brand Colors */
    --hca-red: #E31E24;
    --hca-red-dark: #B71C1C;
    --hca-charcoal: #3A3A3A;
    --hca-black: #1A1A1A;
    --hca-gray: #4A4A4A;
    
    /* Background Palette */
    --bg-dark: #0D0D0D;
    --bg-charcoal: #1E1E1E;
    --bg-gray: #2A2A2A;
    
    /* Text Colors */
    --text-light: #F5F5F5;
    --text-muted: #B0B0B0;
    --text-gray: #8A8A8A;
    
    /* Accent Colors */
    --accent-red-light: #FF5252;
    --concrete-grey: #C0C0C0;
    --grid-line: rgba(227, 30, 36, 0.35);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--hca-black);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--grid-line);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    height: 50px;
}

.logo img {
    height: 45px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--hca-red);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--hca-red);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--hca-red);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--hca-red);
}

.cta-button:hover {
    background: var(--hca-red-dark);
    border-color: var(--hca-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(227, 30, 36, 0.4);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.95) 0%, rgba(30, 30, 30, 0.9) 50%, rgba(42, 42, 42, 0.85) 100%), url('hero-bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.blueprint-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridFloat 20s linear infinite;
}

@keyframes gridFloat {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(50px, 50px);
    }
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 2px solid var(--grid-line);
    animation: float 15s ease-in-out infinite;
}

.shape1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.shape2 {
    width: 200px;
    height: 200px;
    bottom: 15%;
    left: 5%;
    transform: rotate(30deg);
    animation-delay: 2s;
}

.shape3 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    transform: rotate(60deg);
    animation-delay: 4s;
}

.shape4 {
    width: 250px;
    height: 250px;
    top: 25%;
    left: 45%;
    transform: rotate(15deg);
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    50% {
        transform: translateY(-30px) rotate(65deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid var(--hca-red);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--hca-red);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
    letter-spacing: -2px;
}

.hero h1 .highlight {
    color: var(--hca-red);
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.primary-btn {
    background: var(--hca-red);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--hca-red);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.primary-btn:hover {
    background: var(--hca-red-dark);
    border-color: var(--hca-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(227, 30, 36, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--text-light);
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--concrete-grey);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.secondary-btn:hover {
    border-color: var(--hca-red);
    color: var(--hca-red);
    transform: translateY(-3px);
}

.stats-bar {
    /* position: absolute;
    bottom: 0;
    left: 0; */
    width: 100%;
    background: var(--hca-black);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--grid-line);
    /* z-index: 2; */
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    animation: fadeInUp 1s ease-out backwards;
}

.stat-item:nth-child(1) { animation-delay: 1s; }
.stat-item:nth-child(2) { animation-delay: 1.1s; }
.stat-item:nth-child(3) { animation-delay: 1.2s; }
.stat-item:nth-child(4) { animation-delay: 1.3s; }

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--hca-red);
    margin-bottom: 0.5rem;
    font-family: 'JetBrains Mono', monospace;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 8rem 2rem;
    background: var(--bg-charcoal);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-tag {
    color: var(--hca-red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.section-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.features-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--bg-gray);
    border: 1px solid var(--grid-line);
    border-radius: 12px;
    padding: 3rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--hca-red), var(--accent-red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--hca-red);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.2);
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--hca-red), var(--accent-red-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--hca-red);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.feature-link:hover {
    gap: 1rem;
}

/* News & Events Section */
.news-events-section {
    padding: 8rem 2rem;
    background: var(--bg-dark);
}

.content-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.news-container h2,
.events-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.news-card,
.event-card {
    background: var(--bg-gray);
    border: 1px solid var(--grid-line);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-card:hover,
.event-card:hover {
    border-color: var(--hca-red);
    transform: translateX(8px);
    box-shadow: -4px 0 0 var(--hca-red);
}

.news-date,
.event-date {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    color: var(--hca-red);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.news-card h3,
.event-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-card p,
.event-card p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--concrete-grey);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--bg-gray) 0%, var(--bg-charcoal) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-line) 2px, transparent 2px),
        linear-gradient(90deg, var(--grid-line) 2px, transparent 2px);
    background-size: 100px 100px;
    opacity: 0.2;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

.cta-content p {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Page Header */
.page-header {
    padding: 10rem 2rem 4rem;
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.75) 0%, rgba(30, 30, 30, 0.9) 50%, rgba(42, 42, 42, 0.55) 100%), url('hero-bg.jpg') center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.header-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.page-header-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--hca-red);
}

.breadcrumb span {
    color: var(--text-gray);
}

.page-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -2px;
}

.page-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    max-width: 700px;
}

/* Search and Filter Section */
.search-filter-section {
    padding: 3rem 2rem;
    background: var(--bg-charcoal);
    border-bottom: 1px solid var(--grid-line);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.search-filter-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--bg-gray);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--hca-red);
    background: var(--bg-dark);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-35%);
    color: var(--text-muted);
    font-size: 1.2rem;
}

.filter-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.filter-select {
    padding: 1rem 2.5rem 1rem 1rem;
    background: var(--bg-gray);
    border: 2px solid transparent;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B0B0B0' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.filter-select:focus {
    outline: none;
    border-color: var(--hca-red);
}

.results-count {
    color: var(--text-muted);
    font-size: 0.95rem;
    white-space: nowrap;
}

.results-count strong {
    color: var(--hca-red);
    font-weight: 700;
}

/* Members Grid */
.members-section {
    padding: 4rem 2rem;
    background: var(--bg-dark);
}

.members-container {
    max-width: 1400px;
    margin: 0 auto;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.member-card {
    background: var(--bg-charcoal);
    border: 1px solid var(--grid-line);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--hca-red), var(--accent-red-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.member-card:hover {
    transform: translateY(-8px);
    border-color: var(--hca-red);
    box-shadow: 0 12px 40px rgba(227, 30, 36, 0.2);
}

.member-card:hover::before {
    transform: scaleX(1);
}

.member-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1.5rem;
}

.member-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.member-type {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(227, 30, 36, 0.1);
    border: 1px solid var(--hca-red);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--hca-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.info-icon {
    display: flex;
    align-items: center;
    color: var(--hca-red);
    font-size: 1.1rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.info-text {
    color: var(--text-muted);
    line-height: 1.5;
}

.info-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: var(--hca-red);
}

.member-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.35rem 0.75rem;
    background: var(--bg-gray);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.member-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-view {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    border: 2px solid var(--hca-red);
    border-radius: 6px;
    color: var(--hca-red);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-view:hover {
    background: var(--hca-red);
    color: white;
}

.btn-contact {
    padding: 0.75rem 1.5rem;
    background: var(--hca-red);
    border: 2px solid var(--hca-red);
    border-radius: 6px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    line-height: 0;
}

.btn-contact:hover {
    background: var(--hca-red-dark);
    border-color: var(--hca-red-dark);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 6rem 2rem;
}

.empty-icon {
    font-size: 4rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.empty-description {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Loading State */
.loading-state {
    text-align: center;
    padding: 6rem 2rem;
}

.loader {
    width: 50px;
    height: 50px;
    border: 4px solid var(--bg-gray);
    border-top: 4px solid var(--hca-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Footer */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--grid-line);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--hca-red);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--hca-red);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--grid-line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--grid-line);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--hca-red);
    color: var(--hca-red);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

/* Scroll Animation */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive */
@media (max-width: 1200px) {
    .members-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .search-filter-container {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        min-width: 100%;
    }

    .filter-group {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .filter-select {
        width: 100%;
    }

    .members-grid {
        grid-template-columns: 1fr;
    }
}

/* Fade in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.member-card {
    animation: fadeInUp 0.5s ease-out backwards;
}

.member-card:nth-child(1) { animation-delay: 0.05s; }
.member-card:nth-child(2) { animation-delay: 0.1s; }
.member-card:nth-child(3) { animation-delay: 0.15s; }
.member-card:nth-child(4) { animation-delay: 0.2s; }
.member-card:nth-child(5) { animation-delay: 0.25s; }
.member-card:nth-child(6) { animation-delay: 0.3s; }