/* Reset */
body {
    margin: 0;
    padding: 0;
}

/* Top Bar */
.topbar {
    width: 100%;
    background: linear-gradient(90deg, #0f0f14, #1c1c25);
    color: #fff;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 14px;
    padding: 10px 4%;
    box-sizing: border-box;
}

/* Flex Layout */
.mobile-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.left-section,
.right-section {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Phone */
.phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

/* Email */
.email {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* WhatsApp Button */
.whatsapp {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: 6px 14px;
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: 0.3s ease;
}

.whatsapp:hover {
    transform: translateY(-2px);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    font-size: 15px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .hide-mobile {
        display: none !important;
    }

    .mobile-bar {
        justify-content: space-between !important;
    }

    .left-section,
    .right-section {
        gap: 12px;
    }
}
