/* Contact Page Custom Styles */

/* Banner Styles */
.cs_banner.cs_style_5 {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.cs_banner_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.cs_banner_text {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
}

.cs_banner_title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cs_banner_subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cs_banner_btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== AI ASSISTANT STYLES ===== */

/* AI Features Sidebar */
.cs_ai_features_sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cs_ai_status_card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.cs_ai_status_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.cs_ai_status_header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.cs_ai_avatar_large {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: relative;
    backdrop-filter: blur(10px);
}

.cs_ai_pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: aiPulse 2s infinite;
}

@keyframes aiPulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.cs_ai_status_info h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.cs_ai_status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
    opacity: 0.9;
}

.cs_status_indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.cs_status_indicator.online {
    background: #4ade80;
}

.cs_ai_capabilities h6 {
    margin: 0 0 15px 0;
    font-size: 14px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cs_capabilities_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs_capabilities_list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    opacity: 0.9;
}

.cs_capabilities_list li:last-child {
    margin-bottom: 0;
}

.cs_capabilities_list i {
    color: #4ade80;
    font-size: 12px;
}

/* AI Stats */
.cs_ai_stats {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cs_stat_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
}

.cs_stat_item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cs_stat_icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--cs-accent), #007bff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.cs_stat_content {
    flex: 1;
}

.cs_stat_number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--cs-primary);
}

.cs_stat_label {
    font-size: 14px;
    color: #666;
}

/* Contact Fallback */
.cs_contact_fallback {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    border: 2px dashed #ddd;
}

.cs_contact_fallback h6 {
    margin: 0 0 15px 0;
    color: var(--cs-primary);
    font-weight: 600;
}

.cs_fallback_options {
    display: flex;
    gap: 10px;
}

.cs_fallback_btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    color: var(--cs-primary);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
}

.cs_fallback_btn:hover {
    background: var(--cs-accent);
    color: white;
    border-color: var(--cs-accent);
    transform: translateY(-2px);
}

/* AI Chatbot Container */
.cs_ai_chatbot_container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    overflow: hidden;
    height: 700px;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Chatbot Header */
.cs_ai_chatbot_header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.cs_ai_chatbot_header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,0 100,80 0,100" fill="rgba(255,255,255,0.1)"/></svg>');
    pointer-events: none;
}

.cs_ai_header_left {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.cs_ai_chatbot_avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    backdrop-filter: blur(10px);
}

.cs_ai_status_dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #4ade80;
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

.cs_ai_chatbot_info {
    flex: 1;
}

.cs_ai_chatbot_title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
}

.cs_ai_chatbot_status {
    font-size: 14px;
    margin: 5px 0 0;
    opacity: 0.9;
    display: flex;
    align-items: center;
}

.cs_ai_header_actions {
    display: flex;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.cs_ai_action_btn, .cs_ai_minimize_btn {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cs_ai_action_btn:hover, .cs_ai_minimize_btn:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Chat Messages Area */
.cs_ai_chat_messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.cs_ai_chat_messages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(102,126,234,0.05)"/><circle cx="90" cy="30" r="1.5" fill="rgba(102,126,234,0.05)"/><circle cx="30" cy="70" r="1" fill="rgba(102,126,234,0.05)"/><circle cx="70" cy="90" r="1.2" fill="rgba(102,126,234,0.05)"/></svg>');
    pointer-events: none;
}

.cs_ai_chat_messages::-webkit-scrollbar {
    width: 6px;
}

.cs_ai_chat_messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.cs_ai_chat_messages::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--cs-accent), #007bff);
    border-radius: 10px;
}

/* AI Messages */
.cs_ai_message {
    display: flex;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cs_ai_bot_message {
    justify-content: flex-start;
}

.cs_ai_user_message {
    justify-content: flex-end;
}

.cs_ai_message_avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cs-accent), #007bff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    margin-right: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

.cs_ai_user_message .cs_ai_message_avatar {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    margin-right: 0;
    margin-left: 12px;
    order: 1;
}

.cs_ai_message_content {
    flex: 1;
    max-width: 75%;
}

.cs_ai_user_message .cs_ai_message_content {
    text-align: right;
}

.cs_ai_message_bubble {
    background: white;
    border-radius: 18px;
    padding: 15px 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(102,126,234,0.1);
}

.cs_ai_user_message .cs_ai_message_bubble {
    background: linear-gradient(135deg, var(--cs-accent), #007bff);
    color: white;
    margin-left: auto;
}

.cs_ai_message_header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--cs-accent);
}

