/* ===== SIMAWA Frontend CSS - Universitas Aisyah Nurul Islami ===== */

:root {
    /* Warna Islami - Hijau & Emas */
    --primary: #0d6e3f;
    --primary-light: #15a05c;
    --primary-dark: #064d2b;
    --secondary: #c9a227;
    --secondary-light: #e6c04a;
    --accent: #1a8a5c;
    --accent-light: #2eb87a;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #0ea5e9;
    --dark: #0f1f17;
    --light: #f8faf9;
    --white: #ffffff;
    --gray-50: #f8faf9;
    --gray-100: #f1f5f3;
    --gray-200: #e2e8e4;
    --gray-300: #cbd5ce;
    --gray-400: #94a39a;
    --gray-500: #64756b;
    --gray-600: #475550;
    --gray-700: #334139;
    --gray-800: #1e2b24;
    --gray-900: #0f1f17;
    --gradient-1: linear-gradient(135deg, #0d6e3f 0%, #15a05c 100%);
    --gradient-2: linear-gradient(135deg, #0d6e3f 0%, #c9a227 100%);
    --gradient-3: linear-gradient(135deg, #1a8a5c 0%, #0d6e3f 100%);
    --gradient-hero: linear-gradient(135deg, #0a1f14 0%, #0d3d24 50%, #0f1f17 100%);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-glow: 0 0 40px rgba(13, 110, 63, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    background: var(--light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

/* ===== NAVBAR ===== */
.navbar-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13, 110, 63, 0.1);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar-main.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    color: var(--dark);
}

.brand-logo {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(13, 110, 63, 0.35);
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-logo { transform: rotate(-5deg) scale(1.05); }

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text .brand-name { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.brand-text .brand-univ { font-size: 0.7rem; font-weight: 600; color: var(--gray-500); letter-spacing: 0.5px; }

.nav-menu { display: flex; align-items: center; gap: 0.25rem; list-style: none; margin: 0; padding: 0; }

.nav-link {
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link:hover::before, .nav-link.active::before { width: 30px; }

.btn-nav-login {
    background: var(--gradient-1);
    color: white !important;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 8px 20px rgba(13, 110, 63, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-nav-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(13, 110, 63, 0.4);
    color: white !important;
}

.navbar-toggler { border: none; background: var(--gray-100); padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); }

/* ===== HERO SECTION ===== */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.5; }
.hero-shape-1 { width: 600px; height: 600px; background: rgba(13, 110, 63, 0.4); top: -200px; right: -100px; animation: pulse 8s ease-in-out infinite; }
.hero-shape-2 { width: 500px; height: 500px; background: rgba(201, 162, 39, 0.3); bottom: -150px; left: -100px; animation: pulse 10s ease-in-out infinite reverse; }
.hero-shape-3 { width: 400px; height: 400px; background: rgba(26, 138, 92, 0.25); top: 40%; left: 30%; animation: pulse 12s ease-in-out infinite; }

@keyframes pulse {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(20px, -20px); }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 10; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-badge i { color: var(--secondary-light); font-size: 1rem; }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #2eb87a 0%, #c9a227 50%, #e6c04a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.btn-hero-primary {
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: white;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    color: white;
}

.hero-visual { position: relative; z-index: 10; }
.hero-illustration { text-align: center; position: relative; }
.hero-main-icon { font-size: 14rem; color: rgba(255, 255, 255, 0.08); animation: float 6s ease-in-out infinite; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-2xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 5s ease-in-out infinite;
}

.floating-card.fc-1 { top: 15%; left: 0; animation-delay: 0s; }
.floating-card.fc-2 { bottom: 25%; right: 0; animation-delay: 1.5s; }
.floating-card.fc-3 { bottom: 5%; left: 15%; animation-delay: 3s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

.fc-icon { width: 50px; height: 50px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.fc-icon.green { background: rgba(13, 110, 63, 0.15); color: var(--primary); }
.fc-icon.gold { background: rgba(201, 162, 39, 0.15); color: var(--secondary); }
.fc-icon.teal { background: rgba(26, 138, 92, 0.15); color: var(--accent); }

.fc-text small { display: block; color: var(--gray-500); font-size: 0.75rem; font-weight: 500; }
.fc-text strong { color: var(--gray-800); font-size: 1.1rem; font-weight: 800; }


/* ===== STATS SECTION ===== */
.stats-section { margin-top: -70px; position: relative; z-index: 20; padding-bottom: 4rem; }

.stat-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-2xl), var(--shadow-glow); }
.stat-card:hover::after { transform: scaleX(1); }

.stat-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
    transition: transform 0.4s ease;
}

.stat-card:hover .stat-icon { transform: scale(1.15) rotate(5deg); }

.stat-icon.green { background: linear-gradient(135deg, rgba(13, 110, 63, 0.15), rgba(21, 160, 92, 0.15)); color: var(--primary); }
.stat-icon.gold { background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(230, 192, 74, 0.15)); color: var(--secondary); }
.stat-icon.teal { background: linear-gradient(135deg, rgba(26, 138, 92, 0.15), rgba(46, 184, 122, 0.15)); color: var(--accent); }
.stat-icon.success { background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(52, 211, 153, 0.15)); color: var(--success); }

.stat-value { font-size: 2.75rem; font-weight: 900; color: var(--gray-800); line-height: 1; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.stat-label { color: var(--gray-500); font-size: 0.9rem; font-weight: 600; }

/* ===== SECTION STYLES ===== */
.section { padding: 6rem 0; }
.section-light { background: white; }

.section-header { text-align: center; margin-bottom: 4rem; }

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(13, 110, 63, 0.1), rgba(201, 162, 39, 0.1));
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 900; color: var(--gray-800); margin-bottom: 1rem; letter-spacing: -0.02em; }
.section-subtitle { font-size: 1.125rem; color: var(--gray-500); max-width: 600px; margin: 0 auto; line-height: 1.8; }

