:root {
    --sage: #A8BFA6;
    --sage-dark: #8FA98D;
    --gold: #C6A769;
    /*--light: #f7f7f5;*/
    --light: #ffffff;
    --border: #e8e8e8;
    font-size: 16px;
}

body {
    position: relative;
    background: var(--light);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Progress Bar */
.progress-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    padding: 12px 20px 16px 20px;
    border-bottom: 1px solid #eee;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 8px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.progress-step {
    color: #bbb;
    font-weight: 500;
}

.progress-step.active {
    color: var(--sage-dark);
}

.progress-bar-custom {
    width: 100%;
    height: 6px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    max-width: 520px;
    margin: auto;
}

.progress-fill {
    height: 100%;
    width: 10%;
    background: var(--gold);
    transition: width .4s ease;
}

/* Card */
.form-card {
    background: white;
    border: 2px solid var(--gold);
    /*border-radius: 18px;*/
    padding: 20px 15px 40px 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Sections */
.section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--border);
}

h1 {
    color: var(--sage-dark);
    font-size: 1.8rem;
    text-align: center;
}

h2 {
    font-size: 1.25rem;
    color: var(--sage-dark);
    margin-bottom: 15px;
}

h3 {
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 20px;
}

#subtitle {
    font-size: 18px;
    text-align: center;
}

/* Inputs */
.form-control:focus,
.form-select:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 .1rem rgba(168, 191, 166, .4);
}

/* Radio Cards */
.radio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.radio-card {
    position: relative;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-card label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid var(--border);
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all .2s ease;
    background: white;
}

.radio-card input:checked+label {
    border-color: var(--sage);
    background: rgba(168, 191, 166, 0.15);
    color: var(--sage-dark);
}

textarea::placeholder {
    color: #9e9e9e !important;
}

.form-text {
    margin-top: 15px;
}

#submitBtn {
    margin-top: 30px;
}

/* Counter */
.person-counter {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.counter-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: var(--sage);
    color: white;
    font-size: 20px;
}

.counter-number {
    font-size: 20px;
    min-width: 30px;
    text-align: center;
}

/* Button */
.btn-gold {
    background: var(--gold);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
}

.btn-gold:hover {
    background: #b89656;
}

/* Animation */
.animated-section {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: max-height .45s ease, opacity .35s ease, transform .35s ease;
}

.animated-section.show {
    max-height: 900px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
}

/* Language switcher */
.lang-switcher {
    text-align: center;
    margin-bottom: 35px;
}

.lang-switcher button {
    background: var(--sage);
    color: white;
    border: none;
    padding: 6px 14px;
    border-radius: 8px;
    margin: 0 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.lang-switcher button.active {
    background: var(--gold);
    color: white;
}