/* ===== IMPORTS & RESET ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #fafafa;
    color: #1a1a2e;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #e65100;
    --primary-light: #ff8a50;
    --primary-dark: #ac1900;
    --secondary: #0f0c29;
    --secondary-light: #302b63;
    --accent: #24243e;
    --gold: #f4a100;
    --green: #00c853;
    --white: #ffffff;
    --off-white: #f8f9fc;
    --light: #fff8f0;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #e0e0e0;
    --gray-400: #bdbdbd;
    --gray-500: #9e9e9e;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --text: #1a1a2e;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    transition: var(--transition);
    background: transparent;
}
.header.scrolled {
    background: var(--secondary);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}
.logo-text h1 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    transition: var(--transition);
}
.logo-text span {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    transition: var(--transition);
}
.header.scrolled .logo-text h1 { color: var(--white); }
.header.scrolled .logo-text span { color: rgba(255,255,255,0.7); }

.nav { display: flex; gap: 4px; align-items: center; }
.nav a {
    color: rgba(255,255,255,0.85);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
}
.nav a:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.nav a.active { color: var(--white); background: rgba(255,255,255,0.2); }
.header.scrolled .nav a { color: rgba(255,255,255,0.8); }
.header.scrolled .nav a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.header.scrolled .nav a.active { color: var(--white); background: rgba(255,255,255,0.12); }

.nav-toggle {
    display: none;
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    width: 44px;
    height: 44px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    border-radius: 10px;
    transition: var(--transition);
}
.nav-toggle:hover {
    background: rgba(255,255,255,0.25);
}
.header.scrolled .nav-toggle {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
}
.header.scrolled .nav-toggle:hover {
    background: rgba(255,255,255,0.2);
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 3px;
    background: var(--white);
    margin: 3px auto;
    transition: var(--transition);
    border-radius: 3px;
}
.header.scrolled .nav-toggle span { background: var(--white); }
.nav-toggle.active { background: rgba(255,255,255,0.2) !important; border-color: rgba(255,255,255,0.3) !important; }
.nav-toggle.active span { background: var(--white) !important; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(230,81,0,0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(244,161,0,0.1) 0%, transparent 40%);
    animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    animation: float linear infinite;
}
@keyframes float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero h2 .highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(230,81,0,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(230,81,0,0.4); }
.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); transform: translateY(-3px); }
.btn-secondary {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-dark {
    background: var(--secondary);
    color: var(--white);
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(15,12,41,0.3); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* ===== SECTIONS ===== */
.section { padding: 100px 20px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(230,81,0,0.08);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}
.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}
.bg-light { background: var(--off-white); }
.bg-dark { background: var(--secondary); }
.bg-dark .section-title { color: var(--white); }
.bg-dark .section-subtitle { color: rgba(255,255,255,0.6); }
.bg-dark .section-label { background: rgba(255,255,255,0.1); color: var(--primary-light); }

/* ===== ICON CARDS ===== */
.icon-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.icon-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}
.icon-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.icon-card:hover::before { transform: scaleX(1); }
.icon-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
    transition: var(--transition);
}
.icon-card:hover .icon { transform: scale(1.1) rotate(-5deg); }
.icon-card h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.icon-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ===== EVENT CARDS ===== */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.card:hover .card-img { transform: scale(1.05); }
.card-img-wrapper { overflow: hidden; }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.card-body p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.card-meta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.card-meta::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

/* ===== JCL SECTION ===== */
.jcl-banner {
    background: linear-gradient(135deg, #0d4f1c 0%, #1b7a34 50%, #0a3d15 100%);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.jcl-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.jcl-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
}
.jcl-banner p { opacity: 0.85; font-size: 1.1rem; position: relative; margin-bottom: 25px; }

/* ===== JCL HERO ===== */
.jcl-hero {
    min-height: 60vh;
    background: linear-gradient(135deg, #0d4f1c 0%, #1b7a34 40%, #145a28 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 80px;
    position: relative;
    overflow: hidden;
}
.jcl-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 60%);
}
.jcl-hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.jcl-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    position: relative;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

