
/* Contact Info Styles */
.contact-info-wrapper {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-family: 'Inter', sans-serif;
    width: 100%;
    padding-right: 20px;
    box-sizing: border-box;
}

.contact-trigger {
    width: 40px;
    height: 40px;
    background: #007bff;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    transition: all 0.3s ease;
    animation: pulse-blue 2s infinite;
    position: relative;
    z-index: 1000;
}

.contact-trigger:hover {
    transform: scale(1.1);
    background: #0056b3;
}

@keyframes pulse-blue {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 123, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

.contact-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    text-align: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-modal.active {
    display: block;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.contact-modal h3 {
    margin-top: 0;
    color: #333;
    font-size: 1.2rem;
}

.contact-modal .info-item {
    margin: 15px 0;
    font-size: 1rem;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-modal .info-item a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.contact-modal .close-btn {
    margin-top: 15px;
    padding: 8px 20px;
    background: #eee;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.2s;
}

.contact-modal .close-btn:hover {
    background: #ddd;
}

.contact-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.contact-overlay.active {
    display: block;
    opacity: 1;
}

/* For blurring the main content */
.blur-target {
    transition: filter 0.4s ease;
}

.main-blurred {
    filter: blur(5px);
    pointer-events: none;
}
