/*
 * The Living Company - Schedule Demo Page Styles
 *
 * Extends contact.css with demo-specific styles.
 * Requires: theme.css, public.css, contact.css
 */

/* Eyebrow */
.demo-eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

/* What to Expect */
.demo-what-to-expect {
    margin-top: 40px;
}

.demo-what-to-expect h3 {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-gray-400);
    margin-bottom: 20px;
}

.demo-expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.demo-expect-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.demo-expect-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--color-off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-top: 2px;
}

.demo-expect-list li strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-black);
    display: block;
    margin-bottom: 2px;
}

.demo-expect-list li p {
    font-size: 13px;
    color: var(--color-gray-600);
    line-height: 1.5;
    margin: 0;
}

/* Select Styling */
.contact-form-card .form-group select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--color-black);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 4px;
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-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='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.contact-form-card .form-group select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

/* Placeholder-like color for unselected option */
.contact-form-card .form-group select:invalid,
.contact-form-card .form-group select option[value=""] {
    color: var(--color-gray-400);
}

/* Form Disclaimer */
.form-disclaimer {
    font-size: 12px;
    color: var(--color-gray-400);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

/* Textarea shorter for demo form */
.contact-form-card .form-group textarea {
    min-height: 80px;
}

/* Responsive */
@media (max-width: 768px) {
    .demo-what-to-expect {
        margin-top: 32px;
    }
}
