:root {
    --bg: #071c24;
    --card: #0d2832;
    --field: #1b343e;
    --border: rgba(255, 255, 255, 0.12);
    --border-focus: #c98663;
    --accent: #c98663;
    --accent-hover: #d69773;
    --text: #f5eee8;
    --muted: rgba(245, 238, 232, 0.68);
    --error: #e57373;
    --success: #81c784;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent);
    color: var(--bg);
}

.booking-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: 
        radial-gradient(ellipse at 20% 0%, rgba(201, 134, 99, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(201, 134, 99, 0.05) 0%, transparent 50%),
        var(--bg);
}

.booking-container {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-logo-header {
    display: flex;
    justify-content: center;
    padding-bottom: 8px;
}

.booking-logo-header img {
    height: 120px;
    width: auto;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.progress-track {
    width: 100%;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    border-radius: 2px;
    width: 8.33%;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.5;
}

.form-header {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.logo-icon {
    width: 56px;
    height: 56px;
}

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

.step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.helper-text {
    display: block;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 16px;
    line-height: 1.5;
}

.field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.input-group {
    margin-bottom: 8px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 18px 20px;
    background: var(--field);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(245, 238, 232, 0.35);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(201, 134, 99, 0.15);
}

.input-group textarea {
    resize: vertical;
    min-height: 140px;
}

.date-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.date-range input {
    width: 100%;
    padding: 18px 20px;
    background: var(--field);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    cursor: pointer;
}

.date-range input:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(201, 134, 99, 0.15);
}

.date-range input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.6;
    cursor: pointer;
}

.phone-input-wrapper {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.country-select {
    padding: 18px 16px;
    background: var(--field);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 400;
    cursor: pointer;
    min-width: 120px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f5eee8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    transition: all 0.3s ease;
}

.country-select:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(201, 134, 99, 0.15);
}

.country-select option {
    background: var(--card);
    color: var(--text);
    padding: 12px;
}

.phone-input-wrapper input {
    flex: 1;
    width: 100%;
    padding: 18px 20px;
    background: var(--field);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
}

.phone-input-wrapper input::placeholder {
    color: rgba(245, 238, 232, 0.35);
}

.phone-input-wrapper input:focus {
    outline: none;
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(201, 134, 99, 0.15);
}

.error-message {
    display: none;
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 8px;
    padding-left: 4px;
}

.error-message.visible {
    display: block;
}

.input-group.error input,
.input-group.error textarea {
    border-color: var(--error);
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--field);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: rgba(201, 134, 99, 0.5);
    background: rgba(201, 134, 99, 0.08);
}

.option-card.selected {
    border-color: var(--accent);
    background: rgba(201, 134, 99, 0.12);
}

.option-card.selected .option-number {
    color: var(--accent);
}

.option-number {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--muted);
    min-width: 32px;
}

.option-text {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-item:hover {
    border-color: rgba(201, 134, 99, 0.5);
    background: rgba(201, 134, 99, 0.06);
}

.option-item.selected {
    border-color: var(--accent);
    background: rgba(201, 134, 99, 0.1);
}

.option-item.selected .option-marker {
    background: var(--accent);
    border-color: var(--accent);
}

.option-marker {
    width: 20px;
    height: 20px;
    border: 1px solid var(--border);
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.option-item.selected .option-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--bg);
    border-radius: 50%;
}

.option-label {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text);
}

.experience-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}

.experience-card {
    padding: 28px;
    background: var(--field);
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.experience-card:hover {
    border-color: rgba(201, 134, 99, 0.5);
    transform: translateY(-2px);
}

.experience-card.selected {
    border-color: var(--accent);
    background: rgba(201, 134, 99, 0.1);
}

.experience-card-content {
    display: flex;
    flex-direction: column;
}

.experience-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.experience-price {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

.experience-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--muted);
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.experience-tag {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    border: 1px solid rgba(201, 134, 99, 0.42);
    border-radius: 999px;
    color: var(--accent);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.consent-wrapper {
    margin-top: 32px;
}

.consent-label {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    padding: 20px;
    background: var(--field);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.consent-label:hover {
    border-color: rgba(201, 134, 99, 0.5);
}

.consent-label.checked {
    border-color: var(--accent);
    background: rgba(201, 134, 99, 0.08);
}

.consent-label input {
    display: none;
}

.consent-checkbox {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2px;
}

.consent-label.checked .consent-checkbox {
    background: var(--accent);
    border-color: var(--accent);
}

.consent-label.checked .consent-checkbox::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid var(--bg);
    border-width: 0 2px 2px 0;
}

.consent-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text);
}

.step-success {
    text-align: center;
    padding: 20px 0;
}

.success-content {
    animation: fadeIn 0.6s ease-out;
}

.success-icon {
    width: 80px;
    height: 80px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: var(--accent);
}

.success-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text);
    text-transform: uppercase;
}

.success-message {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 440px;
    margin: 0 auto;
}

.btn-back-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
    padding: 14px 28px;
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-back-home:hover {
    background: var(--accent);
    color: var(--bg);
}

.form-footer {
    margin-top: 40px;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-back {
    background: transparent;
    color: var(--muted);
    border: 1px solid var(--border);
    padding: 16px 24px;
}

.btn-back:hover {
    color: var(--text);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-back.hidden {
    opacity: 0;
    pointer-events: none;
}

.btn-next {
    background: var(--accent);
    color: var(--bg);
    border: 1px solid var(--accent);
    flex: 1;
    max-width: 280px;
    margin-left: auto;
}

.btn-next:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
}

.btn-next.submit {
    background: var(--accent);
}

.btn-next.submit:hover {
    background: var(--accent-hover);
}

.booking-footer {
    text-align: center;
    padding: 8px 0;
}

.booking-footer p {
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .booking-page {
        padding: 24px 16px;
    }

    .form-card {
        padding: 32px 24px;
        border-radius: 12px;
    }

    .question {
        font-size: 1.6rem;
        margin-bottom: 24px;
    }

    .date-range {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .phone-input-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    .country-select {
        min-width: 100%;
        padding: 14px 16px;
    }

    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .experience-name {
        font-size: 1.2rem;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.8rem;
    }

    .nav-buttons {
        gap: 12px;
    }

    .form-footer {
        margin-top: 32px;
    }
}

@media (max-width: 480px) {
    .form-card {
        padding: 24px 18px;
    }

    .question {
        font-size: 1.4rem;
    }

    .option-card,
    .option-item {
        padding: 16px 18px;
    }

    .experience-card {
        padding: 22px;
    }
}
