/* =========================================
   RESIZERIMAGE.ORG - ENTERPRISE THEME
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Colors - Psychology based */
    --brand-primary: #2563EB;       /* Trust Blue */
    --brand-dark: #0F172A;          /* Authority Navy */
    --brand-accent: #4F46E5;        /* Creative Indigo */
    --brand-success: #10B981;
    
    /* Surfaces */
    --surface-bg: #F8FAFC;
    --surface-card: #FFFFFF;
    
    /* Typography */
    --font-head: 'Outfit', sans-serif; /* Modern, Bold */
    --font-body: 'Plus Jakarta Sans', sans-serif; /* Readable */
}

body {
    background-color: var(--surface-bg);
    font-family: var(--font-body);
    color: #334155;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); color: var(--brand-dark); }

/* --- 1. SUPERIOR NAVBAR --- */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #E2E8F0;
    padding: 16px 0;
    box-shadow: 0 4px 25px -5px rgba(0,0,0,0.03);
}

/* The Logo - Brain Imprint Logic */
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #2563EB, #4F46E5);
    color: white; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.2);
}
.logo-text { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; letter-spacing: -0.5px; color: #1E293B; }
.logo-highlight { color: #2563EB; position: relative; }
.logo-highlight::after {
    content: ''; position: absolute; bottom: 2px; left: 0; width: 100%; height: 6px;
    background: rgba(37, 99, 235, 0.1); z-index: -1; transform: skewX(-10deg);
}
.logo-domain {
    font-size: 0.75rem; background: #F1F5F9; color: #64748B;
    padding: 2px 6px; border-radius: 6px; border: 1px solid #E2E8F0;
    margin-left: 4px; vertical-align: top; font-weight: 700;
}

/* Mega Menu */
.dropdown-menu.mega-menu {
    border: none; border-radius: 16px;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.1);
    padding: 30px; margin-top: 15px;
    animation: slideUp 0.2s ease-out;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.nav-link { font-weight: 600; color: #475569 !important; font-size: 0.95rem; margin: 0 5px; transition: 0.2s; }
.nav-link:hover { color: var(--brand-primary) !important; }

/* --- 2. SEO CONTENT BLOCK (Mini Blog) --- */
.seo-section {
    background: white; border-top: 1px solid #E2E8F0;
    padding: 80px 0; margin-top: 60px;
}
.content-wrapper { max-width: 850px; margin: 0 auto; }
.content-wrapper h2 { font-size: 2rem; margin-bottom: 20px; font-weight: 700; }
.content-wrapper p { font-size: 1.1rem; line-height: 1.8; color: #475569; margin-bottom: 25px; }
.feature-list { list-style: none; padding: 0; margin: 30px 0; }
.feature-list li {
    padding: 15px 20px; background: #F8FAFC; border-radius: 10px;
    margin-bottom: 10px; border-left: 4px solid var(--brand-primary);
    font-weight: 500;
}

/* --- 3. FOOTER (Trust Builder) --- */
.site-footer { background: #0B1120; color: #94A3B8; padding-top: 80px; font-family: var(--font-body); }
.footer-heading { color: white; font-weight: 700; font-family: var(--font-head); margin-bottom: 25px; font-size: 1.1rem; }
.footer-links a { color: #94A3B8; text-decoration: none; display: block; margin-bottom: 12px; transition: 0.2s; }
.footer-links a:hover { color: white; transform: translateX(5px); }
.trust-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; color: #E2E8F0; margin-top: 20px; }