/* ============================================================
   Enquiry Form — Shared styling for iframe-based forms
   ============================================================ */

/* Form wrapper used on service pages */
.enquiry-form-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem auto;
    max-width: 480px;
}

/* The iframe itself */
.enquiry-iframe {
    width: 100%;
    max-width: 480px;
    height: 480px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    background: #fff;
}

/* CTA Button shared style */
.enquire-btn {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #1276c6, #0d5c9e);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.6rem;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    margin: 0.4rem 0.5rem;
}
.enquire-btn:hover {
    background: linear-gradient(135deg, #0d5c9e, #0a4780);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18, 118, 198, 0.25);
}
.enquire-btn--outline {
    background: transparent;
    color: #1276c6;
    border: 2px solid #1276c6;
}
.enquire-btn--outline:hover {
    background: #1276c6;
    color: #fff;
}

/* CTA button group */
.cta-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .enquiry-form-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    .enquiry-form-container iframe,
    .enquiry-iframe {
        max-width: 100%;
        height: 400px;
    }
    .enquire-btn {
        font-size: 0.85rem;
        padding: 0.65rem 1.25rem;
    }
}
@media (max-width: 480px) {
    .enquiry-form-container iframe,
    .enquiry-iframe {
        height: 380px;
    }
}
