/* ASHLI Full-Height Expandable Navigation - Complete CSS */

:root {
    /* User's Exact Color Palette */
    --base-teal: #66bcb4;
    --base-yellow: #edc55b;
    --base-orange: #ec802b;
    --base-beige: #dcc1a3;
    --comp-dark-teal: #005b74;
    --comp-gold: #d0ac4b;
    --comp-red: #b63939;
    --comp-pink: #df62a2;
    
    /* Primary design colors */
    --primary-color: var(--comp-dark-teal);
    --secondary-color: var(--base-yellow);
    --accent-color: var(--base-orange);
    --background-color: var(--base-beige);
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --white: #ffffff;
    
    /* Premium Font families */
    --header-font: 'Playfair Display', serif;
    --body-font: 'Inter', sans-serif;
    
    /* Enhanced shadows for depth */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
}

/* BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--background-color);
    min-height: 100vh;
    font-weight: 400;
}

/* =============================================== */
/* LEFT SIDEBAR - FULL HEIGHT NAVIGATION BARS */
/* =============================================== */

.left-sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 80px;
  height: 100vh;
  z-index: 1000; /* Ensure it's above content */
  display: flex;
  flex-direction: column;
}

/* Logo container at the top - FIXED HEIGHT */
.sidebar-logo {
    position: relative;
    height: 80px; /* Fixed height for logo area */
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--base-beige), var(--background-color));
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 1001;
    flex-shrink: 0; /* THIS IS THE KEY FIX - Prevent shrinking */
}

.sidebar-logo .logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-logo:hover .logo-img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Remove any conflicting styles for the old logo */
.top-logo {
    display: none !important;
}

/* Optional: Add subtle shadow to separate logo from bars */
.sidebar-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.nav-bar {
  flex: 1;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  overflow: hidden;
}

/* Add shimmer animation - same as buttons */
.nav-bar::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.6s ease;
  pointer-events: none;
}

/* Bar Colors */
.teal-bar {
    background: var(--base-teal);
}

.yellow-bar {
    background: var(--base-yellow);
}

.red-bar {
    background: var(--base-orange);
}

/* Bar Labels */
.bar-label {
    font-family: var(--body-font);
    font-size: 0.9rem;
    font-weight: 600;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
    transition: all 0.3s ease;
}

/* Hover Effects */
.nav-bar:hover::before {
  left: 100%;
}

/* Enhanced hover effect with shimmer */
.nav-bar:hover {
  transform: scaleX(1.1);
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

/* Active State */
.nav-bar.active {
    transform: scaleX(1.2);
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.4);
}

/* =============================================== */
/* EXPANDABLE SECTIONS */
/* =============================================== */

.expandable-section {
  position: fixed;
  top: 0;
  left: 80px; /* Start after the navigation */
  width: calc(100vw - 80px); /* Width minus navigation */
  height: 100vh;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, visibility 0.6s;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}

.expandable-section.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  z-index: 2001;
}

/* Section Background Colors */
.features-section {
    background: var(--base-teal);
}

.integration-section {
    background: var(--base-yellow);
}

.support-section {
    background: var(--base-orange);
}

.build-yours-section {
  background: var(--base-orange);
}

/* BUILD YOURS PREVIEW SECTION */
.build-preview {
  max-width: 800px;
  margin: 0 auto;
}

.preview-content {
  text-align: center;
}

.preview-subtitle {
  font-size: 1.3rem;
  color: white;
  margin-bottom: 3rem;
  font-weight: 500;
}

