/* Global Styles */
body {
    font-family: 'Inter', sans-serif;
}

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

/* Custom Utilities */
.container-custom {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Animation utilities for mobile menu */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-in-out;
}

/* Header Transitions */
.header-transparent {
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-scrolled {
    background-color: #1F2937;
    /* Gray-900/Navy */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Quote Widget Custom Styles */
.quote-tab-active {
    background-color: #FDB813 !important;
    /* Yellow */
    color: #0f1e40 !important;
    /* Navy */
    border-bottom: none !important;
}

.quote-tab-inactive {
    background-color: #ffffff !important;
    color: #0f1e40 !important;
}