/* ============================================
   WORKTOWORK — Theme CSS (Generic)
   Base, Navbar, Footer, Buttons, Utilities
   ============================================ */

:root {
    --wtw-blue: #2196F3;
    --wtw-blue-dark: #1976D2;
    --wtw-blue-light: #E3F2FD;
    --wtw-orange: #FF6D00;
    --wtw-orange-dark: #E65100;
    --wtw-orange-light: #FFF3E0;
    --wtw-navy: #1B2A5B;
    --wtw-navy-deep: #111C3E;
    --wtw-dark: #0F1629;
    --wtw-success: #00C48C;
    --wtw-danger: #FF3B5C;
    --wtw-gray-100: #F8F9FC;
    --wtw-gray-200: #EEF0F6;
    --wtw-gray-300: #D1D5DB;
    --wtw-gray-500: #6B7280;
    --wtw-gray-700: #374151;
    --wtw-radius: 12px;
    --wtw-radius-lg: 20px;
    --wtw-shadow: 0 4px 24px rgba(33, 150, 243, 0.10);
    --wtw-shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
    --wtw-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE ===== */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--wtw-dark);
    overflow-x: hidden;
}

a { transition: var(--wtw-transition); }

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
@media (max-width: 991.98px) { .py-6 { padding-top: 3rem; padding-bottom: 3rem; } }

/* ===== UTILITY CLASSES ===== */
.bg-wtw-soft { background: var(--wtw-blue-light); }
.bg-wtw-navy { background: var(--wtw-navy); }
.text-wtw-blue { color: var(--wtw-blue) !important; }
.text-wtw-orange { color: var(--wtw-orange) !important; }

.wtw-text-gradient {
    background: linear-gradient(135deg, var(--wtw-blue), var(--wtw-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn-wtw-orange {
    background: var(--wtw-orange);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--wtw-transition);
}
.btn-wtw-orange:hover {
    background: var(--wtw-orange-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 109, 0, 0.35);
}

.btn-wtw-blue {
    background: var(--wtw-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--wtw-transition);
}
.btn-wtw-blue:hover {
    background: var(--wtw-blue-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.35);
}

.btn-wtw-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--wtw-transition);
}
.btn-wtw-outline:hover {
    background: var(--wtw-orange);
    border-color: var(--wtw-orange);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.wtw-navbar {
    background: rgba(27, 42, 91, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 0.8rem 0;
    transition: var(--wtw-transition);
}
.wtw-navbar.scrolled {
    background: rgba(27, 42, 91, 0.98);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.wtw-logo { transition: var(--wtw-transition); }
.wtw-navbar .nav-link {
    color: rgba(255,255,255,0.75);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.9rem;
    transition: var(--wtw-transition);
}
.wtw-navbar .nav-link:hover,
.wtw-navbar .nav-link.active { color: #fff; }
.wtw-navbar .dropdown-menu {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--wtw-radius);
    padding: 0.5rem;
    margin-top: 0.5rem;
}
.wtw-navbar .dropdown-menu-dark { background: var(--wtw-navy-deep); }
.wtw-navbar .dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}
.wtw-navbar .dropdown-item:hover { background: rgba(33, 150, 243, 0.15); }

/* ===== FOOTER ===== */
.wtw-footer-cta {
    background: linear-gradient(135deg, var(--wtw-blue), var(--wtw-blue-dark));
}
.wtw-footer-main { background: var(--wtw-dark); }
.wtw-footer-bottom {
    background: #0a0e1c;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.wtw-footer-links li { margin-bottom: 0.5rem; }
.wtw-footer-links a,
.wtw-footer-links li {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--wtw-transition);
}
.wtw-footer-links a:hover { color: var(--wtw-orange); padding-left: 4px; }

.wtw-social-link {
    width: 36px; height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--wtw-transition);
}
.wtw-social-link:hover {
    background: var(--wtw-orange);
    color: #fff;
    transform: translateY(-2px);
}

/* ===== GENERIC CARDS ===== */
.wtw-card {
    background: #fff;
    border-radius: var(--wtw-radius-lg);
    border: 1px solid var(--wtw-gray-200);
    transition: var(--wtw-transition);
}
.wtw-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--wtw-shadow-lg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 575.98px) {
    .display-6 { font-size: 1.6rem; }
}