/* === Reset & Global Styles === */
:root {
    --bg: #f4ede2;
}

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

a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    background-color: #f5e6d3;
    color: #2c1810;
    padding: 20px;
    line-height: 1.6;
}

/* === Container === */
.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f5e6d3;
    padding: 40px;
}

/* === Logo === */
.logo {
    text-align: center;
    margin-bottom: 30px;
}

.logo img {
    max-width: 200px;
    height: auto;
}

/* === Title === */
.title {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #1a1a4d;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

/* === Form Structure === */
.questionnaire-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c1810;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #8b7355;
    background-color: transparent;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-bottom-color: #c4a572;
}

/* === Section Headings === */
.form-section {
    margin-bottom: 35px;
}

.form-section h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #2c1810;
}

/* === Checkbox & Radio Groups === */
.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 10px;
}

.checkbox-label,
.radio-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 16px;
    gap: 10px;
}

.checkbox-label input[type="checkbox"],
.radio-label input[type="radio"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label.other,
.radio-label.other {
    align-items: center;
}

/* === "Other" Input Fields === */
.other-input,
.other-input-long {
    flex: 1;
    margin-left: 10px;
    padding: 5px 10px;
    border: none;
    border-bottom: 1px solid #8b7355;
    background-color: transparent;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    min-width: 200px;
}

/* === Submit Button === */
.submit-btn {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 40px auto 30px;
    padding: 15px 30px;
    background-color: #c4a572;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #b89560;
}

/* === Contact Info === */
.contact-info {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #8b7355;
    font-size: 14px;
    line-height: 1.8;
}

.contact-info p {
    margin-bottom: 5px;
}

.contact-info strong {
    font-weight: bold;
}

.info-text {
    background-color: rgba(196, 165, 114, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #c4a572;
}

.info-text p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #2c1810;
}

.info-text strong {
    font-weight: bold;
    color: #1a1a4d;
}

.info-text.final-note {
    margin-top: 25px;
    background-color: rgba(26, 26, 77, 0.05);
    border-left-color: #1a1a4d;
}

/* === Service List === */
.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c4a572;
    font-weight: bold;
    font-size: 18px;
}

.dotted-input {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 2px dotted #8b7355;
    background-color: transparent;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.dotted-input:focus {
    border-bottom-color: #c4a572;
    border-bottom-style: solid;
}

/* === Textarea Input === */
.textarea-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #8b7355;
    border-radius: 8px;
    background-color: transparent;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.3s;
    line-height: 1.6;
}

.textarea-input:focus {
    border-color: #c4a572;
}

.textarea-input::placeholder {
    color: #8b7355;
    opacity: 0.6;
}


/* === Container === */
.container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f5e6d3;
    padding: 50px 80px; /* Keng ekranlar uchun o‘ng/chapdan kengroq joy */
    border-radius: 10px;
}

.rating-options {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 5px;
}

.rating-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 3px;
}

.rating-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.rating-checkbox span {
    font-size: 16px;
    color: #2c1810;
}

.premium-services {
    background-color: rgba(196, 165, 114, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 2px solid #c4a572;
}

.checkbox-label-checked {
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    gap: 10px;
    padding: 8px 0;
    color: #2c1810;
    opacity: 1;
}

.checkbox-label-checked input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: not-allowed;
    accent-color: #c4a572;
}

.checkbox-label-checked span {
    flex: 1;
    line-height: 1.6;
    font-weight: 500;
}

/* Galochka belgisi uchun stil */
.checkbox-label-checked span::before {
    content: '';
    display: inline;
}

