/*
Theme Name: CreaTech Business Solutions
Theme URI: https://dev3.createchbs.net
Author: CreaTech Team
Description: Premium Enterprise ServiceNow Transformation Theme
Version: 2.0
Text Domain: cbs-theme
*/

/* ========== MODERN ENTERPRISE FOUNDATION (ServiceNow Inspired) ========== */
:root {
    --bg-dark: #050a12;
    --bg-card: #0f172a;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border: #1e2937;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    line-height: 1.6;
}

/* Premium Typography */
h1, h2, h3 {
    font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* Glassmorphism Cards (ServiceNow Style) */
.cbs-card {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.25rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.cbs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
    border-color: rgba(59, 130, 246, 0.3);
}

/* Buttons */
.cbs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    font-weight: 600;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cbs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgb(59 130 246 / 0.4);
}