/* ============================================
   AZKALS DEVELOPMENT ACADEMY — DESIGN SYSTEM
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
    --red: #e31e24;
    --red-dark: #c41920;
    --blue: #0055b8;
    --blue-light: #0066d6;
    --navy: #0a1628;
    --navy-light: #0f1f38;
    --yellow: #ffd700;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green: #22c55e;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1280px;
    --header-height: 72px;
    --transition: 0.3s ease;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
}

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

/* ---------- Section label (red dashes + text) ---------- */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 40px;
    height: 3px;
    background: var(--red);
    border-radius: 2px;
}

.section-label.left-only {
    justify-content: flex-start;
}

.section-label.left-only::after {
    display: none;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.section-title .highlight {
    color: var(--red);
}

.section-title .highlight-blue {
    color: var(--blue);
}

.section-title .highlight-yellow {
    color: var(--yellow);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray-500);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   1. HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
    background: transparent;
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
}

.header-logo-text .brand {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.2;
    transition: color var(--transition);
}

.header-logo-text .sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition);
}

.header.scrolled .header-logo-text .brand {
    color: var(--gray-900);
}

.header.scrolled .header-logo-text .sub {
    color: var(--gray-500);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width var(--transition);
}

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

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

.header.scrolled .nav-links a {
    color: var(--gray-700);
}

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

.header.scrolled .nav-links a:hover::after {
    background: var(--red);
}

.btn-join {
    background: var(--red);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background var(--transition), transform var(--transition);
}

.btn-join:hover {
    background: var(--red-dark);
    transform: scale(1.05);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.header.scrolled .menu-toggle span {
    background: var(--gray-800);
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--blue);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.mobile-nav.open {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-close {
    position: absolute;
    top: 60px;
    /* Increased to avoid being blocked by in-app browser headers */
    right: 24px;
    background: none;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
    line-height: 1;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color var(--transition), transform var(--transition);
}

.mobile-nav a:hover {
    color: var(--yellow);
    transform: scale(1.1);
}

/* ============================================
   2. HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue);
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 85, 184, 0.9) 0%, rgba(0, 85, 184, 0.8) 40%, rgba(0, 61, 133, 0.7) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 80px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-heading {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-heading .accent {
    color: var(--yellow);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: background var(--transition), transform var(--transition);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Hero Profile Card */
.hero-card {
    width: 500px;
    flex-shrink: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.hero-card-est {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    z-index: 5;
    letter-spacing: 0.5px;
}

.hero-card-image {
    position: relative;
    overflow: hidden;
}

.hero-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-card-image .logo-overlay {
    display: none;
}

/* Card Overlay — dark gradient over image */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 22px 22px;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.75) 30%, rgba(0, 0, 0, 0.92) 100%);
}

.card-overlay .name-overlay {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.name-overlay .mini-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
}

.name-overlay-text h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
}

.name-overlay-text p {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-overlay .credential {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
}

.card-overlay .credential .icon {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
}

.card-overlay .hero-card-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    margin-top: 10px;
}

.card-overlay .stat-badge {
    background: var(--blue);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-sm);
}

.card-overlay .stat-text strong {
    display: block;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--white);
}

.card-overlay .stat-text span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.72rem;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 28px;
    height: 28px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   3. STATS BAR
   ============================================ */
.stats {
    background: var(--red);
    padding: 50px 0;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 10px 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
}

/* ============================================
   4. ABOUT SECTION
   ============================================ */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content .section-label {
    justify-content: flex-start;
}

.about-content .section-label::after {
    display: none;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-text {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.about-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.about-feature .feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 85, 184, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
}

/* ============================================
   5. PROGRAMS SECTION
   ============================================ */
.programs {
    padding: 100px 0;
    background: var(--navy);
}

.programs .section-label {
    color: var(--red);
}

.programs .section-title {
    color: var(--white);
    text-align: center;
}

.programs .section-subtitle {
    color: var(--gray-400);
    text-align: center;
}

.programs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}

