span.sc_item_title_text {
    display: inline-block;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
}


/* =========================
   RETREAT FORM - PREMIUM STYLE
========================= */

.retreat-formgroup {
    margin-bottom: 14px;
}

/* INPUTS */
.retreat-formgroup input,
.retreat-formgroup textarea,
.retreat-formgroup select {
    width: 100%;
    padding: 12px 8px;
    font-size: 16px; /* prevents iPhone zoom */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
    transition: all 0.2s ease;
    color: #000;
}

/* PLACEHOLDER */
.retreat-formgroup input::placeholder,
.retreat-formgroup textarea::placeholder {
    color: #999;
}

/* TEXTAREA */
.retreat-formgroup textarea {
    resize: vertical;
    min-height: 120px;
}

/* FOCUS STATE (premium glow) */
.retreat-formgroup input:focus,
.retreat-formgroup textarea:focus,
.retreat-formgroup select:focus {
    outline: none;
    border-color: #539990;
    box-shadow: 0 0 0 3px rgba(83, 153, 144, 0.12);
	background: #fff;
}

/* When value is entered */
.retreat-formgroup input:not(:placeholder-shown),
.retreat-formgroup textarea:not(:placeholder-shown) {
    background: #fff !important;
}

/* Autofill fix (IMPORTANT for Chrome + iPhone) */
.retreat-formgroup input:-webkit-autofill {
    background-color: #fff !important;
    -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
    -webkit-text-fill-color: #000 !important;
}



/* BUTTON HOVER */
.retreat-submitbtn input[type="submit"]:hover {
    background: #457f7a;
    transform: translateY(-1px);
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .retreat-formgroup input,
    .retreat-formgroup textarea,
    .retreat-formgroup select {
        font-size: 16px;
    }
}


/* =========================
   PREMIUM DROPDOWN STYLE
========================= */

.retreat-formgroup select {
    width: 100%;
    padding: 12px 14px;
    font-size: 16px; /* prevents iPhone zoom */
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff !important;
    background-color: #fff !important;
    box-sizing: border-box;
    color: #000;
    transition: all 0.2s ease;

    /* remove default ugly arrow styling (optional clean look) */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* custom arrow 
    background-image: url("data:image/svg+xml,%3Csvg fill='%23666' height='12' viewBox='0 0 24 24' width='12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;*/
}

/* FOCUS STATE (selected/clicked state) */
.retreat-formgroup select:focus {
    outline: none;
    border-color: #539990;
    box-shadow: 0 0 0 3px rgba(83, 153, 144, 0.12);
    background: #fff !important;
    background-color: #fff !important;
}

/* WHEN VALUE IS SELECTED */
.retreat-formgroup select:valid {
   
	background: #fff !important;
    background-color: #fff !important;
    color: #000;
}

/* LABEL */
.retreat-formgroup label {
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.custom-textarea {
    height: 120px !important;
}
