/* Contact Page Specific Styles */

.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1) 0%, rgba(10, 10, 10, 1) 50%);
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #007bff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

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

/* Contact Form */
.contact-form-container {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-description {
    color: #b3b3b3;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-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;
}

.form-group label {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #0f0f0f;
    border: 2px solid #333333;
    border-radius: 6px;
    padding: 0.8rem;
    color: #ffffff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

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

/* Checkbox Styling */
.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #333333;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

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

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: "✓";
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #007bff;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0056b3, #003d82);
    transform: translateY(-2px);
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #b3b3b3;
    line-height: 1.6;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #1a1a1a;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
}

.clickable-email {
    cursor: pointer;
    transition: all 0.3s ease;
}

.clickable-email:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    border-color: #007bff;
}

.clickable-email:active {
    transform: translateY(-2px);
}

.email-address {
    font-weight: 600;
    color: #007bff !important;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: text-decoration-color 0.3s ease;
}

.clickable-email:hover .email-address {
    text-decoration-color: #007bff;
}

.click-hint {
    color: #007bff;
    font-weight: 500;
    font-style: italic;
}

.contact-method.disabled {
    opacity: 0.6;
    position: relative;
    cursor: not-allowed;
}

.contact-method.disabled:hover {
    transform: none;
}

.contact-method.disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    pointer-events: none;
}

.method-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.method-content h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.method-content p {
    color: #b3b3b3;
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

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

/* Work in Progress Badge */
.wip-badge {
    display: inline-block;
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: top;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

/* Office Locations */
.office-locations {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.office-locations h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.office {
    margin-bottom: 1.5rem;
}

.office:last-child {
    margin-bottom: 0;
}

.office h5 {
    color: #007bff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.office p {
    color: #b3b3b3;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Response Timeline */
.response-time {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
}

.response-time h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #007bff, #00ff88);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.timeline-content strong {
    color: #ffffff;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.timeline-content p {
    color: #b3b3b3;
    font-size: 0.8rem;
    line-height: 1.4;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.faq-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-item p {
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #28a745;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

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

    .form-title {
        font-size: 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        gap: 1rem;
    }

    .contact-method {
        padding: 1rem;
    }

    .wip-badge {
        display: block;
        margin-left: 0;
        margin-top: 0.3rem;
        font-size: 0.6rem;
        padding: 0.1rem 0.4rem;
    }

    .office-locations,
    .response-time {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .page-hero {
        padding: 6rem 0 3rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .contact-section,
    .faq-section {
        padding: 3rem 0;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
    }

    .submit-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

/* Animation Effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-form-container,
.contact-info > *,
.faq-item {
    animation: fadeInUp 0.8s ease forwards;
}

.contact-info > *:nth-child(2) { animation-delay: 0.1s; }
.contact-info > *:nth-child(3) { animation-delay: 0.2s; }
.contact-info > *:nth-child(4) { animation-delay: 0.3s; }
.contact-info > *:nth-child(5) { animation-delay: 0.4s; }

.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.3s; }
.faq-item:nth-child(5) { animation-delay: 0.4s; }
.faq-item:nth-child(6) { animation-delay: 0.5s; }