.hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
}

.hero-section .col-lg-8 {
    max-width: 618px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/assets/images/dashboard-background.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.border-yellow {
    opacity: 1;
    border-color: var(--warning-yellow);
}

.hero-title {
    font-family: "Source Sans 3";
    font-size: 56px;
    font-weight: 600;
    text-align: left;
}

.lead {
    font-size: 22px;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 600;
    text-align: left;
}

.bg-primary {
    background-color: var(--primary-blue) !important;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: #004670;
    border-color: #004670;
}

.text-primary {
    color: var(--primary-blue) !important;
}

.bg-warning {
    background-color: var(--warning-yellow) !important;
}

/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Source Sans 3', sans-serif;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-bottom: 3px solid #ddd;
}

.card.shadow {
    border-radius: 10px;
    overflow: hidden;
}

/* Badges */
.badge {
    font-size: 12px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.bg-success {
    background-color: #e8f5e9 !important;
    color: var(--success-green) !important;
}

.bg-outline-danger {
    background-color: transparent !important;
    color: var(--danger-red) !important;
    border: 1px solid var(--danger-red);
}

/* Claims Status Colors */
.status-incomplete {
    color: var(--dark-gray);
    background-color: #f8f9fa;
}

.status-notified,
.status-acknowledged,
.status-approved,
.status-completed {
    color: var(--success-green);
    background-color: #e8f5e9;
}

.status-under-review,
.status-under-assessment {
    color: #ffc107;
    background-color: #fff3cd;
}

.status-withdrawn {
    color: var(--dark-gray);
    background-color: #f8f9fa;
}

.status-declined {
    color: var(--danger-red);
    background-color: #f8d7da;
}

/* Claims List */
.claim-item {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
    transition: background-color 0.2s;
}

.claim-item:hover {
    background-color: #f8f9fa;
}

.claim-item:last-child {
    border-bottom: none;
}

/* Action Buttons */
.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    background-color: rgba(73, 69, 79, 0.08);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    transition: all 0.2s;
}

.action-btn:hover {
    background-color: rgba(73, 69, 79, 0.15);
    transform: translateY(-1px);
}

/* Tooltip */
.custom-tooltip {
    position: absolute;
    top: -45px;
    left: -42px;
    background-color: #333;
    color: white;
    padding: 7px 14px;
    border-radius: 3px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
    z-index: 1000;
}

.custom-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
}

.tooltip-trigger:hover .custom-tooltip {
    opacity: 1;
}

/* Price Display */
.price-display h3 {
    font-size: 2rem;
    color: var(--dark-gray);
}

.price-display small {
    font-size: 1rem;
}

/* Policy Icon */
.policy-icon {
    min-width: 60px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 219px;
        padding: unset !important;
    }

    .hero-section {
        text-align: center;
        padding: 3rem 0;
    }

    .hero-title {
        font-family: 'Open Sans';
        font-size: 22px;
    }

    .claim-item {
        padding: 1rem;
    }


    .lead {
        font-size: 14px;
        font-family: 'Open Sans', sans-serif;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Contact bar text color */
.bg-warning span {
    color: var(--dark-gray);
}


/* Ensure navbar uses your brand colors */
.navbar.bg-primary {
    background-color: var(--primary-blue) !important;
}

/* Make the toggler visible on primary background */
.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.4);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .1rem rgba(255, 255, 255, .25);
}


@media (max-width: 768px) {
    .card.shadow {
        border-radius: unset !important;
        background-color: transparent !important;
        box-shadow: unset !important;
    }

    .bg-light .container {
        padding: unset !important;
    }
}