/* Container Positioning - Center Right */
.side-contact-bar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 99999;
}

/* Base Button Style */
.side-btn {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 30px 0 0 30px; /* Rounded left side only */
    font-weight: 800;
    font-family: Arial, sans-serif;
    color: #ffffff;
    box-shadow: -2px 5px 15px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    width: 50px; /* Default small width for mobile/icons */
    overflow: hidden;
    white-space: nowrap;
}

/* Color Palette - High Contrast */
.side-call {
    background: #007bff; /* Vibrant Blue */
    border-left: 3px solid #fff;
}

.side-wa {
    background: #25d366; /* Neon Green */
    border-left: 3px solid #fff;
    position: relative;
}

/* Text & Icon Styling */
.btn-icon {
    font-size: 22px;
    min-width: 30px;
}

.btn-text {
    display: none; /* Hide text by default on small screens */
    margin-left: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

/* Online Indicator Dot */
.online-dot {
    height: 10px;
    width: 10px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 8px;
    box-shadow: 0 0 5px #fff;
}

/* --- RESPONSIVENESS --- */

/* For Tablets and Desktop (Expansion on Hover) */
@media screen and (min-width: 768px) {
    .side-btn:hover {
        width: 160px; /* Expands to show text on hover */
        padding-right: 20px;
    }
    .side-btn:hover .btn-text {
        display: inline-block;
    }
}

/* For Mobile (Always stay visible but compact) */
@media screen and (max-width: 767px) {
    .side-contact-bar {
        right: 0;
    }
    .side-btn {
        width: 55px; /* Perfect size for thumb tapping */
        padding: 15px;
    }
    /* Optional: Pulse animation for WhatsApp to catch attention on mobile */
    .side-wa {
        animation: pulse-side 2s infinite;
    }
}

@keyframes pulse-side {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: -5px 5px 20px #25d366; }
    100% { transform: scale(1); }
}



/* Container Styling */
.tag-wrapper {
    background: #0a0a0a;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    margin: 20px 0;
    border: 1px solid #333;
}

.tag-title {
    color: #fff;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

/* Tag Cloud Layout */
.cloud-tags {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* Base Tag Style */
.tag-item {
    transition: all 0.3s ease;
}

.tag-item a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 8px;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* High-Contrast Color Palette */
.t-red a { background: #ff0000; border-color: #ff4d4d; }
.t-green a { background: #00c851; border-color: #00e676; }
.t-blue a { background: #007bff; border-color: #33b5e5; }
.t-orange a { background: #ff8800; border-color: #ffbb33; }
.t-purple a { background: #aa66cc; border-color: #d495f1; }
.t-cyan a { background: #00bcd4; border-color: #33feff; }
.t-gold a { background: #ffbb33; color: #000; border-color: #fff; } /* High contrast for gold */
.t-pink a { background: #e91e63; border-color: #ff6090; }
.t-dhaula a { background: #2e2e2e; border-color: #fff; }

/* Interactive Hover Effects */
.tag-item:hover {
    transform: translateY(-5px) scale(1.05);
    filter: brightness(1.2);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.tag-item a:hover {
    border-color: #fff;
}