.steps-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.preview-step {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.preview-step:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.preview-step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--base-yellow), var(--base-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.preview-step-content h3 {
  font-family: var(--header-font);
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.5rem;
}

.preview-step-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.build-cta {
  margin-top: 2rem;
}

.btn-xlarge {
  padding: 18px 40px;
  font-size: 1.2rem;
  font-weight: 600;
}

.build-time {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.build-time i {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .steps-preview {
    grid-template-columns: 1fr;
  }
}

.section-content {
    min-height: 100vh;
    padding: 2rem;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    color: white;
}

.section-title {
    font-family: var(--header-font);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* =============================================== */
/* FEATURES SECTION */
/* =============================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    min-width: 60px;
    text-align: center;
}

.feature-text h3 {
    font-family: var(--header-font);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================== */
/* DEMO CHAT SECTION */
/* =============================================== */

.demo-container {
    max-width: 900px;
    margin: 0 auto;
}

.demo-status {
    text-align: center;
    margin-bottom: 1rem;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    backdrop-filter: blur(10px);
}

/* Question Counter Styling */
.question-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 200, 87, 0.1);
  border-radius: 20px;
  border: 2px solid #FFC857;
}

.counter-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

.counter-value {
  font-size: 1rem;
  color: white;
  font-weight: 700;
}

.counter-value.limit-reached {
  color: #E63946;
  animation: pulse 1s ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Join ASHLI Button Below Chatbox */
.join-ashli-container {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(102, 188, 180, 0.1), rgba(255, 200, 87, 0.1));
  border-top: 2px solid rgba(102, 188, 180, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-join-ashli {
  background: linear-gradient(135deg, #005B74, #66BCB4);
  color: white;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 16px rgba(0, 91, 116, 0.3);
}

.btn-join-ashli:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 91, 116, 0.4);
  background: linear-gradient(135deg, #004B62, #5BA69F);
}

.btn-join-ashli:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 91, 116, 0.3);
}

.btn-join-ashli i {
  font-size: 1.1rem;
  animation: pulse-heart 1.5s ease-in-out infinite;
}

@keyframes pulse-heart {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.2); }
  50% { transform: scale(1); }
}

.join-ashli-text {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
  font-weight: 500;
}

/* Overlay for Limit Reached Message */
.limit-reached-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  z-index: 100;
  padding: 40px;
  text-align: center;
}

.limit-reached-content {
  max-width: 400px;
}

.limit-reached-content h2 {
  font-size: 1.8rem;
  color: #005B74;
  margin-bottom: 12px;
  font-family: var(--header-font);
}

.limit-reached-content p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.limit-reached-content .benefits-list {
  text-align: left;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #333;
  list-style: none;
}

.benefits-list li i {
  color: #66BCB4;
  font-size: 1.2rem;
  min-width: 20px;
}

.btn-join-ashli-overlay {
  background: linear-gradient(135deg, #005B74, #66BCB4);
  color: white;
  padding: 14px 32px;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 16px rgba(0, 91, 116, 0.3);
  margin-top: 20px;
}

.btn-join-ashli-overlay:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 91, 116, 0.4);
  background: linear-gradient(135deg, #004B62, #5BA69F);
}

.btn-join-ashli-overlay:active {
  transform: translateY(-1px);
}

/* Update chat-container to be relative positioned */
.chat-container {
  position: relative;
}

/* Update demo-status to be flexbox */
.demo-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

/* MODERN CHAT CONTAINER - REFERENCE IMAGE STYLE */
.chat-container {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 91, 116, 0.15);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 650px !important;
    border: 1px solid rgba(102, 188, 180, 0.2);
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* MODERN CHAT HEADER */
.chat-header {
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--comp-dark-teal) 0%, var(--base-teal) 100%);
    color: white;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    min-height: 100px;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    flex-shrink: 0;
}

.chat-avatar .avatar-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 50%;
}

.chat-info {
    flex: 1;
}

