/* ==========================================================================
   GLOWING BLUE GRADIENT HEADER LINE & PROFESSIONAL LIGHT FOOTER
   ========================================================================== */

.footer-top-glow-line {
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00d2ff, #0066ff, #00d2ff);
    background-size: 200% 100%;
    animation: glowSweep 3s infinite linear;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.6);
}

@keyframes glowSweep {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.footer-section {
    background-color: #ffffff;
    color: #1e293b;
    padding: 4rem 2rem 2rem 2rem;
    position: relative;
    border-top: 1px solid #e2e8f0;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1.5fr 1.1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.title-accent-line.mini {
    width: 35px;
    height: 3px;
    background: #0066ff;
    margin-bottom: 1.25rem;
    border-radius: 2px;
}

.brand-logo {
    height: 45px;
    width: auto;
}

.brand-tagline {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #64748b;
    margin: 1.2rem 0;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #f1f5f9;
    color: #0066ff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-socials a:hover {
    background-color: #0066ff;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #475569;
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #0066ff;
}

.services-link-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.footer-contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-details li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.92rem;
    color: #475569;
}

.footer-contact-details a {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-details a:hover {
    color: #0066ff;
}

.contact-icon { margin-top: 3px; }
.phone-color { color: #0066ff; }
.mail-color { color: #ea580c; }
.gmail-color { color: #dc2626; }
.geo-color { color: #0284c7; }

.footer-divider {
    border: 0;
    height: 1px;
    background-color: #e2e8f0;
    margin: 3rem 0 1.5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom-links a {
    color: #64748b;
    text-decoration: none;
    margin-left: 15px;
}

.footer-bottom-links a:hover {
    color: #0066ff;
}

/* ==========================================================================
   WHATSAPP CHATBOT INTERACTIVE STYLES
   ========================================================================== */

.wa-chatbot-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

/* Floating Action Button */
.wa-float-btn {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

.wa-float-btn:hover {
    transform: scale(1.08);
}

.wa-red-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background-color: #ef4444;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* Toast Notifications */
.wa-notification-toast {
    position: absolute;
    bottom: 75px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 220px;
    transition: all 0.3s ease;
}

.wa-toast-bubble {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: popupSlide 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-toast-bubble p {
    margin: 0;
    font-size: 0.85rem;
    color: #0f172a;
    font-weight: 600;
}

.red-badge-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes popupSlide {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Chat Window Box */
.wa-chat-window {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    display: none;
    flex-direction: column;
}

.wa-chat-window.is-open {
    display: flex;
    animation: popupSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-chat-header {
    background: #075e54;
    color: #ffffff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-agent-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-agent-icon {
    font-size: 24px;
}

.wa-agent-info h4 {
    margin: 0;
    font-size: 0.95rem;
}

.wa-agent-info span {
    font-size: 0.72rem;
    opacity: 0.85;
}

.wa-close-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}

.wa-chat-body {
    padding: 15px;
    background-color: #efeae2;
}

.chat-msg.bot-msg {
    background: #ffffff;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #1e293b;
    margin-bottom: 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Questionnaire Form */
.form-group {
    margin-bottom: 10px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 4px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 0.85rem;
    box-sizing: border-box;
}

.wa-submit-btn {
    width: 100%;
    background-color: #25d366;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s ease;
}

.wa-submit-btn:disabled {
    background-color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.7;
}

@media (max-width: 991px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 767px) {
    .footer-grid { grid-template-columns: 1fr; }
    .services-link-split { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}