/* ===== TEAM GRID ===== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.team-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card:hover::after { transform: scaleX(1); }
.team-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    background: var(--gray-100);
    border: 3px solid var(--gray-200);
    transition: var(--transition);
}
.team-card:hover .team-logo { transform: scale(1.1); border-color: var(--primary); }
.team-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-card p { color: var(--text-light); font-size: 0.9rem; }

/* ===== MATCH LIST ===== */
.match-list { max-width: 850px; margin: 0 auto; }
.match-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 24px 35px;
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.match-item:hover { transform: translateX(5px); box-shadow: var(--shadow-md); }
.match-team { text-align: center; min-width: 130px; }
.match-team strong { display: block; font-size: 1.1rem; color: var(--text); font-weight: 700; }
.match-team span { font-size: 0.85rem; color: var(--text-light); }
.match-vs { font-weight: 800; color: var(--primary); font-size: 1rem; letter-spacing: 2px; }
.match-info { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 4px; }
.match-status {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 6px;
}
.match-status.upcoming { background: #e3f2fd; color: #1565c0; }
.match-status.live { background: #fce4ec; color: #c62828; animation: pulse 2s infinite; }
.match-status.completed { background: #e8f5e9; color: #2e7d32; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

/* ===== MEMBERS GRID ===== */
.members-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.member-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.member-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.member-photo-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}
.member-photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    position: absolute;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: var(--gray-200);
    transition: var(--transition);
}
.member-card:hover .member-photo { transform: translateX(-50%) scale(1.05); }
.member-info {
    padding: 55px 24px 24px;
    text-align: center;
}
.member-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.member-info .occupation { color: var(--primary); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.member-info .contact-info { color: var(--text-muted); font-size: 0.85rem; }

/* ===== STATS COUNTER ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    padding: 40px 0;
}
.stat-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-light);
    margin-bottom: 8px;
}
.stat-item p { color: rgba(255,255,255,0.6); font-size: 0.95rem; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--accent) 100%);
    color: var(--white);
    text-align: center;
    padding: 140px 20px 80px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(230,81,0,0.1) 0%, transparent 50%);
}
.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.page-header p {
    opacity: 0.7;
    font-size: 1.1rem;
    position: relative;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* ===== CONTACT FORM ===== */
.form-container {
    max-width: 620px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 24px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--gray-50);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(230,81,0,0.08);
}
.form-group textarea { height: 140px; resize: vertical; }
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 0.9rem;
    animation: fadeInDown 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.alert-success { background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.alert-error { background: #ffebee; color: #c62828; border: 1px solid #ffcdd2; }

/* ===== FILTER PILLS ===== */
.filter-pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-pill {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-light);
    border: 2px solid var(--gray-200);
}
.filter-pill:hover { border-color: var(--primary); color: var(--primary); }
.filter-pill.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 20px 30px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}
.footer-brand p { color: rgba(255,255,255,0.5); margin-top: 16px; line-height: 1.8; font-size: 0.95rem; }
.footer h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.4);
}
.footer ul li { margin-bottom: 10px; }
.footer ul a {
    color: rgba(255,255,255,0.65);
    font-size: 0.95rem;
    transition: var(--transition);
}
.footer ul a:hover { color: var(--white); padding-left: 5px; }
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header { padding: 0 20px; background: transparent; }
    .header.scrolled { background: var(--secondary); }
    .header-inner { height: 70px; }
    .nav-toggle { display: flex; flex-direction: column; align-items: center; justify-content: center; }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--secondary);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        padding: 10px 0;
        z-index: 998;
        transform: translateY(-120%);
        transition: transform 0.35s ease;
    }
    .nav.open {
        transform: translateY(0);
    }
    .nav a {
        color: rgba(255,255,255,0.85) !important;
        font-size: 1.05rem !important;
        padding: 14px 24px !important;
        border-radius: 0 !important;
        background: none !important;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .nav a:last-child { border-bottom: none; }
    .nav a:hover,
    .nav a.active {
        color: var(--white) !important;
        background: rgba(255,255,255,0.1) !important;
    }

    .hero { min-height: 90vh; padding: 100px 20px 60px; }
    .section { padding: 70px 15px; }
    .section-header { margin-bottom: 40px; }
    .match-item { flex-direction: column; gap: 15px; text-align: center; padding: 20px; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .form-container { padding: 30px 20px; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .member-photo-wrapper { height: 140px; }
}
