/* Custom styles for Zax Car Insurance */

/* Animation styles */
@keyframes scale-in {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }
}

.scale-in-animation {
    animation: scale-in 0.4s;
}

/* Text styles */
.gradient-text {
    font-weight: 800;
    line-height: 1.5;
    color: #2571ac;
    background: -webkit-linear-gradient(0deg, #2571ac, #0587c4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Card styles */
.zax-card {
    background-color: #fff;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(15, 35, 63, 0.08);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}

.zax-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 35, 63, 0.12);
}

/* Input field styles */
.zax-input {
    background-color: #fff;
    font-size: 15px;
    line-height: 1.3;
    color: #0f233f;
    font-weight: 500;
    border-color: rgba(211, 220, 237, 0.75) !important;
    border-radius: 6px !important;
    padding: 12px 16px;
    box-shadow: 0 2px 4px rgba(15, 35, 63, 0.05);
}

.zax-input:hover {
    border-color: #d3dced !important;
}

.zax-input:focus {
    border-color: #2571ac !important;
    box-shadow: 0 4px 6px -3px rgba(37, 113, 172, 0.25) !important;
    outline: none;
}

/* Label styles */
.zax-label {
    color: #485973;
    font-weight: 500;
    font-size: 14px;
}

/* Button styles */
.zax-button {
    background: linear-gradient(to right, #2571ac, #0587c4);
    color: white;
    font-weight: 600;
    border-radius: 6px !important;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 10px rgba(37, 113, 172, 0.2);
}

.zax-button:hover {
    box-shadow: 0 6px 12px rgba(37, 113, 172, 0.3);
    transform: translateY(-1px);
}

.zax-button-secondary {
    background: white;
    color: #2571ac;
    border: 1px solid rgba(37, 113, 172, 0.2);
    font-weight: 600;
    border-radius: 6px !important;
    padding: 12px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(15, 35, 63, 0.05);
}

.zax-button-secondary:hover {
    border-color: #2571ac;
    box-shadow: 0 4px 8px rgba(15, 35, 63, 0.08);
}

/* Section styles */
.zax-section {
    padding: 60px 0;
}

/* Typography */
.zax-heading {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.5;
    color: #2571ac;
}

.zax-text {
    font-size: 14px;
    color: #485973;
    line-height: 1.5;
}

.zax-text-bold {
    font-weight: 500;
}
