#live-chat-button {
    position: fixed;
    bottom: 10px;
    right: 80px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

#chat-container {
    position: fixed;
    bottom: 20px;
    height: 0;
    right: 20px;
    width: 320px;
    background:var(--white-color);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
    z-index: 9999;
    animation: fadeInUp 0.3s ease;
}

#message {
    padding: 20px;
}

#chat-container h3 {
    margin-top: 0;
    text-align: center;
    color: var(--grey-color);
}

.chat-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f5f5f5;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
}

.chat-close:hover {
    background: #ff4d4d;
}

.chat-close img {
    width: 14px;
    height: 14px;
}

#contact-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: var(--blue-color);
}

textarea {
    min-height: 100px;
    resize: vertical;
}

#send-contact-form {
    background:var(--blue-color);
    color: var(--white-color);
    border: none;
    padding: 10px 0;
    margin-top: 10px;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 15px;
    transition: background 0.3s;
}

#send-contact-form:hover {
    background: #006edc;
}

@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 400px) {
    #chat-container {
        width: 90%;
        right: 5%;
        bottom: 10px;
    }
}

/* =====================================================
   CONTACT + LIVE CHAT
   Matches site design system
   Brand color: rgb(6,156,212)
   ===================================================== */

/* ---------- BASE ---------- */
a {
    text-decoration: none;
    color: rgb(6,156,212);
}

a:hover {
    text-decoration: underline;
}

p {
    margin: 0;
    line-height: 1.7;
}

/* ---------- CONTACT WRAPPER ---------- */
.contact-wrapper {
    max-width: 820px;
    margin: 90px auto;
    background: var(--white-color);
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* ---------- HEADER ---------- */
.contact-header {
    text-align: center;
}

.contact-header h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.contact-header p {
    color: var(--grey-color);
}

/* ---------- DETAILS ---------- */
.contact-details {
    background: var(--white-color);
    padding: 24px;
    border-radius: 16px;
}

.contact-details h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.contact-details p {
    color: var(--grey-color);
    margin-bottom: 6px;
}

/* ---------- INFO ---------- */
.contact-info {
    text-align: center;
}

.contact-info h2 {
    font-size: 24px;
    margin-bottom: 6px;
}

.contact-info p {
    color: var(--grey-color);
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 480px) {
    .contact-wrapper {
        margin: 60px 16px;
        padding: 30px 20px;
    }

    #chat-container {
        right: 16px;
        width: calc(100% - 32px);
    }
}
