/* ═══════════════════════════════════════════════════════════════════
   PALETTE 3: AQUA FRESH - Bold & Vibrant
   
   Base Colors:
   - Light Aqua Background: #E0F2F1
   - Medium Aqua: #26A69A
   - Dark Aqua: #00796B
   - Accent: #004D40
   
   Features:
   - Bold, vibrant appearance
   - Maximum contrast
   - Eye-catching and modern
   - Energetic and professional
   ═══════════════════════════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    padding: 20px;
    line-height: 1.8;
    font-size: 16px; /* Increased from 14px */
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px; /* Increased from 30px */
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 121, 107, 0.2);
}

.header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 5px solid #26A69A;
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    padding: 35px;
    border-radius: 8px;
    margin: -40px -40px 40px -40px;
    box-shadow: 0 2px 10px rgba(0, 121, 107, 0.1);
}

.header h1 {
    color: #2C2C2C;
    margin-bottom: 15px;
    font-size: 34px; /* Increased from 24px */
    font-weight: 800;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.company-info {
    color: #4A4A4A;
    font-size: 18px; /* Increased from 14px */
    font-weight: 600;
}

.intro-text {
    background: #E0F2F1;
    padding: 22px;
    border-left: 6px solid #26A69A;
    margin-bottom: 35px;
    font-size: 17px; /* Increased from 14px */
    border-radius: 6px;
    color: #2C2C2C;
    line-height: 1.9;
    box-shadow: 0 2px 8px rgba(0, 121, 107, 0.05);
}

.intro-text strong {
    color: #2C2C2C;
    font-size: 19px;
    font-weight: 700;
}

.section {
    margin-bottom: 35px;
    padding: 28px;
    background: #F1F8F7;
    border-radius: 8px;
    border: 2px solid #B2DFDB;
    box-shadow: 0 2px 6px rgba(0, 121, 107, 0.05);
}

.section-title {
    color: #2C2C2C;
    font-size: 24px; /* Increased from 18px */
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 4px solid #26A69A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group {
    margin-bottom: 22px; /* Increased from 15px */
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px; /* Increased from 15px */
    margin-bottom: 22px;
}

label {
    display: block;
    margin-bottom: 9px;
    color: #2C2C2C;
    font-weight: 700;
    font-size: 17px; /* Increased from 14px */
}

.required::after {
    content: " *";
    color: #D32F2F;
    font-weight: 900;
    font-size: 18px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 15px; /* Increased from 10px */
    border: 2px solid #B2DFDB;
    border-radius: 6px;
    font-size: 17px; /* Increased from 14px */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: white;
    transition: all 0.3s ease;
    font-weight: 500;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #26A69A;
    box-shadow: 0 0 0 4px rgba(38, 166, 154, 0.15);
    background: #FAFFFF;
}

textarea {
    resize: vertical;
    min-height: 110px; /* Increased from 80px */
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 28px; /* Increased from 20px */
    flex-wrap: wrap;
}

.radio-group label,
.checkbox-group label {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    color: #2C2C2C;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.3);
}

.add-more-btn {
    background: linear-gradient(135deg, #26A69A 0%, #00897B 100%);
    color: white;
    border: none;
    padding: 14px 28px; /* Increased */
    border-radius: 6px;
    cursor: pointer;
    font-size: 17px; /* Increased from 14px */
    margin: 20px 0;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(38, 166, 154, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-more-btn:hover {
    background: linear-gradient(135deg, #00897B 0%, #00796B 100%);
    box-shadow: 0 5px 15px rgba(0, 121, 107, 0.4);
    transform: translateY(-2px);
}

.remove-btn {
    background: #E53935;
    color: white;
    border: none;
    padding: 10px 20px; /* Increased */
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px; /* Increased from 12px */
    float: right;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(229, 57, 53, 0.3);
}

.remove-btn:hover {
    background: #C62828;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(198, 40, 40, 0.4);
}

.submit-btn {
    background: linear-gradient(135deg, #26A69A 0%, #00796B 100%);
    color: white;
    border: none;
    padding: 20px 55px; /* Increased */
    border-radius: 8px;
    cursor: pointer;
    font-size: 22px; /* Increased from 16px */
    font-weight: 800;
    width: 100%;
    margin-top: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 121, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #00796B 0%, #004D40 100%);
    box-shadow: 0 7px 25px rgba(0, 77, 64, 0.4);
    transform: translateY(-3px);
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.signature-section {
    background: linear-gradient(135deg, #E0F2F1 0%, #B2DFDB 100%);
    padding: 28px;
    border: 4px solid #26A69A;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 121, 107, 0.1);
}

.signature-box {
    border: 3px solid #B2DFDB;
    padding: 22px;
    min-height: 85px; /* Increased */
    background: white;
    margin-top: 15px;
    border-radius: 6px;
    font-family: 'Brush Script MT', cursive;
    font-size: 30px; /* Increased */
    color: #2C2C2C;
}

.help-text {
    font-size: 16px; /* Increased from 13px */
    color: #4A4A4A;
    font-style: italic;
    margin-top: 8px;
    font-weight: 500;
}

.additional-item {
    background: white;
    padding: 22px;
    margin-bottom: 22px;
    border-radius: 8px;
    border: 3px solid #B2DFDB;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 121, 107, 0.05);
}

.additional-item h4 {
    color: #2C2C2C;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 3px solid #E0F2F1;
    font-weight: 700;
}

.success-message {
    background: #C8E6C9;
    color: #2E7D32;
    padding: 22px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 6px solid #4CAF50;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.1);
    display: none;
}

.error-message {
    background: #FFCDD2;
    color: #C62828;
    padding: 22px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 6px solid #F44336;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(198, 40, 40, 0.1);
    display: none;
}

.loading {
    text-align: center;
    padding: 40px;
    font-size: 20px;
    color: #2C2C2C;
    font-weight: 600;
    display: none;
}

.spinner {
    border: 5px solid #E0F2F1;
    border-top: 5px solid #26A69A;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        font-size: 15px;
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 21px;
    }
    
    label {
        font-size: 16px;
    }
    
    input, select, textarea {
        font-size: 16px;
        padding: 13px;
    }
    
    .submit-btn {
        font-size: 19px;
    }
}