.program-input {
    width: 100%;
    max-width: 600px;
    margin-top: 8px;
    margin-left: 28px;
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid #8b7355;
    background-color: transparent;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.program-input:focus {
    border-bottom-color: #c4a572;
    border-bottom-width: 2px;
}

.program-input::placeholder {
    color: #8b7355;
    opacity: 0.6;
}

/* === Final Message (Kontakt info ichidagi yakuniy xabar) === */
.final-message {
    margin-top: 20px;
    font-size: 15px;
    font-style: italic;
    color: #1a1a4d;
    line-height: 1.7;
}

/* === Responsiv tuzatishlar === */
@media (max-width: 1024px) {
    .container {
        padding: 40px 50px;
    }
}

@media (max-width: 768px) {
    .premium-services {
        padding: 15px;
    }
    
    .checkbox-label-checked {
        font-size: 15px;
    }
    
    .checkbox-label-checked input[type="checkbox"] {
        width: 16px;
        height: 16px;
    }

    .container {
        padding: 25px 25px;
    }

    .title {
        font-size: 20px;
        text-align: center;
        margin-bottom: 30px;
    }

    .form-group label {
        font-size: 15px;
    }

    .checkbox-group,
    .radio-group {
        gap: 8px;
        padding-left: 0;
    }

    .other-input,
    .other-input-long {
        width: 100%;
        margin-left: 0;
        margin-top: 8px;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .program-input {
        margin-left: 20px;
        font-size: 14px;
        max-width: 100%;
    }
    
    .final-message {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .premium-services {
        padding: 12px;
    }
    
    .checkbox-label-checked {
        font-size: 14px;
    }
    
    .checkbox-label-checked input[type="checkbox"] {
        width: 14px;
        height: 14px;
    }
    
    .container {
        padding: 20px 15px;
    }

    .form-section h2 {
        font-size: 15px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 10px 15px;
        width: 100%;
    }

    .checkbox-label,
    .radio-label {
        font-size: 14px;
    }
    
    .subsection h3 {
        font-size: 14px;
    }

    .program-input {
        margin-left: 0;
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .final-message {
        font-size: 13px;
    }
}

/* === 2026 Refresh Layer === */
body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(214, 161, 93, 0.24), transparent 26%),
        radial-gradient(circle at top right, rgba(158, 79, 42, 0.14), transparent 24%),
        linear-gradient(135deg, #f6f0e6 0%, #efe2d2 52%, #e7d5be 100%);
    color: #241815;
    padding: 28px 18px 44px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(circle at center, black 26%, transparent 86%);
    opacity: 0.42;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    padding: 28px;
    background: rgba(255, 251, 245, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(61, 35, 18, 0.12);
    backdrop-filter: blur(18px);
}

.logo {
    margin-bottom: 22px;
}

.logo img {
    max-width: 128px;
}

.title,
.main-title {
    color: #6d2f17;
    letter-spacing: 0.06em;
    line-height: 1;
}

.title {
    font-size: clamp(28px, 4vw, 48px);
    margin-bottom: 18px;
}

.subtitle,
.description {
    color: #6d5a50;
}

.subtitle {
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto 22px;
}

.description {
    max-width: 720px;
}

.info-box,
.info-text {
    border: 1px solid rgba(158, 79, 42, 0.12);
    border-radius: 20px;
    background: rgba(214, 161, 93, 0.12);
    border-left: 0;
}

.questionnaires-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.questionnaire-card {
    min-height: 220px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 250, 243, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.76);
    box-shadow: 0 20px 50px rgba(61, 35, 18, 0.1);
}

.questionnaire-card:hover {
    transform: translateY(-6px);
    border-color: rgba(158, 79, 42, 0.34);
    box-shadow: 0 28px 60px rgba(61, 35, 18, 0.16);
}


.card-number {
    background: rgba(158, 79, 42, 0.12);
    color: #6d2f17;
}

.card-title {
    font-size: 28px;
    color: #6d2f17;
}

.card-description,
.contact-info {
    color: #6d5a50;
}

.card-arrow {
    color: #6d2f17;
}

.questionnaire-form {
    display: grid;
    gap: 18px;
}

.form-section {
    margin-bottom: 0;
    padding: 22px;
    background: rgba(255, 250, 243, 0.92);
    border: 1px solid rgba(61, 35, 18, 0.12);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(61, 35, 18, 0.05);
}

.form-section h2 {
    color: #6d2f17;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-group label,
.section-label {
    color: #6d2f17;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.underline-input,
.full-width-input,
.dotted-input,
.program-input,
.other-input,
.other-input-long,
.textarea-input,
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="date"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(109, 47, 23, 0.16);
    border-radius: 14px;
    background: #fffdf9;
    color: #6d2f17;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 700;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.underline-input::placeholder,
.full-width-input::placeholder,
.dotted-input::placeholder,
.program-input::placeholder,
.other-input::placeholder,
.other-input-long::placeholder,
.textarea-input::placeholder,
.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="date"]::placeholder,
.form-group input[type="time"]::placeholder,
.form-group textarea::placeholder {
    color: rgba(109, 47, 23, 0.55);
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 700;
}

.underline-input:focus,
.full-width-input:focus,
.dotted-input:focus,
.program-input:focus,
.other-input:focus,
.other-input-long:focus,
.textarea-input:focus,
.form-group input:focus {
    border-color: rgba(158, 79, 42, 0.44);
    border-bottom-style: solid;
    box-shadow: 0 0 0 4px rgba(158, 79, 42, 0.08);
    transform: translateY(-1px);
}

.checkbox-group,
.radio-group {
    gap: 12px;
    padding-left: 0;
}

.checkbox-label,
.radio-label {
    padding: 14px 16px;
    border: 1px solid rgba(61, 35, 18, 0.12);
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.92);
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.checkbox-label:hover,
.radio-label:hover {
    transform: translateY(-1px);
    border-color: rgba(158, 79, 42, 0.3);
    background: #fffaf4;
}

.radio-group .checkbox-label,
.radio-group .radio-label {
    align-items: center;
}

.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"],
.radio-label input[type="radio"] {
    accent-color: #9e4f2a;
}

.checkbox-label input[type="radio"],
.radio-label input[type="radio"] {
    margin-top: 0;
    align-self: center;
}

.checkbox-label.other,
.radio-label.other {
    align-items: flex-start;
    flex-wrap: wrap;
}

.checkbox-label.other span,
.radio-label.other span {
    flex: initial;
}

.other-input,
.other-input-long {
    flex: 1 1 240px;
    margin-left: 0;
}

.date-time-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.picker-card {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(109, 47, 23, 0.12);
    position: relative;
}

.picker-card label {
    display: block;
    margin-bottom: 10px;
}

.custom-picker {
    position: relative;
}

.picker-trigger {
    width: 100%;
    min-height: 68px;
    padding: 14px 18px;
    border: 1px solid rgba(109, 47, 23, 0.16);
    border-radius: 16px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 238, 228, 0.86));
    color: #6d2f17;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    text-align: left;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.picker-trigger:hover,
.picker-trigger[aria-expanded="true"] {
    border-color: rgba(158, 79, 42, 0.4);
    box-shadow: 0 0 0 4px rgba(158, 79, 42, 0.08);
    transform: translateY(-1px);
}

.picker-trigger::after {
    content: "";
    width: 16px;
    height: 16px;
    border-right: 2px solid rgba(109, 47, 23, 0.75);
    border-bottom: 2px solid rgba(109, 47, 23, 0.75);
    transform: rotate(45deg) translateY(-3px);
    flex-shrink: 0;
}

.picker-trigger-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(158, 79, 42, 0.1);
    color: #6d2f17;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.picker-trigger-value {
    flex: 1;
    color: #6d2f17;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 700;
}

.picker-note {
    margin-top: 10px;
    color: #8b6c5b;
    font-size: 13px;
    line-height: 1.5;
}

.picker-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 100%;
    min-width: 300px;
    padding: 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 250, 243, 0.98), rgba(244, 232, 220, 0.98));
    border: 1px solid rgba(109, 47, 23, 0.16);
    box-shadow: 0 24px 50px rgba(61, 35, 18, 0.18);
    z-index: 30;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.calendar-nav {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(109, 47, 23, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.72);
    color: #6d2f17;
    font-size: 18px;
    cursor: pointer;
}

