html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Floating WhatsApp Button Container */
.pos-w {
    position: fixed;
    bottom: 30px;
    right: 25px;
    background: #7DAF9C; /* Muted soft dusty green */
    padding: 12px 18px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    animation: fadeInUp 0.6s ease;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* WhatsApp Link */
.whatsapp-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Label Text */
.lbl-w {
    color: #F5F5F5;
    font-size: 13px;
    margin-right: 10px;
    line-height: 1.3;
    text-align: right;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* WhatsApp Text Highlight */
.wtp {
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

/* WhatsApp Icon */
.icn-w {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
}

/* Hover Effects */
.pos-w:hover {
    background: #689C89;
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
    transform: translateY(-2px);
}

    .pos-w:hover .icn-w {
        transform: translateY(-2px) rotate(4deg) scale(1.06);
        box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    }

/* Fade In Animation */
@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive for Tablets */
@media (max-width: 768px) {
    .pos-w {
        bottom: 45px;
        right: 12px;
        padding: 10px 14px;
        width: auto;
        height: auto;
    }

    .lbl-w {
        font-size: 11px;
    }

    .wtp {
        font-size: 13px;
    }

    .icn-w {
        width: 45px;
        height: 45px;
    }
}

/* Responsive for Small Screens */
@media (max-width: 480px) {
    .pos-w {
        bottom: 45px;
        right: 8%;
        padding: 10px;
        width: 48px;
        height: 48px;
        justify-content: center;
    }

    .lbl-w, .wtp {
        display: none;
    }

    .icn-w {
        width: 42px;
        height: 42px;
    }
}


.inquiry-wrapper {
    position: fixed;
    bottom: 120px;
    right: 30px;
    z-index: 9999;
}

.inquiry-link {
    display: inline-block;
    text-decoration: none;
    background-color: #ff0000;
    color: #fff;
    padding: 10px 40px; /* increased padding */
    border-radius: 50px; /* more rounded */
    box-shadow: 0 6px 14px rgba(0,0,0,0.25);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 15px; /* increased font size */
}

    .inquiry-link:hover {
        background-color: #c0392b;
        box-shadow: 0 8px 18px rgba(0,0,0,0.35);
    }

.inquiry-label {
    font-size: 25px; /* increased label font size */
    font-weight: 1000;
    letter-spacing: 0.5px;
    color: #fff;
}

@media (max-width: 767px) {
    .inquiry-wrapper {
        bottom: 100px;
        right: 20px;
    }

    .inquiry-link {
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 8px;
    }

    .inquiry-label {
        font-size: 16px;
    }
}



