/* Contact Page Specific Styles */

/* Contact Hero */
.contact-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #FAFAFA 0%, #f0f4ff 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Contact Content */
.contact-content {
    padding: 80px 0;
    background-color: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

/* Contact Information */
.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 40px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: #FAFAFA;
    border-radius: 12px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.method-icon {
    font-size: 2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 5px;
}

.method-content p {
    font-size: 1rem;
    color: #A6C1EE;
    font-weight: 500;
    margin-bottom: 5px;
}

.method-content small {
    color: #666666;
    font-size: 0.9rem;
}

/* Collaboration Call */
.collaboration-call {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f2ff 100%);
    border-radius: 16px;
    border: 2px solid #A6C1EE;
    margin: 40px 0;
}

.call-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.call-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
}

.call-content p {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.call-content p:last-child {
    margin-bottom: 0;
}

/* Email Link */
.email-link {
    color: #A6C1EE;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.email-link:hover {
    color: #8fb0e8;
    text-decoration: underline;
}

.response-note {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f2ff 100%);
    border-radius: 12px;
    border-left: 4px solid #A6C1EE;
}

.note-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.note-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
}

.note-content p {
    color: #555555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Contact Form */
.form-container {
    background: #FAFAFA;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.form-container h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333333;
    margin-bottom: 10px;
}

.form-description {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-weight: 500;
    color: #333333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A6C1EE;
    box-shadow: 0 0 0 3px rgba(166, 193, 238, 0.1);
}

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

.form-group textarea::placeholder {
    color: #999;
    font-style: italic;
}

/* Checkbox Group */
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    background-color: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #A6C1EE;
    border-color: #A6C1EE;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    color: #555555;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #A6C1EE 0%, #8fb0e8 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 193, 238, 0.3);
}

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

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

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-loading::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, #7E9F74 0%, #6d8a63 100%);
    color: white;
    border-radius: 12px;
    margin-top: 20px;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Final Message */
.final-message {
    padding: 80px 0;
    background: linear-gradient(135deg, #A6C1EE 0%, #8fb0e8 100%);
    color: white;
}

.message-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.message-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.message-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    opacity: 0.95;
}

.message-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.signature-text {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 10px;
}

.signature-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background-color: #333333;
    color: white;
    text-align: center;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: #A6C1EE;
}

.footer p {
    opacity: 0.8;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        padding: 120px 0 60px;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .contact-content {
        padding: 60px 0;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-info > p {
        font-size: 1rem;
    }

    .contact-method {
        padding: 20px;
    }

    .method-icon {
        font-size: 1.5rem;
        margin-right: 15px;
    }

    .response-note {
        padding: 20px;
    }

    .form-container {
        padding: 30px;
    }

    .form-container h3 {
        font-size: 1.5rem;
    }

    .contact-form {
        gap: 15px;
    }

    .final-message {
        padding: 60px 0;
    }

    .message-content h2 {
        font-size: 2rem;
    }

    .message-content p {
        font-size: 1rem;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .method-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .form-container {
        padding: 25px;
    }

    .form-container h3 {
        font-size: 1.3rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
    }

    .checkbox-label {
        font-size: 0.85rem;
    }

    .submit-btn {
        padding: 12px 24px;
    }

    .message-content h2 {
        font-size: 1.8rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}
