/**
 * Enhanced Contact Section Styles - Unified Info Card
 */

/* ==================== Unified Contact Info Card ==================== */
.contact-unified-card {
    padding: 32px;
    background: white;
    border-radius: 20px;
    border: 2px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.contact-unified-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-primary);
    box-shadow: 0 12px 32px rgba(200, 160, 85, 0.15);
}

.contact-unified-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-unified-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-unified-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-unified-item:hover {
    background: #f9fafb;
}

.contact-unified-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.contact-unified-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-unified-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-unified-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.6;
    transition: color 0.3s ease;
    word-break: break-word;
}

.contact-unified-value:hover {
    color: var(--color-primary);
}

/* Social Media Card */
.contact-social-card {
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 2px solid #f3f4f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* ==================== Social Media Links ==================== */
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f3f4f6;
    color: #6b7280;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
}

.social-link.whatsapp:hover {
    background: #25d366;
    color: white;
}

.social-link.snapchat:hover {
    background: #FFFC00;
    color: #000;
}

.social-link.tiktok:hover {
    background: #000;
    color: white;
}

/* ==================== Contact Form ==================== */
.contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 2px solid #f3f4f6;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    color: #1f2937;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(200, 160, 85, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

/* Submit Button */
.btn-submit-contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(200, 160, 85, 0.3);
}

.btn-submit-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(200, 160, 85, 0.4);
    gap: 16px;
}

.btn-submit-contact:active {
    transform: translateY(-1px);
}

.btn-submit-contact svg {
    transition: transform 0.3s ease;
}

.btn-submit-contact:hover svg {
    transform: translateX(4px);
}

/* ==================== Messages ==================== */
.success-message,
.error-message {
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== Dark Mode ==================== */
body[data-theme="dark"] .contact-unified-card,
body[data-theme="dark"] .contact-social-card {
    background: #1f2937;
    border-color: #374151;
}

body[data-theme="dark"] .contact-unified-card:hover {
    border-color: var(--color-primary);
}

body[data-theme="dark"] .contact-unified-title {
    color: #f9fafb;
    border-color: #374151;
}

body[data-theme="dark"] .contact-unified-item:hover {
    background: #111827;
}

body[data-theme="dark"] .contact-unified-label {
    color: #9ca3af;
}

body[data-theme="dark"] .contact-unified-value {
    color: #f9fafb;
}

body[data-theme="dark"] .social-link {
    background: #374151;
    color: #9ca3af;
}

body[data-theme="dark"] .contact-form-wrapper {
    background: #1f2937;
    border-color: #374151;
}

body[data-theme="dark"] .form-label {
    color: #d1d5db;
}

body[data-theme="dark"] .form-input {
    background: #111827;
    border-color: #374151;
    color: #f9fafb;
}

body[data-theme="dark"] .form-input:focus {
    background: #1f2937;
    border-color: var(--color-primary);
}

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .contact-form-wrapper {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        padding: 20px;
    }

    .contact-icon-wrapper {
        width: 48px;
        height: 48px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .btn-submit-contact {
        width: 100%;
        justify-content: center;
    }

    .social-link {
        width: 44px;
        height: 44px;
    }
}