.calendar-title {
    color: #6d2f17;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 700;
    text-align: center;
}

.calendar-weekdays,
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.calendar-weekdays {
    margin-bottom: 10px;
}

.calendar-weekdays span {
    text-align: center;
    color: #8b6c5b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.calendar-day {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid transparent;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: #6d2f17;
    font: inherit;
    font-size: 16px;
    cursor: pointer;
    transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.calendar-day:hover {
    transform: translateY(-1px);
    border-color: rgba(158, 79, 42, 0.24);
    background: rgba(255, 248, 240, 0.95);
}

.calendar-day.is-muted {
    color: rgba(109, 47, 23, 0.35);
}

.calendar-day.is-today {
    border-color: rgba(158, 79, 42, 0.28);
}

.calendar-day.is-selected {
    background: linear-gradient(135deg, #9e4f2a, #6d2f17);
    color: #fff8f0;
    border-color: transparent;
    box-shadow: 0 12px 24px rgba(109, 47, 23, 0.22);
}

.calendar-day.is-disabled {
    color: rgba(109, 47, 23, 0.24);
    background: rgba(255, 255, 255, 0.42);
    cursor: not-allowed;
    pointer-events: none;
}

.picker-panel-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
}

.picker-text-btn,
.picker-apply-btn {
    border: 0;
    border-radius: 999px;
    padding: 10px 16px;
    font: inherit;
    cursor: pointer;
}

.picker-text-btn {
    background: rgba(158, 79, 42, 0.08);
    color: #6d2f17;
}

.picker-apply-btn {
    background: linear-gradient(135deg, #9e4f2a, #6d2f17);
    color: #fff8f0;
}

.time-input-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 12px;
    align-items: end;
    margin-bottom: 16px;
}

.time-mini-field {
    display: grid;
    gap: 8px;
}

.time-mini-field span {
    color: #8b6c5b;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.time-mini-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(109, 47, 23, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    color: #6d2f17;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 700;
}

.time-separator {
    padding-bottom: 12px;
    color: #6d2f17;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 700;
}

.time-chip-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.time-chip {
    border: 1px solid rgba(109, 47, 23, 0.14);
    border-radius: 999px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.72);
    color: #6d2f17;
    font: inherit;
    cursor: pointer;
}