/* ===== CARD STYLES ===== */
.card-modern {
    background: white;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.card-modern:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }

/* UKM Card */
.ukm-card { text-align: center; padding: 2.5rem 1.5rem; }

.ukm-logo {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-xl);
    object-fit: cover;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 35px rgba(13, 110, 63, 0.2);
    transition: all 0.4s ease;
}

.ukm-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 15px 35px rgba(13, 110, 63, 0.35);
    transition: all 0.4s ease;
}

.card-modern:hover .ukm-icon, .card-modern:hover .ukm-logo { transform: scale(1.1) rotate(-5deg); box-shadow: 0 20px 45px rgba(13, 110, 63, 0.4); }

.ukm-name { font-size: 1.25rem; font-weight: 800; color: var(--gray-800); margin-bottom: 0.25rem; }
.ukm-fullname { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1rem; min-height: 40px; }
.ukm-count { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gray-100); padding: 0.5rem 1rem; border-radius: 50px; color: var(--gray-600); font-size: 0.8rem; font-weight: 700; }

/* Kegiatan Card */
.kegiatan-card .card-img {
    height: 180px;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.kegiatan-card .card-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.kegiatan-card .card-body { padding: 1.5rem; }
.kegiatan-date { display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.8rem; color: var(--primary); font-weight: 700; margin-bottom: 0.75rem; }
.kegiatan-title { font-size: 1.1rem; font-weight: 800; color: var(--gray-800); margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.kegiatan-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.8rem; color: var(--gray-500); }
.kegiatan-meta span { display: flex; align-items: center; gap: 0.375rem; }

/* ===== BADGES ===== */
.badge-status { padding: 0.375rem 1rem; border-radius: 50px; font-weight: 700; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; }
.badge-direncanakan { background: rgba(13, 110, 63, 0.1); color: var(--primary); }
.badge-berlangsung { background: rgba(14, 165, 233, 0.1); color: var(--info); }
.badge-selesai { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.badge-dibatalkan { background: rgba(239, 68, 68, 0.1); color: var(--danger); }

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--gradient-hero);
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.page-header .hero-bg-shapes { opacity: 0.5; }
.page-header h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: white; margin-bottom: 0.75rem; position: relative; z-index: 10; }
.page-header .breadcrumb { margin-bottom: 0; position: relative; z-index: 10; }
.page-header .breadcrumb-item, .page-header .breadcrumb-item a { color: rgba(255, 255, 255, 0.7); font-size: 0.95rem; font-weight: 500; }
.page-header .breadcrumb-item a:hover { color: white; }
.page-header .breadcrumb-item.active { color: white; }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.4); }

/* ===== BUTTONS ===== */
.btn-primary-gradient {
    background: var(--gradient-1);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(13, 110, 63, 0.35);
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-gradient:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(13, 110, 63, 0.45); color: white; }

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-primary:hover { background: var(--primary); color: white; transform: translateY(-3px); box-shadow: 0 10px 25px rgba(13, 110, 63, 0.3); }

