:root {
    --primary: #009eb3; /* Blue/Teal from logo */
    --primary-hover: #007a8a;
    --bg-light: #f5f9fa;
    --text-main: #333333;
    --text-muted: #666666;
    --border-color: #dbe4e6;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.contact {
    font-size: 14px;
    color: var(--text-muted);
}

/* Stepper */
.stepper-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 30px auto;
    background: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
}

.step.active {
    color: var(--primary);
}

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.step.active .step-circle {
    background: var(--primary);
    color: var(--white);
}

.step-line {
    flex: 1;
    height: 2px;
    background: #f0f0f0;
    margin: 0 20px;
}

/* Main Layout */
.main-container {
    display: flex;
    flex-direction: row-reverse;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    gap: 30px;
    padding: 0 20px;
}

/* Assistant Panel */
.assistant-panel {
    width: 320px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: fit-content;
}

.assistant-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--white);
}

.assistant-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #eef2eb;
    margin-right: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assistant-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 50%;
    transform: scale(1.4);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #4caf50;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 2px solid var(--white);
}

.assistant-info strong {
    display: block;
    font-size: 16px;
    color: var(--text-main);
}

.assistant-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.chat-container {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 500px;
    overflow-y: auto;
}

.chat-bubble {
    padding: 15px;
    border-radius: 12px;
    font-size: 15.5px;
    line-height: 1.5;
    animation: fadeIn 0.3s ease;
}

.chat-bubble.bot {
    background: var(--white);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-top-left-radius: 4px;
}

.chat-bubble.user {
    background: var(--primary);
    color: var(--white);
    border-top-right-radius: 4px;
    align-self: flex-end;
}

/* Content Panel */
.content-panel {
    flex: 1;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 40px;
}

.step-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step-content.active {
    display: block;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 10px;
}

.step-subtitle {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 30px;
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text-main);
    transition: all 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(78, 101, 67, 0.1);
}

/* Buttons */
.action-bar {
    display: flex;
    justify-content: flex-end;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    background: #f5f5f5;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.package-card {
    display: flex;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s;
}

.package-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.package-card.selected {
    border: 2px solid var(--primary);
    background: rgba(78, 101, 67, 0.03);
}

.pkg-img {
    width: 200px;
    background: #eee;
    background-size: cover;
    background-position: center;
}

.pkg-info {
    padding: 20px;
    flex: 1;
}

.pkg-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary);
}

.pkg-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pkg-desc {
    font-size: 14px;
    margin-bottom: 15px;
}

.pkg-price {
    font-weight: 700;
    font-size: 18px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 900px) {
    .main-container {
        flex-direction: column;
    }
    .assistant-panel {
        width: 100%;
        max-height: 300px;
    }
    .stepper-container {
        display: none; /* Hide stepper on mobile */
    }
    .package-card {
        flex-direction: column;
    }
    .pkg-img {
        width: 100%;
        height: 150px;
    }
}