.chat-info h3 {
    font-family: var(--header-font);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.status {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status.online i {
    color: var(--base-yellow);
    font-size: 0.7rem;
}

.chat-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.chat-actions .btn-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.chat-actions .btn-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* Ensure send button has proper icon */
.send-btn i {
    font-size: 0.9rem;
}

.btn-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

/* MODERN MESSAGE AREA */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(135deg, #fafffe 0%, #f5fbfa 100%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 300px;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: messageSlideIn 0.4s ease-out;
    margin-bottom: 0;
}

.user-message {
    flex-direction: row-reverse;
    align-self: flex-end;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: white;
    border: 2px solid rgba(102, 188, 180, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.message-avatar .avatar-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 50%;
}

.message-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 18px;
    word-wrap: break-word;
}

.bot-message .message-bubble {
    background: linear-gradient(135deg, var(--comp-dark-teal), var(--base-teal));
    color: white;
    border-radius: 18px 18px 18px 4px;
}

.user-message .message-bubble {
    background: linear-gradient(135deg, var(--base-yellow), var(--base-orange));
    color: var(--text-dark);
    border-radius: 18px 18px 4px 18px;
}

.message-content {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.message-time {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 4px;
}

/* USER MESSAGE STYLING */
.user-message .message-avatar {
    background: linear-gradient(135deg, var(--base-yellow), var(--base-orange));
    border: 2px solid rgba(237, 197, 91, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: 600;
}

/* MODERN SUGGESTIONS */
.chat-suggestions {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid rgba(102, 188, 180, 0.1);
    flex-shrink: 0;
}

.suggestion-btn {
    background: linear-gradient(135deg, white, #f8fffe);
    border: 1.5px solid rgba(0, 91, 116, 0.15);
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--comp-dark-teal);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 91, 116, 0.08);
}

.suggestion-btn:hover {
    background: linear-gradient(135deg, var(--comp-dark-teal), var(--base-teal));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 91, 116, 0.2);
}

.suggestion-btn i {
    font-size: 0.9rem;
}

/* Dynamic Suggestions Styling */
.dynamic-suggestions {
    padding: 12px 20px;
    background: transparent;
    display: flex;
    justify-content: center;
    margin: 8px 0;
}

.suggestion-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 80%;
}

.dynamic-suggestion {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 255, 254, 0.9));
    border: 1.5px solid rgba(0, 91, 116, 0.2);
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--comp-dark-teal);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.dynamic-suggestion:hover {
    background: linear-gradient(135deg, var(--comp-dark-teal), var(--base-teal));
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 91, 116, 0.3);
}


/* MODERN INPUT AREA */
.chat-input-area {
    padding: 20px;
    background: white;
    border-top: 1px solid rgba(102, 188, 180, 0.1);
    flex-shrink: 0;
}

.chat-input-container {
    padding: 0;
    background: none;
}

.input-container {
    position: relative;
}

.input-wrapper {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    background: linear-gradient(135deg, #f8fffe, #ffffff);
    border: 2px solid rgba(102, 188, 180, 0.2);
    border-radius: 24px;
    padding: 6px;
    transition: all 0.3s ease;
}

.input-wrapper:focus-within {
    border-color: var(--base-teal);
    box-shadow: 0 0 0 4px rgba(102, 188, 180, 0.1);
}

#chatInput {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 10px 14px;
    font-size: 0.95rem;
    line-height: 1.4;
    resize: none;
    max-height: 100px;
    min-height: 20px;
    color: var(--text-dark);
    font-family: var(--body-font);
}

#chatInput::placeholder {
    color: rgba(44, 62, 80, 0.5);
}

.send-btn {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--comp-dark-teal), var(--base-teal));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.send-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 91, 116, 0.4);
}

.send-btn:active {
    transform: scale(0.95);
}

/* TYPING INDICATOR */
.typing-indicator .message-bubble {
    background: rgba(102, 188, 180, 0.1) !important;
    border: 1px solid rgba(102, 188, 180, 0.2);
    color: var(--comp-dark-teal) !important;
}

.typing-dots {
    display: flex;
    gap: 4px;
    padding: 8px 0;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--comp-dark-teal);
    animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(1) { animation-delay: -0.32s; }
.typing-dots span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing-bounce {
    0%, 80%, 100% { 
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% { 
        transform: scale(1.2);
        opacity: 1;
    }
}

/* =============================================== */
/* COMING SOON SECTION */
/* =============================================== */

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 4rem;
}

.coming-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.coming-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.coming-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.coming-text h3 {
    font-family: var(--header-font);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
}

.coming-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.coming-date {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

.early-access-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.early-access-cta h3 {
    font-family: var(--header-font);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.early-access-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* =============================================== */
/* TYPEWRITER EFFECT & CHAT ENHANCEMENTS */
/* =============================================== */

/* Typing cursor animation */
.typing-cursor {
    display: inline-block;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 49% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

/* Enhanced message formatting */
.message-text strong {
    color: var(--base-orange);
    font-weight: 600;
}

/* Notification system */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--comp-dark-teal);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    background: #28a745;
}

.notification.error {
    background: var(--comp-red);
}

/* =============================================== */
/* MAIN CONTENT AREA */
/* =============================================== */

.main-content {
    margin-left: 80px;
    min-height: 100vh;
    transition: all 0.6s ease;
}

.main-content.hidden {
    transform: translateX(100px);
    opacity: 0;
    pointer-events: none;
}

/* =============================================== */
/* HERO SECTION */
/* =============================================== */

.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start; 
  padding-left: 80px;
  overflow: hidden;
  padding: 0;
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 600px;
  width: 100%;
  padding: 0 2rem;
  text-align: left;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  padding: 0;
}

