/* custom.css - Redesign Overrides */
:root {
    --primary: #1F3F6B;    /* Deep Navy */
    --accent: #FFB400;     /* Premium Gold/Yellow */
    --text-dark: #0A1629;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-item, .pricing-item, .process-single, .testimonial-quote {
    border-radius: 15px !important;
    border: 1px solid #eee;
    box-shadow: var(--card-shadow);
    transition: 0.4s ease;
}

.theme-btn {
    border-radius: 5px;
    background: var(--accent);
    font-weight: 600;
}

.site-title-tagline {
    color: var(--accent);
    font-weight: 700;
}

/* Floating contact fix */
.btn-floating span { font-weight: 600; }

.service-list li {
    padding: 10px 0;
    font-size: 17px;
    border-bottom: 1px dashed #ddd;
}
.service-list li:last-child {
    border-bottom: none;
}
.service-list i {
    font-size: 20px;
}
.mb-100 { margin-bottom: 100px; }
/* --- Floating Contact Buttons System --- */
.fab-container{
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999; /* always on top */
}

/* safety: prevent bootstrap/others from overriding */
.fab-container a{
    text-decoration: none !important;
}

.fab-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 56px;
    height: 56px;

    border-radius: 999px;
    color: #fff !important;

    box-shadow: 0 8px 22px rgba(0,0,0,0.28);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
    font-weight: 600;
    line-height: 1;
    overflow: hidden;
}

/* Icon */
.fab-btn i{
    font-size: 24px;
    line-height: 1;
}

/* label hidden on mobile */
.fab-btn span{
    display: none;
    white-space: nowrap;
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
}

/* WhatsApp */
.fab-whatsapp{
    background: #25D366;
}

/* Call */
.fab-call{
    background: #1F3F6B;
}

/* Hover */
.fab-btn:hover{
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
    opacity: 1;
}

/* Desktop: show label + wider button */
@media (min-width: 768px){
    .fab-btn{
        width: auto;
        padding: 12px 18px;
        height: 56px;
    }
    .fab-btn span{
        display: inline-block;
    }
}

/* Optional: avoid overlapping scroll-top button (if it is bottom-right) */
@media (max-width: 767px){
    #scroll-top{
        bottom: 95px !important; /* push scroll-top above FABs */
    }
}

