/* ==========================================
   DESIGN TOKENS & VARIABLES
   ========================================== */
:root {
    --primary-color: #0b3b8c;
    --primary-light: #1e40af;
    --primary-dark: #051f50;
    --accent-blue: #2563eb;
    --accent-yellow: #ffd000;
    --accent-yellow-dark: #e0b800;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --success-light: #d1fae5;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0b3b8c 0%, #1e40af 100%);
    --gradient-accent: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-text: linear-gradient(135deg, #0b3b8c 0%, #2563eb 100%);
    --gradient-hero-bg: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    --gradient-brick-overlay: linear-gradient(135deg, rgba(239, 246, 255, 0.9) 0%, rgba(219, 234, 254, 0.85) 100%);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
    --shadow-premium: 0 20px 40px -15px rgba(11, 59, 140, 0.12);
    --shadow-phone: 0 25px 50px -12px rgba(5, 31, 80, 0.25);
    --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 36px;
}

/* ==========================================
   BASE & RESET STYLES
   ========================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1240px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.text-gradient {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================
   BUTTONS & ACCENTS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 59, 140, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--bg-light);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-yellow {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
}

.btn-yellow:hover {
    background-color: var(--accent-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--bg-white);
    transform: translateY(-2px);
}

.text-yellow {
    color: var(--accent-yellow-dark);
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1240px;
    margin: 0 auto;
}

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

.logo-crest {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(11, 59, 140, 0.15);
}

.logo-crest i {
    width: 22px;
    height: 22px;
}

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

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    padding: 6px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-blue);
    transition: var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-blue);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle i {
    width: 28px;
    height: 28px;
}

.hidden {
    display: none !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    padding-top: 150px;
    padding-bottom: 90px;
    background: var(--gradient-hero-bg);
    overflow: hidden;
}

/* Red brick university subtle graphical overlay */
.hero-bg-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    opacity: 0.15;
    background-image: radial-gradient(circle at 70% 30%, #ef4444 0%, transparent 70%),
                      linear-gradient(to right, transparent, rgba(5, 31, 80, 0.2)),
                      repeating-linear-gradient(45deg, rgba(239, 68, 68, 0.1) 0px, rgba(239, 68, 68, 0.1) 2px, transparent 2px, transparent 10px);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 0.8fr;
    align-items: center;
    gap: 30px;
}

.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--success-light);
    color: var(--success-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.badge-icon i {
    width: 14px;
    height: 14px;
    display: block;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
}

/* ==========================================
   PHONE MOCKUP LAYOUT & APPS
   ========================================== */
.hero-mockup-col {
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.phone-mockup {
    position: relative;
    width: 290px;
    height: 600px;
    background-color: #0b1329;
    border: 11px solid #1a233d;
    border-radius: 42px;
    box-shadow: var(--shadow-phone);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background-color: #1a233d;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 100;
}

.phone-speaker {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: #4b5563;
    border-radius: 2px;
    z-index: 101;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px 4px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 99;
}

.status-icons {
    display: flex;
    gap: 4px;
}

.mini-icon {
    width: 10px;
    height: 10px;
}

/* App Inner Layout */
.app-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow-y: auto;
    padding: 0 12px 60px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.app-container::-webkit-scrollbar {
    display: none;
}

.app-header {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 12px;
    margin-bottom: 12px;
    margin-top: 4px;
    border: 1px solid var(--border-color);
}

.app-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.app-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
}

.app-logo i {
    width: 14px;
    height: 14px;
}

.app-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.app-subname {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-muted);
}

.app-welcome {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-dark);
}

.app-main-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.app-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 6px;
    border-radius: var(--border-radius-sm);
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.app-btn i {
    width: 18px;
    height: 18px;
}

.app-btn-blue {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.app-btn-light {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.app-grid-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}

.app-grid-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.72rem;
    font-weight: 600;
}

.grid-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 6px;
}

.grid-icon i {
    width: 12px;
    height: 12px;
}

