/* =============================================
   PersonifID - Main Stylesheet
   Brand: Navy Blue #1A3A8F | Orange #F7941D
   ============================================= */

:root {
    --primary: #1A3A8F;
    --primary-dark: #0F2460;
    --primary-light: #2d55c5;
    --accent: #F7941D;
    --accent-dark: #d97a0a;
    --accent-light: #ffa93d;
    --white: #ffffff;
    --light-bg: #F5F7FF;
    --light-bg2: #FFF8F0;
    --text-dark: #1a1a2e;
    --text-mid: #4a5568;
    --text-light: #718096;
    --border: #e2e8f0;
    --shadow-sm: 0 2px 15px rgba(26,58,143,0.08);
    --shadow-md: 0 8px 30px rgba(26,58,143,0.12);
    --shadow-lg: 0 20px 60px rgba(26,58,143,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.35s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

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

img { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ===== NAVBAR ===== */
#mainNavbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(26,58,143,0.08);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

#mainNavbar.scrolled {
    padding: 6px 0;
    border-bottom-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    transition: var(--transition);
    /* Logo has black background - show as-is but we add our own bg workaround */
}

.navbar-brand {
       background: #fbf9f8;
    border-radius: 8px;
    padding: 4px 8px !important;
}

.navbar-brand:hover img { opacity: 0.85; }

.nav-link {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active { color: var(--primary) !important; }

.btn-login {
    background: var(--accent);
    color: var(--white) !important;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    padding: 10px 24px !important;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(247,148,29,0.4);
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--accent-dark);
    box-shadow: 0 6px 20px rgba(247,148,29,0.55);
    transform: translateY(-2px);
    color: var(--white) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;

    /* Background photo */
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/* Layer 1: dark navy + orange tint overlay on top of photo */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(15, 36, 96, 0.88) 0%,
            rgba(26, 58, 143, 0.80) 50%,
            rgba(45, 85, 197, 0.72) 100%
        ),
        radial-gradient(ellipse at 20% 60%, rgba(247,148,29,0.18) 0%, transparent 55%);
    z-index: 1;
}

/* Ensure all direct children sit above the overlay */
.hero-section > * {
    position: relative;
    z-index: 2;
}

/* Floating shapes background */
.hero-shapes {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.hero-shapes span {
    position: absolute;
    border-radius: 50%;
    background: rgba(247,148,29,0.12);
    animation: floatShape linear infinite;
}

.hero-shapes span:nth-child(1) { width: 80px; height: 80px; top: 15%; left: 10%; animation-duration: 12s; animation-delay: 0s; }
.hero-shapes span:nth-child(2) { width: 50px; height: 50px; top: 60%; left: 5%; animation-duration: 16s; animation-delay: 2s; }
.hero-shapes span:nth-child(3) { width: 120px; height: 120px; top: 30%; right: 8%; animation-duration: 10s; animation-delay: 1s; background: rgba(255,255,255,0.05); }
.hero-shapes span:nth-child(4) { width: 40px; height: 40px; top: 70%; right: 15%; animation-duration: 14s; animation-delay: 3s; }
.hero-shapes span:nth-child(5) { width: 200px; height: 200px; bottom: -50px; left: 40%; animation-duration: 20s; animation-delay: 0.5s; background: rgba(247,148,29,0.06); }

@keyframes floatShape {
    0% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(247,148,29,0.2);
    border: 1px solid rgba(247,148,29,0.4);
    color: var(--accent-light);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-badge .dot {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--accent);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 36px;
}

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

.btn-primary-custom {
    background: var(--accent);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 1rem;
    box-shadow: 0 6px 25px rgba(247,148,29,0.45);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(247,148,29,0.55);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    padding: 13px 36px;
    border-radius: 50px;
    font-size: 1rem;
    border: 2px solid rgba(255,255,255,0.5);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-custom:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.hero-stat-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.stat-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: white;
    animation: slideInRight 0.6s ease forwards;
}

.stat-card:nth-child(2) { animation-delay: 0.15s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.stat-card-icon {
    width: 44px; height: 44px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.stat-card-text strong {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
}

.stat-card-text span {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* ===== SECTION TITLES ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 24px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title span { color: var(--primary); }

.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 650px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-img-wrapper {
    position: relative;
}

.about-main-img {
    border-radius: var(--radius-lg);
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about-badge-float .num {
    font-family: 'Nunito', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    display: block;
    line-height: 1;
}

.about-badge-float .lbl {
    font-size: 0.78rem;
    opacity: 0.85;
}

/* About illustrative graphic */
.about-graphic {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-lg);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.about-graphic-inner {
    text-align: center;
    color: white;
    padding: 30px;
}

.about-graphic-icon {
    font-size: 4rem;
    opacity: 0.9;
    margin-bottom: 16px;
    animation: bounce 2s ease-in-out infinite;
}

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

.about-check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.about-check-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-mid);
    font-size: 0.95rem;
}

.about-check-list li .check-icon {
    width: 22px; height: 22px;
    background: rgba(247,148,29,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* ===== FEATURES / CARDS SECTION ===== */
.features-section {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--primary));
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    height: 100%;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

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

.feature-icon-box {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 22px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.fi-blue  { background: rgba(26,58,143,0.1); color: var(--primary); }
.fi-orange { background: rgba(247,148,29,0.1); color: var(--accent); }
.fi-green  { background: rgba(16,185,129,0.1); color: #10b981; }
.fi-purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }
.fi-teal   { background: rgba(20,184,166,0.1); color: #14b8a6; }
.fi-red    { background: rgba(239,68,68,0.1);  color: #ef4444; }
.fi-sky    { background: rgba(14,165,233,0.1); color: #0ea5e9; }
.fi-pink   { background: rgba(236,72,153,0.1); color: #ec4899; }

.feature-card h4 {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.93rem;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

/* ===== CTA BANNER ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(247,148,29,0.2) 0%, transparent 65%);
}

.cta-section .cta-inner { position: relative; z-index: 2; }

.cta-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: white;
}

.cta-section h2 span { color: var(--accent); }

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

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: var(--white);
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
}

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number .plus { color: var(--accent); }

.stat-label {
    font-size: 0.95rem;
    color: var(--text-mid);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
}

/* ===== HOW IT WORKS ===== */
.how-section {
    padding: 100px 0;
    background: var(--light-bg2);
}

.step-card {
    text-align: center;
    padding: 20px;
    position: relative;
}

.step-number {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(26,58,143,0.3);
    position: relative;
    z-index: 2;
}

.step-arrow {
    position: absolute;
    top: 35px;
    right: -25px;
    font-size: 1.5rem;
    color: var(--accent);
    z-index: 1;
}

.step-card h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: white;
}

.contact-hero h1 { color: white; }
.contact-hero p { color: rgba(255,255,255,0.8); }

.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-info-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    color: white;
    height: 100%;
}

.contact-info-card h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: rgba(255,255,255,0.75);
    margin-bottom: 32px;
}

.c-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.c-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.c-info-icon {
    width: 44px; height: 44px;
    background: rgba(247,148,29,0.2);
    border: 1px solid rgba(247,148,29,0.3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.c-info-text strong { display: block; font-weight: 600; color: rgba(255,255,255,0.95); }
.c-info-text a { color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.c-info-text a:hover { color: var(--accent-light); }

.contact-form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    height: 100%;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.contact-form-card .sub {
    color: var(--text-mid);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-control, .form-select {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.93rem;
    transition: var(--transition);
    background: #fafbff;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,58,143,0.08);
    background: white;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1rem;
    border: none;
    box-shadow: 0 6px 20px rgba(26,58,143,0.3);
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(26,58,143,0.4);
    color: white;
}

.btn-submit:disabled {
    opacity: 0.7;
    transform: none;
}

/* Alert styles */
.alert-success-custom {
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 10px;
    padding: 16px 20px;
    color: #065f46;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.alert-error-custom {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 10px;
    padding: 16px 20px;
    color: #7f1d1d;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(247,148,29,0.15) 0%, transparent 60%);
}

.page-hero .inner { position: relative; z-index: 2; }

.page-hero h1 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.breadcrumb-custom a { color: rgba(255,255,255,0.8); }
.breadcrumb-custom a:hover { color: var(--accent); }
.breadcrumb-custom .sep { color: rgba(255,255,255,0.4); }
.breadcrumb-custom .current { color: var(--accent); }

/* ===== FEATURES PAGE ===== */
.features-page-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.feature-big-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
    height: 100%;
}

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

.feature-big-card-header {
    padding: 28px 28px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.feature-big-card-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
}

.feature-big-card-header .icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.feature-big-card-header h3 {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

.feature-big-card-body {
    padding: 24px 28px 28px;
}

.feature-big-card-body p {
    color: var(--text-mid);
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0;
}

/* ===== ADMIN PAGE ===== */
.admin-section {
    padding: 40px 0;
    min-height: 100vh;
    background: #f1f5f9;
}

.admin-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 20px 30px;
    border-radius: var(--radius);
    color: white;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-table-wrap {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.admin-table-wrap table thead {
    background: var(--primary);
    color: white;
}

.admin-table-wrap table thead th {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    padding: 14px 16px;
    border: none;
}

.admin-table-wrap table tbody td {
    padding: 12px 16px;
    vertical-align: middle;
    font-size: 0.9rem;
    border-color: var(--border);
}

.admin-table-wrap table tbody tr:hover { background: var(--light-bg); }

/* ===== LOGIN PAGE ===== */
.login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(247,148,29,0.15) 0%, transparent 60%);
}

.login-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 50px 44px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--text-dark);
}

.footer-top {
    padding: 70px 0 50px;
}

.footer-logo { /* no filter — show actual logo colors */ }

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    line-height: 1.65;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 0.85rem;
}

.footer-social a:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.footer-contact-info {
    list-style: none;
    padding: 0; margin: 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
}

.footer-contact-info li i {
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-info a {
    color: rgba(255,255,255,0.55);
}

.footer-contact-info a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}

.footer-bottom p {
    color: rgba(255,255,255,0.45);
    font-size: 0.85rem;
}

.footer-tagline { color: var(--accent) !important; font-weight: 500; }

/* ===== UTILITIES ===== */
.section-padding { padding: 100px 0; }
.bg-light-custom { background: var(--light-bg); }
.text-accent { color: var(--accent); }
.text-primary-custom { color: var(--primary); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 12px;
        box-shadow: var(--shadow-md);
    }
    .hero-section { padding-top: 100px; padding-bottom: 60px; }
    .hero-visual { margin-top: 50px; }
    .about-badge-float { right: 10px; bottom: 10px; }
    .about-graphic { height: 280px; }
    .step-arrow { display: none; }
    .login-card { padding: 36px 24px; }
}

@media (max-width: 575.98px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn-primary-custom,
    .hero-cta .btn-outline-custom { text-align: center; justify-content: center; }
    .contact-form-card { padding: 28px 20px; }
    .contact-info-card { padding: 28px 20px; }
}

/* Loading spinner */
.spinner-border-sm { width: 1rem; height: 1rem; border-width: 2px; }

/* Navbar mobile toggler */
.navbar-toggler { border: 2px solid var(--primary); border-radius: 8px; }
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(26,58,143,0.15); }