@import url('https://cdn.jsdelivr.net/npm/@fontsource/inter@5.0.19/index.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/poppins@5.0.19/index.css');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background: #f0f2f5;
    color: #2d3436;
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.65) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.15); /* Biru Dongker Shadow */
    padding: 0 40px;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #B91C1C 100%); /* Navy to Red */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4), inset 0 -2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 50%;
    bottom: 50%;
    background: rgba(255,255,255,0.3);
    border-radius: 8px 8px 50% 50%;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
    position: relative;
    z-index: 1;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1E3A8A 0%, #7F1D1D 100%); /* Navy to Maroon */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #4a4a6a;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%);
    color: #1E3A8A;
}

.nav-menu .btn-login {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.35), inset 0 -2px 3px rgba(0,0,0,0.1);
    margin-left: 8px;
}

.nav-menu .btn-login:hover {
    background: linear-gradient(135deg, #172554 0%, #2563EB 100%);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5), inset 0 -2px 3px rgba(0,0,0,0.15);
    transform: translateY(-2px);
    color: #fff;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(160deg, #dfe6e9 0%, #b8c6db 20%, #3B82F6 50%, #1E3A8A 80%, #172554 100%);
    overflow: hidden;
    padding-top: 72px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(185, 28, 28, 0.35) 0%, transparent 70%); /* Red glow */
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(185, 28, 28, 0.2);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%); /* Blue glow */
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(59, 130, 246, 0.15);
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(1px);
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 8%;
    background: linear-gradient(135deg, #B91C1C, #7F1D1D); /* Spidey Red/Maroon */
    box-shadow: 0 10px 40px rgba(185, 28, 28, 0.3);
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 25%;
    right: 15%;
    background: linear-gradient(135deg, #F87171, #DC2626); /* Lighter Red */
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.3);
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 8%;
    background: linear-gradient(135deg, #93C5FD, #2563EB); /* Spider Web Blue */
    box-shadow: 0 12px 45px rgba(147, 197, 253, 0.3);
}

.shape-4 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 12%;
    background: linear-gradient(135deg, #94A3B8, #475569); /* Silver/Grey */
    box-shadow: 0 6px 25px rgba(148, 163, 184, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 30px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.15);
    letter-spacing: -1px;
}

.hero-title span {
    background: linear-gradient(135deg, #3B82F6 0%, #B91C1C 100%); /* Blue to Red */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 16px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    color: #1E3A8A; /* Dongker text */
    box-shadow: 0 8px 30px rgba(0,0,0,0.15), inset 0 -3px 5px rgba(30, 58, 138, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2), inset 0 -3px 5px rgba(30, 58, 138, 0.15);
}

.btn-secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    z-index: 5;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(160deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.08), inset 0 -3px 6px rgba(0,0,0,0.03);
    border: 1px solid rgba(30, 58, 138, 0.06);
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1E3A8A 0%, #7F1D1D 100%); /* Dongker to Maroon */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #636e8a;
    font-weight: 600;
    margin-top: 6px;
}

/* ===== PROFILE SECTION ===== */
.profile-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #fff 0%, #f0f2f5 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    color: #1E3A8A;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title span {
    background: linear-gradient(135deg, #1E3A8A 0%, #7F1D1D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.05rem;
    color: #636e8a;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.profile-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.profile-card {
    background: linear-gradient(160deg, #fff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(30, 58, 138, 0.08), inset 0 -4px 8px rgba(0,0,0,0.03);
    border: 1px solid rgba(30, 58, 138, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A, #3B82F6, #B91C1C); /* Navy - Blue - Red */
    border-radius: 24px 24px 0 0;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15), inset 0 -4px 8px rgba(0,0,0,0.03);
}

.card-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12), inset 0 -3px 5px rgba(0,0,0,0.08);
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 40%;
    bottom: 40%;
    background: rgba(255,255,255,0.25);
    border-radius: 14px 14px 40% 40%;
}

/* Catatan: Class di HTML tetap icon-purple dll, tapi warna diubah sesuai tema */
.icon-purple {
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%); /* Menjadi Navy */
}

.icon-pink {
    background: linear-gradient(135deg, #7F1D1D 0%, #B91C1C 100%); /* Menjadi Maroon/Red */
}

.icon-teal {
    background: linear-gradient(135deg, #475569 0%, #94A3B8 100%); /* Menjadi Web Silver */
}

.card-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
    position: relative;
    z-index: 1;
}

.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.95rem;
    color: #636e8a;
    line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 40px;
    background: linear-gradient(160deg, #1E3A8A 0%, #3B82F6 40%, #7F1D1D 100%); /* Navy - Blue - Maroon */
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.about-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-text .about-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-text p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-image {
    position: relative;
}

.about-card-visual {
    background: linear-gradient(160deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), inset 0 -4px 10px rgba(0,0,0,0.05);
}

.visual-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.15);
}

.visual-item:last-child {
    margin-bottom: 0;
}

.visual-dot {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    flex-shrink: 0;
}

