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

/* Mobile-specific fixes */
@media (max-width: 600px) {
    * {
        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    input, textarea, select {
        -webkit-user-select: text;
        -khtml-user-select: text;
        -moz-user-select: text;
        -ms-user-select: text;
        user-select: text;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    background: transparent;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(20px);
    border-radius: 25px;
    margin: 20px 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,6 C10,6 8,4 6,4 C4,4 2,6 2,8 C2,10 4,12 6,14 C8,16 10,18 10,18 C10,18 12,16 14,14 C16,12 18,10 18,8 C18,6 16,4 14,4 C12,4 10,6 10,6 Z" fill="%23e74c3c" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

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

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.header h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    background: linear-gradient(135deg, #2c3e50, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { 
        text-shadow: 3px 3px 6px rgba(0,0,0,0.2);
        transform: scale(1);
    }
    100% { 
        text-shadow: 3px 3px 6px rgba(231, 76, 60, 0.4), 0 0 20px rgba(231, 76, 60, 0.3);
        transform: scale(1.02);
    }
}

.logo {
    height: 140px;
    width: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.logo:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 20px 40px rgba(231, 76, 60, 0.3));
}

.logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #e74c3c, #f39c12, #e74c3c);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo:hover::before {
    opacity: 0.2;
    animation: pulse 2s infinite;
}

.tagline {
    font-size: 1.4rem;
    font-style: italic;
    opacity: 0.9;
    font-weight: 500;
    font-family: 'Dancing Script', cursive;
    letter-spacing: 1px;
    color: #e74c3c;
    text-align: center;
    margin-top: 10px;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    animation: taglineFloat 4s ease-in-out infinite;
}

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

.event-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.8));
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.event-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.6s;
}

.event-info:hover::before {
    left: 100%;
}

.event-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #333;
}

.date {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: #2c3e50 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.time {
    color: #e74c3c !important;
    font-weight: 600;
    font-size: 1.1rem !important;
    font-family: 'Poppins', sans-serif;
}

.venue {
    color: #666 !important;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
}


/* Highlights Section */
.highlights-section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 20px;
    margin: 25px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlights-section h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    font-weight: 700;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

@media (max-width: 600px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.highlight-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border-left: 4px solid #e74c3c;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.highlight-card:hover::before {
    left: 100%;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    background: white;
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(231, 76, 60, 0.4);
}

.highlight-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Chat Section */
.chat-section {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 30px 25px;
    border-radius: 20px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.chat-info h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #2c3e50 !important;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    letter-spacing: 2px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.chat-info h3 i {
    color: #e74c3c;
    font-size: 1.6rem;
}

.chat-toggle-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.chat-toggle-btn:hover {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(231, 76, 60, 0.5);
}

.chat-info p {
    font-size: 1rem;
    color: #666 !important;
    margin-bottom: 0;
    font-style: italic;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-info p:hover {
    color: #e74c3c;
    transform: translateY(-2px);
}

.chat-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="chatDots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23e74c3c" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23chatDots)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.chat-info {
    position: relative;
    z-index: 2;
}

/* Force light theme for chat section */
.chat-section {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
}

/* Hide any floating chat icons or buttons */
[data-n8n-chat-widget] button[aria-label*="chat"],
[data-n8n-chat-widget] button[aria-label*="Chat"],
[data-n8n-chat-widget] .chat-toggle,
[data-n8n-chat-widget] .floating-chat,
button[data-testid*="chat"],
button[aria-label*="open chat"],
button[aria-label*="close chat"] {
    display: none !important;
}

/* Reduce font sizes inside the n8n chatbot */
[data-n8n-chat-widget] * {
    font-size: 0.85rem !important;
}

[data-n8n-chat-widget] h1,
[data-n8n-chat-widget] h2,
[data-n8n-chat-widget] h3,
[data-n8n-chat-widget] h4,
[data-n8n-chat-widget] h5,
[data-n8n-chat-widget] h6 {
    font-size: 1rem !important;
}

[data-n8n-chat-widget] .chat-title,
[data-n8n-chat-widget] [class*="title"],
[data-n8n-chat-widget] [class*="header"],
[data-n8n-chat-widget] h1,
[data-n8n-chat-widget] h2,
[data-n8n-chat-widget] h3,
[data-n8n-chat-widget] h4,
[data-n8n-chat-widget] h5,
[data-n8n-chat-widget] h6,
[data-n8n-chat-widget] .title,
[data-n8n-chat-widget] .header-title,
[data-n8n-chat-widget] .chat-header,
[data-n8n-chat-widget] .widget-title {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
}

