:root {
    --primary: #2c3e50;
    --accent: #e67e22;
    --secondary: #34495e;
    --success: #27ae60;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: #f4f7f6;
    color: #2d3436;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow);
    border-radius: 20px;
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s;
}

.navbar-brand {
    font-size: 1.5rem;
    color: white !important;
}

/* Buttons */
.btn-accent {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    transition: all 0.3s;
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
    color: white;
}

/* Home Section */
.hero-wrapper {
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
    margin-top: -80px;
    padding-top: 80px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* Chat Styling */
.chat-window {
    height: 80vh;
    display: flex;
    flex-direction: column;
}

.bot-msg {
    background: white;
    border-bottom-left-radius: 5px;
}

.user-msg {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 5px;
}

.chat-input-pill {
    background: white;
    border-radius: 50px;
    padding: 10px 20px;
    box-shadow: var(--shadow);
}