:root {
    --gold: #F8D37C; --gold-dark: #c9a962; --dark: #1A1A1A;
    --gray-100: #f7f7f8; --gray-200: #e5e5e7; --gray-400: #9ca3af;
    --gray-500: #6b7280; --gray-600: #4b5563; --gray-800: #1f2937;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: var(--gray-100); color: var(--dark); line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1,h2,h3,h4 { font-family: 'Montserrat', sans-serif; }

/* Topbar */
.topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.75rem 5%; background: rgba(26,26,26,0.95); backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-logo img { height: 32px; }
.topbar-nav { display: flex; align-items: center; gap: 1.5rem; }
.topbar-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: rgba(255,255,255,0.5); font-size: 0.8rem; font-weight: 500;
    text-decoration: none; transition: color 0.2s;
}
.topbar-link:hover { color: var(--gold); }

/* Lang Switcher */
.lang { position: relative; }
.lang__button {
    display: flex; align-items: center; gap: 0.35rem;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px; padding: 0.4rem 0.75rem; cursor: pointer;
    color: rgba(255,255,255,0.7); font-size: 0.78rem; font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}
.lang__button:hover { background: rgba(255,255,255,0.1); color: #fff; }
.lang__flag { font-size: 1rem; }
.lang__chev { font-size: 0.6rem; opacity: 0.5; }
.lang__menu {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: #fff; border-radius: 12px; padding: 0.5rem;
    min-width: 160px; box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 1px solid var(--gray-200);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: all 0.2s ease;
}
.lang__menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang__item {
    display: flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 0.75rem; border-radius: 8px;
    font-size: 0.82rem; color: var(--gray-600); text-decoration: none;
    transition: all 0.15s;
}
.lang__item:hover { background: var(--gray-100); color: var(--gray-800); }
.lang__item.active { background: rgba(248,211,124,0.1); color: var(--gold-dark); font-weight: 600; }

/* Hero Compact */
.hero-compact {
    min-height: auto; padding: 120px 5% 60px;
    background: linear-gradient(160deg, #0d0d0d 0%, #1a1a1a 40%, #252525 100%);
    text-align: center; position: relative; overflow: hidden;
}
.hero-compact::before {
    content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(248,211,124,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(248,211,124,0.1); color: var(--gold);
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
    padding: 0.5rem 1.5rem; border-radius: 30px; border: 1px solid rgba(248,211,124,0.2);
    margin-bottom: 1.5rem;
}
.hero-compact h1 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff;
    margin-bottom: 1rem; line-height: 1.15; letter-spacing: -0.02em;
}
.hero-compact h1 span { color: var(--gold); }
.hero-compact p {
    color: rgba(255,255,255,0.45); font-size: 1rem; max-width: 500px;
    margin: 0 auto; line-height: 1.7;
}

/* Wizard Container */
.wizard-container {
    max-width: 680px; margin: -20px auto 4rem; padding: 0 5%;
    position: relative; z-index: 2;
}

/* Progress Bar */
.wizard-progress {
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem; padding: 1.5rem 2rem;
    background: #fff; border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.04);
}
.wp-step {
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
    position: relative;
}
.wp-dot {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gray-200); color: var(--gray-400);
    font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
}
.wp-step span {
    font-size: 0.68rem; font-weight: 600; color: var(--gray-400);
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: color 0.3s;
    white-space: nowrap;
}
.wp-step.active .wp-dot { background: var(--dark); color: var(--gold); }
.wp-step.active span { color: var(--gray-800); }
.wp-step.done .wp-dot { background: var(--gold-dark); color: #fff; }
.wp-step.done span { color: var(--gold-dark); }
.wp-line {
    flex: 1; height: 2px; background: var(--gray-200);
    margin: 0 0.75rem; margin-bottom: 1.2rem;
    min-width: 30px;
}

/* Wizard Steps */
.wizard-step { display: none; }
.wizard-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.wizard-step {
    background: #fff; border-radius: 20px; padding: 2rem;
    border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.step-title {
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.1rem;
    color: var(--gray-800); margin-bottom: 1.5rem; text-align: center;
}

/* Service Cards (Step 1) */
.service-cards { display: flex; flex-direction: column; gap: 0.75rem; }
.service-card {
    display: flex; align-items: center; gap: 1rem;
    padding: 1.25rem 1.5rem; border-radius: 14px;
    border: 2px solid var(--gray-200); background: #fff;
    cursor: pointer; transition: all 0.2s ease;
    position: relative;
}
.service-card input { position: absolute; opacity: 0; pointer-events: none; }
.service-card:hover { border-color: var(--gray-400); background: var(--gray-100); }
.service-card.active { border-color: var(--gold); background: rgba(248,211,124,0.04); }
.sc-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--gray-100); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: all 0.2s;
}
.sc-icon svg { color: var(--gray-400); transition: color 0.2s; }
.service-card.active .sc-icon { background: rgba(248,211,124,0.12); }
.service-card.active .sc-icon svg { color: var(--gold-dark); }
.sc-text { display: flex; flex-direction: column; gap: 0.15rem; }
.sc-text strong { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; color: var(--gray-800); }
.sc-text small { font-size: 0.8rem; color: var(--gray-500); line-height: 1.4; }

/* Wizard Navigation */
.wizard-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 2rem; padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}
.btn-next, .btn-prev {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem;
    padding: 0.85rem 2rem; border-radius: 12px; border: none; cursor: pointer;
    transition: all 0.2s ease; text-transform: uppercase; letter-spacing: 0.5px;
}
.btn-next {
    background: var(--gold); color: var(--dark);
    box-shadow: 0 4px 16px rgba(248,211,124,0.25);
}
.btn-next:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(248,211,124,0.35); }
.btn-prev {
    background: transparent; color: var(--gray-500);
    border: 1.5px solid var(--gray-200);
}
.btn-prev:hover { border-color: var(--gray-400); color: var(--gray-700); }

