/* ===== TOPBAR PREMIUM ===== */
.topbar {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #222; /* darker text for contrast */
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.topbar-inner {
    max-width: 1200px;
    margin: auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LEFT SECTION */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ITEM */
.top-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #222;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    line-height: 1;
}

/* ICON STYLE */
.icon-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.icon-circle img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* HOVER EFFECT */
.top-item:hover {
    transform: translateY(-2px);
    color: #0b5ed7; /* blue hover now */
}

.top-item:hover .icon-circle {
    background: rgba(11, 94, 215, 0.15);
}

/* WHATSAPP SPECIAL */
.top-item.whatsapp:hover {
    color: #25D366;
}

.top-item.whatsapp:hover .icon-circle {
    background: rgba(37, 211, 102, 0.18);
}

/* ===== BRAND LINE ===== */
.topbar-brandline {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(11, 94, 215, 0.08);
}

.topbar-brandline-inner {
    max-width: 1200px;
    margin: auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* LOGO */
.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    height: 65px;   
    width: auto;
    border-radius: 8px;
}

/* TEXT */
.brand-text h1 {
    font-size: 40px;   
    margin: 0;
    color: #0b5ed7;
    font-weight: 800;
    line-height: 1.1;
}

.brand-text p {
    margin: 4px 0 0;
     font-size: 20px;
    color: #555;
    font-weight: 500;
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
    .topbar-inner {
        padding: 8px 14px;
    }

    .topbar-left {
        gap: 12px;
    }

    .top-item {
        font-size: 13px;
        gap: 6px;
    }

    .icon-circle {
        display: none;
    }

    .topbar-brandline-inner {
        padding: 10px 14px;
        gap: 12px;
    }

    .brand-logo-img {
        height: 48px;
    }

    .brand-text h1 {
        font-size: 17px;
    }

    .brand-text p {
        font-size: 12px;
    }
}

/* ===== SMALL PHONES ===== */
@media (max-width: 480px) {
    .topbar {
        font-size: 12px;
    }

    .topbar-left {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
    }

    .top-item {
        font-size: 12px;
        white-space: nowrap;
    }

    .brand-logo-img {
        height: 42px;
    }

    .brand-text h1 {
        font-size: 15px;
    }

    .brand-text p {
        font-size: 11px;
    }
}