.home-page {
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 50%, #e0f2fe 100%);
    min-height: 100vh;
}

.home-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
}

/* SamDU Branding Section */
.home-branding {
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 4rem 2rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.home-branding::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.home-branding:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.home-branding h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0 1.2rem;
    font-weight: 900;
    letter-spacing: -0.8px;
    position: relative;
    z-index: 1;
}

.home-branding p {
    color: #4a5568;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.university-tag {
    display: inline-block;
    background: #f0fdf4;
    color: #10b981;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid #dcfce7;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-3px); }
}

/* Hero Section */
.home-hero {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 3.5rem 3rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.home-hero-content {
    position: relative;
    z-index: 1;
}

.home-hero h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 1rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.home-hero p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.home-hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.home-hero-actions .btn {
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
}

/* Stats Cards */
.home-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

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

.stat-card strong {
    display: block;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-card span {
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: capitalize;
}

/* Quick Nav */
.home-section {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
    transition: var(--transition);
}

.home-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #1a202c;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.quick-nav-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.quick-nav-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-nav-card:hover {
    background: #ffffff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.12);
}

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

.quick-nav-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 10px;
    display: grid;
    place-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    color: var(--primary);
    flex-shrink: 0;
}

.quick-nav-card:hover .quick-nav-icon {
    background: #f0fdf4;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.quick-nav-info {
    flex: 1;
}

.quick-nav-info h3 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 0.25rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.quick-nav-info p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .home-stats { grid-template-columns: repeat(2, 1fr); }
    .home-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 2rem;
    }
    .home-hero h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .home-main { gap: 1.2rem; padding-top: 1.5rem; }
    .home-stats { grid-template-columns: 1fr; }
    .quick-nav-grid { grid-template-columns: 1fr; }
    .home-branding { padding: 1.5rem; }
    .home-branding h1 { font-size: 1.75rem; margin-bottom: 0.75rem; }
    .home-branding p { font-size: 1rem; }
    .home-section { padding: 1.5rem; }
    .quick-nav-card { padding: 1.25rem; gap: 1rem; }
    .quick-nav-icon { width: 50px; height: 50px; font-size: 1.5rem; }
    .quick-nav-info h3 { font-size: 1rem; }
    .stat-card { padding: 1.5rem 1rem; }
    .stat-card strong { font-size: 1.75rem; }
}