[data-n8n-chat-widget] .message,
[data-n8n-chat-widget] [class*="message"],
[data-n8n-chat-widget] .text,
[data-n8n-chat-widget] [class*="text"] {
    font-size: 0.8rem !important;
}

[data-n8n-chat-widget] input,
[data-n8n-chat-widget] textarea,
[data-n8n-chat-widget] [class*="input"] {
    font-size: 0.8rem !important;
}

[data-n8n-chat-widget] button,
[data-n8n-chat-widget] [class*="button"] {
    font-size: 0.75rem !important;
}

/* Specific targeting for chatbot header/title area */
[data-n8n-chat-widget] .header,
[data-n8n-chat-widget] .chat-header,
[data-n8n-chat-widget] .widget-header,
[data-n8n-chat-widget] .title-bar,
[data-n8n-chat-widget] .header-content,
[data-n8n-chat-widget] .chat-title-container {
    font-size: 0.7rem !important;
}

[data-n8n-chat-widget] .header *,
[data-n8n-chat-widget] .chat-header *,
[data-n8n-chat-widget] .widget-header *,
[data-n8n-chat-widget] .title-bar *,
[data-n8n-chat-widget] .header-content *,
[data-n8n-chat-widget] .chat-title-container * {
    font-size: 0.7rem !important;
}

.chat-section * {
    color: inherit !important;
}

.chat-info h3 {
    color: #2c3e50 !important;
}

.chat-info p {
    color: #666 !important;
}

/* Force mobile font size reduction */
@media (max-width: 768px) {
    .chat-info h3 {
        font-size: 1.1rem !important;
    }
    
    .chat-info p {
        font-size: 0.75rem !important;
    }
    
    .chat-info h3 i {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .chat-info h3 {
        font-size: 0.9rem !important;
    }
    
    .chat-info p {
        font-size: 0.65rem !important;
    }
    
    .chat-info h3 i {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 360px) {
    .chat-info h3 {
        font-size: 0.8rem !important;
    }
    
    .chat-info p {
        font-size: 0.6rem !important;
    }
    
    .chat-info h3 i {
        font-size: 0.7rem !important;
    }
}

/* Chat Messages */
.chat-messages {
    height: 500px;
    overflow-y: auto;
    padding: 25px 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(248, 249, 250, 0.05));
    border-radius: 20px;
    margin: 20px 0;
}

.message {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.message-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    position: relative;
}

.message-avatar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, #e74c3c, #f39c12, #e74c3c);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.message:hover .message-avatar::before {
    opacity: 0.3;
}

