/* ===================================
   CONTACT PAGE STYLES - UPDATED WITH GREEN THEME
   =================================== */

/* Contact Overview */
.contact-overview {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.overview-text h2 {
    background: linear-gradient(135deg, #D97706 0%, #059669 50%, #0D9488 100%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
}

.overview-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.quick-contact .contact-method {
    background: var(--bg-card);
    padding: 2rem 1.5rem;  /* Reduced padding */
    border-radius: var(--radius-lg);
    border: 1px solid var(--primary-blue);
    box-shadow: var(--shadow-lg);
    text-align: center;
    width: 100%;  /* Use full width of grid column */
    max-width: 340px;
    transition: all var(--transition-normal);
}

.quick-contact .contact-method:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-blue);
}

.contact-method h3 {
    background: linear-gradient(135deg, #D97706 0%, #059669 50%, #0D9488 100%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.phone-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
}

.phone-number:hover,
.phone-number:focus {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

.contact-method p {
    color: var(--text-secondary);
    font-size: 0.875rem;  /* Slightly smaller */
    margin: 0;
}

/* Email Contact Styles */
.contact-divider {
    margin: 1rem 0;  /* Reduced margin */
    position: relative;
    text-align: center;
}

.contact-divider span {
    background: var(--bg-card);
    padding: 0 1rem;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.contact-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-light);
    transform: translateY(-50%);
}

.email-heading {
    background: linear-gradient(135deg, #D97706 0%, #059669 50%, #0D9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.email-address {
    display: block;
    font-size: 0.875rem;  /* Smaller font size */
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color var(--transition-fast);
    word-break: break-all;  /* Changed to break-all for long emails */
    line-height: 1.4;
}

.email-address:hover,
.email-address:focus {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* Contact Details Grid - FIXED */
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 0 0.5rem;
    max-width: 1200px;  /* Add this to limit overall width */
    margin-left: auto;   /* Center the grid */
    margin-right: auto;  /* Center the grid */
}

.detail-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}

.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.detail-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.detail-card h3 {
    background: linear-gradient(135deg, #D97706 0%, #059669 50%, #0D9488 100%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.detail-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    text-align: center;
    flex: 1;
}

.detail-card p:last-child {
    margin-bottom: 0;
}

.detail-card p strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Contact Form Layout */
.form-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.form-intro h2 {
    background: linear-gradient(135deg, #D97706 0%, #059669 50%, #0D9488 100%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

/* Professional Referral Notice */
.referral-notice {
    background: rgba(37, 99, 235, 0.05);
    border-left: 4px solid var(--primary-blue);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    margin: 1.5rem 0 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.referral-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.referral-notice p {
    margin: 0;
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 1rem;
}

.referral-notice strong {
    color: var(--primary-blue);
    font-weight: 600;
}

.form-intro p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.benefit-icon {
    color: #059669;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* Contact Form Styles */
.contact-form {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.form-section {
    margin-bottom: 3rem;
}

.form-section:last-of-type {
    margin-bottom: 2rem;
}

.form-section h3 {
    background: linear-gradient(135deg, #059669 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border-light);
}

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

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: #E53E3E;
    font-weight: 600;
    margin-left: 0.25rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: all var(--transition-fast);
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: var(--border-medium);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
}

.field-help {
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 0.375rem;
    line-height: 1.4;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    cursor: pointer;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error textarea,
.form-group.error select {
    border-color: #E53E3E;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.error-message {
    color: #E53E3E;
    font-size: 0.85rem;
    margin-top: 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.error-message::before {
    content: '⚠ ';
    flex-shrink: 0;
}

/* Form Actions */
.form-actions {
    text-align: center;
    padding-top: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    color: var(--text-light);
    border: none;
    padding: 1.125rem 2.5rem;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    justify-content: center;
}

.submit-btn:hover,
.submit-btn:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-fast);
}

.btn-icon img {
    width: 20px;
    height: 20px;
    display: block;
}

.submit-btn:hover .btn-icon,
.submit-btn:focus .btn-icon {
    transform: translateX(2px);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    line-height: 1.5;
}

.form-note a {
    color: var(--primary-blue);
    text-decoration: none;
}

.form-note a:hover,
.form-note a:focus {
    color: var(--primary-blue-dark);
    text-decoration: underline;
}

/* Alternative Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 0 0.5rem;
}

.method-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.method-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.method-header .method-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: var(--primary-blue);
}

.method-header h3 {
    background: linear-gradient(135deg, #D97706 0%, #059669 50%, #0D9488 100%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-size: 1.375rem;
}

.method-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.method-action {
    margin-bottom: 1.5rem;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-blue);
    color: var(--text-light);
    padding: 0.875rem 1.5rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.contact-btn:hover,
.contact-btn:focus {
    background: var(--primary-blue-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    color: var(--text-light);
}

.contact-btn.secondary {
    background: var(--bg-primary);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.contact-btn.secondary:hover,
.contact-btn.secondary:focus {
    background: var(--primary-blue);
    color: var(--text-light);
}

.method-details p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Next Steps Timeline - FIXED WITH PROPER ICONS */
.steps-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.steps-content h2 {
    background: linear-gradient(135deg, #D97706 0%, #059669 50%, #0D9488 100%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

.step-item {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 200px;
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    color: var(--text-light);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h3 {
    background: linear-gradient(135deg, #D97706 0%, #059669 50%, #0D9488 100%);;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Add connecting line between steps on larger screens - REMOVED */
@media (min-width: 768px) {
    .step-item {
        position: relative;
        z-index: 1;
        background: var(--bg-card);
    }
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact-overview,
    .form-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quick-contact {
        text-align: center;
    }
    
    .quick-contact .contact-method {
        display: inline-block;
        min-width: auto;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .contact-details-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .detail-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .referral-notice {
        padding: 1rem 1.25rem;
        gap: 0.75rem;
    }
    
    .referral-icon {
        font-size: 1.25rem;
    }
    
    .referral-notice p {
        font-size: 0.95rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .method-card {
        padding: 2rem;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .form-section h3 {
        font-size: 1.125rem;
    }
    
    .submit-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: auto;
        width: 100%;
    }
    
    .step-item {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ===================================
   COMPLAINTS SECTION - BLUE GRADIENT
   =================================== */

.complaints-section {
    background: linear-gradient(135deg, #D97706 0%, #059669 50%, #0D9488 100%);;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.complaints-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.complaints-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.complaints-text h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.complaints-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
}

.complaints-action {
    display: flex;
    justify-content: center;
}

.complaints-section .cta-button.primary {
    background: var(--bg-primary);
    color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.complaints-section .cta-button.primary:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Responsive adjustments for Complaints Section */
@media (max-width: 1024px) {
    .complaints-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .complaints-section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .complaints-section {
        padding: 3rem 0;
    }
    
    .complaints-section .cta-button.primary {
        width: 100%;
    }
}

/* ===================================
   SIMPLIFIED CONTACT FORM - ENHANCED STYLES
   =================================== */

/* Step Progress Indicator */
.form-steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
    padding: 0 1rem;
}

.form-steps-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-light);
    z-index: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-tertiary);
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-align: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Active Step */
.step-indicator.active .step-circle {
    background: linear-gradient(135deg, #D97706 0%, #059669 100%);
    border-color: #D97706;
    color: white;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
    transform: scale(1.1);
}

.step-indicator.active .step-label {
    color: var(--text-primary);
    font-weight: 600;
}

/* Completed Step */
.step-indicator.completed .step-circle {
    background: #059669;
    border-color: #059669;
    color: white;
}

.step-indicator.completed .step-circle::after {
    content: '✓';
    font-size: 1rem;
}

/* Form Step Container */
.form-step {
    animation: slideIn 0.4s ease;
}

.form-step[style*="display: none"] {
    display: none !important;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Conditional Fields Animation */
.conditional-field {
    animation: expandDown 0.3s ease;
    overflow: hidden;
}

@keyframes expandDown {
    from {
        opacity: 0;
        max-height: 0;
        margin-bottom: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
        margin-bottom: 1.5rem;
    }
}

/* Step Number Inline */
.step-number-inline {
    background: linear-gradient(135deg, #D97706 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Badge Styles */
.required-badge,
.optional-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 600;
    margin-left: 0.5rem;
    vertical-align: middle;
}

.required-badge {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
}

.optional-badge {
    background: rgba(5, 150, 105, 0.1);
    color: #059669;
}

/* Step Description */
.step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(5, 150, 105, 0.05);
    border-left: 3px solid #059669;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Enhanced Radio Buttons */
.radio-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-option {
    position: relative;
    cursor: pointer;
    display: block;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;

    padding: 0.875rem 1.25rem;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s ease;
    text-align: center;
}

.radio-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.radio-icon img {
    width: 20px;
    height: 20px;
    display: block;
}


.radio-option:hover .radio-label {
    border-color: var(--primary-blue);
    background: rgba(217, 119, 6, 0.03);
}

.radio-option input[type="radio"]:checked + .radio-label {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-color: #D97706;
    color: var(--text-primary);
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.2);
    font-weight: 600;
}

.radio-option input[type="radio"]:focus + .radio-label {
    outline: 2px solid #D97706;
    outline-offset: 2px;
}

/* Enhanced Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.checkbox-option {
    position: relative;
    cursor: pointer;
    display: block;
}

.checkbox-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    min-height: 100px;
    justify-content: center;
}

.checkbox-icon {
    font-size: 2rem;
    line-height: 1;
}

.checkbox-label {
    font-weight: 500;
    color: var(--text-primary);
    text-align: center;
    font-size: 0.9rem;
}

.checkbox-option:hover .checkbox-card {
    border-color: var(--primary-blue);
    background: rgba(217, 119, 6, 0.03);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-card {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-color: #D97706;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.25);
    transform: translateY(-2px);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-card .checkbox-icon {
    transform: scale(1.15);
}

.checkbox-option input[type="checkbox"]:checked + .checkbox-card .checkbox-label {
    font-weight: 600;
    color: #D97706;
}

.checkbox-option input[type="checkbox"]:focus + .checkbox-card {
    outline: 2px solid #D97706;
    outline-offset: 2px;
}

/* Form Navigation Buttons */
.form-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-next,
.btn-back {
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-next {
    background: linear-gradient(135deg, #D97706 0%, #059669 100%);
    color: white;
    flex: 1;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
}

.btn-back {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 2px solid var(--border-light);
    padding: 0.875rem 1.5rem;
}

.btn-back:hover {
    border-color: var(--primary-blue);
    background: rgba(217, 119, 6, 0.05);
}

.btn-next:active,
.btn-back:active {
    transform: translateY(0);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 1.125rem 2rem;
    background: linear-gradient(135deg, #D97706 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: inherit;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(217, 119, 6, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.25rem;
}

/* Skip Link */
.skip-info {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin: 0;
    width: 100%;
    text-align: center;
}

.skip-to-message {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 500;
}

.skip-to-message:hover {
    color: #D97706;
}

/* Enhanced Field Help */
.field-help {
    display: flex;
    align-items: flex-start;
    gap: 0.375rem;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    margin-top: 0.375rem;
    line-height: 1.4;
}

.field-help::before {
    content: '';
    width: 18px;
    height: 18px;
    background: url("../assets/icons/icon-light-bulb.svg") no-repeat center / contain;
    flex-shrink: 0;
}

/* Privacy Checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(217, 119, 6, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    line-height: 1.5;
}

/* Loading State */
.contact-form.loading {
    opacity: 0.6;
    pointer-events: none;
}

.contact-form.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-light);
    border-top-color: #D97706;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 3rem 2rem;
    animation: slideIn 0.4s ease;
}

.form-success.show {
    display: block;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-icon img {
    width: 64px;
    height: 64px;
    display: block;
    margin: 0 auto;
}

.form-success h3 {
    background: linear-gradient(135deg, #D97706 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.7;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

@media (max-width: 768px) {
    .form-steps-indicator {
        padding: 0;
    }
    
    .form-steps-indicator::before {
        display: none;
    }
    
    .step-label {
        font-size: 0.7rem;
    }
    
    .step-circle {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .checkbox-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
    
    .checkbox-card {
        padding: 1rem 0.75rem;
        min-height: 90px;
    }
    
    .checkbox-icon {
        font-size: 1.75rem;
    }
    
    .checkbox-label {
        font-size: 0.85rem;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .form-navigation {
        flex-direction: column-reverse;
    }
    
    .btn-next,
    .btn-back {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form-steps-indicator {
        margin-bottom: 2rem;
    }
    
    .step-label {
        font-size: 0.65rem;
    }
    
    .step-circle {
        width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
    
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .submit-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    .form-step,
    .conditional-field,
    .btn-next,
    .btn-back,
    .submit-btn,
    .checkbox-card,
    .radio-label {
        animation: none;
        transition: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .radio-option input[type="radio"]:checked + .radio-label,
    .checkbox-option input[type="checkbox"]:checked + .checkbox-card {
        outline: 3px solid currentColor;
    }
}
/* ===================================
   FORM SECTION SPACING & BACKGROUND FIX
   =================================== */

/* Add proper spacing and background to form section */
.contact-form-section {
    background: #F9FAFB !important;  /* Light gray background */
    padding: 5rem 0 !important;  /* More padding top and bottom */
    margin: 3rem 0 !important;  /* Space from sections above/below */
}

/* Make sure the section stands out */
.contact-form-section.section-padding {
    padding: 5rem 0 !important;
}

/* Alternative: Subtle gradient background */
.contact-form-section.use-gradient {
    background: linear-gradient(to bottom, #ffffff 0%, #F9FAFB 50%, #ffffff 100%) !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 3.5rem 0 !important;
        margin: 2rem 0 !important;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 2.5rem 0 !important;
        margin: 1.5rem 0 !important;
    }
}

/* Contact Method Card with Border */
.contact-method-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid #059669;
    box-shadow: var(--shadow-lg);
    text-align: center;
    width: 100%;
    max-width: 380px;
    min-width: 320px;
}

.contact-method-card h3 {
    background: linear-gradient(135deg, #D97706 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.phone-number-large {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: #059669;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    letter-spacing: 0.5px;
}

.phone-number-large:hover {
    color: #047857;
}

.email-address-large {
    display: block;
    font-size: clamp(0.95rem, 2.3vw, 1.125rem);
    font-weight: 600;
    color: #059669;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.2s;
    word-break: normal;
    white-space: nowrap;
}

.email-address-large:hover {
    color: #047857;
    text-decoration: underline;
}

.contact-subtext {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    margin: 0 0 1.5rem 0;
}

/* ===================================
   SVG ICON STYLING FOR FORM CHECKBOXES
   =================================== */

/* Style SVG icons in checkbox cards */
.checkbox-icon img {
    width: 2rem;
    height: 2rem;
    display: block;
    filter: opacity(0.7);
    transition: all 0.2s ease;
}

/* Hover and selected states */
.checkbox-option input[type="checkbox"]:checked + .checkbox-card .checkbox-icon img {
    filter: opacity(1);
}

.checkbox-option:hover .checkbox-icon img {
    filter: opacity(0.9);
    transform: scale(1.05);
}

/* Optional: Add color tint to selected icons */
.checkbox-option input[type="checkbox"]:checked + .checkbox-card .checkbox-icon img {
    filter: opacity(1) brightness(1.1);
}
