/* Modern Top Header Styles */
.top-header {
    background: linear-gradient(45deg, #ffdae0, #ee6192);
    position: relative;
    overflow: hidden;
}

.contact-badge {
    border-radius: 50px;
    padding: 8px 25px;
    background: linear-gradient(10deg, #a51962, #ef6f9c);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(171, 106, 73, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(171, 106, 73, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(10deg, #a51962, #ef6f9c);
}
.contact-badge i:hover {
    color:#fff!important;
}
.contact-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    font-family: var(--body-font);
}

.phone-icon {
    margin-right: 12px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    animation: pulse 2s infinite;
}

.phone-number {
    position: relative;
    padding-left: 12px;
    color: rgba(255, 255, 255, 0.95);
}

.phone-number::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Add shimmer effect */
.contact-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
} 