/* HCC Custom Styles */
:root {
    --hcc-red: #dc2626;
    --hcc-red-dark: #b91c1c;
    --hcc-yellow: #eab308;
}

/* Navigation */
.nav-link.active {
    background-color: var(--hcc-red) !important;
    color: white !important;
    border-radius: 0.375rem;
}

.nav-link:hover {
    background-color: #fef2f2;
    color: var(--hcc-red);
    border-radius: 0.375rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--hcc-red) 0%, var(--hcc-red-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('') center/cover;
    opacity: 0.2;
}

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

/* Cards */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Forms */
.form-control:focus, .form-select:focus {
    border-color: var(--hcc-red);
    box-shadow: 0 0 0 0.2rem rgba(220, 38, 38, 0.25);
}

.btn-hcc {
    background-color: var(--hcc-red);
    border-color: var(--hcc-red);
    color: white;
}

.btn-hcc:hover {
    background-color: var(--hcc-red-dark);
    border-color: var(--hcc-red-dark);
    color: white;
}

.btn-hcc-yellow {
    background-color: var(--hcc-yellow);
    border-color: var(--hcc-yellow);
    color: black;
}

.btn-hcc-yellow:hover {
    background-color: #ca8a04;
    border-color: #ca8a04;
    color: black;
}

/* Info boxes */
.info-box {
    border-radius: 0.5rem;
    padding: 1.5rem;
}

.info-box-blue {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
}

.info-box-yellow {
    background-color: #fefce8;
    border: 1px solid #fef08a;
}

.info-box-green {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
}

/* Loading spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-overlay.show {
    display: flex;
}
