/* @import "all.css"; 
@import "bootstrap.min.css"; 

@import "magnific-popup.css"; 
@import "mousecursor.css"; 
@import "slicknav.min.css"; 
@import "swiper-bundle.min.css";  */


/* <link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
      <link href="css/slicknav.min.css" rel="stylesheet">
      <link rel="stylesheet" href="css/swiper-bundle.min.css">
      <link href="css/all.css" rel="stylesheet" media="screen">
      <link href="css/animate.css" rel="stylesheet">
      <link rel="stylesheet" href="css/magnific-popup.css">
      <link rel="stylesheet" href="css/mousecursor.css"> */

:root {
    --bg: #0b1020;
    --panel: #0f172a;
    --panel-glass: rgba(15,23,42,.85);
    --primary: #109543;
    --primary-dark: #109543;
    --accent: #10b981;
    --text: #e5e7eb;
    --muted: #94a3b8;
    --border: rgba(148,163,184,.2);
}

* {
    box-sizing: border-box;
    /* font-family: 'Inter',system-ui,-apple-system,sans-serif; */
}

/*body {
    margin: 0;
    background: radial-gradient(circle at top,#111827,#020617);
    color: var(--text)
}*/

/* Launcher */
.chat-launcher {
    position: fixed;
    right: 16px;
    bottom: 35px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--primary),var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 25px 60px rgba(59,130,246,.45);
    transition: transform .25s ease,box-shadow .25s ease;
}

    .chat-launcher:hover {
        transform: translateY(-3px) scale(1.04);
        box-shadow: 0 30px 70px rgba(59,130,246,.6)
    }

/* Chatbox */
.chatbox {
    position: fixed;
    right: 16px;
    bottom: 96px;
    width: 420px;
    max-width: 96vw;
    height: 600px;
    max-height: 80vh;
    background: linear-gradient(180deg,#0f172a,#020617);
    border: 1px solid var(--border);
    border-radius: 22px;
    display: none;
    flex-direction: column;
    z-index: 9999;
    box-shadow: 0 40px 90px rgba(0,0,0,.7);
}

/* Header */
.chat-header {
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    /* background: #109543; */
    backdrop-filter: blur(12px);
    border-radius: 22px 22px 0 0;
    /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
}

    .chat-header h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        gap: 8px;
        align-items: center
    }

    .chat-header span {
        font-size: 12px;
        /* color: var(--muted); */
    }

.header-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: rgba(255,255,255,.06);
    /* color: var(--muted); */
}

    .header-close:hover {
        background: rgb(175 6 6);
        color: #fff1f1;
    }

/* Body */
.chat-body {
    flex: 1;
    padding: 18px;
    overflow-y: auto
}

/* Messages */
.msg-row {
    display: flex;
    margin-bottom: 14px
}

    .msg-row.bot {
        justify-content: flex-start
    }

    .msg-row.user {
        justify-content: flex-end
    }

.msg {
    display: flex;
    max-width: 90%
}

    .msg.bot {
        flex-direction: row
    }

    .msg.user {
        flex-direction: row-reverse
    }

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    margin: 0 6px;
    color: #fff
}

    .avatar.bot {
        background: linear-gradient(135deg, #e87a1f, #e87a1f);
    }

    .avatar.user {
        background: linear-gradient(135deg,#10b981,#059669)
    }

.bubble {
    padding: 10px 13px;
    border-radius: 16px;
    font-size: 13px;
    line-height: 1.5;
    background: rgba(255,255,255,.06);
    border: 1px solid var(--border);
    word-wrap: break-word;
    white-space: pre-wrap;
}

.msg.user .bubble {
    background: linear-gradient(135deg,#3b82f6,#1d4ed8);
    border: none;
    color: #fff;
}

/* Service selection card (PRO LOOK) */
.service-selection {
    margin-top: 14px;
    padding: 18px 16px;
    border-radius: 18px;
    background: radial-gradient(circle at top, rgba(37,99,235,.25), rgba(15,23,42,.95));
    border: 1px solid rgba(129,140,248,.45);
    box-shadow: 0 18px 45px rgba(15,23,42,.9);
    position: relative;
    overflow: hidden;
}

    .service-selection::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 0% 0%,rgba(96,165,250,.18),transparent 55%), radial-gradient(circle at 100% 0%,rgba(56,189,248,.18),transparent 55%);
        opacity: .9;
        pointer-events: none;
    }

.service-selection-header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.service-selection-header-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22,163,74,.18);
    color: #bbf7d0;
    font-size: 13px;
}

