﻿
/* Language dropdown smaller width */
.menu1 {
    min-width: 225px;
    text-align: left;
}


.navbar-custom {
    position: fixed;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
    transition: background-color 0.3s, backdrop-filter 0.3s;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
}



/* Navbar styling */
.navbar {
    position: relative;
    z-index: 1050;
    background-color: #f7f9fa;
}

/* Fix for tablet and mobile view */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        z-index: 1060;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 15px;
    }
}

/* Custom animated hamburger (toggle button) */
.navbar-toggler {
    border: none;
    background: transparent;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.toggler-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: black;
    margin: 6px auto;
    transition: all 0.4s ease;
}

/* Animation to X */
.navbar-toggler[aria-expanded="true"] .top-bar {
    transform: rotate(45deg);
    position: relative;
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .middle-bar {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .bottom-bar {
    transform: rotate(-45deg);
    position: relative;
    top: -8px;
}

/* Navbar fixed and transparent effect */
.navbar-custom {
    background: rgba(255, 255, 255, 1);
    transition: background-color 0.4s ease, box-shadow 0.4s ease;
    z-index: 1050;
}

    .navbar-custom.scrolled {
        background: rgba(255, 255, 255, 0.9);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

.nav-link:hover {
    background-color: #F0F2F7;
    border-radius: 5px;
}


.nav-link {
    color: #181A1F;
}

.dropdown-item {
    color: #181A1F;
    font-weight: 500;
    padding: 10px;
}

    .dropdown-item:hover {
        background-color: #F0F2F7;
    }


.promo-section {
    background: #f7f7f7;
    border-radius: 20px;
    padding: 0px 50px;
}

.promo-img {
    max-width: 320px;
    width: 100%;
}

.qr-img {
    width: 90px;
}

@media (max-width: 767px) {
    .promo-section {
        text-align: center;
        padding: 30px 20px;
    }

    .qr-img {
        margin: 0 auto;
    }
}



/*Our Services*/

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --transition: all 0.3s ease;
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 100%;
    background: white;
    position: relative;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 1px 5px rgba(0,0,0,0.15);
    }

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .card:hover::before {
        transform: scaleX(1);
    }

.card-img-container {
    overflow: hidden;
    position: relative;
    height: 130px;
}

    .card-img-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.card:hover .card-img-container img {
    transform: scale(1.05);
}

.card-body {
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

    .card h4::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 40px;
        height: 3px;
        background-color: var(--secondary-color);
        transition: var(--transition);
    }

.card:hover h4::after {
    width: 100%;
}

.card p {
    color: #555;
    line-height: 1.6;
}

.card-icon {
    position: absolute;
    top: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    transition: var(--transition);
    z-index: 2;
}

.card:hover .card-icon {
    background: var(--accent-color);
    transform: rotate(15deg) scale(1.1);
}

.row {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

    .section-title h2 {
        font-weight: 700;
        position: relative;
        display: inline-block;
        margin-bottom: 1rem;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 130px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
            border-radius: 2px;
        }

    .section-title p {
        color: #666;
        max-width: 605px;
        margin: 0 auto;
    }

@media (max-width: 768px) {
    .card {
        margin-bottom: 2rem;
    }
}



/* Enhanced Version 5 - Underline Animation */
.learn-arrow-v5 {
    position: relative;
    padding: 12px 24px 12px 0;
    color: #2c3e50;
    font-weight: 500;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

    .learn-arrow-v5::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: #f39c12;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .learn-arrow-v5::after {
        content: "→";
        position: absolute;
        right: 0;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .learn-arrow-v5:hover {
        color: #f39c12;
        padding-right: 30px;
        transform: translateY(-2px);
    }

        .learn-arrow-v5:hover::before {
            transform: scaleX(1);
        }

        .learn-arrow-v5:hover::after {
            opacity: 1;
            transform: translateX(0);
        }


/*Feature*/

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #2ecc71;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --transition: all 0.3s ease;
}


.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        border-radius: 2px;
    }

.feature-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 1px 1px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: none;
    padding: 1rem;
    text-align: center;
}


.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.safety-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.travel-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.sustainability-icon {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-description {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
}

.feature-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-highlight {
    transform: scaleX(1);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #777;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .feature-card {
        margin-bottom: 2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
}

/*City By City Ride*/

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --transition: all 0.3s ease;
}

.section-header {
    margin-bottom: 3rem;
    text-align: center;
}

.city-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
    height: 100%;
    position: relative;
    border: none;
}