.bot-message .message-avatar {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.user-message .message-avatar {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
}

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

.message-text {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 20px 28px;
    border-radius: 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #333;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

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

.user-message .message-text {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    margin-left: auto;
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    text-align: right;
}

.message-time {
    font-size: 0.85rem;
    color: #999;
    margin-top: 8px;
}

.user-message .message-time {
    color: rgba(255, 255, 255, 0.7);
}

/* Chat Input */
.chat-input-container {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.chat-input {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.chat-input input {
    flex: 1;
    padding: 20px 30px;
    border: 2px solid #e0e0e0;
    border-radius: 35px;
    font-size: 1.05rem;
    outline: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.chat-input input:focus {
    border-color: #e74c3c;
    background: white;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.send-button {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    position: relative;
    overflow: hidden;
}

.send-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.send-button:hover::before {
    left: 100%;
}

.send-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-btn {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    padding: 15px 28px;
    font-size: 1rem;
    color: #2c3e50;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.quick-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
    transition: left 0.5s;
}

.quick-btn:hover::before {
    left: 100%;
}

.quick-btn:hover {
    background: #e74c3c;
    color: white;
    border-color: #e74c3c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.quick-btn i {
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 50px;
    border-radius: 25px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.contact-section h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.8rem;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
    font-weight: 700;
}

.contact-info p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-info i {
    color: #e74c3c;
    width: 25px;
    font-size: 1.3rem;
}

/* Mobile First Responsive Design */
@media (max-width: 600px) {
    .container {
        max-width: 90%;
        padding: 0 10px;
        margin: 0 auto;
    }
    
    .header {
        padding: 20px 15px;
        margin: 10px 0;
        border-radius: 15px;
        max-width: 100%;
    }
    
    .logo-container {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .logo {
        height: 60px;
    }
    
    .header h1 {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
        line-height: 1.1;
    }
    
    .tagline {
        font-size: 0.95rem;
        margin-top: 5px;
        line-height: 1.2;
    }
    
    .event-info {
        padding: 12px;
        max-width: 85%;
        border-radius: 15px;
        margin: 0 auto;
    }
    
    .date {
        font-size: 0.95rem !important;
    }
    
    .time {
        font-size: 0.9rem !important;
    }
    
    .venue {
        font-size: 0.8rem !important;
    }
    
    .highlights-section {
        padding: 15px 10px;
        margin: 10px 0;
        max-width: 100%;
    }
    
    .highlights-section h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .highlight-card {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .highlight-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .highlight-card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }
    
    .highlight-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .chat-section, .contact-section {
        padding: 12px 8px;
        margin: 8px 0;
        max-width: 100%;
    }
    
    .chat-info h3, .contact-section h3 {
        font-size: 1.4rem !important;
        letter-spacing: 0.5px;
        margin-bottom: 6px;
    }
    
    .chat-info p, .contact-section p {
        font-size: 0.85rem !important;
        line-height: 1.3;
    }
    
    .chat-info h3 i {
        font-size: 1.2rem !important;
    }
        margin-bottom: 12px;
    }
    
    .chat-info p, .contact-info p {
        font-size: 1rem;
    }
    
    /* Ensure all text is readable on mobile */
    * {
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Make sure images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve touch targets */
    .chat-toggle-btn, .highlight-card, .quick-btn {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .container {
        max-width: 85%;
        padding: 0 8px;
        margin: 0 auto;
    }
    
    .header {
        padding: 12px 8px;
        margin: 5px 0;
    }
    
    .event-info {
        max-width: 80%;
        padding: 10px;
    }
    
    .highlights-section, .chat-section, .contact-section {
        padding: 12px 8px;
    }
    
    .chat-section {
        margin: 6px 0;
        border-radius: 12px;
        padding: 10px 6px;
    }
    
    .chat-info h3 {
        font-size: 1.2rem !important;
        letter-spacing: 0.3px;
        margin-bottom: 4px;
        gap: 6px;
    }
    
    .chat-info h3 i {
        font-size: 1rem !important;
    }
    
    .chat-info p {
        font-size: 0.75rem !important;
        line-height: 1.2;
        gap: 6px;
    }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
    .chat-section {
        padding: 8px 4px;
        margin: 4px 0;
        border-radius: 10px;
    }
    
    .chat-info h3 {
        font-size: 1rem !important;
        letter-spacing: 0.2px;
        margin-bottom: 3px;
        gap: 4px;
    }
    
    .chat-info h3 i {
        font-size: 0.9rem !important;
    }
    
    .chat-info p {
        font-size: 0.7rem !important;
        line-height: 1.1;
        gap: 4px;
    }
}

@media (max-width: 768px) and (min-width: 601px) {
    .container {
        max-width: 85%;
        padding: 0 12px;
    }
    
    .header {
        padding: 25px 15px;
        margin: 10px 0;
    }
    
    .logo-container {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .logo {
        height: 80px;
    }
    
    .header h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .tagline {
        font-size: 1.1rem;
        margin-top: 8px;
        line-height: 1.3;
    }
    
    .event-info {
        padding: 15px;
        max-width: 90%;
    }
    
    .date {
        font-size: 1.1rem !important;
    }
    
    .time {
        font-size: 1rem !important;
    }
    
    .venue {
        font-size: 0.9rem !important;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .highlight-card {
        padding: 25px;
    }
    
    .highlight-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .highlight-card h3 {
        font-size: 1.3rem;
    }
    
    .chat-container {
        padding: 25px;
    }
    
    .chat-messages {
        height: 350px;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .quick-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .highlights-section h2 {
        font-size: 2.5rem;
    }
    
    .contact-section h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    
    .header {
        padding: 20px 10px;
        margin: 8px 0;
    }
    
    .header h1 {
        font-size: 2rem;
        letter-spacing: 0.5px;
        margin-bottom: 5px;
        line-height: 1.1;
    }
    
    .logo {
        height: 70px;
    }
    
    .tagline {
        font-size: 1rem;
        margin-top: 5px;
        line-height: 1.2;
    }
    
    .logo-container {
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .event-info {
        padding: 15px;
        max-width: 95%;
    }
    
    .date {
        font-size: 1rem !important;
    }
    
    .time {
        font-size: 0.9rem !important;
    }
    
    .venue {
        font-size: 0.8rem !important;
    }
    
    .highlights-section {
        padding: 25px 15px;
    }
    
    .highlight-card {
        padding: 20px;
    }
    
    .chat-container, .contact-section {
        padding: 20px;
    }
    
    .chat-messages {
        height: 300px;
    }
}

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

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

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

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