* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
}

/* Demo Page */
.demo-page {
    min-height: 100vh;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.demo-page h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.demo-page p {
    color: #666;
    font-size: 1.1rem;
}

/* Chat Widget Container */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Toggle Button - Pill Style */
.chat-toggle {
    height: 48px;
    padding: 8px 24px;
    border-radius: 24px;
    background: #000000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
}

.chat-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background: #1a1a1a;
}

.chat-toggle:active {
    transform: translateY(0);
}

.toggle-text {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    width: 100%;
}

.chat-toggle .close-text {
    opacity: 0;
    width: 0;
    margin-left: 0;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    overflow: hidden;
}

.chat-widget.active .chat-toggle .toggle-text {
    opacity: 0;
    width: 0;
    margin-right: 0;
    overflow: hidden;
}

.chat-widget.active .chat-toggle .close-text {
    opacity: 1;
    width: 100%;
    margin-left: 0;
}

/* Chat Panel */
.chat-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 600px;
    max-height: calc(100vh - 100px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.chat-widget.active .chat-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header */
.chat-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
    background: white;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.header-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    color: #000000;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-button:hover {
    background-color: #f0f0f0;
}

/* Messages Area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 16px 20px;
    background: white;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

/* Quick Actions */
.quick-actions-title {
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin: 0 0 10px 0;
    padding: 0;
    text-align: left;
    width: 100%;
    flex-shrink: 0;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    width: 100%;
    margin-top: 0;
    flex-shrink: 0;
}

.action-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 300;
    color: #000000;
    font-family: inherit;
    width: 100%;
    position: relative;
}

.action-button:hover {
    background: #f5f5f5;
    transform: translateX(4px);
}

.action-button span {
    flex: 1;
}

.action-arrow {
    opacity: 0;
    width: 0;
    color: #000000;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.action-button:hover .action-arrow {
    opacity: 1;
    width: 16px;
}

/* Input Area */
.chat-input-area {
    padding: 10px 20px 12px;
    border-top: 1px solid #e0e0e0;
    background: white;
    border-radius: 0 0 20px 20px;
    flex-shrink: 0;
}

.input-wrapper {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 3px 3px 3px 12px;
    transition: border-color 0.2s;
}

.input-wrapper:focus-within {
    border-color: #000000;
    background: white;
}

.chat-input {
    flex: 1;
    border: none;
    background: transparent;
    outline: none;
    font-size: 0.75rem;
    color: #000000;
    padding: 8px 0;
    font-family: inherit;
    resize: none;
    overflow-y: auto;
    min-height: 20px;
    max-height: 120px;
    line-height: 1.4;
}

.chat-input::placeholder {
    color: #999;
}

.send-button {
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    padding: 4px;
    color: #000000;
}

.send-button:hover {
    color: #333;
    transform: translateY(-2px);
}

.send-button:active {
    transform: translateY(0);
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.send-button svg {
    color: currentColor;
}

.disclaimer {
    font-size: 0.55rem;
    color: #666;
    margin-top: 8px;
    line-height: 1.3;
    text-align: left;
}

/* Responsive */
@media (max-width: 480px) {
    .chat-panel {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        bottom: 80px;
        right: 10px;
        border-radius: 16px;
    }

    .chat-widget {
        bottom: 10px;
        right: 10px;
    }

    .chat-toggle {
        height: 44px;
        padding: 0 16px;
        font-size: 0.85rem;
    }
}

/* Animation for messages */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message {
    animation: slideIn 0.3s ease-out;
}

.whatsapp-agent-card-container {
    width: 100%;
    margin: 8px 0;
}

.agent-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
    animation: slideIn 0.3s ease-out;
}

.agent-card-content {
    padding: 14px;
}

.agent-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.agent-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.agent-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.agent-name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.agent-title {
    margin: 0;
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.3;
}

.agent-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #666666;
}

.agent-phone svg {
    color: #666666;
    flex-shrink: 0;
}

.agent-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}

.agent-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background:  #25d366;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
    width: 100%;
}

.agent-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    background: #1fa857;
}

.agent-whatsapp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}

.agent-whatsapp-button svg {
    width: 16px;
    height: 16px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .agent-card-content {
        padding: 12px;
    }

    .agent-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .agent-avatar {
        width: 48px;
        height: 48px;
    }

    .agent-name {
        font-size: 0.9rem;
    }

    .agent-title,
    .agent-phone {
        font-size: 0.75rem;
    }

    .agent-whatsapp-button {
        padding: 9px 14px;
        font-size: 0.8rem;
    }
}

/* Question Widget Styles */
.question-widget-container {
    width: 100%;
    margin: 8px 0;
}