.city-image {
    height: 180px;
    overflow: hidden;
    position: relative;
}

    .city-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: var(--transition);
    }

.city-card:hover .city-image img {
    transform: scale(1.05);
}



.city-name {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.city-content {
    padding: 1.5rem;
}

.city-routes {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.route-count {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-right: 10px;
}

.route-text {
    color: #555;
    font-size: 0.9rem;
}

.city-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-value {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #777;
}

.see-all-card {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    height: 100%;
    color: white;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(52, 152, 219, 0.2);
    border: none;
    cursor: pointer;
}

    .see-all-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(52, 152, 219, 0.3);
    }

.see-all-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.see-all-card:hover .see-all-icon {
    transform: scale(1.1);
}

.see-all-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.see-all-subtext {
    font-size: 0.9rem;
    opacity: 0.9;
}

.map-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.popular-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .city-card, .see-all-card {
        margin-bottom: 2rem;
    }
}


/*Footer*/

:root {
    --primary: #1a1a2e;
    --secondary: #16213e;
    --accent: #0f3460;
    --highlight: #e94560;
    --light: #f8f9fa;
    --text-light: #a8a8a8;
}

.modern-footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

    .modern-footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--highlight) 0%, var(--accent) 100%);
    }

.footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

    .footer-heading::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 0;
        width: 30px;
        height: 3px;
        background-color: var(--highlight);
        border-radius: 2px;
    }

.footer-links {
    list-style: none;
    padding-left: 0;
}

    .footer-links li {
        margin-bottom: 0.8rem;
        transition: transform 0.2s;
    }

        .footer-links li:hover {
            transform: translateX(5px);
        }

    .footer-links a {
        text-decoration: none;
        color: var(--text-light);
        transition: all 0.3s;
        display: flex;
        align-items: center;
    }

        .footer-links a:hover {
            color: white;
        }

        .footer-links a i {
            margin-right: 8px;
            font-size: 0.8rem;
            opacity: 0.7;
        }

