/* Button Style Updates */
/* Update the accent button (Get a Free Quote) */
.btn-accent {
    background-color: #497EE6 !important; /* Blue color */
    color: #ffffff !important;
    border-color: #497EE6 !important;
    font-weight: var(--font-semibold);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: var(--text-sm);
    padding: 0.75rem 2rem;
    transition: all 0.3s ease !important;
}

.btn-accent:hover {
    background-color: #ffffff !important;
    color: #497EE6 !important;
    border-color: #497EE6 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Update the outline button (View Our Work) */
.btn-outline {
    background-color: transparent;
    color: #497EE6 !important; /* Blue text */
    border-color: #497EE6 !important; /* Blue border */
    transition: all 0.3s ease !important;
}

.btn-outline:hover {
    background-color: #ffffff !important;
    color: #497EE6 !important;
    border-color: #497EE6 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
    background-color: #497EE6 !important; /* Blue background on hover */
    color: #ffffff !important; /* White text on hover */
    border-color: #497EE6 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Ensure text color is white on hover for both buttons */
.btn-outline .btn-text,
.btn-outline .btn-icon,
.btn-accent .btn-text,
.btn-accent .btn-icon {
    color: inherit;
    transition: color 0.3s ease;
}

.btn-outline:hover .btn-text,
.btn-outline:hover .btn-icon {
    color: #ffffff !important;
}

/* Ensure proper contrast for accessibility */
.btn:focus {
    outline: 2px solid #497EE6;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(73, 126, 230, 0.3) !important;
}
