/* Pricing/Quote Page Specific Styles */

/* Hero styles moved to global page-hero */

.pricing-content {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 2rem;
}

.pricing-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pricing-form {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.pricing-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, rgb(54, 54, 80), #007bff, #28a745, rgb(54, 54, 80));
    background-size: 200% 100%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}



.form-section:last-child {
    margin-bottom: 0;
}

.form-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: rgb(54, 54, 80);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
               linear-gradient(90deg, rgb(54, 54, 80), #007bff) border-box;
    border-image: linear-gradient(90deg, rgb(54, 54, 80), #007bff) 1;
    position: relative;
}

.form-section h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgb(54, 54, 80), #007bff);
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 0.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background: #fafafa;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgb(54, 54, 80);
    background: white;
    box-shadow: 0 4px 15px rgba(54, 54, 80, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Add bottom margin to lighting and foil type fields */
#lightingPreference,
#foilType {
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row-triple {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    background: rgb(54, 54, 80);
    color: white;
    border: none;
    padding: 18px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    margin-top: 2rem;
}

.submit-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

.form-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.form-footer p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .pricing-container {
        padding: 0 1rem;
    }

    .hero-pricing h1 {
        font-size: 4.05rem;
        margin-left: 20px;
    }

    .pricing-form {
        padding: 2rem 1.5rem;
    }

    .form-row,
    .form-row-triple {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-pricing h1 {
        font-size: 3.15rem;
        margin-left: 15px;
    }

    .pricing-content {
        padding: 3rem 0;
    }

    .pricing-form {
        padding: 1.5rem 1rem;
    }
}
