/* Contact Page Styles */

.contact-main {
    min-height: calc(100vh - 200px);
}

.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-content {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

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

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.contact-card-icon {
    font-size: 2.5rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.contact-card h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.contact-card p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.contact-reasons {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.contact-reasons li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.contact-reasons li i {
    color: #48bb78;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-methods {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.contact-methods h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.contact-method-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f7fafc;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.method-icon {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

.method-content h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.method-content p {
    color: #718096;
    margin-bottom: 1rem;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.email-link:hover {
    text-decoration: underline;
}

.info-box {
    background: #ebf4ff;
    border-left: 4px solid #4299e1;
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
}

.info-box-icon {
    font-size: 1.5rem;
    color: #4299e1;
    flex-shrink: 0;
}

.info-box-content h4 {
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.info-box-content p {
    color: #4a5568;
    margin-bottom: 0;
}

.contact-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.form-card > p {
    color: #718096;
    margin-bottom: 2rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #667eea;
}

.required {
    color: #e53e3e;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.form-privacy-note {
    background: #f7fafc;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.form-privacy-note i {
    color: #667eea;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.form-privacy-note p {
    color: #4a5568;
    margin: 0;
}

.form-privacy-note a {
    color: #667eea;
    text-decoration: none;
}

.form-privacy-note a:hover {
    text-decoration: underline;
}

.btn-submit {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.form-status {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: none;
}

.form-status.success {
    background: #c6f6d5;
    color: #22543d;
    display: block;
}

.form-status.error {
    background: #fed7d7;
    color: #742a2a;
    display: block;
}

.contact-faq {
    padding: 4rem 2rem;
    background: var(--white);
}

.contact-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.faq-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.faq-card h3 {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.faq-card p {
    color: #718096;
    line-height: 1.6;
}

.faq-card a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.faq-card a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

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

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

/* Success Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
}

.modal-content {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    animation: modalSlideIn 0.3s ease forwards;
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-icon {
    font-size: 4rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
    animation: iconPop 0.5s ease 0.2s both;
}

@keyframes iconPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.modal-title {
    font-size: 1.75rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

.modal-message {
    color: #718096;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-close-btn {
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-close-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

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

@media (max-width: 768px) {
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .modal-icon {
        font-size: 3rem;
    }

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

    .modal-message {
        font-size: 1rem;
    }
}