.question-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 14px;
    animation: slideIn 0.3s ease-out;
}

.question-text {
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
}

.question-options {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.question-option-button {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
    font-family: inherit;
}

.question-option-button.outline {
    background: white;
    color: #000000;
    border: 1.5px solid #e0e0e0;
}

.question-option-button.outline:hover {
    background: #f5f5f5;
    border-color: #000000;
    transform: translateY(-1px);
}

.question-option-button.primary {
    background: #000000;
    color: white;
}

.question-option-button.primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.question-option-button:active {
    transform: translateY(0);
}

/* WhatsApp Agent Card Widget Styles */
.whatsapp-agent-card-container {
    width: 100%;
    margin: 8px 0;
}

.agent-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
    animation: slideIn 0.3s ease-out;
}

.agent-card-content {
    padding: 14px;
}

.agent-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.agent-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.agent-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.agent-name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.agent-title {
    margin: 0;
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.3;
}

.agent-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #666666;
}

.agent-phone svg {
    color: #666666;
    flex-shrink: 0;
}

.agent-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}

.agent-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #04bc48;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
    width: 100%;
}

.agent-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    background: #04bc48;
}

.agent-whatsapp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}

.agent-whatsapp-button svg {
    width: 16px;
    height: 16px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .agent-card-content {
        padding: 12px;
    }

    .agent-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .agent-avatar {
        width: 48px;
        height: 48px;
    }

    .agent-name {
        font-size: 0.9rem;
    }

    .agent-title,
    .agent-phone {
        font-size: 0.75rem;
    }

    .agent-whatsapp-button {
        padding: 9px 14px;
        font-size: 0.8rem;
    }
}

/* Question Widget Styles */
.question-widget-container {
    width: 100%;
    margin: 8px 0;
}

.question-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 14px;
    animation: slideIn 0.3s ease-out;
}

.question-text {
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
}

.question-options {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.question-option-button {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
    font-family: inherit;
}

.question-option-button.outline {
    background: white;
    color: #000000;
    border: 1.5px solid #e0e0e0;
}

.question-option-button.outline:hover {
    background: #f5f5f5;
    border-color: #000000;
    transform: translateY(-1px);
}

.question-option-button.primary {
    background: #000000;
    color: white;
}

.question-option-button.primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.question-option-button:active {
    transform: translateY(0);
}

/* WhatsApp Agent Card Widget Styles */
.whatsapp-agent-card-container {
    width: 100%;
    margin: 8px 0;
}

.agent-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
    animation: slideIn 0.3s ease-out;
}

.agent-card-content {
    padding: 14px;
}

.agent-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.agent-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.agent-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.agent-name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.agent-title {
    margin: 0;
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.3;
}

.agent-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #666666;
}

.agent-phone svg {
    color: #666666;
    flex-shrink: 0;
}

.agent-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}

.agent-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
    width: 100%;
}

.agent-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    background: linear-gradient(135deg, #1fa857 0%, #0f6b5e 100%);
}

.agent-whatsapp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}

.agent-whatsapp-button svg {
    width: 16px;
    height: 16px;
}

/* B2B Contact Form Styles */
.b2b-form-container {
    width: 100%;
    margin: 8px 0;
}

.b2b-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 14px;
    animation: slideIn 0.3s ease-out;
    max-height: 500px;
    overflow-y: auto;
}

.b2b-form-card::-webkit-scrollbar {
    width: 4px;
}

.b2b-form-card::-webkit-scrollbar-track {
    background: transparent;
}

.b2b-form-card::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

.b2b-form-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.b2b-form-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
}

.b2b-form-subtitle {
    margin: 0 0 10px 0;
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
}

.b2b-form-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 10px 0;
}

.b2b-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #000000;
    display: block;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #333333;
    user-select: none;
}

.radio-label input[type="radio"] {
    cursor: pointer;
    width: 14px;
    height: 14px;
    accent-color: #000000;
}

