/**
 * Block: tr-fields/structural-contact-form
 * Fully contained block CSS
 * Auto-generated by cr-generate-blocks.php
 */

/* CSS Custom Properties */
:root {
            /* Airbnb-inspired palette */
            --coral: #FF385C;
            --coral-dark: #E31C5F;
            --coral-light: #FF5A7D;
            --teal: #008489;
            --teal-light: #00A699;
            --black: #222222;
            --gray-900: #484848;
            --gray-700: #717171;
            --gray-500: #B0B0B0;
            --gray-300: #DDDDDD;
            --gray-100: #F7F7F7;
            --white: #FFFFFF;

            /* Semantic */
            --success: #008A05;
            --warning: #FFB400;
            --star: #FF385C;

            /* Typography */
            --font-primary: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;

            /* Spacing */
            --section-padding: clamp(3rem, 6vw, 6rem);
            --container-max: 1280px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --radius-full: 9999px;
        }

/* Component: structural-contact-form */
/* ================================
           CONTACT FORM SECTION
        ================================ */
        .contact-form-section {
    padding: 80px 0;
            background: var(--gray-100);
}

/* Hide CR Forms title when section already has its own heading */
        .contact-form-section .crf-form-title {
    display: none;
}

/* Layout */
        .container {
    max-width: var(--container-max);
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
}

@media (min-width: 744px) {
    .container {
        padding-left: 40px;
                padding-right: 40px;
    }
}

@media (min-width: 1128px) {
    .container {
        padding-left: 80px;
                padding-right: 80px;
    }
}

.hero .container {
    position: relative;
            z-index: 2;
}

.contact-form__wrapper {
    max-width: 720px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 16px;
            padding: 48px;
            box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.contact-form__header {
    text-align: center;
            margin-bottom: 32px;
}

.contact-form__title {
    font-size: 32px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
}

.contact-form__subtitle {
    font-size: 16px;
            color: var(--gray-600);
}

.contact-form__grid {
    display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
}

.contact-form__footer {
    margin-top: 32px;
            text-align: center;
}

.contact-form__footer .btn {
    display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 320px;
}

.contact-form__disclaimer {
    font-size: 13px;
            color: var(--gray-500);
            margin-top: 16px;
}

@media (max-width: 600px) {
    .contact-form__wrapper {
        padding: 32px 24px;
    }

.contact-form__grid {
        grid-template-columns: 1fr;
    }

.contact-form__title {
        font-size: 26px;
    }
}

.form-group {
    display: flex;
            flex-direction: column;
}

.form-label {
    font-size: 14px;
            font-weight: 600;
            color: var(--black);
            margin-bottom: 6px;
}

.form-label .required {
    color: var(--coral);
}

.form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
    outline: none;
            border-color: var(--coral);
            box-shadow: 0 0 0 3px rgba(255, 56, 92, 0.1);
}

.form-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='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 14px center;
            padding-right: 44px;
}

.form-group--full {
    grid-column: 1 / -1;
}

.form-input,
        .form-select,
        .form-textarea {
    padding: 14px 16px;
            font-size: 16px;
            border: 1px solid var(--gray-300);
            border-radius: 8px;
            background: var(--white);
            transition: border-color 0.2s, box-shadow 0.2s;
            font-family: inherit;
}

.form-textarea {
    resize: vertical;
            min-height: 120px;
}

/* Buttons - Airbnb style */
        .btn {
    display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 24px;
            font-family: var(--font-primary);
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            border: none;
            border-radius: var(--radius-md);
            cursor: pointer;
            transition: all 0.2s ease;
}

.btn--primary {
    background: linear-gradient(to right, var(--coral), var(--coral-dark));
            color: var(--white);
}

.btn--primary:hover {
    transform: scale(1.02);
            box-shadow: 0 4px 14px rgba(255, 56, 92, 0.4);
}

.btn--large {
    padding: 16px 32px;
            font-size: 18px;
}

.btn--pill {
    border-radius: var(--radius-full);
}
