.phone-separator {
    margin: 0 2px;
}

.second-phone {
    margin-left: 2px;
}

.floating-icons {
    position: fixed !important;
    /* Always fixed on screen */
    top: 50% !important;
    /* Center vertically */
    left: 10px !important;
    /* Small gap from left edge */
    transform: translateY(-50%) !important;
    /* Align middle */
    z-index: 99999 !important;
    /* Stay on top of all content */
    display: flex;
    flex-direction: column;
    gap: 12px;
    /* Space between icons */
    pointer-events: auto;
    /* Make sure clickable */
}


/* Floating Icons Links */

.floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-icons a:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}


/* Icon Colors */

.floating-icons .call {
    background-color: #bb6f28;
    /* Call - Brownish */
}

.floating-icons .whatsapp {
    background-color: #25D366;
    /* WhatsApp Green */
}

.floating-icons .mail {
    background-color: #0d6efd;
    /* Blue */
}


/* ===========================
   Mobile Responsive Tweaks
   =========================== */

@media (max-width: 767px) {
    body.home-page .floating-icons {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .floating-icons {
        left: 8px !important;
        /* Bring closer on small screens */
        top: 50% !important;
        /* Still vertical middle */
        transform: translateY(-50%) !important;
        gap: 10px;
    }
    .floating-icons a {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/* custom header */

#header.header-one .site-navigation {
    background: #1d1f21;
    padding: 20px 0;
}

#header.header-one .logo img {
    height: 75px;
}

#header.header-one .navbar-nav>li>a {
    padding: 20px 18px;
    font-size: 13px;
    font-weight: 550;
}

#header.header-one .nav-search {
    margin-left: 15px;
    font-size: 16px;
    color: #fff;
}

#header.header-one .navbar-nav>li>a:hover {
    color: #f1c40f;
}

#header.header-one .row {
    align-items: center;
}


/* Top Bar custom Background */

#top-bar {
    background: linear-gradient(90deg, #fff);
    /* black-white-yellow gradient */
    color: #000;
    font-size: 14px;
    padding: 10px 0;
}

#top-bar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    border-bottom: 50px solid #1d1f21;
    border-right: 50px solid transparent;
}


/* Address & Info Styling */

#top-bar .top-info {
    color: #f1c40f;
}

#top-bar .top-info,
#top-bar .top-info-box {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    /* align-items: center; */
    flex-wrap: wrap;
}

#top-bar .top-info li,
#top-bar .top-info-box li {
    margin-right: 10px;
    display: flex;
    align-items: center;
}

#top-bar .info-icon {
    margin-right: 3px;
    color: #f1c40f;
    /* highlight icon yellow */
}

#top-bar .info-box-subtitle,
#top-bar .info-text {
    margin: 0;
    color: #000;
}


/* Social Icons */

#top-bar .top-social a {
    color: #000;
    margin-left: 8px;
    transition: all 0.3s;
}

#top-bar .top-social a:hover {
    color: #f1c40f;
    transform: scale(1.2);
}


/* Button */

#top-bar .btn-primary {
    background-color: #f1c40f;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 4px;
}

#top-bar .btn-primary:hover {
    background-color: #000;
    color: #fff;
}

@media (max-width: 1200px) {
    #top-bar {
        display: none !important;
    }
}