.dot-1 { background: linear-gradient(135deg, #F87171, #DC2626); box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4); }
.dot-2 { background: linear-gradient(135deg, #93C5FD, #2563EB); box-shadow: 0 4px 12px rgba(147, 197, 253, 0.4); }
.dot-3 { background: linear-gradient(135deg, #94A3B8, #475569); box-shadow: 0 4px 12px rgba(148, 163, 184, 0.4); }
.dot-4 { background: linear-gradient(135deg, #B91C1C, #7F1D1D); box-shadow: 0 4px 12px rgba(185, 28, 28, 0.4); }

.visual-info h4 {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.visual-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #f0f2f5 0%, #fff 100%);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    padding: 40px;
    background: linear-gradient(160deg, #1E3A8A 0%, #3B82F6 50%, #7F1D1D 100%);
    border-radius: 28px;
    box-shadow: 0 15px 50px rgba(30, 58, 138, 0.25), inset 0 -4px 10px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.contact-info > p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.contact-detail h4 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.contact-detail p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.contact-form-card {
    background: linear-gradient(160deg, #fff 0%, #f8f9fa 100%);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06), inset 0 -4px 8px rgba(0,0,0,0.02);
    border: 1px solid rgba(30, 58, 138, 0.06);
}

.contact-form-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #4a4a6a;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8e8f0;
    border-radius: 14px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #2d3436;
    background: #f8f9fa;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #3B82F6;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3), inset 0 -3px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.4), inset 0 -3px 5px rgba(0,0,0,0.15);
}

/* ===== LOGIN SECTION ===== */
.login-section {
    padding: 100px 40px;
    background: linear-gradient(160deg, #f0f2f5 0%, #dfe6e9 50%, #b8c6db 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    max-width: 480px;
    width: 100%;
}

.login-card {
    background: linear-gradient(160deg, #fff 0%, #f8f9fa 100%);
    border-radius: 32px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.12), inset 0 -5px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(30, 58, 138, 0.06);
    position: relative;
    overflow: hidden;
}

.login-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1E3A8A, #3B82F6, #B91C1C, #7F1D1D); /* Dongker and Maroon */
}

.login-header {
    text-align: center;
    margin-bottom: 36px;
}

.login-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1E3A8A 0%, #3B82F6 50%, #B91C1C 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.35), inset 0 -4px 6px rgba(0,0,0,0.1);
    position: relative;
}

.login-avatar::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    right: 45%;
    bottom: 45%;
    background: rgba(255,255,255,0.25);
    border-radius: 18px 18px 40% 40%;
}

.login-avatar svg {
    width: 36px;
    height: 36px;
    fill: #fff;
    position: relative;
    z-index: 1;
}

.login-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 8px;
}

.login-header p {
    color: #636e8a;
    font-size: 0.9rem;
}

.form-row {
    display: flex;
    gap: 12px;
}

.form-row .form-group {
    flex: 1;
}

.login-extras {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #636e8a;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1E3A8A;
    cursor: pointer;
}

.forgot-link {
    font-size: 0.85rem;
    color: #1E3A8A;
    font-weight: 600;
    text-decoration: none;
}

.forgot-link:hover {
    text-decoration: underline;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
}

.login-divider::before,
.login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e8, transparent);
}

.login-divider span {
    font-size: 0.8rem;
    color: #a0a0b0;
    font-weight: 600;
}

.social-login {
    display: flex;
    gap: 12px;
}

.social-btn {
    flex: 1;
    padding: 14px;
    border: 2px solid #e8e8f0;
    border-radius: 14px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4a4a6a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    border-color: #3B82F6;
    background: #fff;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.login-footer {
    text-align: center;
    margin-top: 28px;
    font-size: 0.9rem;
    color: #636e8a;
}

.login-footer a {
    color: #1E3A8A;
    font-weight: 700;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(160deg, #2d3436 0%, #1e272e 100%);
    padding: 60px 40px 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1E3A8A, #3B82F6, #B91C1C, #7F1D1D, #2563EB, #93C5FD);
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 1.3rem;
    margin-bottom: 14px;
    display: block;
}

.footer-brand p {
    color: rgba(8, 6, 6, 0.5);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    color: #0a0505;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    color: rgba(12, 8, 8, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: #3B82F6;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(11, 9, 9, 0.35);
    font-size: 0.82rem;
}

.footer-bottom p a {
    color: #3B82F6;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .navbar { padding: 0 20px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-grid { grid-template-columns: 1fr; max-width: 500px; }
    .about-content { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .navbar-inner { flex-direction: column; height: auto; padding: 12px 0; gap: 8px; }
    .nav-menu { flex-wrap: wrap; justify-content: center; }
    .nav-menu .btn-login { margin-left: 0; }
    .hero { padding-top: 120px; }
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.8rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-item { padding: 20px 14px; }
    .stat-number { font-size: 1.8rem; }
    .contact-section { padding: 60px 20px; }
    .login-section { padding: 60px 20px; }
    .login-card { padding: 36px 24px; }
    .footer-content { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.7rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .form-row { flex-direction: column; }
    .social-login { flex-direction: column; }
}