.time-chip.is-active {
    background: linear-gradient(135deg, #9e4f2a, #6d2f17);
    color: #fff8f0;
    border-color: transparent;
}

.time-mini-field input:focus,
.picker-text-btn:hover,
.picker-apply-btn:hover,
.time-chip:hover,
.calendar-nav:hover {
    outline: none;
    transform: translateY(-1px);
}

.picker-panel[hidden] {
    display: none;
}

.picker-error {
    margin-top: 8px;
    color: #9b2c2c;
    font-size: 13px;
    line-height: 1.4;
}

.picker-card.is-invalid .picker-trigger,
.picker-card.is-invalid .time-mini-field input {
    border-color: rgba(155, 44, 44, 0.45);
    box-shadow: 0 0 0 4px rgba(155, 44, 44, 0.08);
}

.quantity-control {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) 56px;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 56px;
    height: 56px;
    border: 1px solid rgba(109, 47, 23, 0.16);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 238, 228, 0.86));
    color: #6d2f17;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.quantity-btn:hover {
    border-color: rgba(158, 79, 42, 0.4);
    box-shadow: 0 0 0 4px rgba(158, 79, 42, 0.08);
    transform: translateY(-1px);
}

.quantity-input {
    width: 100%;
    min-height: 56px;
    padding: 14px 16px;
    border: 1px solid rgba(109, 47, 23, 0.16);
    border-radius: 16px;
    background: #fffdf9;
    color: #6d2f17;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input:focus {
    outline: none;
    border-color: rgba(158, 79, 42, 0.44);
    box-shadow: 0 0 0 4px rgba(158, 79, 42, 0.08);
}

.textarea-input {
    min-height: 132px;
}

.submit-btn {
    max-width: 320px;
    margin: 24px auto 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #9e4f2a, #6d2f17);
    box-shadow: 0 16px 32px rgba(109, 47, 23, 0.22);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #b56035, #7f391c);
}

.contact-info {
    margin-top: 24px;
    border-top: 1px solid rgba(109, 47, 23, 0.14);
}

@media (max-width: 900px) {
    .questionnaires-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 22px;
    }

    .date-time-grid {
        grid-template-columns: 1fr;
    }

    .picker-panel {
        min-width: 0;
    }

    .time-chip-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    body {
        padding: 14px 10px 28px;
    }

    .container {
        border-radius: 24px;
        padding: 18px 14px;
    }

    .form-section {
        padding: 18px;
        border-radius: 18px;
    }

    .card-title {
        font-size: 22px;
    }
}