.service-selection strong {
    font-size: 13px;
    letter-spacing: .01em;
}

.service-selection p {
    position: relative;
    font-size: 12px;
    color: #9ca3af;
    margin: 2px 0 12px;
}

.service-selection-buttons {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-btn {
    border: none;
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 12px;
    background: linear-gradient(135deg,#1d4ed8,#1e40af);
    color: #e5f2ff;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37,99,235,.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform .18s ease,box-shadow .18s ease, background .18s ease,opacity .18s ease;
    white-space: nowrap;
}

    .service-btn span.badge {
        padding: 2px 8px;
        border-radius: 999px;
        background: rgba(15,23,42,.6);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: .05em;
        color: #bfdbfe;
    }

    .service-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 16px 40px rgba(30,64,175,.7);
        background: linear-gradient(135deg,#2563eb,#1d4ed8);
    }

    .service-btn:active {
        transform: translateY(0);
        box-shadow: 0 8px 18px rgba(30,64,175,.7);
        opacity: .9;
    }

/* Service card */
.service-card {
    margin-top: 10px;
    padding: 12px;
    border-radius: 14px;
    background: #020617;
    border: 1px solid rgba(59,130,246,.3);
}

    .service-card strong {
        font-size: 13px
    }

    .service-card p {
        font-size: 12px;
        color: #cbd5f5;
        margin: 6px 0 8px
    }

.service-links {
    margin: 6px 0 4px;
}

    .service-links a {
        display: inline-block;
        margin-right: 10px;
        font-size: 12px;
        color: #93c5fd;
        text-decoration: none;
    }

        .service-links a i {
            margin-right: 4px;
        }

        .service-links a:hover {
            color: #bfdbfe
        }

/* Consultation button + form */
.cta {
    margin-top: 4px
}

    .cta button {
        padding: 7px 12px;
        border-radius: 999px;
        border: none;
        background: linear-gradient(135deg,#10b981,#059669);
        color: #fff;
        font-weight: 600;
        font-size: 12px;
        cursor: pointer;
    }

.consult-form {
    margin-top: 8px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(15,23,42,.95);
    border: 1px solid rgba(148,163,184,.4);
}

    .consult-form h4 {
        margin: 0 0 6px;
        font-size: 13px;
        color: #bbf7d0
    }

    .consult-form p {
        margin: 0 0 8px;
        font-size: 11px;
        color: #cbd5e1
    }

    .consult-form input {
        width: 100%;
        margin-bottom: 8px;
        padding: 7px 9px;
        border-radius: 9px;
        border: 1px solid rgba(148,163,184,.6);
        background: rgba(15,23,42,.9);
        color: #e5e7eb;
        font-size: 12px;
    }

        .consult-form input::placeholder {
            color: #64748b
        }

    .consult-form button {
        width: 100%;
        padding: 8px 10px;
        border-radius: 9px;
        border: none;
        background: linear-gradient(135deg,#10b981,#059669);
        color: #fff;
        font-size: 12px;
        font-weight: 600;
        cursor: pointer;
    }

/* Footer */
.chat-footer {
    padding: 14px 16px;
    border-top: 1px solid var(--border);
    background: rgba(15,23,42,.9);
    border-radius: 0 0 22px 22px;
}

    .chat-footer .input-wrap {
        display: flex;
        gap: 8px
    }

    .chat-footer input {
        flex: 1;
        padding: 10px 12px;
        border-radius: 14px;
        border: 1px solid var(--border);
        background: rgba(255,255,255,.05);
        color: var(--text);
        font-size: 13px;
    }

        .chat-footer input::placeholder {
            color: var(--muted)
        }

    .chat-footer button {
        padding: 10px 14px;
        border-radius: 14px;
        border: none;
        background: linear-gradient(135deg,#10b981,#059669);
        color: #fff;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
    }

/* Scrollbar */
.chat-body::-webkit-scrollbar {
    width: 6px
}

.chat-body::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.25);
    border-radius: 3px
}

/* Responsive */
@media(max-width:480px) {
    .chatbox {
        right: 8px;
        left: 8px;
        width: auto;
        height: 80vh;
        bottom: 90px
    }

    .chat-launcher {
        right: 12px;
        bottom: 63px;
        width: 56px;
        height: 56px;
        font-size: 20px
    }

    .msg {
        max-width: 100%
    }
}