.cs_ai_welcome_content h5 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: var(--cs-primary);
    font-weight: 600;
}

.cs_ai_welcome_content p {
    margin: 0 0 15px 0;
    line-height: 1.6;
    color: #555;
}

.cs_ai_services_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs_ai_services_list li {
    padding: 8px 0;
    font-size: 15px;
    color: #555;
    border-bottom: 1px solid #f0f0f0;
}

.cs_ai_services_list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cs_ai_message_meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.cs_ai_message_time {
    font-size: 12px;
    color: #999;
}

.cs_ai_message_actions {
    display: flex;
    gap: 5px;
    opacity: 0;
    transition: all 0.3s ease;
}

.cs_ai_message:hover .cs_ai_message_actions {
    opacity: 1;
}

.cs_ai_msg_action {
    width: 24px;
    height: 24px;
    border: none;
    background: none;
    color: #999;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cs_ai_msg_action:hover {
    background: #f0f0f0;
    color: var(--cs-accent);
}

/* Quick Topics */
.cs_ai_quick_topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.cs_ai_topic_btn {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: white;
    color: var(--cs-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
}

.cs_ai_topic_btn i {
    font-size: 18px;
    color: var(--cs-accent);
}

.cs_ai_topic_btn:hover {
    border-color: var(--cs-accent);
    background: linear-gradient(135deg, var(--cs-accent), #007bff);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.3);
}

.cs_ai_topic_btn:hover i {
    color: white;
}

/* Typing Indicator */
.cs_ai_typing_indicator {
    display: flex;
    align-items: center;
    padding: 0 20px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.cs_ai_typing_avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cs-accent), #007bff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    margin-right: 12px;
    animation: typingPulse 2s infinite;
}

@keyframes typingPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.cs_ai_typing_content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs_ai_typing_dots {
    display: flex;
    gap: 3px;
}

.cs_ai_typing_dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cs-accent);
    animation: typingDots 1.4s infinite;
}

.cs_ai_typing_dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.cs_ai_typing_dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingDots {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-10px); opacity: 1; }
}

