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

/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    color: #09090B;
    /* Text - Zinc 950 */
    background-color: #FAFAFA;
    /* Background - Zinc 50 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: 'Poppins', sans-serif;
}

/* Custom Colors & Utilities */
.bg-primary {
    background-color: #18181B;
}

.text-primary {
    color: #18181B;
}

.bg-secondary {
    background-color: #3F3F46;
}

.text-secondary {
    color: #3F3F46;
}

.bg-accent {
    background-color: #F97316;
}

.text-accent {
    color: #F97316;
}

.hover-bg-accent:hover {
    background-color: #EA580C;
}

/* Slightly darker orange for hover */
.border-primary {
    border-color: #18181B;
}

/* Effects & Animations */
.transition-smooth {
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift {
    transition: transform 250ms ease, box-shadow 250ms ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
}

/* Navigation & Header */
.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e2e8f0;
}

.nav-link {
    position: relative;
    color: #334155;
    font-weight: 500;
    transition: color 200ms ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0369A1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #0369A1;
    transition: width 200ms ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Specific UI Patterns */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge-outline {
    border: 1px solid #e2e8f0;
    background-color: white;
    color: #334155;
}

.stats-card {
    background-color: white;
    border: 1px solid #f1f5f9;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card {
    background-color: white;
    border: 1px solid #f1f5f9;
    border-radius: 0.75rem;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon-wrapper {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    background-color: #fff7ed;
    /* orange-50 */
    color: #F97316;
    /* orange-500 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

/* Utilities */
.cursor-pointer {
    cursor: pointer;
}

.min-h-screen-nav {
    min-height: calc(100vh - 80px);
}

/* Reset default focus ring for a nicer one */
*:focus-visible {
    outline: 2px solid #0369A1;
    outline-offset: 2px;
}