/* ===================================
   Quote Form Section Styles
   Elegant iframe form presentation
   =================================== */

.quote-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.quote-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ef97c0, transparent);
}

.quote-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.quote-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.quote-form-header .section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #d6009c;
    background: rgba(214, 0, 156, 0.08);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.quote-form-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.quote-form-section-subtitle {
    font-size: 1.125rem;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.quote-form-iframe-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 
                0 2px 8px rgba(214, 0, 156, 0.05);
    position: relative;
    min-height: 1110px;
    transition: all 0.3s ease;
}

.quote-form-iframe-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ef97c0, #d6009c, #ef97c0);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.quote-form-iframe-container:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 
                0 5px 15px rgba(214, 0, 156, 0.1);
    transform: translateY(-2px);
}

.quote-form-iframe-container:hover::before {
    opacity: 0.15;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .quote-form-section {
        padding: 4rem 0;
    }

    .quote-form-section-title {
        font-size: 2rem;
    }

    .quote-form-iframe-container {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .quote-form-section {
        padding: 3rem 0;
    }

    .quote-form-header {
        margin-bottom: 2rem;
    }

    .quote-form-section-title {
        font-size: 1.75rem;
    }

    .quote-form-section-subtitle {
        font-size: 1rem;
    }

    .quote-form-iframe-container {
        padding: 1.5rem;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .quote-form-section {
        padding: 2.5rem 0;
    }

    .quote-form-header .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }

    .quote-form-section-title {
        font-size: 1.5rem;
    }

    .quote-form-iframe-container {
        padding: 1.25rem;
        border-radius: 12px;
    }
}