.form-input {
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.form-select {
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.form-select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.b2b-submit-button {
    padding: 10px 14px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.b2b-submit-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.b2b-submit-button:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .agent-card-content {
        padding: 12px;
    }

    .agent-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .agent-avatar {
        width: 48px;
        height: 48px;
    }

    .agent-name {
        font-size: 0.9rem;
    }

    .agent-title,
    .agent-phone {
        font-size: 0.75rem;
    }

    .agent-whatsapp-button {
        padding: 9px 14px;
        font-size: 0.8rem;
    }

    .b2b-form-card {
        max-height: 400px;
    }
}

/* Question Widget Styles */
.question-widget-container {
    width: 100%;
    margin: 8px 0;
}

.question-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 14px;
    animation: slideIn 0.3s ease-out;
}

.question-text {
    margin: 0 0 12px 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: #000000;
    line-height: 1.4;
}

.question-options {
    display: flex;
    gap: 8px;
    flex-direction: column;
}

.question-option-button {
    padding: 10px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
    font-family: inherit;
}

.question-option-button.outline {
    background: white;
    color: #000000;
    border: 1.5px solid #e0e0e0;
}

.question-option-button.outline:hover {
    background: #f5f5f5;
    border-color: #000000;
    transform: translateY(-1px);
}

.question-option-button.primary {
    background: #000000;
    color: white;
}

.question-option-button.primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.question-option-button:active {
    transform: translateY(0);
}

/* WhatsApp Agent Card Widget Styles */
.whatsapp-agent-card-container {
    width: 100%;
    margin: 8px 0;
}

.agent-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 100%;
    animation: slideIn 0.3s ease-out;
}

.agent-card-content {
    padding: 14px;
}

.agent-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.agent-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.agent-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.agent-name {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
}

.agent-title {
    margin: 0;
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.3;
}

.agent-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #666666;
}

.agent-phone svg {
    color: #666666;
    flex-shrink: 0;
}

.agent-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}

.agent-whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #04bc48;
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
    width: 100%;
}

.agent-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
    background: #04bc48;
}

.agent-whatsapp-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(37, 211, 102, 0.2);
}

.agent-whatsapp-button svg {
    width: 16px;
    height: 16px;
}

/* Contact Form Styles */
.contact-form-container {
    width: 100%;
    margin: 8px 0;
}

.contact-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 14px;
    animation: slideIn 0.3s ease-out;
    max-height: 550px;
    overflow-y: auto;
}

.contact-form-card::-webkit-scrollbar {
    width: 4px;
}

.contact-form-card::-webkit-scrollbar-track {
    background: transparent;
}

.contact-form-card::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

.contact-form-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.contact-form-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
}

.contact-form-subtitle {
    margin: 0 0 10px 0;
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
}

.contact-form-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 10px 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-submit-button {
    padding: 10px 14px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.contact-submit-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-submit-button:active {
    transform: translateY(0);
}

/* B2B Contact Form Styles */
.b2b-form-container {
    width: 100%;
    margin: 8px 0;
}

.b2b-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 14px;
    animation: slideIn 0.3s ease-out;
    max-height: 500px;
    overflow-y: auto;
}

.b2b-form-card::-webkit-scrollbar {
    width: 4px;
}

.b2b-form-card::-webkit-scrollbar-track {
    background: transparent;
}

.b2b-form-card::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 2px;
}

.b2b-form-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.b2b-form-title {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000000;
}

.b2b-form-subtitle {
    margin: 0 0 10px 0;
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
}

.b2b-form-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 10px 0;
}

.b2b-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: #000000;
    display: block;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.8rem;
    color: #333333;
    user-select: none;
}

.radio-label input[type="radio"] {
    cursor: pointer;
    width: 14px;
    height: 14px;
    accent-color: #000000;
}

.form-input {
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.form-select {
    padding: 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
    transition: border-color 0.2s;
}

.form-select:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.b2b-submit-button {
    padding: 10px 14px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 8px;
}

.b2b-submit-button:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.b2b-submit-button:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .agent-card-content {
        padding: 12px;
    }

    .agent-header {
        gap: 10px;
        margin-bottom: 10px;
    }

    .agent-avatar {
        width: 48px;
        height: 48px;
    }

    .agent-name {
        font-size: 0.9rem;
    }

    .agent-title,
    .agent-phone {
        font-size: 0.75rem;
    }

    .agent-whatsapp-button {
        padding: 9px 14px;
        font-size: 0.8rem;
    }

    .b2b-form-card {
        max-height: 400px;
    }
}

/* Pet Owner Widget Styles */
.pet-owner-widget-container {
    margin-bottom: 12px;
}

.pet-owner-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    max-width: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.pet-owner-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.pet-owner-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.pet-owner-subtitle {
    font-size: 14px;
    color: #666666;
    margin: 8px 0;
}

.pet-owner-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 12px 0;
}

.pet-owner-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
}

.form-input,
.form-select,
.form-textarea {
    padding: 10px 12px;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

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

.pet-owner-submit-button {
    padding: 12px 16px;
    background: rgb(13, 13, 13);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 4px;
}

.pet-owner-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.pet-owner-submit-button:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 480px) {
    .pet-owner-card {
        padding: 12px;
    }
    
    .pet-owner-title {
        font-size: 15px;
    }
}