/* Contact Page - Interactive Modern Theme */

.page-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 50%, #fb7185 100%);
    color: white;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Contact Wrapper */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info h2 {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 2px solid #e5e7eb;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    align-items: start;
    transition: var(--transition);
}

.info-card:hover {
    border-color: #ec4899;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.15);
    transform: translateX(5px);
}

.info-icon {
    font-size: 36px;
    text-align: center;
}

.info-content h3 {
    margin-top: 0;
    color: #1f2937;
    font-size: 18px;
}

.info-content p {
    margin: 8px 0;
    color: #6b7280;
}

.info-content a {
    color: #ec4899;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.info-content a:hover {
    color: #be185d;
}

.response-time {
    font-size: 13px;
    color: #9ca3af;
    margin-top: 8px;
}

/* Social Media */
.social-section {
    margin-top: 40px;
}

.social-section h3 {
    color: #1f2937;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
    color: white;
    transition: var(--transition);
    font-size: 20px;
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.twitter {
    background: #000000;
}

.social-btn.instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 40%, #8134af 100%);
}

.social-btn.linkedin {
    background: #0a66c2;
}

.social-btn.youtube {
    background: #ff0000;
}

.social-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form-section h2 {
    font-size: 28px;
    color: #1f2937;
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    display: none;
}

.contact-form.active {
    display: block;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ec4899;
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

.form-group.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.form-group.checkbox label {
    margin: 0;
}

.btn-submit {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(236, 72, 153, 0.3);
}

/* Success Message */
.success-message {
    background: linear-gradient(135deg, #d1fae5 0%, #ecfdf5 100%);
    border: 2px solid #6ee7b7;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.success-message h3 {
    color: #059669;
    margin: 0 0 10px 0;
    font-size: 24px;
}

.success-message p {
    color: #047857;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: #ec4899;
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.1);
}

.faq-header {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #fae8f1 0%, #faf5ff 100%);
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-header::after {
    content: '▼';
    transition: transform 0.3s;
    font-size: 12px;
}

.faq-header.active::after {
    transform: rotate(180deg);
}

.faq-header:hover {
    background: linear-gradient(135deg, #fce7f3 0%, #f3e8ff 100%);
}

.faq-content {
    padding: 20px;
    display: none;
    background: white;
}

.faq-content.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-content p {
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    text-align: center;
}

.map-section h2 {
    font-size: 36px;
    color: #1f2937;
    margin-bottom: 60px;
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
}

.map-placeholder {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    color: white;
    padding: 80px 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.map-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.map-placeholder p {
    line-height: 1.8;
    font-size: 18px;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-links {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .contact-wrapper {
        padding: 40px 20px;
    }

    .contact-form {
        padding: 25px;
    }

    .info-card {
        grid-template-columns: 50px 1fr;
        padding: 20px;
        gap: 15px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .map-placeholder {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 24px;
    }

    .contact-wrapper {
        padding: 20px;
    }

    .contact-info h2,
    .contact-form-section h2,
    .faq-section h2,
    .map-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .info-card {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .info-icon {
        text-align: left;
    }

    .info-content h3 {
        font-size: 16px;
    }

    .info-content p {
        font-size: 14px;
    }

    .social-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 12px 14px;
        font-size: 16px;
    }

    .faq-header {
        padding: 15px;
        font-size: 15px;
    }

    .faq-content {
        padding: 15px;
    }

    .btn-submit {
        padding: 12px 20px;
    }

    .map-placeholder {
        padding: 40px 15px;
    }

    .map-icon {
        font-size: 45px;
    }
}
