/* Layout Defaults */



.card-container {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

h3 {
    font-size: 1.1rem;
}

.content-heavy {
    background: #ffffff;
    line-height: 1.8;
}

.content-heavy h2 {
    color: #004a99;
    border-left: 5px solid #ffdf00;
    padding-left: 15px;
    margin-top: 2rem;
}

/* FAQ Styling */
.faq {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
}

.faq h4 {
    margin-bottom: 5px;
    color: #333;
}

/* quote-form */
/* Form Container Styling */
.quote-form {
    max-width: 600px;
    /* Limits width on desktop */
    margin: 40px auto;
    /* Centers the form */
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e8ed;
}

/* Individual Input Styling */
.quote-form input,
.quote-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    /* Crucial: keeps padding from breaking width */
    font-size: 16px;
    /* Prevents iPhone "Auto-zoom" on focus */
}


/* Legal Footer Specifics */
footer {
    border-top: 1px solid #eee;
    margin-top: 50px;
    color: #777;
    text-align: center;
}

.legal {
    color: whitesmoke;
}

.number {
    display: none;
}


/* Mobile Sticky Call Button */


@media (max-width: 600px) {
    .nav-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin: 0 auto;
    }

    .number {
        display: block;
    }

    nav .logo {
        margin: 0 auto;
        font-size: 1.2rem;
        color: yellow;
    }

    .call-btn {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 60px;
        height: 60px;
        border-radius: 4px;
        background: #86d346;
        /* Green for 'Go' */
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        font-size: 0;
        /* Hide text, use an icon or just the shape */
        z-index: 1000;
    }

    .call-btn::after {
        content: '📞';
        /* Simple emoji phone icon */
        font-size: 24px;
    }
}



/* Grid for Name/Phone on Desktop */
@media (min-width: 600px) {
    .form-row {
        display: flex;
        gap: 20px;
    }

    .form-row div {
        flex: 1;
    }
}

/* Submit Button Hover Effect */
.quote-form button:hover {
    background: #003366;
    transform: translateY(-2px);
    transition: all 0.2s ease;
}