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

:root {
    --primary: #d40000;
    --primary-dark: #a30000;
    --secondary: #f6d32d;
    --secondary-dark: #dbb81a;
    --dark: #1a1a1a;
    --dark-2: #2d2d2d;
    --gray: #6b7280;
    --gray-light: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans Odia', 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--primary);
    color: var(--white);
    font-size: 13px;
    padding: 6px 0;
}

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

.top-bar a {
    color: var(--white);
    margin-left: 12px;
}

.top-bar a:hover {
    color: var(--secondary);
}

.top-bar-social a {
    font-size: 15px;
}

.top-bar a.active-lang {
    color: var(--secondary);
    font-weight: 800;
    text-decoration: underline;
}

/* ===== HEADER / NAVBAR ===== */
.header-main {
    background: var(--secondary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

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

.logo-area img,
.logo-area svg {
    width: 52px;
    height: 52px;
}

.logo-text h1 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-text p {
    font-size: 12px;
    color: var(--dark-2);
    font-weight: 500;
    letter-spacing: 1px;
}

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

.nav-menu a {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary);
    color: var(--white);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 60%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(246,211,45,0.05)" stroke-width="0.5"/></svg>') repeat;
    background-size: 120px;
    animation: floatBg 20s linear infinite;
}

@keyframes floatBg {
    to {
        background-position: 120px 120px;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(246, 211, 45, 0.15);
    border: 1px solid rgba(246, 211, 45, 0.3);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--secondary);
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease;
}

.hero h2 {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease;
}

.hero h2 span {
    color: var(--white);
}

.hero p {
    font-size: clamp(16px, 2.5vw, 20px);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease;
}

.hero-tagline {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: inherit;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(246, 211, 45, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--gray-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-title p {
    color: var(--gray);
    font-size: 16px;
    margin-top: 16px;
}

/* ===== FOCUS AREAS ===== */
.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.focus-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid transparent;
}

.focus-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary);
}

.focus-card .icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: linear-gradient(135deg, var(--secondary), #ffe066);
    color: var(--dark);
}

.focus-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.focus-card p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--primary);
}

.about-content p {
    color: var(--gray);
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 24px;
}

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

.stat-item .num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
}

.stat-item .label {
    font-size: 13px;
    color: var(--gray);
}

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

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

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(212, 0, 0, 0.2), transparent);
}

/* ===== LEADERS ===== */
.leaders-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 24px !important;
}

.leader-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex: 0 1 340px !important;
    max-width: 340px !important;
    width: 100% !important;
}

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

.leader-photo {
    height: 320px !important;
    width: 100% !important;
    background: linear-gradient(135deg, var(--gray-light), #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: var(--gray);
    position: relative;
    overflow: hidden;
}

.leader-photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
}

.leader-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
}

.leader-info {
    padding: 20px;
    text-align: center;
}

.leader-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.leader-info .designation {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    display: inline-block;
    background: rgba(212, 0, 0, 0.08);
    padding: 3px 12px;
    border-radius: 50px;
    margin-bottom: 8px;
}

.leader-info p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* ===== NEWS ===== */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.news-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 40px;
}

.news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-body {
    padding: 24px;
}

.news-body .date {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-body h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-body p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
}

.news-body .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
}

.news-body .read-more:hover {
    color: var(--primary-dark);
}

/* ===== MEMBERSHIP FORM ===== */
.form-section {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group label .req {
    color: var(--primary);
}

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(212, 0, 0, 0.08);
}

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

.form-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
}

.contact-info-card .ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 14px;
    color: var(--gray);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 240px;
    cursor: pointer;
}

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

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

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* ===== FACEBOOK FEED (MODERN REDESIGN) ===== */
.facebook-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    position: relative;
    overflow: hidden;
}
.facebook-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(24, 119, 242, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}
.fb-layout-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.social-connect-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}
.badge-stay-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}
.social-connect-card h2 {
    font-size: 32px;
    color: var(--dark);
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 1.2;
}
.social-connect-card .subtitle-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 24px;
}
.page-profile-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}
.profile-avatar-wrapper {
    position: relative;
}
.avatar-placeholder {
    width: 48px;
    height: 48px;
    background: #1877F2;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(24, 119, 242, 0.3);
}
.profile-details h4 {
    margin: 0 0 2px 0;
    font-size: 16px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 6px;
}
.verified-icon {
    color: #1877F2;
    font-size: 14px;
}
.profile-details p {
    margin: 0;
    font-size: 13px;
    color: var(--gray);
}
.connect-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
}
.social-channels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}
.social-channel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white) !important;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}
.social-channel-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}
.social-channel-btn.fb { background: #1877F2; }
.social-channel-btn.fb:hover { background: #1565c0; }
.social-channel-btn.twitter { background: #000000; }
.social-channel-btn.twitter:hover { background: #1c1c1c; }
.social-channel-btn.youtube { background: #ff0000; }
.social-channel-btn.youtube:hover { background: #d32f2f; }
.social-channel-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-channel-btn.instagram:hover { filter: brightness(1.08); }

.action-btn-wrapper {
    border-top: 1px solid #f1f5f9;
    padding-top: 24px;
}
.btn-modern-follow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: #1877F2;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.25);
    transition: var(--transition);
}
.btn-modern-follow:hover {
    background: #0d5cb9;
    box-shadow: 0 10px 25px rgba(24, 119, 242, 0.4);
    transform: translateY(-2px);
    color: var(--white);
}

/* Feed Mockup Styling */
.feed-mockup-wrapper {
    display: flex;
    justify-content: center;
}
.window-mockup {
    width: 100%;
    max-width: 450px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}
.window-header {
    height: 44px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 8px;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
}
.window-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}
.window-dot.red { background: #ef4444; }
.window-dot.yellow { background: #f59e0b; }
.window-dot.green { background: #10b981; }
.window-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #64748b;
    font-family: monospace;
    font-weight: 600;
}
.window-body {
    background: #f8fafc;
    display: flex;
    justify-content: center;
}
.window-body iframe {
    display: block;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-banner p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
}

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

.footer h3 {
    color: var(--secondary);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

.footer ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer ul li a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

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

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

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.page-header p {
    opacity: 0.8;
    font-size: 16px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 12px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--secondary);
}

/* ===== ALERTS ===== */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 32px;
    cursor: pointer;
    background: none;
    border: none;
}

/* ===== TABLE ===== */
.data-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.data-table th {
    background: var(--primary);
    color: var(--white);
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    text-align: left;
}

.data-table td {
    padding: 12px 16px;
    font-size: 14px;
    border-bottom: 1px solid #f3f4f6;
}

.data-table tr:hover td {
    background: var(--gray-light);
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.badge-pending {
    background: #fef3c7;
    color: #92400e;
}

.badge-approved {
    background: #d1fae5;
    color: #065f46;
}

.badge-rejected {
    background: #fee2e2;
    color: #991b1b;
}

/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 30px;
}

.pagination a,
.pagination span {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    border: 1px solid #e5e7eb;
}

.pagination .current {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width:992px) {
    .fb-layout-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .social-connect-card {
        padding: 30px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width:768px) {
    .social-connect-card h2 {
        font-size: 26px;
    }
    .social-channels-grid {
        grid-template-columns: 1fr;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        padding: 80px 24px 24px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1000;
    }

    .hero {
        padding: 60px 0 50px;
    }

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

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

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

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .about-stats {
        flex-wrap: wrap;
    }
}

@media (max-width:480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}