/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C41E24;
    --dark-red: #A01E24;
    --text-dark: #333333;
    --text-gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --border-gray: #DDDDDD;
}

body {
    font-family: 'Kumbh Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: var(--primary-red);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

nav a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.phone-btn {
    background: var(--white);
    color: var(--text-dark) !important;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
    border: 2px solid var(--white);
}

.phone-btn:hover {
    background: transparent;
    color: var(--white) !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: var(--primary-red);
    color: var(--white);
    padding: 80px 20px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 13px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

/* Form Styles */
.form-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-card h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: none;
    background: #E8E8E8;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.phone-input-group {
    display: flex;
    align-items: center;
    background: #E8E8E8;
    border-radius: 5px;
    overflow: hidden;
}

.phone-input-group .phone-flag {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 12px 10px 12px 15px;
    color: var(--text-dark);
    font-size: 14px;
    white-space: nowrap;
}

.phone-input-group .phone-flag img {
    width: 20px;
    height: auto;
}

.phone-input-group input {
    background: transparent;
    border: none;
    padding-left: 5px;
}

.country-select {
    flex-shrink: 0;
}

.country-dropdown {
    padding: 12px 10px;
    border: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

/* Dark theme country dropdown for contact form */
.country-select-dark {
    flex-shrink: 0;
}

.country-dropdown-dark {
    padding: 10px;
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.country-dropdown-dark option {
    background: #424242;
    color: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.submit-btn {
    width: 100%;
    background: var(--primary-red);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: var(--dark-red);
}

/* Section Styles */
section {
    padding: 80px 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-dark);
}

/* About Section */
.about {
    background: var(--white);
    padding: 60px 20px;
}

.about-badge {
    background: var(--primary-red);
    color: var(--white);
    display: block;
    width: 100%;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 0 25px 25px 0;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    max-height: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-content {
    padding: 20px 0;
}

.about-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
    font-weight: 700;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-btn {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
    transition: all 0.3s;
}

.about-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 36, 0.3);
}

/* Stats Section */
.stats {
    background: #000000;
    color: var(--white);
    padding: 40px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 20px;
    position: relative;
}

.stat-number {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '+';
    color: #FF8C00;
    font-size: 40px;
    position: absolute;
    margin-left: 8px;
    top: 0;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Gallery Section */
.gallery {
    background: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.gallery-badge {
    background: var(--primary-red);
    color: var(--white);
    display: inline-block;
    padding: 12px 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 25px;
}

.gallery-title {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 40px;
    line-height: 1.3;
    font-weight: 700;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    padding: 10px 0;
}

.carousel-slide {
    flex: 0 0 auto;
    width: calc(33.333% - 14px);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.carousel-slide:hover img {
    transform: scale(1.05);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.carousel-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: var(--primary-red);
}

/* Why Avail Treatment Section */
.why-treatment {
    background: var(--white);
    padding: 80px 20px;
}

.why-treatment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.why-treatment-image {
    position: relative;
}

.why-treatment-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.why-treatment-content {
    padding: 20px 0;
}

.why-badge {
    display: inline-block;
    background: var(--primary-red);
    color: var(--white);
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 3px;
}

.why-title {
    font-size: 38px;
    color: var(--text-dark);
    margin-bottom: 35px;
    line-height: 1.3;
    font-weight: 700;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.feature-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .why-treatment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-treatment-image img {
        max-width: 100%;
    }

    .why-title {
        font-size: 28px;
    }
}

/* Pricing Section */
.pricing {
    background: var(--white);
    text-align: center;
}

.pricing-badge {
    background: var(--primary-red);
    color: var(--white);
    display: inline-block;
    padding: 12px 60px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border-radius: 25px;
}

.pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-card h3 {
    color: var(--primary-red);
    font-size: 32px;
    margin-bottom: 20px;
}

.pricing-card p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Testimonials Section */
.testimonials {
    background: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.testimonial-badge {
    background: var(--primary-red);
    color: var(--white);
    display: block;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border-radius: 25px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 900px;
    margin: 50px auto 30px;
    gap: 20px;
}

.testimonial-content {
    flex: 1;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-slide {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-slide.active {
    display: flex;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    max-width: 700px;
}

.testimonial-arrow {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.testimonial-arrow:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

.testimonial-dot.active {
    background: #2196F3;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq {
    background: var(--light-gray);
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    padding: 20px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

/* Contact Section */
.contact-section {
    background: var(--white);
    padding: 0;
    padding-bottom: 60px;
}

.contact-header {
    background: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.contact-header h2 {
    color: var(--text-dark);
    font-size: 36px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

.contact-header .text-red {
    color: var(--primary-red);
}

.text-red {
    color: var(--primary-red);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: #424242;
    padding: 50px 40px;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    color: var(--white);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.contact-form-wrapper .form-group {
    margin-bottom: 15px;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    font-size: 14px;
    font-family: inherit;
    color: var(--white);
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-wrapper select {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-wrapper select option {
    background: #3d3d3d;
    color: var(--white);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-bottom-color: var(--white);
}

.phone-input {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.phone-input input {
    border-bottom: none;
}

.phone-flag {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.phone-flag img {
    width: 20px;
    height: auto;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    accent-color: #4CAF50;
}

.checkbox-group label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-group a {
    color: #4FC3F7;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.contact-form-wrapper .submit-btn {
    width: 100%;
    background: var(--primary-red);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.contact-form-wrapper .submit-btn:hover {
    background: var(--dark-red);
}

.contact-info-wrapper {
    background: var(--white);
    padding: 50px 40px;
}

.address-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}

.map-container {
    margin-bottom: 25px;
}

.call-btn {
    display: block;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

.call-btn:hover {
    background: var(--dark-red);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-header h2 {
        font-size: 24px;
    }
}

/* Footer */
footer {
    background: #424242;
    color: var(--white);
    padding: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
    gap: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.footer-about {
    text-align: justify;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    height: 50px;
}

.footer-about p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-red);
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-contact .contact-icon {
    color: var(--primary-red);
    font-size: 16px;
}

.footer-contact .contact-item p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.footer-contact .contact-item a {
    color: rgba(255, 255, 255, 0.85);
}

.follow-title {
    margin-top: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.footer-map {
    border-radius: 8px;
    overflow: hidden;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-red);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav ul li a {
        color: var(--white);
    }

    nav ul.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-title {
        font-size: 28px;
    }
}

/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Kumbh Sans', sans-serif;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.chatbot-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.chatbot-button.hidden {
    display: none;
}

.chatbot-window {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 380px;
    height: 520px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease;
}

.chatbot-window.hidden {
    display: none;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chatbot-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 4px;
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-status {
    font-size: 12px;
    opacity: 0.9;
}

.chatbot-header-actions {
    display: flex;
    gap: 8px;
}

.chatbot-close,
.chatbot-clear {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.chatbot-close:hover,
.chatbot-clear:hover {
    opacity: 1;
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #f5f5f5;
}

.chat-message {
    margin-bottom: 16px;
    display: flex;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message .message-content {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.chat-message.bot .message-content {
    background: white;
    color: #333;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.chat-message.user .message-content {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    border-bottom-right-radius: 4px;
}

.chatbot-input-container {
    padding: 16px;
    background: white;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

#chatbot-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 24px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

#chatbot-input:focus {
    border-color: var(--primary-red);
}

.chatbot-send {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.chatbot-send:hover {
    transform: scale(1.05);
}

/* Typing indicator */
.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    background: #999;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.typing-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.typing-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        height: 580px;
        bottom: 70px;
        right: 0;
    }
}