/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.contact-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

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

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #64748b;
    font-size: 1rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

.submit-btn {
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.3);
}

.submit-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.submit-btn:hover .submit-icon {
    transform: translateX(4px);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

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

.contact-card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
}

.contact-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1d4ed8;
}

/* Process Button as Link - same style as contact-link */
.process-cta-button {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    cursor: pointer;
}

.process-cta-button:hover {
    color: #1d4ed8;
}

.contact-highlights {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.contact-highlights h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlights-list svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
}

.highlights-list span {
    color: #374151;
    font-weight: 500;
}

/* Submit Container */
.submit-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

/* Hold-to-Send Button */
.submit-btn.hold-to-send {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    border: none;
    padding: 18px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    user-select: none;
    touch-action: manipulation;
    -webkit-touch-callout: none;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.submit-btn.hold-to-send:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

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

.button-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.button-text {
    font-weight: 600;
    white-space: nowrap;
}

/* Progress Bar */
.hold-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    transition: width 0.05s linear;
    border-radius: 0 0 12px 12px;
}

/* Progress Circle */
.hold-progress-circle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hold-progress-circle svg {
    width: 100%;
    height: 100%;
    color: white;
}

/* Success Icon */
.success-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    animation: successPulse 0.3s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(0.8); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Submit Icon */
.submit-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Hold Instruction */
.hold-instruction {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    text-align: center;
    justify-content: center;
}

.hold-instruction svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
    flex-shrink: 0;
}

/* Button States */
.submit-btn.hold-to-send:active {
    transform: translateY(-1px);
}

/* Mobile Contact */
@media (max-width: 768px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact-container {
        padding: 0 15px;
    }
    
    .contact-header h2 {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .contact-header p {
        font-size: 1rem !important;
    }
    
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem !important;
        border-radius: 16px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .form-header h3 {
        font-size: 1.3rem !important;
    }
    
    .form-header p {
        font-size: 0.9rem !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem !important;
        font-size: 1rem !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .form-group textarea {
        min-height: 100px !important;
    }
    
    .submit-btn {
        padding: 1rem !important;
        font-size: 1rem !important;
        width: 100%;
        margin-top: 1rem;
    }
    
    .contact-info-wrapper {
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem !important;
        border-radius: 16px;
    }
    
    .contact-card h4 {
        font-size: 1rem !important;
    }
    
    .contact-link {
        font-size: 1rem !important;
    }
    
    .contact-highlights {
        padding: 1.5rem !important;
    }
    
    .contact-highlights h4 {
        font-size: 1.1rem !important;
    }
    
    .highlights-list li {
        font-size: 0.9rem;
    }
}

/* Tablet Contact */
@media (min-width: 769px) and (max-width: 1200px) {
    .contact-container {
        padding: 0 30px;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        width: 100%;
    }
} 

/* Mobile Responsive */
@media (max-width: 768px) {
    .submit-btn.hold-to-send {
        padding: 20px 24px;
        font-size: 1rem;
        min-height: 64px;
    }
    
    .button-content {
        gap: 10px;
    }
    
    .hold-instruction {
        font-size: 0.8rem;
    }
}

 