/* ===== FORMS ===== */
.form-control, .form-select {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(13, 110, 63, 0.1); }
.form-label { font-weight: 700; color: var(--gray-700); margin-bottom: 0.5rem; font-size: 0.9rem; }


/* ===== DETAIL CARD ===== */
.detail-card {
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.detail-header { background: var(--gradient-1); padding: 2.5rem; color: white; position: relative; }
.detail-body { padding: 2.5rem; }

.detail-info {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.detail-info:hover { background: var(--gray-100); transform: translateX(5px); }

.detail-info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(13, 110, 63, 0.1), rgba(201, 162, 39, 0.1));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-info-content small { display: block; color: var(--gray-500); font-size: 0.8rem; font-weight: 600; margin-bottom: 0.25rem; }
.detail-info-content strong { color: var(--gray-800); font-weight: 800; }

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 5rem 2rem; }

.empty-state-icon {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.empty-state-icon i { font-size: 4rem; color: var(--gray-400); }
.empty-state h5 { color: var(--gray-700); font-weight: 800; font-size: 1.25rem; margin-bottom: 0.5rem; }
.empty-state p { color: var(--gray-500); margin-bottom: 1.5rem; }

/* ===== ABOUT SECTION ===== */
.about-section { background: white; }

.about-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-image img { width: 100%; height: auto; }

.about-feature {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-feature-text h5 { font-weight: 800; color: var(--gray-800); margin-bottom: 0.25rem; }
.about-feature-text p { color: var(--gray-500); font-size: 0.9rem; margin: 0; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--gradient-hero);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section .hero-bg-shapes { opacity: 0.3; }

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, var(--gray-900) 0%, #000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
}

.footer-top { padding: 5rem 0 3rem; }

.footer .footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.footer .brand-logo { width: 48px; height: 48px; background: var(--gradient-1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; }
.footer .brand-text .brand-name { font-size: 1.1rem; font-weight: 800; color: white; }
.footer .brand-text .brand-univ { font-size: 0.7rem; font-weight: 600; color: var(--gray-400); }

.footer-desc { color: var(--gray-400); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 0.75rem; }

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-link:hover { background: var(--gradient-1); border-color: transparent; color: white; transform: translateY(-4px); }

.footer-title { font-size: 1rem; font-weight: 800; color: white; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.875rem; }
.footer-links a { color: var(--gray-400); font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; }
.footer-links a i { font-size: 0.7rem; transition: transform 0.3s ease; }
.footer-links a:hover { color: white; padding-left: 8px; }
.footer-links a:hover i { transform: translateX(4px); }

.footer-contact { list-style: none; padding: 0; margin: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; color: var(--gray-400); font-size: 0.95rem; }

.contact-icon {
    width: 42px;
    height: 42px;
    background: rgba(13, 110, 63, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    flex-shrink: 0;
}

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding: 1.5rem 0; font-size: 0.9rem; color: var(--gray-500); }

/* ===== FILTER SECTION ===== */
.filter-section {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .hero-section { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: 2.25rem; }
    .floating-card { display: none; }
    .stats-section { margin-top: -50px; }
    .section { padding: 4rem 0; }
    .page-header { padding: 8rem 0 4rem; }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem;
        border-radius: 0 0 var(--radius-xl) var(--radius-xl);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu { flex-direction: column; align-items: stretch; }
    .nav-link { justify-content: center; }
    .btn-nav-login { justify-content: center; margin-top: 0.5rem; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { width: 100%; justify-content: center; }
    .section { padding: 3rem 0; }
    .section-title { font-size: 1.75rem; }
    .stat-card { padding: 1.5rem; }
    .stat-value { font-size: 2rem; }
    .footer-top { padding: 3rem 0 2rem; }
    .detail-body { padding: 1.5rem; }
    .detail-header { padding: 1.5rem; }
}

/* ===== ISLAMIC PATTERN DECORATION ===== */
.islamic-pattern {
    position: absolute;
    width: 200px;
    height: 200px;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='%23ffffff' d='M50 0L61.8 38.2L100 50L61.8 61.8L50 100L38.2 61.8L0 50L38.2 38.2Z'/%3E%3C/svg%3E");
    background-size: 50px 50px;
}

.islamic-pattern.top-right { top: 0; right: 0; }
.islamic-pattern.bottom-left { bottom: 0; left: 0; }
