* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(139, 69, 196, 0.1);
    animation: float 6s ease-in-out infinite;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -50px;
    animation-delay: 2s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Main Content */
.main-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.logo-container {
    margin-bottom: 40px;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b45c4, #a855f7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(139, 69, 196, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 20px 40px rgba(139, 69, 196, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 25px 50px rgba(139, 69, 196, 0.4); }
}

.logo-text {
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-subtitle {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    margin-top: -5px;
}

.welcome-title {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.4;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width: 180px;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #8b45c4, #a855f7);
    color: white;
    box-shadow: 0 10px 25px rgba(139, 69, 196, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 196, 0.4);
    background: linear-gradient(135deg, #9d55d6, #b965f9);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-tertiary {
    background: linear-gradient(135deg, #0f3460, #16213e);
    color: #a855f7;
    border: 2px solid #8b45c4;
    box-shadow: 0 10px 25px rgba(15, 52, 96, 0.3);
}

.btn-tertiary:hover {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(139, 69, 196, 0.4);
    border-color: #a855f7;
}

/* Section 2: Full Screen Video Section */
.section-2-video {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.video-background {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-background iframe {
    width: 130%;
    height: 130%;
    border: none;
    display: block;
    object-fit: cover;
    pointer-events: none;
    position: absolute;
    top: -20%;
    left: -15%;
    z-index: 1;
    transform: scale(1.2);
}

/* Crop overlay to hide YouTube UI elements */
.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 3;
    box-shadow: inset 0 0 0 30px #1a1a2e;
}

/* Complete YouTube UI masking */
.video-background::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, #1a1a2e);
    pointer-events: none;
    z-index: 2;
}

/* Social Icons */
.social-icons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
    opacity: 0;
    transform: translateX(100px) translateY(-50%);
    transition: all 0.8s ease;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    transform: translateX(-10px) scale(1.1);
}

.social-icon.youtube {
    background: rgba(255, 0, 0, 0.2);
}

.social-icon.youtube:hover {
    background: #ff0000;
}

.social-icon.instagram {
    background: rgba(225, 48, 108, 0.2);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.whatsapp {
    background: rgba(37, 211, 102, 0.2);
}

.social-icon.whatsapp:hover {
    background: #25d366;
}

.social-icon.messenger {
    background: rgba(0, 132, 255, 0.2);
}

.social-icon.messenger:hover {
    background: #0084ff;
}



/* AI Chat Button */
.ai-chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 15px 20px;
    border-radius: 30px;
    background: linear-gradient(135deg, #8b45c4, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(139, 69, 196, 0.3);
    transition: all 0.3s ease;
    z-index: 30;
    animation: bounce 2s infinite;
}

.chat-text {
    font-size: 14px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ai-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(139, 69, 196, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .welcome-title {
        font-size: 36px;
    }
    
    .subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .social-icons {
        right: 20px;
        gap: 10px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
    }
    
    .ai-chat-button {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
    }
    
    .chat-text {
        font-size: 13px;
    }
    
    .logo {
        width: 120px;
        height: 120px;
    }
    
    .logo-text {
        font-size: 28px;
    }
}

/* Pricing Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    margin: 2% auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 90%;
    max-width: 1200px;
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    background: rgba(139, 69, 196, 0.2);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px 15px 0 0;
}

.modal-header h2 {
    color: white;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.close {
    color: rgba(255, 255, 255, 0.7);
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: white;
    transform: scale(1.1);
}

.modal-body {
    padding: 30px;
}

.services-intro {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Tab Navigation */
.services-tabs {
    width: 100%;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    background: rgba(139, 69, 196, 0.3);
    border-color: rgba(139, 69, 196, 0.5);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #8b45c4, #a855f7);
    border-color: rgba(139, 69, 196, 0.8);
    box-shadow: 0 5px 15px rgba(139, 69, 196, 0.3);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-content h3 {
    color: white;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.pricing-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-item:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 69, 196, 0.5);
    box-shadow: 0 10px 25px rgba(139, 69, 196, 0.2);
}

.pricing-item h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.price {
    background: linear-gradient(135deg, #8b45c4, #a855f7);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: inline-block;
}

.details {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 12px;
    font-style: italic;
}

.pricing-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 6px;
}

/* Contact Info */
.contact-info {
    margin-top: 40px;
    padding: 25px;
    background: rgba(139, 69, 196, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(139, 69, 196, 0.3);
    text-align: center;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info i {
    color: #a855f7;
    width: 20px;
}

/* Enhanced Chat Bot - Centered Modal */
.chat-bot {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 700px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    backdrop-filter: blur(30px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: modalSlideIn 0.4s ease-out;
}

.chat-bot.show {
    display: flex;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Chat Modal Overlay */
.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    z-index: 999;
    display: none;
    animation: overlayFadeIn 0.3s ease-out;
}

.chat-overlay.show {
    display: block;
}

@keyframes overlayFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideOut {
    from {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

@keyframes overlayFadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.chat-header {
    background: rgba(139, 69, 196, 0.15);
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.chat-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    flex: 1;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b45c4, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
    box-shadow: 0 4px 12px rgba(139, 69, 196, 0.3);
}

.chat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.chat-name {
    font-weight: 600;
    font-size: 16px;
}

.chat-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.chat-controls {
    display: flex;
    gap: 4px;
}

.chat-control-btn, .minimize-chat, .close-chat {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.chat-control-btn:hover, .minimize-chat:hover, .close-chat:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: scale(1.05);
}

/* Chat Settings */
.chat-settings {
    display: none;
    background: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0;
}

.settings-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.settings-header h3 {
    color: white;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.settings-header button {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.settings-header button:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.settings-content {
    padding: 16px 20px;
}

.setting-group {
    margin-bottom: 16px;
}

.setting-group label {
    display: block;
    color: white;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.setting-group select, .setting-group input[type="range"] {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 8px 12px;
    color: white;
    font-size: 14px;
    outline: none;
}

.setting-group select:focus, .setting-group input[type="range"]:focus {
    border-color: rgba(139, 69, 196, 0.5);
}

.setting-group input[type="checkbox"] {
    margin-right: 8px;
}

#temperatureValue {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin-left: 8px;
}

.chat-body {
    flex: 1;
    padding: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.chat-conversation-info {
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.separator {
    color: rgba(255, 255, 255, 0.3);
}

.chat-messages {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
    max-height: calc(100% - 200px);
}

.message {
    display: flex;
    gap: 12px;
    max-width: 90%;
    animation: fadeInMessage 0.3s ease;
}

@keyframes fadeInMessage {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b45c4, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(139, 69, 196, 0.3);
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #64748b, #94a3b8);
}

.message-content {
    flex: 1;
    position: relative;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.message-sender {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.message-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.message-content p {
    background: rgba(139, 69, 196, 0.15);
    padding: 12px 16px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.user-message .message-content p {
    background: rgba(255, 255, 255, 0.1);
    border-bottom-right-radius: 4px;
}

.bot-message .message-content p {
    border-bottom-left-radius: 4px;
}

.message-actions {
    display: flex;
    gap: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.message:hover .message-actions {
    opacity: 1;
}

.msg-action-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.3s ease;
}

.msg-action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.05);
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.quick-btn {
    background: rgba(139, 69, 196, 0.3);
    border: 1px solid rgba(139, 69, 196, 0.5);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-btn:hover {
    background: rgba(139, 69, 196, 0.5);
    transform: translateY(-1px);
}

/* Chat Suggestions */
.chat-suggestions {
    padding: 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    background: rgba(0, 0, 0, 0.1);
}

.suggestion-pill {
    background: rgba(139, 69, 196, 0.2);
    border: 1px solid rgba(139, 69, 196, 0.3);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.suggestion-pill:hover {
    background: rgba(139, 69, 196, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 69, 196, 0.2);
}

/* Enhanced Chat Input */
.chat-input-container {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.chat-input {
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-end;
}

.input-tools {
    display: flex;
    gap: 4px;
    align-items: center;
}

.input-tool-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.input-tool-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.05);
}

.chat-input textarea {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    resize: none;
    max-height: 120px;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.chat-input textarea:focus {
    border-color: rgba(139, 69, 196, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(139, 69, 196, 0.1);
}

.chat-input textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.send-btn {
    background: linear-gradient(135deg, #8b45c4, #a855f7);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(139, 69, 196, 0.3);
}

.send-btn:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(139, 69, 196, 0.4);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.input-status {
    padding: 12px 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.typing-indicator {
    color: rgba(139, 69, 196, 0.8);
    display: none;
}

.typing-indicator.show {
    display: block;
}

.character-count {
    color: rgba(255, 255, 255, 0.5);
}

/* Typing indicator animations */
.typing-indicator::after {
    content: '';
    animation: typing 1.4s infinite ease-in-out;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    30% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .chat-bot {
        width: 95vw;
        height: 90vh;
        max-width: none;
        border-radius: 16px;
    }
    
    .chat-suggestions {
        padding: 12px 16px;
    }
    
    .suggestion-pill {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .message-avatar {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .setting-group label {
        font-size: 13px;
    }
    
    .chat-conversation-info {
        font-size: 11px;
        padding: 10px 16px;
    }
    
    .chat-header {
        padding: 12px 16px;
    }
    
    .chat-avatar {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .chat-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .chat-bot {
        width: 100vw;
        height: 100vh;
        border-radius: 0;
        top: 0;
        left: 0;
        transform: none;
    }
    
    @keyframes modalSlideIn {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes modalSlideOut {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(100%);
        }
    }
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

/* Typing Indicator */
.typing-indicator .message-content {
    padding: 15px 20px;
}

.typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    animation: typingDots 1.5s infinite ease-in-out;
}

.typing-dots span:nth-child(1) {
    animation-delay: 0ms;
}

.typing-dots span:nth-child(2) {
    animation-delay: 150ms;
}

.typing-dots span:nth-child(3) {
    animation-delay: 300ms;
}

@keyframes typingDots {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}



@media (max-width: 480px) {
    .main-content {
        padding: 0 15px;
    }
    
    .welcome-title {
        font-size: 28px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .tab-buttons {
        gap: 8px;
    }
    
    .tab-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .pricing-item {
        padding: 15px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-info p {
        font-size: 13px;
        flex-direction: column;
        gap: 5px;
    }
    
    .chat-bot {
        width: 90%;
        right: 5%;
        left: 5%;
    }
    
    .advanced-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* Locations Modal Styles */
.locations-modal {
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
}

.locations-intro {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 16px;
}

/* Map Section */
.map-section {
    background: linear-gradient(135deg, #f8f4ff 0%, #f0ebff 100%);
    margin-bottom: 30px;
    border-radius: 20px;
    border: 2px solid #d8b4fe;
    padding: 25px;
    text-align: center;
}

.map-section h3 {
    color: #4c1d95;
    margin: 0 0 15px 0;
    font-size: 20px;
    font-weight: bold;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    margin: 20px 0;
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.2);
}

#locations-map {
    height: 350px;
    width: 100%;
}

/* Studio Cards */
.studio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.studio-card {
    padding: 20px;
    border-radius: 20px;
    border: 2px solid #d8b4fe;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f8f4ff 100%);
    color: #2d1b4e;
    transition: all 0.3s ease;
    cursor: pointer;
}

.studio-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.2);
    border-color: #8a2be2;
}

.studio-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.studio-flag {
    font-size: 32px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e9d5ff 0%, #f3e8ff 100%);
    border-radius: 50%;
    border: 2px solid #c084fc;
}

.studio-info h4 {
    margin: 0 0 5px 0;
    color: #4c1d95;
    font-size: 18px;
    font-weight: bold;
}

.studio-info p {
    margin: 0;
    color: #6b46c1;
    font-size: 14px;
}

.studio-details {
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.6;
}

.studio-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #2d1b4e;
}

.studio-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.studio-btn {
    flex: 1;
    padding: 10px 15px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: none;
    cursor: pointer;
}

.studio-btn-primary {
    background: linear-gradient(135deg, #6a3d8a 0%, #8a2be2 50%, #9932cc 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.3);
}

.studio-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

.studio-btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f4ff 100%);
    color: #6a3d8a;
    border: 2px solid #8a2be2;
}

.studio-btn-secondary:hover {
    background: linear-gradient(135deg, #8a2be2 0%, #9932cc 100%);
    color: white;
    transform: translateY(-2px);
}

/* Custom map popup styles */
.leaflet-popup-content-wrapper {
    background: rgba(26, 11, 46, 0.95) !important;
    color: white !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4) !important;
    backdrop-filter: blur(20px);
    border: 2px solid #8a2be2 !important;
}

.leaflet-popup-tip {
    background: rgba(26, 11, 46, 0.95) !important;
}

.map-popup {
    text-align: center;
    padding: 15px;
    min-width: 200px;
}

.map-popup h4 {
    color: white !important;
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: bold;
}

.map-popup p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 5px 0;
    font-size: 13px;
}

.map-popup-btn {
    background: linear-gradient(135deg, #8a2be2 0%, #9932cc 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 15px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.map-popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4);
}

/* Responsive Design for Locations Modal */
@media (max-width: 768px) {
    .locations-modal {
        max-width: 95%;
        margin: 20px auto;
    }
    
    .studio-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .studio-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    #locations-map {
        height: 250px;
    }
    
    .map-section {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 200px;
    }
} 