.hero-video-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding-right: 2rem;
    max-width: 700px;
    width: 100%;
}

.hero-video {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    opacity: 1;
    /* UPDATED - Increased brightness */
    filter: brightness(1.15) contrast(1.05);
    -webkit-filter: brightness(1.15) contrast(1.05);
}

/* Fullscreen video background */
.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.fullscreen-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    /* UPDATED - Increased brightness and adjusted filters */
    filter: brightness(1.2) contrast(1.05) saturate(1.1);
    -webkit-filter: brightness(1.2) contrast(1.05) saturate(1.1);
}

.video-overlay {
    background: rgba(0, 0, 0, 0); /* Was 0.4, now 0 - no darkness! */
}

/* Hide old video styles */
.hero-video-container {
    display: none !important;
}

.hero-video {
    display: none !important;
}

.main-title {
  font-family: var(--header-font);
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
  color: white;
  line-height: 1.2;

}

.sub-title {
  background: var(--base-teal);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: 2rem; /* Adjusted for balance */
  font-family: var(--header-font);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
  text-align: left;  /* ADD THIS */
}

.hero-description {
  font-size: 1.2rem; /* Slightly reduced */
  color: white;  /* Change from: var(--text-dark) */
  text-align: left;  /* ADD THIS */
  margin-bottom: 2rem;
  opacity: 0.8;
  line-height: 1.6;
}

.action-buttons {
  display: flex;
  justify-content: flex-start; /* Left-align with text */
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* Modern Premium Button Redesign */
.action-btn {
  position: relative;
  padding: 18px 36px;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.action-btn::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.6s ease;
}

.action-btn:hover::before {
  left: 100%;
}

.action-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    0 16px 48px rgba(0, 0, 0, 0.2),
    0 8px 16px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5);
}

.action-btn:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.15),
    inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.action-btn i {
  transition: transform 0.3s ease;
}

.action-btn:hover i {
  transform: scale(1.15) rotate(5deg);
}

@keyframes subtle-glow {
    0% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(102, 188, 180, 0.3));
    }
    100% {
        filter: brightness(1.05) drop-shadow(0 0 8px rgba(102, 188, 180, 0.4));
    }
}

/* Chat Button Variant - Using orange gradient */
.chat-btn {
  background: linear-gradient(145deg, var(--base-yellow), var(--base-orange));
  box-shadow:
    0 1px 0 var(--base-yellow),
    0 2px 0 #ead269,
    0 3px 0 #e7c955,
    0 4px 0 #e4c041,
    0 5px 0 #e1b72d,
    0 6px 0 var(--base-orange),
    0 7px 0 #d97326,
    0 8px 0 #c66621,
    0 10px 15px rgba(0, 0, 0, 0.4);
}

.features-btn {
  background: linear-gradient(145deg, var(--base-orange), var(--comp-red));
  box-shadow:
    0 1px 0 var(--base-orange),
    0 2px 0 #e5773a,
    0 3px 0 #de6e35,
    0 4px 0 #d76530,
    0 5px 0 #d05c2b,
    0 6px 0 var(--comp-red),
    0 7px 0 #a33232,
    0 8px 0 #902b2b,
    0 10px 15px rgba(0, 0, 0, 0.4);
}

/* Hover Effects */
.action-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        0 1px 0 var(--base-teal),
        0 2px 0 #5fb3aa,
        0 3px 0 #58ab9f,
        0 4px 0 #4fa394,
        0 5px 0 #469b89,
        0 6px 0 var(--base-orange),
        0 7px 0 #d97326,
        0 8px 0 #c66621,
        0 12px 20px rgba(0, 0, 0, 0.5);
    filter: brightness(1.1);
}