.program-card {
    flex: 0 0 calc(20% - 19.2px);
    /* 5 cards per row */
    background: var(--navy-light);
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.program-card.green::before {
    background: var(--green);
}

.program-card.blue::before {
    background: var(--blue);
}

.program-card.red::before {
    background: var(--red);
}

.program-card.yellow::before {
    background: var(--yellow);
}

.program-card.purple::before {
    background: #a855f7;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.program-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 18px;
}

.program-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.program-card.green .program-icon {
    background: rgba(34, 197, 94, 0.2);
}

.program-card.blue .program-icon {
    background: rgba(0, 85, 184, 0.3);
}

.program-card.red .program-icon {
    background: rgba(227, 30, 36, 0.2);
}

.program-card.yellow .program-icon {
    background: rgba(255, 215, 0, 0.2);
}

.program-card.purple .program-icon {
    background: rgba(168, 85, 247, 0.2);
}

.program-age {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.program-card.red .program-age {
    background: rgba(227, 30, 36, 0.3);
    color: #ff8a8a;
}

.program-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.program-card p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 18px;
}

.program-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.program-tags span {
    background: rgba(255, 255, 255, 0.07);
    color: var(--gray-300);
    font-size: 0.75rem;
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--red);
    transition: gap var(--transition);
}

.program-link:hover {
    gap: 10px;
}

/* ============================================
   6. GIRLS TRAINING BANNER
   ============================================ */
.girls-banner {
    margin: 0 auto;
    max-width: var(--max-width);
    padding: 0 24px;
    transform: translateY(-30px);
}

.girls-banner-inner {
    background: linear-gradient(135deg, #e040fb 0%, #7c4dff 50%, #536dfe 100%);
    border-radius: var(--radius-lg);
    padding: 28px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.girls-banner-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.girls-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.girls-banner-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.girls-banner-text p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
}

.btn-girls {
    background: var(--white);
    color: var(--gray-800);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
}

.btn-girls:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   7. SCHEDULE SECTION
   ============================================ */
.schedule {
    padding: 100px 0;
    background: var(--gray-50);
}

.schedule .section-title,
.schedule .section-subtitle {
    text-align: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.schedule-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: transform var(--transition), box-shadow var(--transition);
}

.schedule-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.schedule-card.accent-red {
    border-color: rgba(227, 30, 36, 0.3);
}

.schedule-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 18px;
}

.schedule-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.schedule-card-header .dates {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.schedule-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: rgba(0, 85, 184, 0.1);
    color: var(--blue);
    white-space: nowrap;
}

.schedule-badge.red {
    background: rgba(227, 30, 36, 0.1);
    color: var(--red);
}

.schedule-badge.green {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.schedule-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.schedule-detail .icon {
    color: var(--gray-400);
    width: 18px;
    text-align: center;
}

.schedule-directions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--red);
    margin-top: 8px;
    transition: gap var(--transition);
}

.schedule-directions:hover {
    gap: 10px;
}

.schedule-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.schedule-note a {
    color: var(--red);
    font-weight: 600;
}

.schedule-note a:hover {
    text-decoration: underline;
}

/* ============================================
   8. PRICING SECTION
   ============================================ */
.pricing {
    padding: 100px 0;
    background: var(--white);
}

.pricing .section-title,
.pricing .section-subtitle {
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--blue);
    border-width: 2px;
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    letter-spacing: 1px;
}

.pricing-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--blue);
    margin-bottom: 20px;
}

.pricing-card.featured .pricing-icon {
    background: rgba(0, 85, 184, 0.1);
}

.pricing-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.pricing-amount .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--blue);
}

.pricing-amount .period {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.pricing-desc {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-600);
}

