/* Contact Modal Specific Styles */
.contact-modal-container {
    max-width: 400px;
    padding: 0;
    background: var(--surface-color);
}

.contact-content {
    padding: 40px;
    text-align: center;
}

.contact-content h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-option {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-align: left;
    gap: 16px;
    position: relative;
    overflow: hidden;

    /* 3D Tilt Props - Desktop Only */
    transform-style: preserve-3d;
    will-change: transform;
}

@media (min-width: 1024px) {
    .contact-option {
        transform: perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
    }
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.08);
    /* transform removed to avoid conflict with tilt */
    border-color: rgba(255, 255, 255, 0.1);
}

.contact-option .icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-option .text {
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    position: relative;
    z-index: 2;
}

.contact-option .sub {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 2px;
    position: relative;
    z-index: 2;
}

.contact-option.whatsapp:hover {
    border-color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.contact-option.email:hover {
    border-color: var(--accent-color);
    background: rgba(59, 130, 246, 0.1);
}