

.is-form-wrapper {
    width: 100%;
    max-width: 100%;
    font-family: 'Segoe UI', sans-serif;
    overflow: visible;
}

.wpcf7-not-valid-tip {
    display: none;
}

.is-contact-section {
    width: 100%;
    padding-left: 5px;
}

.is-form-container {
    width: 100%;
}

.is-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .is-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.is-form-grid.is-single-column {
    grid-template-columns: 1fr;
}

.is-form-subtitle {
    font-size: 20px;
    line-height: 1.4;
    color: #00527A;
    margin-bottom: 16px;
}

.is-full-width {
    grid-column: 1 / -1;
}

.is-field-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.is-form-title {
    font-size: 36px;
    line-height: 1.25;
    font-weight: 700;
    color: #00527A;
    margin-bottom: 24px;
}

.is-label {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.is-input,
.is-textarea {
    width: 100%;
    padding: 0 24px;
    background-color: #ffffff;
    font-size: 16px;
    color: #111827;
    outline: none;
    border: none;
    border-radius: 3px;
    box-shadow: 0 0 0 1px #e5e7eb inset;
    transition: box-shadow 0.2s, color 0.2s, background-color 0.2s;
}

.is-input {
    height: 60px;
}

.is-textarea {
    height: 160px;
    padding-top: 16px;
    resize: vertical;
}

.is-textarea-wrapper {
    width: 100%;
    margin-top: 8px;
}

.is-input::placeholder,
.is-textarea::placeholder {
    color: grey;
}

.is-input:hover,
.is-textarea:hover {
    box-shadow: 0 0 0 1px #cbd5e1 inset;
}

.is-input:focus,
.is-textarea:focus {
    box-shadow: 0 0 0 2px rgba(0, 82, 122, 0.3);
    color: #00527A;
}

.is-input:disabled,
.is-textarea:disabled {
    background-color: #f3f4f6;
    color: #9ca3af;
    box-shadow: 0 0 0 1px #e5e7eb inset;
    cursor: not-allowed;
}

.is-input.is-error,
.is-textarea.is-error {
    box-shadow: 0 0 0 1px #ef4444;
    color: #d61f1f;
}

.is-input.is-error::placeholder,
.is-textarea.is-error::placeholder {
    color: #ef4444;
}

.is-input.phone {
    padding-left: 95px !important;
}

.is-input.is-valid,
.is-textarea.is-valid {
    box-shadow: 0 0 0 1px #00527A inset;
    color: #00527A;
}

.wpcf7-form .wpcf7-not-valid.is-input,
.wpcf7-form .wpcf7-not-valid.is-textarea {
    border-color: #ef4444;
    color: #d61f1f;
}

.is-select-wrapper {
    position: relative;
    z-index: 20;

}

select#industry-select {
    display: none;
}

.custom-select-container {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    height: 60px;
    padding: 0 24px;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    color: #111827;
    user-select: none;
    position: relative;
    border: none;
    border-bottom: 1px solid #d1d5db;
    border-radius: 0;
    box-shadow: none;
    transition: border-color 0.2s, color 0.2s;
}

.custom-select-trigger:hover {
    border-bottom-color: #cbd5e1;
}

.custom-select-container.is-open .custom-select-trigger {
    border-bottom-color: #d1d5db;
}

.custom-select-container.is-error .custom-select-trigger {
    border-bottom-color: #ef4444;
}

.custom-select-container.is-valid .custom-select-trigger {
    border-bottom-color: #00527A;
}

.custom-select-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    transform: rotate(45deg) translateY(-4px);
    transition: transform 0.3s ease;
}

.custom-select-container.is-open .custom-select-arrow {
    transform: rotate(225deg) translateY(-4px);
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform-origin: top;
    transform: translateY(-8px) scaleY(0.96);
    transition: transform 0.18s ease, opacity 0.18s ease, visibility 0.18s ease;
    will-change: transform, opacity;
    max-height: 300px;
    overflow-y: auto;
    padding: 0;
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
}

.custom-select-container.is-open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scaleY(1);
}

.custom-option {
    padding: 10px 24px;
    font-size: 16px;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.2s;
}

.custom-option:hover {
    color: #00527A;
    background-color: transparent;
}

.custom-option.selected {
    font-weight: 600;
    color: #00527A;
}

.is-form-footer {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.is-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 100%;
}

.is-checkbox {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    appearance: none;
    border: 2px solid #0085d2;
    border-radius: 3px;
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.is-checkbox:hover {
    border-color: #01527A;
}

.is-checkbox:focus {
    outline: none;
    border-color: #01527A;
    box-shadow: 0 0 0 2px rgba(0, 82, 122, 0.2);
}

.is-checkbox:checked {
    background-color: #0085d2;
    border-color: #0085d2;
}

.is-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 12px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
}

.is-checkbox:disabled {
    background-color: #f3f4f6;
    border-color: #cbd5e1;
    cursor: not-allowed;
}

.is-checkbox-wrapper.is-hover {
    color: #01527a;
}

.is-checkbox-wrapper.is-focused {
    color: #0085d2;
}

.is-checkbox-wrapper.is-disabled {
    color: #9ca3af;
}

.is-submit-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

@media (min-width: 768px) {
    .is-submit-wrapper {
        width: auto;
    }
}

.is-submit-btn,
.is-btn-submit,
.is-cta-button {
    width: auto;
    padding: 12px 24px;
    background-color: #0085d2;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 3px;
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
    text-decoration: none;
}

.is-submit-btn::after,
.is-btn-submit::after,
.is-cta-button::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #ffffff;
}

.is-submit-btn:hover,
.is-btn-submit:hover,
.is-cta-button:hover {
    background-color: #01527A;
}

.is-submit-btn:active,
.is-btn-submit:active,
.is-cta-button:active {
    transform: translateY(1px);
}

.is-submit-btn:focus,
.is-btn-submit:focus,
.is-cta-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 133, 210, 0.3);
}

.is-submit-icon,
.is-btn-icon,
.is-cta-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
}

.is-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.is-policy-text {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 14px;
}

.is-checkbox-label .wpcf7-form-control-wrap {
    width: 50px;
}

.intl-tel-input {
    width: 100%;
    display: block !important;
    position: relative !important;
}

.intl-tel-input .flag-container {
    position: absolute !important;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100% !important;
    pointer-events: none;
    z-index: 10;
}

.intl-tel-input .selected-flag {
    position: absolute !important;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    pointer-events: auto;
}

.intl-tel-input .country-list {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal;
    top: 100% !important;
    margin-top: 8px;
    border: none !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0 !important;
    padding: 8px 0 !important;
    z-index: 20 !important;
    pointer-events: auto;
}

.intl-tel-input .country-list .country {
    padding: 10px 24px !important;

    transition: color 0.2s ease;
}

.intl-tel-input .country-list .country:hover,
.intl-tel-input .country-list .country.highlight {
    background-color: transparent !important;
    color: #00527A !important;
}

.intl-tel-input .country-list .country .dial-code {
    color: #9ca3af;
}

.intl-tel-input .country-list .country:hover .dial-code,
.intl-tel-input .country-list .country.highlight .dial-code {
    color: #00527A !important;
}
