/* Phone Icon Vertical Alignment Fix */
.header-call-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.call-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0075c1 0%, #005a94 100%);
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 117, 193, 0.25);
    transition: all 0.3s ease;
}

.phone-icon:hover {
    box-shadow: 0 6px 16px rgba(0, 117, 193, 0.35);
    transform: translateY(-2px);
}

.phone-icon i {
    font-size: 20px;
    color: #ffffff;
    transform: rotate(90deg);
    line-height: 1;
    font-weight: 600;
}

.call-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.call-label {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 2px;
}

.phone-number {
    font-size: 1.5rem !important;
    font-weight: 600;
    color: var(--color-heading, #1d2746);
    line-height: 1.1;
}

/* Mobile Menu Phone Icon Fix */
.mobile-call a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    text-decoration: none;
}

.mobile-call a::before {
    content: "\f095";
    font-family: "Font Awesome 5 Pro", "FontAwesome";
    font-weight: 900;
    font-size: 16px;
    transform: rotate(90deg);
    display: inline-block;
    line-height: 1;
}

.mobile-call a {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

/* Alternative mobile menu styling if icon is added manually */
.mobile-call .phone-icon-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.mobile-call .phone-icon-mobile i {
    font-size: 16px;
    transform: rotate(90deg);
    color: currentColor;
    line-height: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .header-call-section {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .call-info {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .phone-number {
        font-size: 1.2rem !important;
    }
    
    .phone-icon i {
        font-size: 16px;
    }
    
    .mobile-call a {
        font-size: 15px;
        padding: 10px 15px;
    }
    
    .mobile-call a::before {
        font-size: 14px;
    }
}
