/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    border-bottom: none;
}

:root {
    /* Color Palette */
    --primary-color: #1a5490;
    --primary-dark: #0d3b6b;
    --secondary-color: #4a9fd8;
    --accent-color: #e94560;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --ice-blue: #e8f4f8;
    --gradient-start: #1a5490;
    --gradient-end: #4a9fd8;
    
    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
    
    /* Transitions */
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Navigation
   =========================== */
/* ===========================
   Navigation — full redesign
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: box-shadow var(--transition-speed);
}

.navbar.scrolled {
    box-shadow: 0 2px 28px rgba(0, 0, 0, 0.13);
}

/* Full-bleed container — no max-width constraint */
.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 28px;
    gap: 0;
}

/* LEFT — logo */
.logo {
    flex: 0 0 auto;
    margin-right: 36px;
    white-space: nowrap;
}

.logo h1 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    white-space: nowrap;
    line-height: 1;
}

/* CENTER — main links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 0;
    flex: 1;
}

.nav-link {
    display: block;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 6px;
    position: relative;
    transition: color var(--transition-speed), background var(--transition-speed);
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform var(--transition-speed);
}

.nav-link:hover { color: var(--primary-color); }
.nav-link.active { color: var(--primary-color); }

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* RIGHT — seasonal CTA + store */
.nav-ctas {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    margin-left: auto;
}

/* Boys on Blades — inline event badge */
.nav-separator {
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.12);
    margin: 0 6px;
    flex-shrink: 0;
}

.boys-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #1a5490, #4a9fd8);
    color: #fff !important;
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    padding: 0 14px;
    height: 32px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(26, 84, 144, 0.35);
    animation: boys-pulse 2.6s ease-out infinite;
    transition: transform 0.18s, box-shadow 0.18s;
}

.boys-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 18px rgba(26, 84, 144, 0.55);
    animation: none;
    color: #fff !important;
}

@keyframes boys-pulse {
    0%   { box-shadow: 0 2px 8px rgba(26,84,144,0.35), 0 0 0 0   rgba(74,159,216,0.5); }
    65%  { box-shadow: 0 2px 8px rgba(26,84,144,0.35), 0 0 0 8px rgba(74,159,216,0);   }
    100% { box-shadow: 0 2px 8px rgba(26,84,144,0.35), 0 0 0 0   rgba(74,159,216,0);   }
}

/* Club Store — solid red pill flush to right edge */
.store-link {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: var(--white) !important;
    font-family: var(--font-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none !important;
    border-bottom: none !important;
    white-space: nowrap;
    padding: 0 22px;
    height: 52px;
    border-radius: 8px;
    margin-right: 4px;
    transition: background var(--transition-speed);
}

.store-link:hover {
    background: #d13850;
}

.store-link::after,
.store-link::before {
    display: none !important;
    content: none !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all var(--transition-speed);
    border-radius: 3px;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, rgba(26, 84, 144, 0.85), rgba(74, 159, 216, 0.75)),
                url('assets/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

.btn {
    padding: 0.9rem 2.2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed);
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
}

.btn-primary:hover {
    background: #d13850;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--white);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ===========================
   Section Styles
   =========================== */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0 auto;
    border-radius: 2px;
}

.intro-text {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

/* ===========================
   Mission Section
   =========================== */
.mission-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.mission-section .container {
    position: relative;
    z-index: 1;
}

.mission-section .section-title {
    color: var(--white);
}

.mission-section .title-underline {
    background: var(--white);
}

.mission-text {
    font-size: 1.5rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--white);
    line-height: 1.9;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   USFSA Section
   =========================== */
.usfsa-section {
    background: var(--white);
}

.usfsa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.usfsa-text h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.usfsa-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.usfsa-text .btn {
    margin-top: 1rem;
}

.usfsa-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.usfsa-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.usfsa-image:hover img {
    transform: scale(1.05);
}

/* ===========================
   Membership Section
   =========================== */
.membership-section {
    background: var(--ice-blue);
}

.membership-levels {
    margin: 3rem 0;
}

.levels-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.membership-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.membership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.membership-card.highlight {
    border-color: var(--accent-color);
    position: relative;
}

.membership-card.highlight::before {
    content: 'NEW MEMBERS';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.membership-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--ice-blue);
}

.membership-header h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.price {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.membership-card p {
    color: var(--text-light);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 0.5rem;
}

.membership-card .note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
}

.membership-cta {
    text-align: center;
    margin: 3rem 0;
}

.btn-large {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

.membership-benefits {
    margin-top: 4rem;
}

.benefits-title {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-speed);
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
}

.membership-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.benefit-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.benefit-card ul li {
    padding: 0.7rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

.benefit-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===========================
   Events Section
   =========================== */
.events-section {
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all var(--transition-speed);
    border: 2px solid var(--ice-blue);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 1.5rem;
    text-align: center;
}

.event-date .month {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.event-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 0.3rem;
}

.event-details {
    padding: 2rem;
}

.event-details h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-details p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Board Section
   =========================== */
.board-section {
    background: var(--ice-blue);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.board-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
}

.board-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.member-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.board-member h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-name {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-email {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-speed);
    word-break: break-word;
}

.member-email:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.member-emails {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.arena-info {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.arena-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.arena-details {
    margin-bottom: 2rem;
}

.arena-details p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.arena-details p strong {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.board-info {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.board-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3,
.contact-links h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--ice-blue);
    border-radius: 10px;
    transition: all var(--transition-speed);
}

.contact-item:hover {
    background: var(--primary-color);
    color: var(--white);
}

.contact-item:hover h4,
.contact-item:hover p {
    color: var(--white);
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    transition: color var(--transition-speed);
}

.contact-item p {
    color: var(--text-light);
    transition: color var(--transition-speed);
}

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

.contact-links ul li {
    margin-bottom: 1rem;
}

.contact-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all var(--transition-speed);
    display: inline-block;
    position: relative;
    padding-left: 1.5rem;
}

.contact-links ul li a::before {
    content: '→';
    position: absolute;
    left: 0;
    transition: transform var(--transition-speed);
}

.contact-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-links ul li a:hover::before {
    transform: translateX(5px);
}

/* ===========================
   Virtual Test Page
   =========================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 6rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.virtual-test-section {
    padding: var(--section-padding);
    background: var(--background-light);
}

.test-session-info {
    max-width: 900px;
    margin: 0 auto;
}

.session-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.session-banner h2 {
    font-size: 2rem;
    margin: 0;
}

.info-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-section h4 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.registration-steps {
    list-style: none;
    padding: 0;
}

.registration-steps > li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--ice-blue);
}

.registration-steps > li:last-child {
    border-bottom: none;
}

.registration-steps ul {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
}

.registration-steps a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed);
}

.registration-steps a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.highlight-text {
    background: var(--ice-blue);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--ice-blue);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.step-content ul {
    margin-left: 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

.step-content a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
}

.step-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.cta-section {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.cta-section h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-speed);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--white);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: left var(--transition-speed);
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .usfsa-content {
        grid-template-columns: 1fr;
    }

    .mission-cards {
        grid-template-columns: 1fr;
    }

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

    .membership-benefits {
        grid-template-columns: 1fr;
    }

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

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

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

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