.bg-blue-light { background-color: #dbeafe; color: #2563eb; }
.bg-orange-light { background-color: #ffedd5; color: #ea580c; }
.bg-green-light { background-color: #d1fae5; color: #059669; }
.bg-red-light { background-color: #fee2e2; color: #dc2626; }

.app-event-card {
    background-color: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 10px;
    border: 1px solid var(--border-color);
    margin-bottom: 12px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.card-header a {
    color: var(--accent-blue);
}

.event-details {
    display: flex;
    gap: 8px;
    align-items: center;
}

.event-thumb {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-thumb i {
    width: 16px;
    height: 16px;
}

.event-info {
    flex: 1;
}

.event-title {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

.event-date {
    font-size: 0.6rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 2px;
}

.event-date i {
    width: 8px;
    height: 8px;
}

.app-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 52px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    padding: 0 6px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.58rem;
    font-weight: 500;
    cursor: pointer;
}

.nav-item i {
    width: 16px;
    height: 16px;
    margin-bottom: 2px;
}

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

/* ==========================================
   FLOATING STATS COLUMN (HERO RIGHT)
   ========================================== */
.hero-stats-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-white);
    padding: 14px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(226, 232, 240, 0.5);
    width: 210px;
    transition: var(--transition-normal);
}

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

.float-icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: var(--bg-white);
}

.float-icon-bg i {
    width: 20px;
    height: 20px;
}

.bg-blue { background-color: #2563eb; }
.bg-indigo { background-color: #4f46e5; }
.bg-green { background-color: #10b981; }
.bg-orange { background-color: #f97316; }

.float-details {
    display: flex;
    flex-direction: column;
}

.float-num {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}

.float-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Floating Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.slide-in-delay-1 { animation: float 6s ease-in-out infinite; }
.slide-in-delay-2 { animation: float 6s ease-in-out infinite 1.5s; }
.slide-in-delay-3 { animation: float 6s ease-in-out infinite 3s; }
.slide-in-delay-4 { animation: float 6s ease-in-out infinite 4.5s; }

/* ==========================================
   STATS STRIP
   ========================================== */
.stats-strip {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    padding: 32px 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 10;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

.stat-item i {
    width: 32px;
    height: 32px;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0.9;
}

.stat-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1.1;
}

.stat-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* ==========================================
   SECTION HEADERS
   ========================================== */
.section-header {
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
}

.header-line {
    width: 60px;
    height: 4px;
    background-color: var(--accent-blue);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features-section {
    padding: 90px 0;
    background-color: var(--bg-white);
}

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

.feature-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: block;
    color: inherit;
    text-decoration: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(11, 59, 140, 0.15);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.feature-icon i {
    width: 24px;
    height: 24px;
}

.bg-blue-soft { background-color: #eff6ff; }
.text-blue { color: #2563eb; }

.bg-green-soft { background-color: #ecfdf5; }
.text-green { color: #10b981; }

.bg-purple-soft { background-color: #f5f3ff; }
.text-purple { color: #8b5cf6; }

.bg-orange-soft { background-color: #fff7ed; }
.text-orange { color: #f97316; }

.bg-red-soft { background-color: #fef2f2; }
.text-red { color: #ef4444; }

.bg-yellow-soft { background-color: #fefce8; }
.text-yellow-dark { color: #ca8a04; }

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================
   HOW IT WORKS SECTION
   ========================================== */
.how-it-works-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.steps-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--bg-white);
    padding: 24px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.step-icon-wrapper {
    position: relative;
    margin-bottom: 16px;
}

.step-num {
    position: absolute;
    top: -6px;
    left: -6px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(11, 59, 140, 0.2);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
}

.step-icon i {
    width: 22px;
    height: 22px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.step-arrow {
    color: var(--text-muted);
    opacity: 0.6;
    display: flex;
    align-items: center;
}

.step-arrow i {
    width: 24px;
    height: 24px;
}

/* ==========================================
   EXPLORE POWERFUL FEATURES SHOWCASE
   ========================================== */
.showcase-section {
    padding: 90px 0;
    background-color: var(--bg-white);
}

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

.showcase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    background-color: var(--bg-white);
    border-color: rgba(11, 59, 140, 0.15);
}

/* Phone screen contents */
.showcase-phone {
    width: 200px;
    height: 380px;
    background-color: #0b1329;
    border: 8px solid #1a233d;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    position: relative;
}

.showcase-screen-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 10px 8px 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.62rem;
    font-family: var(--font-heading);
    font-weight: 600;
}

.header-back, .header-bell {
    width: 10px;
    height: 10px;
}

.showcase-screen-content {
    background-color: var(--bg-white);
    flex: 1;
    overflow-y: auto;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.showcase-screen-content::-webkit-scrollbar {
    display: none;
}

.screen-search {
    background-color: var(--bg-light);
    border-radius: 4px;
    padding: 6px;
    font-size: 0.55rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid var(--border-color);
}

.screen-search i {
    width: 8px;
    height: 8px;
}

.screen-user-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background-color: var(--bg-light);
    border-radius: 4px;
    border: 1px solid var(--border-color);
    position: relative;
}

.user-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 0.55rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-details {
    flex: 1;
    text-align: left;
}

.user-name {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--text-dark);
}

.user-info {
    font-size: 0.5rem;
    color: var(--text-muted);
}

.user-status {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #cbd5e1;
    position: absolute;
    top: 6px;
    right: 6px;
}

.user-status.active {
    background-color: var(--success-color);
}

/* Map simulation styling */
.relative-pos {
    position: relative;
    padding: 0 !important;
}

.map-bg {
    width: 100%;
    height: 100%;
    background-color: #e2e8f0;
    position: relative;
    overflow: hidden;
}

.map-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: 16px 16px;
    background-image: linear-gradient(to right, rgba(255,255,255,0.7) 1px, transparent 1px),
                      linear-gradient(to bottom, rgba(255,255,255,0.7) 1px, transparent 1px);
}

.map-pin-point {
    position: absolute;
    color: var(--accent-blue);
}

.map-pin-point i {
    width: 12px;
    height: 12px;
    display: block;
}

.pin-1 { top: 30px; left: 40px; color: var(--accent-blue); }
.pin-2 { top: 90px; right: 30px; color: var(--primary-light); }
.pin-3 { bottom: 80px; left: 60px; color: var(--accent-blue); }
.pin-main { top: 120px; left: 80px; color: var(--success-color); transform: rotate(45deg); }

.screen-floating-alumni {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    background-color: var(--bg-white);
    border-radius: 6px;
    padding: 6px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border-color);
}

.mini-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 0.45rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-text {
    flex: 1;
    font-size: 0.5rem;
    font-weight: 700;
    text-align: left;
}

.btn-chat-mini {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    color: var(--accent-blue);
    margin-top: 1px;
    font-size: 0.45rem;
}

/* Job lists styling */
.job-list-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px;
    text-align: left;
}

.job-badge {
    display: inline-block;
    background-color: #dbeafe;
    color: #2563eb;
    font-size: 0.45rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    margin-bottom: 4px;
}

.job-role {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--text-dark);
}

.job-company {
    font-size: 0.55rem;
    color: var(--text-muted);
}

.job-posted {
    font-size: 0.45rem;
    color: var(--primary-light);
    margin-top: 4px;
    font-weight: 500;
}

/* Events lists styling */
.upcoming-events-header {
    font-size: 0.62rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 4px;
}

.event-card-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px;
    text-align: left;
}

.event-banner-placeholder {
    width: 100%;
    height: 60px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.event-banner-placeholder i {
    width: 14px;
    height: 14px;
}

.event-card-title {
    font-size: 0.58rem;
    font-weight: 700;
    color: var(--text-dark);
}

.event-card-time, .event-card-location {
    font-size: 0.48rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 1px;
}

.event-card-time i, .event-card-location i {
    width: 6px;
    height: 6px;
}

/* Business List Styling */
.biz-card-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px;
    text-align: left;
}

.biz-logo {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 0.52rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.biz-info {
    flex: 1;
}

.biz-name {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-dark);
}

.biz-owner {
    font-size: 0.45rem;
    color: var(--text-muted);
}

.biz-desc {
    font-size: 0.45rem;
    color: var(--primary-light);
    margin-top: 1px;
}

/* News feed styling */
.feed-post-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 6px;
    text-align: left;
}

.feed-author {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.author-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: var(--bg-white);
    font-size: 0.45rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-details {
    flex: 1;
}

.author-name {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.author-time {
    font-size: 0.45rem;
    color: var(--text-muted);
}

.feed-content {
    font-size: 0.52rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.feed-actions {
    display: flex;
    gap: 8px;
    margin-top: 6px;
    border-top: 1px solid var(--border-color);
    padding-top: 4px;
    font-size: 0.45rem;
    color: var(--text-muted);
}

.feed-actions i {
    width: 6px;
    height: 6px;
}

.showcase-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.showcase-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================
   WHAT HARCOURTIANS SAY (TESTIMONIALS)
   ========================================== */
.testimonials-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-viewport {
    flex: 1;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    min-width: 100%;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.user-img-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.user-img-placeholder i {
    width: 24px;
    height: 24px;
}

.user-meta {
    text-align: left;
}

.user-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.user-batch {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 600px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.star-fill {
    width: 18px;
    height: 18px;
    fill: var(--accent-yellow-dark);
    color: var(--accent-yellow-dark);
}

.slider-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.slider-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.slider-btn i {
    width: 20px;
    height: 20px;
}

/* ==========================================
   MOMENTS FROM OUR COMMUNITY (GALLERY)
   ========================================== */
.gallery-section {
    padding: 90px 0;
    background-color: var(--bg-white);
}

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

.gallery-item {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    cursor: pointer;
}

.gallery-placeholder {
    width: 100%;
    height: 160px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-normal);
}

.gallery-placeholder i {
    width: 32px;
    height: 32px;
}

.gallery-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    transition: var(--transition-normal);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 16px;
    color: var(--bg-white);
    text-align: center;
    transition: var(--transition-normal);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
}

.gallery-item:hover .gallery-placeholder,
.gallery-item:hover .gallery-image {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(11, 59, 140, 0.95) 0%, rgba(11, 59, 140, 0.6) 100%);
}

.gallery-item:hover .gallery-placeholder i {
    color: rgba(255, 255, 255, 0.85);
    transform: scale(1.2);
}

/* ==========================================
   FAQ & APP PROMO SECTION
   ========================================== */
.faq-app-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

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

.promo-content {
    max-width: 480px;
}

.promo-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.promo-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.download-layout {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-small {
    width: 140px;
    height: 280px;
    border: 6px solid #1a233d;
    border-radius: 20px;
}

.phone-small::after {
    width: 60px;
    height: 14px;
}

.phone-small .phone-speaker {
    display: none;
}

.app-preview-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
    color: var(--bg-white);
    padding: 20px;
}

.mini-app-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--primary-color);
    margin-bottom: 8px;
}

.mini-app-logo i {
    width: 20px;
    height: 20px;
}

.mini-app-name {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
}

.download-action-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.google-play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #000000;
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
    width: 180px;
}

.google-play-btn:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
}

.play-icon i {
    width: 24px;
    height: 24px;
}

.fill-white {
    fill: #ffffff;
}

.play-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.play-subtitle {
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.play-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
}

.qr-code-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-white);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.qr-placeholder {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

/* Styled QR Pattern */
.qr-pattern {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    background-image: 
        linear-gradient(45deg, #000 25%, transparent 25%), 
        linear-gradient(-45deg, #000 25%, transparent 25%), 
        linear-gradient(45deg, transparent 75%, #000 75%), 
        linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0px;
}

.qr-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dark);
    max-width: 90px;
}

/* Accordion Column Styles */
.faq-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.accordion-header:hover {
    color: var(--accent-blue);
    background-color: rgba(226, 232, 240, 0.2);
}

.accordion-chevron {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    transition: transform var(--transition-normal);
}

.accordion-item.active .accordion-chevron {
    transform: rotate(180deg);
    color: var(--accent-blue);
}

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

.accordion-content p {
    padding: 0 24px 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================
   BOTTOM CTA BAR
   ========================================== */
.bottom-cta-banner {
    background-color: var(--primary-color);
    padding: 48px 0;
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.bottom-cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.08;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.1) 0px, rgba(255,255,255,0.1) 2px, transparent 2px, transparent 15px);
    pointer-events: none;
}

.cta-banner-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cta-logo-crest {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.15);
    color: var(--bg-white);
    border: 1px solid rgba(255,255,255,0.25);
}

.cta-logo-crest i {
    width: 28px;
    height: 28px;
}

.cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 4px;
}

.cta-text p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.8);
}

.cta-actions {
    display: flex;
    gap: 16px;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background-color: #030712;
    color: rgba(255,255,255,0.7);
    padding: 70px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.footer-brand .logo-crest {
    background-color: rgba(255,255,255,0.1);
    box-shadow: none;
}

.text-white { color: #ffffff !important; }
.text-blue-light { color: #93c5fd !important; }

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-link-col h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-link-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-col a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-link-col a:hover {
    color: var(--accent-blue);
    padding-left: 4px;
}

.footer-bottom {
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    transition: var(--transition-fast);
}

.footer-socials a:hover {
    background-color: var(--accent-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-socials i {
    width: 16px;
    height: 16px;
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */
@media (max-width: 1140px) {
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
    .hero-stats-col {
        grid-column: span 2;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    .hero-stats-col .floating-card {
        width: 190px;
    }
}

@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .faq-app-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-description {
        max-width: 600px;
    }
    .hero-stats-col {
        grid-column: span 1;
        flex-wrap: wrap;
    }
    .steps-timeline {
        flex-direction: column;
        gap: 20px;
    }
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    .stats-container {
        justify-content: center;
    }
    .stat-divider {
        display: none;
    }
    .stat-item {
        min-width: 40%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background-color: var(--bg-white);
        padding: 40px 24px;
        box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
        transition: var(--transition-normal);
        overflow-y: auto;
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    
    .nav-link {
        font-size: 1.15rem;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .btn-nav {
        display: none;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .text-center-mobile {
        text-align: center;
    }
    
    .cta-banner-container {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .cta-left {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }
    .hero-ctas .btn {
        width: 100%;
    }
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .cta-actions .btn {
        width: 100%;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .download-layout {
        flex-direction: column;
    }
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================
   PRIVACY POLICY PAGE STYLES
   ========================================== */
.privacy-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--gradient-hero-bg);
}

.privacy-container {
    max-width: 850px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.privacy-last-updated {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.privacy-content-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 50px;
    box-shadow: var(--shadow-premium);
}

.privacy-section-block {
    margin-bottom: 40px;
}

.privacy-section-block:last-child {
    margin-bottom: 0;
}

.privacy-section-block h2 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.privacy-section-block h2 i {
    width: 22px;
    height: 22px;
    color: var(--accent-blue);
}

.privacy-section-block p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 0.98rem;
}

.privacy-section-block ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.privacy-section-block ul li {
    list-style-type: disc;
    margin-bottom: 10px;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 0.95rem;
}

.back-to-home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.back-to-home-link:hover {
    color: var(--primary-color);
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .privacy-page {
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-content-card {
        padding: 30px 20px;
    }
}

/* ==========================================
   VERIFICATION GUIDELINES STYLES
   ========================================== */
.verification-paths {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.verification-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.verification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

.verification-card.admin-path::before {
    background: var(--gradient-primary);
}

.verification-card.batchmate-path::before {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.verification-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 59, 140, 0.15);
}

.path-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.admin-path .path-icon {
    background-color: rgba(11, 59, 140, 0.1);
    color: var(--primary-color);
}

.batchmate-path .path-icon {
    background-color: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
}

.path-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.path-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.guideline-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guideline-step-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-num {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.guideline-step-item p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.badge-preview-box {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.badge-preview-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.badge-preview {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-preview.badge-admin {
    background-color: #eff6ff;
    color: var(--accent-blue);
    border: 1px solid #dbeafe;
}

.badge-preview.badge-batchmate {
    background-color: var(--success-light);
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.badge-preview i {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .verification-paths {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================
   ALUMNI BUSINESSES HUB STYLES
   ========================================== */

/* Businesses Page Layout & Hero */
.businesses-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--gradient-hero-bg);
    min-height: 100vh;
}

.businesses-container {
    max-width: 1200px;
    margin: 0 auto;
}

.businesses-hero {
    text-align: center;
    margin-bottom: 50px;
}

.businesses-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.businesses-hero p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Interactive Search & Filters */
.biz-controls-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.search-box-wrapper {
    position: relative;
    width: 100%;
}

.search-box-wrapper input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
    background-color: var(--bg-light);
}

.search-box-wrapper input:focus {
    border-color: var(--accent-blue);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.search-box-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.category-pill {
    padding: 10px 22px;
    border-radius: 50px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-normal);
}

.category-pill:hover {
    background-color: var(--border-color);
    color: var(--text-dark);
}

.category-pill.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(11, 59, 140, 0.2);
}

/* Grid & Cards */
.biz-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.biz-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.biz-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(11, 59, 140, 0.15);
}

.biz-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.biz-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--bg-white);
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.biz-logo-img {
    width: auto;
    max-width: 120px;
    height: 60px;
    border-radius: var(--border-radius-sm);
    object-fit: contain;
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 6px 10px;
}

.biz-logo-blue { background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%); }
.biz-logo-orange { background: linear-gradient(135deg, #f97316 0%, #c2410c 100%); }
.biz-logo-purple { background: linear-gradient(135deg, #a855f7 0%, #6b21a8 100%); }
.biz-logo-green { background: linear-gradient(135deg, #10b981 0%, #065f46 100%); }
.biz-logo-red { background: linear-gradient(135deg, #ef4444 0%, #991b1b 100%); }
.biz-logo-cyan { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }

.biz-meta {
    flex: 1;
}

.biz-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.biz-category-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.biz-owner-info {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.biz-owner-info i {
    width: 14px;
    height: 14px;
}

.biz-owner-name {
    font-weight: 600;
    color: var(--text-dark);
}

.biz-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.biz-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.biz-location i {
    width: 14px;
    height: 14px;
    color: var(--accent-blue);
}

.biz-discount-badge {
    background-color: var(--success-light);
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.biz-discount-badge i {
    width: 16px;
    height: 16px;
    color: var(--success-color);
}

.biz-ctas {
    display: flex;
    gap: 12px;
}

.biz-ctas .btn {
    flex: 1;
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* Modal Styling */
.biz-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.biz-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.biz-modal-content {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    box-shadow: var(--shadow-phone);
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.biz-modal.open .biz-modal-content {
    transform: scale(1);
}

.biz-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.biz-modal-close:hover {
    color: var(--text-dark);
}

.modal-header-biz {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.modal-header-biz .biz-logo-placeholder {
    width: 70px;
    height: 70px;
    font-size: 1.6rem;
}

.modal-header-biz .biz-logo-img {
    width: auto;
    max-width: 150px;
    height: 70px;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    padding: 8px 12px;
}

.modal-biz-title {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.modal-details-list {
    margin-bottom: 30px;
}

.modal-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.modal-detail-item i {
    width: 18px;
    height: 18px;
    color: var(--accent-blue);
    margin-top: 3px;
}

.modal-detail-item strong {
    color: var(--text-dark);
    min-width: 110px;
}

.modal-detail-item span, .modal-detail-item a {
    color: var(--text-dark);
}

.modal-detail-item a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

/* Registration Form Section */
.biz-form-section {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 50px;
    box-shadow: var(--shadow-premium);
}

.biz-form-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-align: center;
}

.biz-form-section p.subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
}

.biz-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

.form-group-full {
    grid-column: span 2;
}

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

.biz-form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.biz-form-group input, .biz-form-group select, .biz-form-group textarea {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.biz-form-group input:focus, .biz-form-group select:focus, .biz-form-group textarea:focus {
    border-color: var(--accent-blue);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.biz-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit-wrapper {
    text-align: center;
}

.form-submit-wrapper .btn {
    min-width: 200px;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-phone);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-success {
    border-left: 4px solid var(--success-color);
}

.toast-success i {
    color: var(--success-color);
}

/* custom btn sm */
.btn-sm-custom {
    padding: 6px 16px;
    font-size: 0.8rem;
    height: auto;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .biz-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .businesses-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .businesses-hero h1 {
        font-size: 2.2rem;
    }
    
    .biz-controls-card {
        padding: 20px;
    }
    
    .biz-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .biz-form-section {
        padding: 30px 20px;
    }
    
    .biz-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-group-full {
        grid-column: span 1;
    }
}

/* ==========================================
   ALUMNI EVENTS & REUNIONS STYLES
   ========================================== */

.events-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--gradient-hero-bg);
    min-height: 100vh;
}

.events-container {
    max-width: 1200px;
    margin: 0 auto;
}

.events-hero {
    text-align: center;
    margin-bottom: 50px;
}

.events-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.events-hero p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Controls (Search & Filter) */
.events-controls-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Event Card */
.event-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(11, 59, 140, 0.15);
}

.event-card-banner {
    height: 140px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 16px 20px;
    overflow: hidden;
}

/* Banners gradients */
.event-grad-blue { background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); }
.event-grad-orange { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.event-grad-purple { background: linear-gradient(135deg, #a855f7 0%, #7e22ce 100%); }
.event-grad-cyan { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); }
.event-grad-green { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }

/* Date calendar badge in card */
.event-date-badge {
    position: absolute;
    top: 16px;
    left: 20px;
    background-color: var(--bg-white);
    border-radius: 8px;
    width: 54px;
    height: 56px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.event-date-badge .badge-month {
    background-color: #ef4444;
    color: var(--bg-white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-date-badge .badge-day {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    padding-top: 2px;
    font-family: var(--font-heading);
}

.event-category-tag {
    position: absolute;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: capitalize;
}

.event-card-body {
    padding: 24px;
}

.event-title-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: var(--font-heading);
    line-height: 1.4;
}

.event-meta-line {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.event-meta-line i {
    width: 16px;
    height: 16px;
    color: var(--primary-color);
}

.event-short-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.6;
}

.event-ctas {
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-light);
}

.event-rsvp-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Event Form Section */
.event-form-section {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 50px;
    box-shadow: var(--shadow-premium);
}

.event-form-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-align: center;
}

.event-form-section p.subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
}

.event-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

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

.event-form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.event-form-group input, .event-form-group select, .event-form-group textarea {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.event-form-group input:focus, .event-form-group select:focus, .event-form-group textarea:focus {
    border-color: var(--accent-blue);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.event-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Event Modal Styling */
.event-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.event-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.event-modal-content {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: var(--shadow-phone);
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.event-modal.open .event-modal-content {
    transform: scale(1);
}

.event-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 4px;
    border-radius: 50%;
}

.event-modal-close:hover {
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.modal-header-event {
    margin-bottom: 24px;
    padding-right: 30px;
}

.modal-event-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.event-category-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.event-category-badge.badge-reunion { background-color: #ffedd5; color: #c2410c; }
.event-category-badge.badge-chapter_meet { background-color: #f3e8ff; color: #6b21a8; }
.event-category-badge.badge-networking { background-color: #d1fae5; color: #065f46; }
.event-category-badge.badge-webinar { background-color: #ecfeff; color: #0891b2; }
.event-category-badge.badge-other { background-color: #f1f5f9; color: #475569; }

.event-description-block {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.event-description-block h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

/* Responsiveness for Events */
@media (max-width: 1024px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .events-hero h1 {
        font-size: 2.2rem;
    }

    .events-controls-card {
        padding: 20px;
    }

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

    .event-form-section {
        padding: 30px 20px;
    }

    .event-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .event-modal-content {
        padding: 24px;
    }
}

/* ==========================================
   ALUMNI BLOG & STORIES STYLES
   ========================================== */

.blog-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--gradient-hero-bg);
    min-height: 100vh;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-hero {
    text-align: center;
    margin-bottom: 50px;
}

.blog-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.blog-hero p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Controls (Search & Filter) */
.blog-controls-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(11, 59, 140, 0.15);
}

.blog-card-banner {
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    overflow: hidden;
}

/* Gradients matching category */
.blog-grad-blue { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }
.blog-grad-orange { background: linear-gradient(135deg, #c2410c 0%, #f97316 100%); }
.blog-grad-purple { background: linear-gradient(135deg, #6b21a8 0%, #a855f7 100%); }
.blog-grad-green { background: linear-gradient(135deg, #065f46 0%, #10b981 100%); }
.blog-grad-cyan { background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%); }

.blog-read-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-read-badge i {
    width: 12px;
    height: 12px;
}

.blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-date-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.blog-title-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    line-height: 1.4;
    height: 3.4rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-short-summary {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    height: 2.85rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blog-author-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.blog-author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.blog-author-details {
    display: flex;
    flex-direction: column;
}

.blog-author-details .author-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.blog-author-details .author-batch {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.blog-ctas {
    padding: 0 24px 24px;
}

/* Blog Form Section */
.blog-form-section {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 50px;
    box-shadow: var(--shadow-premium);
}

.blog-form-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-align: center;
}

.blog-form-section p.subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
}

.blog-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

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

.blog-form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.blog-form-group input, .blog-form-group select, .blog-form-group textarea {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.blog-form-group input:focus, .blog-form-group select:focus, .blog-form-group textarea:focus {
    border-color: var(--accent-blue);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.blog-form-group textarea {
    resize: vertical;
    min-height: 180px;
}

/* Blog Modal Styling */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.blog-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.blog-modal-content {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    max-width: 750px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: var(--shadow-phone);
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.blog-modal.open .blog-modal-content {
    transform: scale(1);
}

.blog-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 4px;
    border-radius: 50%;
}

.blog-modal-close:hover {
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.modal-header-blog {
    margin-bottom: 24px;
    padding-right: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.modal-blog-title {
    font-size: 1.85rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.blog-category-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
}

.blog-category-badge.badge-story { background-color: #ffedd5; color: #c2410c; }
.blog-category-badge.badge-news { background-color: #f3e8ff; color: #6b21a8; }
.blog-category-badge.badge-insights { background-color: #d1fae5; color: #065f46; }
.blog-category-badge.badge-placement { background-color: #ecfeff; color: #0891b2; }

.modal-author-profile-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
}

.author-avatar-lg {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-fullname {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
}

.author-subinfo {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.author-contact {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.author-contact a {
    color: var(--primary-color);
    text-decoration: none;
}

.author-contact a:hover {
    text-decoration: underline;
}

.blog-main-content-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Responsiveness for Blog */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .blog-hero h1 {
        font-size: 2.2rem;
    }

    .blog-controls-card {
        padding: 20px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-form-section {
        padding: 30px 20px;
    }

    .blog-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .blog-modal-content {
        padding: 24px;
    }
}

/* ==========================================
   ALUMNI JOBS & REFERRALS STYLES
   ========================================== */

.jobs-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--gradient-hero-bg);
    min-height: 100vh;
}

.jobs-container {
    max-width: 1200px;
    margin: 0 auto;
}

.jobs-hero {
    text-align: center;
    margin-bottom: 50px;
}

.jobs-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.jobs-hero p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Controls (Search & Filter) */
.jobs-controls-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Jobs Grid */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Job Card */
.job-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(11, 59, 140, 0.15);
}

.job-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.job-company-logo {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--bg-white);
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.job-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-family: var(--font-heading);
}

.job-company-name {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
}

.job-badge-row {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.job-pill-type {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: capitalize;
}

.job-pill-type.badge-fulltime { background-color: #d1fae5; color: #065f46; }
.job-pill-type.badge-remote { background-color: #ecfeff; color: #0891b2; }
.job-pill-type.badge-internship { background-color: #fef9c3; color: #713f12; }
.job-pill-type.badge-referral { background-color: #f1f5f9; color: #475569; }

.job-pill-loc {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.job-pill-loc i {
    width: 12px;
    height: 12px;
}

.job-details-brief {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 12px;
}

.brief-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.brief-item i {
    width: 14px;
    height: 14px;
}

.job-skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.skill-tag {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.job-referral-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #e0f2fe;
    border: 1px solid #bae6fd;
    color: #0369a1;
    border-radius: var(--border-radius-sm);
    padding: 10px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.job-referral-banner i {
    width: 14px;
    height: 14px;
}

.job-direct-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #64748b;
    border-radius: var(--border-radius-sm);
    padding: 10px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.job-direct-banner i {
    width: 14px;
    height: 14px;
}

.job-ctas {
    margin-top: auto;
}

/* Jobs Form Section */
.jobs-form-section {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 50px;
    box-shadow: var(--shadow-premium);
}

.jobs-form-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-align: center;
}

.jobs-form-section p.subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
    font-size: 1rem;
}

.jobs-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 30px;
}

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

.jobs-form-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.jobs-form-group input, .jobs-form-group select, .jobs-form-group textarea {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.jobs-form-group input:focus, .jobs-form-group select:focus, .jobs-form-group textarea:focus {
    border-color: var(--accent-blue);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.jobs-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Job Modal Styling */
.job-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.job-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.job-modal-content {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    max-width: 650px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: var(--shadow-phone);
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.job-modal.open .job-modal-content {
    transform: scale(1);
}

.job-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 4px;
    border-radius: 50%;
}

.job-modal-close:hover {
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.modal-header-job {
    margin-bottom: 24px;
    padding-right: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.modal-job-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.job-description-block {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.job-description-block h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

/* Responsiveness for Jobs */
@media (max-width: 1024px) {
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .jobs-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .jobs-hero h1 {
        font-size: 2.2rem;
    }

    .jobs-controls-card {
        padding: 20px;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .jobs-form-section {
        padding: 30px 20px;
    }

    .jobs-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .job-modal-content {
        padding: 24px;
    }
}

/* ==========================================
   CONTACT US PAGE STYLES
   ========================================== */

.contact-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--gradient-hero-bg);
    min-height: 100vh;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero {
    text-align: center;
    margin-bottom: 50px;
}

.contact-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.contact-hero p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.info-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

.info-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.info-card p.desc {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.method-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.method-icon {
    width: 44px;
    height: 44px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.method-icon i {
    width: 20px;
    height: 20px;
}

.method-item h4 {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.method-item p, .method-item a {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-decoration: none;
}

.method-item a:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.badge-independent-box {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background-color: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: var(--border-radius-sm);
    padding: 16px;
    margin-bottom: 30px;
}

.ind-icon {
    color: #d97706;
    margin-top: 2px;
}

.badge-independent-box p {
    font-size: 0.85rem;
    color: #92400e;
    line-height: 1.5;
}

.social-networks-box h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.social-links-row a {
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.social-links-row a:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(11, 59, 140, 0.2);
}

/* Contact Form Column */
.contact-form-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    box-shadow: var(--shadow-premium);
}

.contact-form-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.contact-form-card p.subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.form-group-single {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group-single label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.form-group-single input, .form-group-single select, .form-group-single textarea {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition-fast);
}

.form-group-single input:focus, .form-group-single select:focus, .form-group-single textarea:focus {
    border-color: var(--accent-blue);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group-single textarea {
    resize: vertical;
    min-height: 140px;
}

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

/* Responsiveness for Contact */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .info-card, .contact-form-card {
        padding: 30px 20px;
    }

    .form-grid-half {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ==========================================
   ALUMNI DIRECTORY PAGE STYLES
   ========================================== */

.alumni-page {
    padding-top: 120px;
    padding-bottom: 80px;
    background: var(--gradient-hero-bg);
    min-height: 100vh;
}

.alumni-container {
    max-width: 1200px;
    margin: 0 auto;
}

.alumni-hero {
    text-align: center;
    margin-bottom: 50px;
}

.alumni-hero h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.alumni-hero p {
    font-family: var(--font-body);
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Controls */
.alumni-controls-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.controls-search-row {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 20px;
}

.filter-dropdown-wrapper select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-dropdown-wrapper select:focus {
    border-color: var(--accent-blue);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.location-filters-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.loc-filter-label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.location-pills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.location-pill {
    background: none;
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.location-pill:hover {
    color: var(--text-dark);
    background-color: var(--bg-light);
    border-color: var(--text-muted);
}

.location-pill.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(11, 59, 140, 0.2);
}

/* Grid */
.alumni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Card */
.alumni-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.alumni-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-premium);
    border-color: rgba(11, 59, 140, 0.15);
}

.alumni-card-badge-verified {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    background-color: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
}

.alumni-card-badge-verified i {
    width: 10px;
    height: 10px;
}

.alumni-card-main-info {
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
}

.alumni-avatar-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--bg-white);
    margin: 0 auto 12px;
    box-shadow: var(--shadow-sm);
}

.alumni-card-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    font-family: var(--font-heading);
}

.alumni-card-credentials {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.alumni-card-role {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 8px;
}

.alumni-card-role strong {
    color: var(--text-dark);
    font-weight: 600;
}

.alumni-card-role span {
    color: var(--text-muted);
}

.alumni-card-loc {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.alumni-card-loc i {
    width: 12px;
    height: 12px;
}

.alumni-card-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    margin-bottom: 20px;
    border-top: 1px dashed var(--border-color);
    padding-top: 16px;
}

.alumni-card-actions {
    margin-top: auto;
}

/* Call to Action Banner */
.directory-join-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--border-radius-md);
    padding: 60px 40px;
    text-align: center;
    color: var(--bg-white);
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.directory-join-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 80%;
    height: 180%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
    transform: rotate(-15deg);
}

.join-banner-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.banner-badge i {
    width: 14px;
    height: 14px;
    color: #34d399;
}

.directory-join-banner h2 {
    font-size: 2.25rem;
    color: var(--bg-white);
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.directory-join-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 36px;
}

.banner-ctas {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Modal styling */
.alumni-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.alumni-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.alumni-modal-content {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    box-shadow: var(--shadow-phone);
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-normal);
}

.alumni-modal.open .alumni-modal-content {
    transform: scale(1);
}

.alumni-modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 4px;
    border-radius: 50%;
}

.alumni-modal-close:hover {
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.modal-profile-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

/* Responsiveness */
@media (max-width: 1024px) {
    .alumni-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .alumni-page {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .alumni-hero h1 {
        font-size: 2.2rem;
    }

    .alumni-controls-card {
        padding: 20px;
    }

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

    .alumni-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .directory-join-banner {
        padding: 40px 20px;
    }

    .directory-join-banner h2 {
        font-size: 1.8rem;
    }
    
    .alumni-modal-content {
        padding: 24px;
    }
}

/* ==========================================
   NEARBY MAP VIEW STYLES
   ========================================== */

/* Tab navigation */
.directory-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.dir-tab {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.dir-tab:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background-color: var(--bg-light);
}

.dir-tab.active {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-premium);
}

.dir-tab i {
    width: 16px;
    height: 16px;
}

/* Tab content visibility */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Map control card */
.map-controls-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px 30px;
    box-shadow: var(--shadow-premium);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.radius-control-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    max-width: 400px;
}

.radius-control-group label {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.radius-control-group input[type="range"] {
    width: 100%;
    accent-color: var(--accent-blue);
    cursor: pointer;
}

.center-location-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 8px;
}

.center-location-info i {
    width: 16px;
    height: 16px;
    color: var(--accent-blue);
}

/* Proximity Split Layout */
.nearby-split-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    margin-bottom: 60px;
    align-items: stretch;
}

/* Mock Map Canvas */
.mock-map-canvas-container {
    background-color: #0b1329;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    position: relative;
    overflow: hidden;
    min-height: 480px;
    box-shadow: var(--shadow-premium);
}

.mock-map-canvas {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* stylized dotted map design */
.map-grid-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.7;
}

/* User position center marker */
.user-position-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.user-position-marker .marker-dot {
    width: 36px;
    height: 36px;
    background-color: var(--accent-blue);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255,255,255,0.85);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.user-position-marker .marker-dot i {
    width: 16px;
    height: 16px;
}

.user-position-marker .pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: rgba(37, 99, 235, 0.15);
    border: 2px solid rgba(37, 99, 235, 0.3);
    animation: centerPulse 2.5s infinite ease-out;
    pointer-events: none;
}

.user-position-marker .marker-label {
    position: absolute;
    top: 42px;
    background-color: rgba(15, 23, 42, 0.85);
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

@keyframes centerPulse {
    0% {
        width: 40px;
        height: 40px;
        opacity: 0.8;
    }
    100% {
        width: 240px;
        height: 240px;
        opacity: 0;
    }
}

/* Alumni map pin markers */
.map-pulse-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 5;
    transition: var(--transition-fast);
}

.map-pulse-marker:hover {
    z-index: 15;
}

.map-pulse-marker .pin-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: var(--transition-fast);
}

.map-pulse-marker:hover .pin-dot {
    transform: scale(1.15);
    border-color: var(--accent-blue);
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.map-pulse-marker .pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    animation: pinPulse 2s infinite ease-out;
}

@keyframes pinPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* Tooltip on pin hover */
.map-pulse-marker .pin-tooltip {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 6px 12px;
    box-shadow: var(--shadow-phone);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    white-space: nowrap;
    z-index: 10;
}

.map-pulse-marker .pin-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--bg-white) transparent transparent;
}

.map-pulse-marker:hover .pin-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.map-pulse-marker .pin-tooltip strong {
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 700;
}

.map-pulse-marker .pin-tooltip span {
    font-size: 0.7rem;
    color: var(--accent-blue);
    font-weight: 600;
}

/* Proximity sidebar lists */
.nearby-sidebar {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px 24px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
}

.nearby-sidebar h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.nearby-sidebar p.sidebar-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.nearby-list {
    flex: 1;
    overflow-y: auto;
    max-height: 480px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-right: 4px;
}

.nearby-list::-webkit-scrollbar {
    width: 6px;
}
.nearby-list::-webkit-scrollbar-track {
    background: transparent;
}
.nearby-list::-webkit-scrollbar-thumb {
    background-color: var(--border-color);
    border-radius: 20px;
}

.nearby-alumni-item {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    transition: var(--transition-fast);
}

.nearby-alumni-item:hover {
    border-color: rgba(11, 59, 140, 0.15);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.nearby-item-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    position: relative;
    margin-bottom: 12px;
}

.nearby-item-avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--bg-white);
    flex-shrink: 0;
}

.nearby-item-info {
    flex: 1;
    padding-right: 50px;
}

.nearby-item-info h4 {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 2px;
    font-family: var(--font-heading);
}

.nearby-item-info p.role {
    font-size: 0.78rem;
    color: var(--text-dark);
    margin-bottom: 1px;
}

.nearby-item-info p.branch {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.nearby-distance {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-blue);
    background-color: #eff6ff;
    padding: 3px 8px;
    border-radius: 4px;
}

.nearby-item-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.nearby-item-actions .btn {
    padding: 6px 12px;
    font-size: 0.78rem;
    height: auto;
}

/* Responsiveness for Nearby Map */
@media (max-width: 992px) {
    .nearby-split-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mock-map-canvas-container {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .map-controls-card {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }
    
    .center-location-info {
        justify-content: center;
    }
}

/* ==========================================
   PLACEMENT IMPACT BANNER
   ========================================== */
.impact-banner-section {
    padding: 60px 0 20px;
    background-color: var(--bg-white);
}

.impact-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.impact-content {
    flex: 1;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}

.impact-badge i {
    width: 16px;
    height: 16px;
}

.impact-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.impact-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 650px;
}

.impact-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.impact-action .btn-white {
    background-color: var(--bg-white);
    color: var(--primary-dark);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.impact-action .btn-white:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.impact-action span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

@media (max-width: 768px) {
    .impact-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
    
    .impact-desc {
        max-width: 100%;
    }
}

/* ==========================================
   COMMUNITY GROWTH DASHBOARD & CHART
   ========================================== */
.growth-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

.growth-dashboard {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

.growth-metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.metric-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(11, 59, 140, 0.15);
}

.metric-card.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(11, 59, 140, 0.08);
    background-color: rgba(11, 59, 140, 0.01);
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.metric-icon-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.metric-change {
    font-size: 0.75rem;
    font-weight: 600;
    color: #2e7d32;
    background-color: rgba(46, 125, 50, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.metric-value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.growth-chart-container {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.chart-header h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.chart-legend {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.chart-body {
    position: relative;
    height: 320px;
    width: 100%;
}

@media (max-width: 1024px) {
    .growth-dashboard {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .growth-metrics-grid {
        grid-template-columns: 1fr;
    }
}