.pricing-features li .check {
    color: var(--green);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-pricing {
    display: block;
    width: 100%;
    margin-top: auto;
    text-align: center;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-pricing.filled {
    background: var(--blue);
    color: var(--white);
}

.btn-pricing.filled:hover {
    background: var(--blue-light);
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.btn-pricing.outline {
    background: var(--gray-100);
    color: var(--gray-700);
}

.btn-pricing.outline:hover {
    background: var(--gray-200);
}

/* ============================================
   9. GALLERY SECTION
   ============================================ */
.gallery {
    padding: 100px 0;
    background: var(--gray-50);
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.gallery-header-left .section-label {
    justify-content: flex-start;
}

.gallery-header-left .section-label::after {
    display: none;
}

.gallery-ig {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform var(--transition), box-shadow var(--transition);
    border: none;
}

.btn-instagram:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   10. ALUMNI CLUB (ADC) SECTION
   ============================================ */
.alumni {
    padding: 120px 0;
    background: radial-gradient(circle at top left, #1a2942 0%, var(--navy) 40%, #050a12 100%);
    position: relative;
    overflow: hidden;
}

.alumni::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.alumni .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.alumni-badge-wrapper {
    margin-bottom: 24px;
}

.alumni-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.alumni-content .section-title {
    color: var(--white);
    margin-bottom: 8px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    text-align: left;
}

.alumni-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 215, 0, 0.9);
    margin-bottom: 24px;
    font-family: monospace;
    font-weight: 600;
    letter-spacing: -0.5px;
    border-left: 3px solid var(--yellow);
    padding-left: 12px;
}

.alumni-text {
    font-size: 1.05rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 40px;
}

.alumni-achievements-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    backdrop-filter: blur(10px);
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.achievement-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 0, 0.4);
}

.achievement-card .ach-icon {
    font-size: 2rem;
    background: rgba(0,0,0,0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.05);
    flex-shrink: 0;
}

.ach-details h4 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.ach-details span {
    color: var(--yellow);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.alumni-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-follow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn-follow:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.btn-follow.ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white);
}

.btn-follow.fb {
    background: #1877f2;
    color: var(--white);
}

.alumni-visuals {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
}

.alumni-image-group {
    position: relative;
    width: 100%;
    height: 100%;
}

.alumni-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    filter: blur(40px);
}

.img-box {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    background: var(--navy);
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.img-box:hover img {
    transform: scale(1.08);
}

.img-main {
    top: 5%;
    right: 5%;
    width: 75%;
    height: 75%;
    z-index: 2;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8);
}

.img-float {
    bottom: 5%;
    left: 0;
    width: 65%;
    height: 50%;
    z-index: 3;
    border: 4px solid var(--navy-light);
    transform: rotate(-4deg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-float:hover {
    transform: rotate(0) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.7);
}

/* ============================================
   11. REGISTRATION / CONTACT SECTION
   ============================================ */
.registration {
    padding: 100px 0;
    background: var(--red);
    position: relative;
}

.registration .section-label {
    color: var(--white);
}

.registration .section-label::before,
.registration .section-label::after {
    background: rgba(255, 255, 255, 0.4);
}

.registration .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
}

.registration .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    margin-bottom: 50px;
}

.registration-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group label .required {
    color: var(--red);
}

.form-input {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-input:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 85, 184, 0.1);
}

.form-input .input-icon {
    color: var(--gray-400);
    font-size: 1rem;
    flex-shrink: 0;
}

.form-input input,
.form-input select {
    flex: 1;
    background: none;
    color: var(--gray-800);
}

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

.form-input select {
    color: var(--gray-400);
    cursor: pointer;
    appearance: none;
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    transition: background var(--transition), transform var(--transition);
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--red-dark);
    transform: scale(1.02);
}

.form-disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-top: 16px;
}

.form-disclaimer a {
    color: var(--blue);
    font-weight: 500;
}

/* ============================================
   12. FOOTER
   ============================================ */
.footer {
    background: var(--navy);
    padding: 60px 0 30px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .header-logo {
    margin-bottom: 16px;
}

.footer-brand .header-logo-text .brand {
    color: var(--white);
}

.footer-brand .header-logo-text .sub {
    color: var(--gray-400);
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--white);
    transition: background var(--transition), transform var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    transform: scale(1.1);
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 0.88rem;
    color: var(--gray-400);
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--gray-500);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--gray-500);
    transition: color var(--transition);
}

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