/* Form Elements */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-full { grid-column: 1 / -1; }
.form-separator { height: 1px; background: var(--gray-200); margin: 1.5rem 0; }

label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--gray-600); margin-bottom: 0.35rem; }
.required { color: #ef4444; }
input, select, textarea {
    width: 100%; padding: 0.75rem 1rem; font-family: 'Inter', sans-serif; font-size: 0.88rem;
    background: var(--gray-100); border: 1.5px solid var(--gray-200); border-radius: 12px;
    color: var(--gray-800); outline: none; transition: all 0.2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(248,211,124,0.12); background: #fff; }
textarea { min-height: 80px; resize: vertical; }
select {
    cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center; padding-right: 2.5rem;
}

/* Summary Card (Step 4) */
.summary-card {
    border: 1px solid var(--gray-200); border-radius: 14px;
    padding: 1.5rem; background: var(--gray-100);
}
.sum-row {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 0.5rem 0;
}
.sum-label { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; }
.sum-value { font-size: 0.85rem; color: var(--gray-800); font-weight: 600; text-align: right; max-width: 60%; }
.sum-divider { height: 1px; background: var(--gray-200); margin: 0.5rem 0; }

/* Submit Button */
.btn-gold {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
    background: var(--gold); color: var(--dark);
    font-family: 'Montserrat', sans-serif; font-weight: 700;
    padding: 0.85rem 2.5rem; border-radius: 12px; border: none; font-size: 0.85rem;
    cursor: pointer; transition: all 0.25s; text-transform: uppercase; letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(248,211,124,0.25);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(248,211,124,0.35); }
.btn-gold:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-gold .spinner { width: 18px; height: 18px; border: 2.5px solid var(--dark); border-top-color: transparent; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Footer */
.booking-footer {
    background: var(--dark); padding: 2rem 5%; text-align: center;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo img { height: 28px; margin-bottom: 0.75rem; }
.booking-footer p { color: rgba(255,255,255,0.35); font-size: 0.78rem; }
.booking-footer strong { color: var(--gold-dark); }

/* Modal */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    z-index: 9999; display: flex; align-items: center; justify-content: center;
    padding: 1rem; opacity: 0; visibility: hidden; transition: opacity 0.2s ease, visibility 0.2s ease;
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-content {
    background: #fff; border-radius: 24px; padding: 2.5rem;
    max-width: 420px; width: 100%; text-align: center; position: relative;
    transform: scale(0.95); transition: transform 0.2s ease;
    box-shadow: 0 25px 80px rgba(0,0,0,0.3);
}
.modal-overlay.open .modal-content { transform: scale(1); }
.modal-close {
    position: absolute; top: 1rem; right: 1rem; background: var(--gray-100); border: none;
    font-size: 1.3rem; color: var(--gray-400); cursor: pointer;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.modal-close:hover { background: var(--gray-200); color: var(--gray-600); }
.modal-icon { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.modal-icon.success { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.modal-icon.success svg { color: #16a34a; }
.modal-content h3 { font-size: 1.4rem; font-weight: 700; color: var(--gray-800); margin-bottom: 0.75rem; }
.modal-content p { font-size: 0.95rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1.5rem; }
.modal-btn { width: 100%; }

/* Responsive */
@media (max-width: 768px) {
    .hero-compact { padding: 100px 5% 50px; }
    .wizard-progress { padding: 1rem; gap: 0; flex-wrap: nowrap; overflow-x: auto; }
    .wp-step span { font-size: 0.58rem; }
    .wp-dot { width: 30px; height: 30px; font-size: 0.72rem; }
    .wp-line { min-width: 16px; margin: 0 0.3rem; margin-bottom: 1rem; }
    .wizard-step { padding: 1.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .service-card { padding: 1rem; }
    .sc-icon { width: 44px; height: 44px; }
    .btn-next, .btn-prev { padding: 0.75rem 1.5rem; font-size: 0.78rem; }
    .modal-content { padding: 1.75rem; border-radius: 20px; }
}
@media (max-width: 480px) {
    .wizard-container { padding: 0 4%; }
    .topbar { padding: 0.75rem 4%; }
}