.city-rides {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.city-ride-link {
    display: block;
    padding: 0.5rem 0;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

    .city-ride-link:hover {
        color: white;
        padding-left: 10px;
    }

    .city-ride-link:last-child {
        border-bottom: none;
    }

.footer-divider {
    margin: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-section {
    font-size: 0.9rem;
    color: var(--text-light);
}

.copyright-links a {
    text-decoration: none;
    color: var(--text-light);
    margin-right: 1.5rem;
    transition: color 0.3s;
    position: relative;
}

    .copyright-links a:hover {
        color: white;
    }

    .copyright-links a:not(:last-child)::after {
        content: '•';
        position: absolute;
        right: -12px;
        color: var(--text-light);
    }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

    .social-link:hover {
        background: var(--highlight);
        transform: translateY(-3px);
    }

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: white;
    padding: 0.6rem 1rem;
    width: 100%;
    margin-bottom: 10px;
}

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

.newsletter-btn {
    background: var(--highlight);
    border: none;
    border-radius: 6px;
    color: white;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
}

    .newsletter-btn:hover {
        background: #d63a55;
        transform: translateY(-2px);
    }

.app-badges {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.app-badge {
    display: block;
    width: 120px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s;
}

    .app-badge:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .modern-footer {
        padding: 2rem 0 1rem;
    }

    .footer-heading {
        margin-top: 1.5rem;
    }

    .social-links, .app-badges {
        justify-content: center;
    }

    .copyright-links {
        text-align: center;
        margin-top: 1rem;
    }

        .copyright-links a {
            margin: 0 0.75rem;
        }
}

.company-info {
    color: white;
    padding: 40px;
    max-width: 847px;
    /*margin-left: 40px;*/
    margin-top: 135px;
}

.jumbotron {
    /*background: rgba(0, 0, 0, 0.6);*/
    border-radius: 15px;
    /*padding: 40px;*/
    margin-bottom: 30px;
    backdrop-filter: blur(-2px);
}

    .jumbotron h1 {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
    }

    .jumbotron p.lead {
        font-size: 1.25rem;
        margin-bottom: 25px;
        color: #f0f0f0;
    }

.feature-highlight {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

    .feature-highlight i {
        font-size: 1.5rem;
        color: #d4af37;
        margin-right: 15px;
        width: 30px;
    }

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: #ccc;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 30px;
    border-left: 4px solid #d4af37;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.testimonial-author {
    font-weight: 600;
    color: #d4af37;
}

.booking-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 550px;
    max-width: 95vw;
    margin: 10px;
    overflow: hidden;
    /* position: fixed;*/
    top: 20px;
    right: 20px;
}

.card-header {
    background-color: #1a1a1a;
    color: white;
    padding: 20px;
    text-align: center;
    position: relative;
}

    .card-header h1 {
        font-size: 24px;
        font-weight: 600;
        margin: 0;
    }

    .card-header .subtitle {
        font-size: 14px;
        opacity: 0.8;
        margin-top: 5px;
    }

.nav-tabs {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
}

    .nav-tabs .nav-link {
        flex: 1;
        text-align: center;
        padding: 15px;
        border: none;
        border-radius: 0;
        color: #6c757d;
        font-weight: 500;
    }

        .nav-tabs .nav-link.active {
            color: #000;
            background-color: #fff;
            border-bottom: 3px solid #E94560;
        }

.card-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.form-control, .form-select {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 12px 15px;
    font-size: 16px;
    width: 100%;
}

    .form-control:focus, .form-select:focus {
        border-color: #000;
        box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
    }

.info-text {
    color: #6c757d;
    font-size: 14px;
    margin-top: 5px;
}

.divider {
    height: 1px;
    background-color: #e9ecef;
    margin: 25px 0;
}

.note {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px;
}

.btn-search {
    background-color: #E94560;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-search:hover {
        background-color: #333;
    }

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

    .feature-item i {
        color: #28a745;
    }

.passenger-selector {
    display: flex;
    align-items: center;
    gap: 10px;
}

.passenger-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ced4da;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.passenger-count {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

@media (max-width: 1200px) {
    .company-info {
        margin-left: 20px;
        max-width: 500px;
    }

    .jumbotron h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .company-info {
        position: relative;
        margin: 20px auto;
        max-width: 90%;
    }

    .booking-card {
        position: relative;
        margin: 20px auto;
    }

    .stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .booking-card {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto;
        width: 95%;
    }

    .company-info {
        padding: 20px;
    }

    .jumbotron {
        padding: 25px;
    }

        .jumbotron h1 {
            font-size: 2rem;
        }
}

@media (max-width: 576px) {
    .card-body {
        padding: 20px;
    }

    .booking-card {
        margin: 10px;
    }

    .feature-list {
        flex-direction: column;
        gap: 10px;
    }

    .stats {
        flex-direction: column;
        gap: 15px;
    }
}


/*.why-section {
    background: linear-gradient(135deg, #E94560, #b32c45);
}
*/
.why-card {
    background: #ffffff;
    border-radius: 14px;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: 0.3s;
}

    .why-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 0px 15px rgba(214, 58, 85, 0.6);
    }



/* Floating chat box */
.tts-fab-wrapper {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1080;
    padding: 4px;
}

.tts-fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.tts-chat-box {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 340px;
    max-width: 92vw;
    z-index: 1079;
    display: none;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.2s ease-out;
}

    .tts-chat-box.tts-show {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }

.tts-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    border: none;
}

.tts-header {
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: #fff;
}

.tts-header-title {
    font-size: 1rem;
    font-weight: 600;
}

.tts-header-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
}

.tts-body {
    max-height: 340px;
    overflow-y: auto;
    background: #ffffff;
}

.tts-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #20c997;
    display: inline-block;
    margin-right: 4px;
}