/* ============================================
   PAYMENT / MULTI-STEP FORM
   ============================================ */

/* Step Indicator */
.form-step-header {
    text-align: center;
    margin-bottom: 32px;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 12px;
}

.step-indicator .step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--gray-200);
    color: var(--gray-500);
    transition: all 0.3s ease;
}

.step-indicator .step.active {
    background: var(--red);
    color: var(--white);
}

.step-indicator .step.completed {
    background: #22c55e;
    color: var(--white);
}

.step-line {
    width: 80px;
    height: 3px;
    background: var(--gray-200);
    margin: 0 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.step-line.active {
    background: #22c55e;
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-700);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Payment Summary Card */
.payment-summary {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 28px;
}

.payment-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.92rem;
}

.payment-summary-row span {
    color: var(--gray-500);
}

.payment-summary-row strong {
    color: var(--gray-800);
}

.payment-summary-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 8px 0;
}

.payment-summary-row.total {
    padding-top: 12px;
}

.payment-summary-row.total strong {
    font-size: 1.5rem;
    color: var(--red);
    font-weight: 900;
}

/* Payment Method Toggle */
.payment-method-toggle {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.method-btn {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.method-btn:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.method-btn.active {
    border-color: var(--blue);
    background: rgba(0, 85, 184, 0.05);
    color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 85, 184, 0.12);
}

/* GCash Container */
.gcash-container {
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    margin-bottom: 20px;
}

.gcash-qr {
    flex-shrink: 0;
    text-align: center;
}

.gcash-qr img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    background: var(--white);
}