.cs_ai_typing_text {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

/* Chat Input Container */
.cs_ai_chat_input_container {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 20px;
}

/* Suggestions */
.cs_ai_suggestions {
    margin-bottom: 15px;
}

.cs_ai_suggestions_header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.cs_ai_suggestions_header i {
    color: var(--cs-accent);
}

.cs_ai_suggestion_pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cs_ai_suggestion_pill {
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    background: #f8f9fa;
    color: #555;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cs_ai_suggestion_pill:hover {
    border-color: var(--cs-accent);
    background: var(--cs-accent);
    color: white;
    transform: translateY(-1px);
}

.cs_ai_suggestion_pill i {
    font-size: 11px;
    opacity: 0.7;
}

/* Chat Form */
.cs_ai_chat_form {
    position: relative;
}

.cs_ai_input_wrapper {
    position: relative;
}

.cs_ai_input_container {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 5px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cs_ai_input_container:focus-within {
    border-color: var(--cs-accent);
    background: white;
    box-shadow: 0 8px 25px rgba(102,126,234,0.15);
}

.cs_ai_attach_btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cs_ai_attach_btn:hover {
    background: rgba(102,126,234,0.1);
    color: var(--cs-accent);
}

.cs_ai_chat_input {
    flex: 1;
    border: none;
    background: none;
    padding: 12px 15px;
    font-size: 15px;
    outline: none;
    color: var(--cs-primary);
    resize: none;
}

.cs_ai_chat_input::placeholder {
    color: #999;
}

.cs_ai_input_actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs_ai_voice_btn {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: #666;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cs_ai_voice_btn:hover {
    background: rgba(102,126,234,0.1);
    color: var(--cs-accent);
}

.cs_ai_send_btn {
    background: linear-gradient(135deg, var(--cs-accent), #007bff);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

.cs_ai_send_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.4);
}

.cs_ai_send_btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.cs_ai_send_text {
    font-size: 14px;
}

.cs_ai_input_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 12px;
    color: #999;
}

.cs_ai_powered_by {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cs_ai_powered_by i {
    color: var(--cs-accent);
}

.cs_ai_char_count {
    font-family: monospace;
}

/* AI Features Footer */
.cs_ai_features_footer {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.cs_ai_feature_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: #666;
    text-align: center;
}

.cs_ai_feature_item i {
    font-size: 16px;
    color: var(--cs-accent);
    margin-bottom: 2px;
}

.cs_ai_feature_item span {
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .cs_ai_features_sidebar {
        margin-bottom: 40px;
    }

    .cs_ai_chatbot_container {
        height: 600px;
    }
}

@media (max-width: 991px) {
    .cs_ai_status_card {
        padding: 20px;
    }

    .cs_ai_avatar_large {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .cs_ai_chatbot_container {
        height: 500px;
    }
}

@media (max-width: 767px) {
    .cs_banner_title {
        font-size: 2.5rem;
    }

    .cs_ai_features_sidebar {
        order: 2;
        margin-top: 30px;
    }

    .cs_ai_chatbot_container {
        height: 400px;
        border-radius: 15px;
    }

    .cs_ai_chatbot_header {
        padding: 15px 20px;
    }

    .cs_ai_chatbot_title {
        font-size: 16px;
    }

    .cs_ai_chatbot_status {
        font-size: 13px;
    }

    .cs_ai_chat_messages {
        padding: 15px;
    }

    .cs_ai_message_content {
        max-width: 85%;
    }

    .cs_ai_quick_topics {
        grid-template-columns: repeat(2, 1fr);
    }

    .cs_ai_topic_btn {
        font-size: 11px;
        padding: 10px 12px;
    }

    .cs_ai_chat_input_container {
        padding: 15px;
    }

    .cs_ai_suggestion_pills {
        flex-direction: column;
    }

    .cs_ai_suggestion_pill {
        width: 100%;
        justify-content: center;
    }

    .cs_ai_features_footer {
        padding: 12px 15px;
    }

    .cs_ai_feature_item {
        font-size: 10px;
    }

    .cs_ai_feature_item i {
        font-size: 14px;
    }

    .cs_fallback_options {
        flex-direction: column;
    }

    .cs_ai_stats .cs_stat_item {
        padding: 12px 0;
    }
}

.cs_banner_btns .cs_btn {
    min-width: 180px;
    padding: 12px 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.cs_banner_btns .cs_btn.cs_color_2 {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}

.cs_banner_btns .cs_btn.cs_color_2:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.cs_banner_breadcrumb {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.cs_banner_breadcrumb .breadcrumb {
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cs_banner_breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.cs_banner_breadcrumb .breadcrumb-item.active {
    color: white;
}

.cs_banner_shape_1,
.cs_banner_shape_2 {
    position: absolute;
    z-index: 1;
    opacity: 0.3;
}

.cs_banner_shape_1 {
    top: 20%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.cs_banner_shape_2 {
    bottom: 20%;
    left: 10%;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Contact Info Section */
.cs_contact_info_section {
    position: relative;
    overflow: hidden;
}

/* FontAwesome Icons Fix */
.cs_field_icon i {
    transition: all 0.3s ease;
}

.cs_form_field_wrap:focus-within .cs_field_icon i {
    color: var(--cs-accent) !important;
}

.cs_iconbox_icon i,
.cs_info_card_icon i {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chatbot Styles */
.cs_chatbot_container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.cs_chatbot_header {
    background: linear-gradient(135deg, var(--cs-accent), #007bff);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.cs_chatbot_avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

.cs_chatbot_info {
    flex: 1;
}

.cs_chatbot_title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cs_chatbot_status {
    font-size: 14px;
    margin: 5px 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.cs_status_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ff88;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.cs_chatbot_minimize {
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s;
}

.cs_chatbot_minimize:hover {
    background: rgba(255,255,255,0.2);
}

.cs_chat_messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cs_message {
    display: flex;
    gap: 12px;
    animation: slideIn 0.3s ease;
}

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

.cs_message.cs_user_message {
    flex-direction: row-reverse;
}

.cs_message_avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--cs-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.cs_user_message .cs_message_avatar {
    background: #6c757d;
}

.cs_message_content {
    flex: 1;
    max-width: 80%;
}

.cs_message_bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 5px;
    position: relative;
}

.cs_user_message .cs_message_bubble {
    background: var(--cs-accent);
    color: white;
    border-bottom-left-radius: 18px;
    border-bottom-right-radius: 4px;
}

.cs_message_bubble p {
    margin: 0;
    line-height: 1.4;
}

.cs_message_bubble p + p {
    margin-top: 8px;
}

.cs_message_time {
    font-size: 12px;
    color: #6c757d;
    margin-left: 16px;
}

.cs_user_message .cs_message_time {
    text-align: right;
    margin-left: 0;
    margin-right: 16px;
}

.cs_quick_actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 12px;
}

.cs_quick_btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.cs_quick_btn:hover {
    background: var(--cs-accent);
    color: white;
    border-color: var(--cs-accent);
    transform: translateY(-1px);
}

.cs_quick_btn i {
    font-size: 12px;
}

.cs_chat_input_container {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e9ecef;
}

.cs_typing_indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #6c757d;
    font-size: 14px;
}

.cs_typing_dots {
    display: flex;
    gap: 3px;
}

.cs_typing_dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #6c757d;
    animation: typing 1.4s infinite ease-in-out;
}

.cs_typing_dots span:nth-child(1) { animation-delay: -0.32s; }
.cs_typing_dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

.cs_chat_input_wrap {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 25px;
    padding: 5px;
    gap: 8px;
}

.cs_chat_input {
    flex: 1;
    border: none;
    background: none;
    padding: 12px 15px;
    border-radius: 20px;
    outline: none;
    font-size: 14px;
    resize: none;
}

.cs_chat_input::placeholder {
    color: #6c757d;
}

.cs_attach_btn,
.cs_send_btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cs_attach_btn {
    background: #6c757d;
    color: white;
}

.cs_attach_btn:hover {
    background: #5a6268;
    transform: scale(1.05);
}

.cs_send_btn {
    background: var(--cs-accent);
    color: white;
}

.cs_send_btn:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.cs_send_btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
}

.cs_suggestions {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cs_suggestion_item {
    background: #e9ecef;
    color: #495057;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.cs_suggestion_item:hover {
    background: var(--cs-accent);
    color: white;
    transform: translateY(-1px);
}

.cs_chat_features {
    background: #f8f9fa;
    padding: 12px 20px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #e9ecef;
}

.cs_feature_item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #6c757d;
    text-align: center;
}

.cs_feature_item i {
    font-size: 14px;
    color: var(--cs-accent);
}

/* Custom Scrollbar */
.cs_chat_messages::-webkit-scrollbar {
    width: 6px;
}

.cs_chat_messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.cs_chat_messages::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.cs_chat_messages::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
.cs_iconbox .cs_iconbox_icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.cs_iconbox .cs_iconbox_icon i {
    font-size: 24px !important;
    color: white !important;
    z-index: 2;
    position: relative;
}

.cs_info_card_icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cs_info_card_icon i {
    font-size: 16px !important;
    color: white !important;
}

/* Form Field Icons */
.cs_field_icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs_field_icon i {
    font-size: 16px !important;
}

/* Ensure FontAwesome loads */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Icon Box Style 5 - Enhanced */
.cs_iconbox.cs_style_5 {
    padding: 40px 25px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.cs_iconbox.cs_style_5:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--cs-accent);
}

.cs_iconbox.cs_style_5 .cs_iconbox_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_overlay {
    opacity: 0.05;
}

.cs_iconbox.cs_style_5 .cs_iconbox_shape {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--cs-accent), #007bff);
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_shape {
    transform: scale(1.2);
    opacity: 0.15;
}

.cs_iconbox.cs_style_5 .cs_iconbox_header {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.cs_iconbox.cs_style_5 .cs_iconbox_icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cs_iconbox.cs_style_5 .cs_iconbox_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--cs-heading-color);
    transition: all 0.3s ease;
}

.cs_iconbox.cs_style_5:hover .cs_iconbox_title {
    color: var(--cs-accent);
}

.cs_iconbox.cs_style_5 .cs_iconbox_text {
    position: relative;
    z-index: 2;
}

.cs_iconbox.cs_style_5 .cs_iconbox_text p {
    line-height: 1.6;
    color: #666;
}

/* Contact Form Section */
.cs_contact_form_section {
    position: relative;
}

.cs_contact_form_left {
    padding-right: 30px;
}

.cs_contact_info_cards {
    margin-top: 30px;
}

.cs_contact_info_card {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.cs_contact_info_card:last-child {
    border-bottom: none;
}

.cs_contact_info_card:hover {
    padding-left: 10px;
}

.cs_info_card_icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cs_contact_info_card:hover .cs_info_card_icon {
    transform: scale(1.1);
}

.cs_info_card_text h6 {
    font-weight: 600;
    color: var(--cs-heading-color);
    font-size: 16px;
}

.cs_info_card_text p {
    color: #666;
    font-size: 14px;
}

/* Contact Form Wrap */
.cs_contact_form_wrap {
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.cs_contact_form_wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--cs-accent), #007bff);
}

.cs_contact_form_header {
    margin-bottom: 30px;
}

.cs_contact_form_title {
    font-size: 24px;
    font-weight: 600;
    color: var(--cs-heading-color);
    margin-bottom: 10px;
}

/* Enhanced Form Fields */
.cs_form_field_wrap {
    position: relative;
    margin-bottom: 20px;
}

.cs_form_field_wrap .cs_form_field {
    padding-left: 50px;
    height: 55px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.cs_form_field_wrap .cs_form_field:focus {
    border-color: var(--cs-accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(var(--cs-accent-rgb), 0.1);
}

.cs_form_field_wrap select.cs_form_field {
    background-image: none;
    appearance: none;
}

.cs_form_field_wrap textarea.cs_form_field {
    padding-left: 50px;
    padding-top: 15px;
    height: auto;
    min-height: 120px;
    resize: vertical;
}

.cs_field_icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    z-index: 2;
    transition: all 0.3s ease;
}

.cs_field_icon_textarea {
    top: 20px;
    transform: none;
}

.cs_form_field_wrap:focus-within .cs_field_icon svg path {
    fill: var(--cs-accent);
}

/* Form Check */
.cs_form_check_wrap {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.cs_form_check {
    margin-right: 12px;
    margin-top: 3px;
    width: 18px;
    height: 18px;
    accent-color: var(--cs-accent);
}

.cs_form_check_label {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.cs_form_check_label a {
    text-decoration: none;
    font-weight: 500;
}

.cs_form_check_label a:hover {
    text-decoration: underline;
}

/* Enhanced Button */
.cs_btn.cs_style_1.cs_color_1 {
    height: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cs_btn.cs_style_1.cs_color_1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.cs_btn.cs_style_1.cs_color_1 svg {
    transition: all 0.3s ease;
}

.cs_btn.cs_style_1.cs_color_1:hover svg {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .cs_banner_title {
        font-size: 2.5rem;
    }

    .cs_banner_subtitle {
        font-size: 1.1rem;
    }

    .cs_banner_btns {
        flex-direction: column;
        align-items: center;
    }

    .cs_contact_form_left {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .cs_contact_form_wrap {
        padding: 30px;
    }

    .cs_iconbox.cs_style_5 {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .cs_banner {
        min-height: 400px;
    }

    .cs_banner_title {
        font-size: 2rem;
    }

    .cs_banner_subtitle {
        font-size: 1rem;
    }

    .cs_banner_btns .cs_btn {
        min-width: 160px;
        padding: 10px 25px;
    }

    .cs_contact_form_wrap {
        padding: 25px;
    }

    .cs_contact_form_title {
        font-size: 20px;
    }

    .cs_iconbox.cs_style_5 {
        padding: 30px 20px;
    }

    .cs_iconbox.cs_style_5 .cs_iconbox_icon {
        width: 60px;
        height: 60px;
    }

    .cs_iconbox.cs_style_5 .cs_iconbox_icon i {
        font-size: 20px !important;
    }
}/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cs_iconbox.cs_style_5 {
    animation: fadeInUp 0.6s ease forwards;
}

.cs_iconbox.cs_style_5:nth-child(1) { animation-delay: 0.1s; }
.cs_iconbox.cs_style_5:nth-child(2) { animation-delay: 0.2s; }
.cs_iconbox.cs_style_5:nth-child(3) { animation-delay: 0.3s; }

/* Hover Effects */
.cs_contact_info_card {
    cursor: pointer;
}

.cs_contact_info_card:hover .cs_info_card_text h6 {
    color: var(--cs-accent);
}

/* Form Validation Styles */
.cs_form_field:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.cs_form_field:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

/* Loading State */
.cs_btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cs_btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Chatbot Responsive Styles */
@media (max-width: 991px) {
    .cs_chatbot_container {
        height: 550px;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .cs_chatbot_container {
        height: 500px;
    }

    .cs_chatbot_header {
        padding: 15px;
    }

    .cs_chatbot_avatar {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .cs_chatbot_title {
        font-size: 16px;
    }

    .cs_chatbot_status {
        font-size: 12px;
    }

    .cs_chat_messages {
        padding: 15px;
    }

    .cs_message_bubble {
        padding: 10px 12px;
        font-size: 14px;
    }

    .cs_quick_actions {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .cs_quick_btn {
        font-size: 12px;
        padding: 8px 10px;
    }

    .cs_chat_input_container {
        padding: 12px 15px;
    }

    .cs_chat_features {
        padding: 8px 15px;
    }

    .cs_feature_item {
        font-size: 10px;
    }

    .cs_feature_item i {
        font-size: 12px;
    }
}

.cs_form_field:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

/* Loading State */
.cs_btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cs_btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
