/* Contact Page Specific Styles */
.contact-main {
    padding: 40px 0;
    background: linear-gradient(135deg, #1a3a2e 0%, #2d5a3d 50%, #1a3a2e 100%);
    min-height: 100vh;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3rem;
    color: #9b59b6;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(155, 89, 182, 0.5);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form-section {
    background: linear-gradient(135deg, #2d5a3d, #1a3a2e);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #4a7c59;
}

.contact-form-section h2 {
    font-size: 2rem;
    color: #9b59b6;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #1a3a2e;
    color: #ffffff;
    border: 2px solid #4a7c59;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #9b59b6;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.char-count {
    color: #9b59b6;
    font-size: 0.9rem;
    text-align: right;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type='checkbox'] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #4a7c59;
    border-radius: 4px;
    background: #1a3a2e;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type='checkbox']:checked + .checkmark {
    background: #9b59b6;
    border-color: #9b59b6;
}

.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-label a {
    color: #9b59b6;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(45deg, #8e44ad, #9b59b6);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 89, 182, 0.4);
}

.submit-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Contact Information */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-section h2 {
    font-size: 2rem;
    color: #9b59b6;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    background: linear-gradient(135deg, #2d5a3d, #1a3a2e);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #4a7c59;
    text-align: center;
}

.method-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.contact-method h3 {
    font-size: 1.3rem;
    color: #9b59b6;
    margin-bottom: 10px;
}

.contact-method p {
    color: #e0e0e0;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-link {
    color: #9b59b6;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.response-time {
    background: linear-gradient(135deg, #2d5a3d, #1a3a2e);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #4a7c59;
}

.response-time h3 {
    font-size: 1.3rem;
    color: #9b59b6;
    margin-bottom: 15px;
}

.response-time p {
    color: #e0e0e0;
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    grid-column: 1 / -1;
    margin-top: 40px;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #9b59b6;
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: linear-gradient(135deg, #2d5a3d, #1a3a2e);
    border-radius: 15px;
    border: 2px solid #4a7c59;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 25px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(155, 89, 182, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: #9b59b6;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-section {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form-section {
        padding: 30px 20px;
    }

    .contact-methods {
        gap: 20px;
    }

    .contact-method {
        padding: 20px;
    }

    .faq-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-main {
        padding: 20px 0;
    }

    .contact-form-section {
        padding: 20px 15px;
    }

    .contact-method {
        padding: 15px;
    }

    .response-time {
        padding: 20px;
    }

    .faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
    }
}