.gcash-qr p {
    font-size: 0.78rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.gcash-info {
    flex: 1;
}

.gcash-info>p {
    font-size: 1rem;
    color: var(--gray-800);
    margin-bottom: 6px;
}

.gcash-info>p span {
    color: var(--red);
    font-size: 1.2rem;
}

.gcash-note {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Payment Actions */
.payment-actions {
    display: flex;
    gap: 14px;
    margin-top: 10px;
    margin-bottom: 16px;
}

.btn-back {
    padding: 16px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-300);
    background: transparent;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-back:hover {
    border-color: var(--gray-500);
    color: var(--gray-800);
}

.btn-pay {
    flex: 1;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.btn-pay span {
    font-weight: 900;
}

/* Disabled button state */
.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-submit:disabled:hover {
    box-shadow: none;
    transform: none;
}

/* ============================================
   FADE-IN ANIMATION
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-heading {
        font-size: 3.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-card {
        width: 100%;
        max-width: 400px;
    }

    .program-card {
        flex: 0 0 calc(33.333% - 16px);
    }

    .about .container {
        grid-template-columns: 1fr;
    }

    .about-content .section-label,
    .about-content .section-title {
        text-align: center;
        justify-content: center;
    }

    .alumni .container {
        grid-template-columns: 1fr;
    }

    .alumni-content {
        text-align: center;
    }

    .alumni-visuals {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

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

    /* Merch grid */
    #merch-grid-container {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
        gap: 24px !important;
        padding: 40px 0 !important;
    }
}

/* --- Mobile landscape & small tablets (768px) --- */
@media (max-width: 768px) {

    .container {
        padding: 0 16px;
    }

    .nav-links,
    .header .btn-join {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero .container {
        gap: 30px;
        padding-top: calc(var(--header-height) + 20px);
        padding-bottom: 40px;
    }

    .hero-heading {
        font-size: 2.8rem;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 6px 16px;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .stats {
        padding: 30px 0;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .about {
        padding: 60px 0;
    }

    .about .container {
        gap: 30px;
    }

    .programs {
        padding: 60px 0;
    }

    .program-card {
        flex: 0 0 calc(50% - 12px);
    }

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

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Merch grid */
    #merch-grid-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
        padding: 30px 0 !important;
    }

    .merch-title {
        font-size: 1rem;
    }

    .merch-details {
        padding: 16px;
    }

    /* Cart & Checkout modals */
    .cart-modal-content {
        width: 95% !important;
        max-height: 90vh !important;
        padding: 16px !important;
        border-radius: 12px !important;
    }

    /* Alumni */
    .alumni-achievements-cards {
        text-align: left;
    }

    .alumni-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Registration */
    .registration {
        padding: 60px 0;
    }

    .registration-form {
        padding: 24px 16px;
    }

    /* Merch marquee */
    .merch-marquee-content img {
        height: 280px;
    }
}

/* --- Mobile portrait (480px) --- */
@media (max-width: 480px) {

    .container {
        padding: 0 12px;
    }

    .hero .container {
        padding-top: calc(var(--header-height) + 10px);
        padding-bottom: 30px;
        gap: 20px;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-ghost {
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .hero-card {
        max-width: 100%;
    }

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

    .section-subtitle {
        font-size: 0.88rem;
    }

    .stats {
        padding: 24px 0;
    }

    .stats .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.68rem;
        letter-spacing: 1px;
    }

    .about {
        padding: 40px 0;
    }

    .about-text {
        font-size: 0.92rem;
    }

    .about-feature {
        padding: 10px 12px;
    }

    .about-feature span {
        font-size: 0.88rem;
    }

    .programs {
        padding: 40px 0;
    }

    .program-card {
        flex: 0 0 100%;
    }

    /* Merch grid — single column on small phones */
    #merch-grid-container {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 20px 0 !important;
    }

    .merch-details {
        padding: 14px;
    }

    .merch-title {
        font-size: 0.95rem;
    }

    .merch-price {
        font-size: 1.15rem;
        margin-bottom: 16px;
    }

    .btn-add-cart {
        padding: 12px;
        font-size: 0.92rem;
    }

    .merch-size-select {
        padding: 6px !important;
        font-size: 0.85rem !important;
    }

    /* Cart full-screen on small phones */
    .cart-modal-content {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        padding: 14px !important;
        height: 100vh;
    }

    .cart-modal-header h2 {
        font-size: 1.2rem;
    }

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

    .registration {
        padding: 40px 0;
    }

    .registration-form {
        padding: 20px 14px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        gap: 24px;
    }

    .alumni-content {
        padding: 0;
    }

    .promo-grid {
        gap: 12px;
    }

    /* Merch marquee */
    .merch-marquee-content img {
        height: 200px;
    }
}

/* --- Very small phones (360px and below) --- */
@media (max-width: 360px) {
    .hero-heading {
        font-size: 1.9rem;
    }

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

    .stat-number {
        font-size: 1.5rem;
    }

    .cart-fab {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}

/* ============================================
   NEW PROMO & MERCH SECTIONS
   ============================================ */

/* Promo Grid */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    align-items: stretch;
}
.promo-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition), box-shadow var(--transition);
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
}
.promo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}
.promo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 900px) {
    .promo-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Merch Marquee */
.merch-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    white-space: nowrap;
    display: flex;
}
.merch-marquee:hover .merch-marquee-content {
    animation-play-state: paused;
}
.merch-marquee-content {
    display: flex;
    gap: 20px;
    animation: marquee-scroll 25s linear infinite;
    padding-left: 20px;
}
.merch-marquee-content img {
    height: 400px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
    object-fit: contain;
    transition: transform var(--transition);
    background: var(--white);
}
.merch-marquee-content img:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}
@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
/* ========== CART UI ========== */
.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--red);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    font-size: 24px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.cart-fab:hover {
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    height: 22px;
    min-width: 22px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cart-modal.active {
    display: flex;
}

.cart-modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 10px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.btn-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--gray-500);
}

.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    margin-bottom: 20px;
}

.cart-modal-footer {
    border-top: 1px solid var(--gray-200);
    padding-top: 20px;
}