/* Active/Click Effect */
.action-btn:active {
    transform: translateY(6px);
    box-shadow:
        0 1px 0 var(--base-orange),
        0 2px 0 #d97326,
        0 3px 5px rgba(0, 0, 0, 0.3);
    filter: brightness(0.95);
    transition: all 0.05s ease;
}

/* Click Animation using your color palette */
.action-btn.clicking {
    animation: click-flash 0.15s ease;
}

@keyframes click-flash {
    0%, 100% {
        background: linear-gradient(145deg, var(--base-teal), var(--comp-dark-teal));
    }
    50% {
        background: linear-gradient(145deg, var(--base-yellow), var(--base-orange));
        color: var(--text-dark);
    }
}

/* =============================================== */
/* WAITLIST SECTION */
/* =============================================== */

.waitlist-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--comp-dark-teal), var(--base-teal));
    color: white;
}

.waitlist-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.waitlist-content {
    text-align: center;
}

.waitlist-title {
    font-family: var(--header-font);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.waitlist-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.waitlist-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
    border-color: var(--base-yellow);
    background: white;
    box-shadow: 0 0 0 3px rgba(237, 197, 91, 0.3);
}

.waitlist-benefits {
    text-align: left;
}

.waitlist-benefits h3 {
    font-family: var(--header-font);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--base-yellow);
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 500;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item i {
    color: var(--base-yellow);
    font-size: 1.5rem;
    width: 25px;
    text-align: center;
}

/* =============================================== */
/* BUTTONS */
/* =============================================== */

.btn {
    font-family: var(--body-font);
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--base-yellow), var(--base-orange));
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* =============================================== */
/* SCROLLBAR STYLING */
/* =============================================== */

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(102, 188, 180, 0.1);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(102, 188, 180, 0.4);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(102, 188, 180, 0.6);
}

/* =============================================== */
/* ANIMATIONS */
/* =============================================== */

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================== */
/* UTILITY CLASSES */
/* =============================================== */

.connected { color: #4CAF50 !important; }
.error { color: #f44336 !important; }
.warning { color: #ff9800 !important; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* =============================================== */
/* RESPONSIVE DESIGN */
/* =============================================== */

@media (max-width: 768px) {
    .left-sidebar {
        width: 60px;
    }
    
    .sidebar-logo {
        height: 60px;
        width: 60px;
    }
    
    .sidebar-logo .logo-img {
        height: 35px;
        width: 35px;
    }
    
    .main-content {
        margin-left: 60px;
    }
    
    .chat-container {
        height: 500px !important;
        margin: 0 10px;
    }
    
    .chat-header {
        padding: 16px;
        min-height: 80px;
    }
    
    .chat-messages {
        padding: 16px;
    }
    
    .chat-input-area {
        padding: 16px;
    }
    
    .message-bubble {
        max-width: 85%;
    }
    
    .suggestion-btn {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .sub-title {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .waitlist-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .left-sidebar {
        width: 50px;
    }
    
    .sidebar-logo {
        height: 50px;
        width: 50px;
    }
    
    .sidebar-logo .logo-img {
        height: 30px;
        width: 30px;
    }
    
    .main-content {
        margin-left: 50px;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .sub-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .chat-container {
        height: 500px;
    }
}

/* =============================================== */
/* SELECTION & SCROLLBAR STYLES */
/* =============================================== */

::selection {
    background: var(--base-yellow);
    color: var(--comp-dark-teal);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: var(--base-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--base-orange);
}

/* RESPONSIVE UPDATES FOR NEW LAYOUT */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero {
    padding-left: 80px;
  }

  .hero-image-container {
    order: 1;
    margin-top: 2rem;
  }

  .hero-content {
    order: 2;
    max-width: 100%;
    text-align: center;
  }

  .hero-image-container img {
    max-width: 450px;
  }

  .action-buttons {
    justify-content: center;
  }

  .stats-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-left: 60px;
  }

  .hero-image-container img {
    max-width: 350px;
  }

  .action-btn {
    padding: 16px 28px;
    font-size: 1rem;
  }

  .action-buttons {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
  }

  .action-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-left: 50px;
  }

  .hero-image-container img {
    max-width: 280px;
  }

  .main-title {
    font-size: 2.5rem;
  }

  .sub-title {
    font-size: 1.5rem;
  }

  .action-btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}
