/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #f59e0b;
    --bg: #f8fafc;
    --bg-white: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
}

html, body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

/* App Layout */
.app-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 0 1.5rem;
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-icon {
    font-size: 1.5rem;
}

nav {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary);
}

.main-content {
    flex: 1;
}

.app-footer {
    background: var(--bg-white);
    border-top: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 50%, #0ea5e9 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: #1e293b;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* Features */
.features-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--text);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.5;
}

/* Chat Page */
.chat-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem;
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
}

.chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.chat-header {
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h2 {
    font-size: 1.125rem;
    font-weight: 600;
}

.btn-new-chat {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.2s;
}

.btn-new-chat:hover {
    background: rgba(255,255,255,0.3);
}

.chat-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-picker {
    display: flex;
    gap: 2px;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    border: 1px solid transparent;
    padding: 0.3rem 0.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.2s;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.2);
    color: white;
}

.lang-btn.lang-active {
    background: rgba(255,255,255,0.25);
    color: white;
    border-color: rgba(255,255,255,0.4);
}

/* CSS Flags */
.flag {
    display: inline-block;
    width: 18px;
    height: 12px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 1px rgba(0,0,0,0.3);
}

/* Netherlands: red, white, blue (horizontal) */
.flag-nl {
    background: linear-gradient(to bottom, #AE1C28 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #21468B 66.6%);
}

/* United Kingdom: Union Jack approximation */
.flag-en {
    background: #00247D;
    background-image:
        linear-gradient(to bottom, transparent 42%, #CF142B 42%, #CF142B 58%, transparent 58%),
        linear-gradient(to right, transparent 42%, #CF142B 42%, #CF142B 58%, transparent 58%),
        linear-gradient(to bottom, transparent 38%, #FFFFFF 38%, #FFFFFF 62%, transparent 62%),
        linear-gradient(to right, transparent 38%, #FFFFFF 38%, #FFFFFF 62%, transparent 62%);
}

/* Germany: black, red, gold (horizontal) */
.flag-de {
    background: linear-gradient(to bottom, #000000 33.3%, #DD0000 33.3%, #DD0000 66.6%, #FFCE00 66.6%);
}

/* France: blue, white, red (vertical) */
.flag-fr {
    background: linear-gradient(to right, #002395 33.3%, #FFFFFF 33.3%, #FFFFFF 66.6%, #ED2939 66.6%);
}

/* Spain: red, yellow, red (horizontal) */
.flag-es {
    background: linear-gradient(to bottom, #AA151B 25%, #F1BF00 25%, #F1BF00 75%, #AA151B 75%);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 400px;
    max-height: 500px;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    max-width: 85%;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.user-message {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.user-message .message-avatar {
    background: #fef3c7;
}

.message-content {
    background: #f1f5f9;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    border-top-left-radius: 4px;
}

.user-message .message-content {
    background: var(--primary);
    color: white;
    border-top-left-radius: var(--radius);
    border-top-right-radius: 4px;
}

.message-text {
    line-height: 1.5;
    font-size: 0.95rem;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 0.25rem;
}

/* Typing indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 4px 0;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-light);
    animation: typing 1.4s infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
    30% { opacity: 1; transform: translateY(-4px); }
}

/* Chat Input */
.chat-input-area {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.chat-form {
    display: flex;
    gap: 0.75rem;
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 25px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: var(--primary);
}

.chat-input:disabled {
    background: #f1f5f9;
}

.send-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.send-button:hover:not(:disabled) {
    background: var(--primary-dark);
}

.send-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Proposal Section */
.proposal-section {
    padding: 0 1.5rem 1rem;
}

.proposal-card {
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border: 1px solid #a7f3d0;
    border-radius: var(--radius);
    padding: 1.5rem;
    animation: fadeIn 0.5s ease;
}

.proposal-card h3 {
    color: #065f46;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.proposal-card p {
    color: #047857;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.proposal-detail {
    margin-bottom: 0.5rem;
    color: #065f46;
}

.proposal-highlights ul {
    margin-top: 0.5rem;
    padding-left: 1.25rem;
}

.proposal-highlights li {
    color: #047857;
    margin-bottom: 0.25rem;
}

/* Avatar icon */
.avatar-icon {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary-dark);
}

.user-message .avatar-icon {
    color: #92400e;
}

/* Date Picker */
.date-picker-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.date-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
}

.date-field input[type="date"] {
    padding: 0.5rem 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}

.date-field input[type="date"]:focus {
    border-color: var(--primary);
}

/* Offers Section */
.offers-section {
    padding: 0 1.5rem 1.5rem;
}

.offers-section h3 {
    margin-bottom: 1rem;
    color: var(--text);
}

.offers-category-title {
    margin: 1.5rem 0 0.75rem;
    color: var(--text);
    font-size: 1.05rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--border);
}

/* Accommodation Cards (Hotels & Apartments) */
.accommodation-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.accommodation-card {
    display: flex;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s, box-shadow 0.2s;
}

.accommodation-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.accommodation-image {
    width: 220px;
    min-height: 160px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.accommodation-info {
    flex: 1;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.accommodation-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.accommodation-header h4 {
    font-size: 1.05rem;
    color: var(--text);
    margin: 0;
}

.accommodation-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.rating-score {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.accommodation-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.accommodation-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.accommodation-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.7rem;
    color: var(--text-light);
}

.price-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.price-period {
    font-size: 0.7rem;
    color: var(--text-light);
}

.accommodation-cta {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .accommodation-card {
        flex-direction: column;
    }

    .accommodation-image {
        width: 100%;
        min-height: 180px;
    }
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.offer-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.offer-type-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary);
}

.offer-card h4 {
    font-size: 1rem;
    color: var(--text);
}

.offer-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

.offer-price {
    font-weight: 700;
    color: var(--success);
    font-size: 1.1rem;
}

.offer-rating {
    font-size: 0.85rem;
    color: var(--secondary);
}

.offer-provider {
    font-size: 0.75rem;
    color: var(--text-light);
}

.offer-cta {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: auto;
}

.offer-type-hotel { border-left: 3px solid #2563eb; }
.offer-type-apartment { border-left: 3px solid #7c3aed; }
.offer-type-flight { border-left: 3px solid #0ea5e9; }
.offer-type-carrental { border-left: 3px solid #f59e0b; }
.offer-type-activity { border-left: 3px solid #10b981; }

/* Loading state */
#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem;
    padding: 1rem 1rem 1rem 3.7rem;
    color: #333;
}

.blazor-error-boundary::after {
    content: "Er is een fout opgetreden.";
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* Inspiration Section */
.inspiration-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: var(--bg);
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.inspiration-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: white;
    height: 280px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.inspiration-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.inspiration-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s;
}

.inspiration-card:hover .inspiration-image {
    transform: scale(1.08);
}

.inspiration-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.inspiration-overlay h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.inspiration-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Loading Spinner */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hero animation */
.hero-content h1 {
    animation: slideUp 0.6s ease-out;
}

.hero-subtitle {
    animation: slideUp 0.6s ease-out 0.15s both;
}

.cta-button {
    animation: slideUp 0.6s ease-out 0.3s both;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Feature card hover enhancement */
.feature-card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Custom scrollbar for chat */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-section { padding: 4rem 1.5rem; }
    .chat-messages { min-height: 300px; max-height: 400px; }
    .offers-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .inspiration-grid { grid-template-columns: 1fr 1fr; }
    .inspiration-card { height: 220px; }
    .section-title { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .feature-grid { grid-template-columns: 1fr; }
    .chat-message { max-width: 95%; }
    .inspiration-grid { grid-template-columns: 1fr; }
    .inspiration-card { height: 200px; }
    .chat-header { flex-wrap: wrap; gap: 0.5rem; }
    .chat-header-actions { flex-wrap: wrap; }
}
