#top #header_main > .container,
#top #header_main > .container .main_menu .av-main-nav > li > a,
#top #header_main #menu-item-shop .cart_dropdown_link {
    height: auto;
    line-height: normal;
    min-height: var(--inn-main-header-h, 88px);
}

.html_top_nav_header .av-logo-container {
    height: auto;
    min-height: var(--inn-main-header-h, 88px);
}

.html_header_top.html_header_sticky #top #wrap_all #main {
    padding-top: 0;
}

/* Icon fonts replaced by Font Awesome in standalone layout */
html body [data-av_iconfont='entypo-fontello']:before,
.avia_button_icon:before {
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900;
}

/* Areas of expertise — Font Awesome icons */
.inn-expertise-icon {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

.inn-expertise-fa {
    font-size: 70px;
    line-height: 1;
    color: #ffffff;
}

/* Contact form success / errors (main site) */
.inn-contact-success {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 24px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
    border: 1px solid #6ee7b7;
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.12);
    margin-bottom: 20px;
}

.inn-contact-success__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
}

.inn-contact-success__title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
}

.inn-contact-success__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #047857;
}

.inn-contact-errors {
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 8px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    font-size: 14px;
    color: #991b1b;
}

.inn-contact-errors ul {
    margin: 0;
    padding-left: 1.25rem;
}

/* Make an appointment — contact form */
.inn-appointment {
    margin-top: 4px;
}

.inn-appointment__form {
    padding: 28px 28px 24px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow:
        0 1px 2px rgba(15, 23, 42, 0.04),
        0 12px 40px rgba(35, 136, 194, 0.1);
}

.inn-appointment__fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.inn-appointment__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.inn-appointment__row--half {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.inn-appointment__field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.inn-appointment__field--invalid .inn-appointment__input {
    border-color: #f87171 !important;
    background: #fff8f8;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

.inn-appointment__field-error {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #dc2626;
}

.inn-appointment__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #334155;
}

.inn-appointment__label-icon {
    width: 14px;
    text-align: center;
    font-size: 13px;
    color: #379cd6;
}

.inn-appointment__required {
    color: #ef4444;
    font-weight: 700;
}

.inn-appointment__optional {
    font-size: 11px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    color: #94a3b8;
}

.inn-appointment .text_input,
.inn-appointment .text_area,
.inn-appointment .select,
.inn-appointment__input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 12px 14px;
    font-size: 15px;
    line-height: 1.45;
    color: #0f172a;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.inn-appointment .text_input::placeholder,
.inn-appointment .text_area::placeholder,
.inn-appointment__input::placeholder {
    color: #94a3b8;
}

.inn-appointment .text_input:hover,
.inn-appointment .text_area:hover,
.inn-appointment .select:hover,
.inn-appointment__input:hover {
    border-color: #94a3b8;
    background: #ffffff;
}

.inn-appointment .text_input:focus,
.inn-appointment .text_area:focus,
.inn-appointment .select:focus,
.inn-appointment__input:focus {
    outline: none;
    border-color: #379cd6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(55, 156, 214, 0.22);
}

.inn-appointment__textarea {
    min-height: 130px;
    resize: vertical;
}

.inn-appointment__select-wrap {
    position: relative;
}

.inn-appointment__select {
    padding-right: 40px;
    cursor: pointer;
}

.inn-appointment__select-chevron {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 11px;
    color: #64748b;
}

.inn-appointment__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.inn-appointment__actions {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.inn-appointment__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: linear-gradient(135deg, #379cd6 0%, #2388c2 55%, #1a6fa0 100%);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(35, 136, 194, 0.35);
    transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.inn-appointment__submit:hover {
    filter: brightness(1.05);
    box-shadow: 0 6px 20px rgba(35, 136, 194, 0.42);
    transform: translateY(-1px);
}

.inn-appointment__submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(35, 136, 194, 0.3);
}

.inn-appointment__submit:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.9),
        0 0 0 5px #379cd6,
        0 4px 14px rgba(35, 136, 194, 0.35);
}

.inn-appointment__hint {
    margin: 12px 0 0;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    color: #64748b;
}

.inn-appointment__errors-title {
    margin: 0 0 8px;
    font-weight: 600;
    font-size: 14px;
}

.inn-appointment__errors-title i {
    margin-right: 6px;
}

.inn-appointment__success {
    margin-bottom: 0;
}

/* Override Enfold contact.css inside our form */
.inn-appointment .inn-contact-form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.inn-appointment .inn-contact-form p {
    margin: 0;
}

.inn-appointment .inn-contact-form .button,
.inn-appointment .inn-contact-form input.button {
    display: none;
}

.inn-appointment .av-form-labels-hidden label,
.inn-appointment label.hidden {
    position: static;
    clip: auto;
    width: auto;
    height: auto;
    overflow: visible;
}

/* jQuery UI datepicker — match form */
#ui-datepicker-div.avia_4_1,
.ui-datepicker.avia-datepicker-div {
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    font-family: inherit;
}

.ui-datepicker .ui-state-active,
.ui-datepicker .ui-state-hover {
    background: #379cd6 !important;
    border-color: #2388c2 !important;
    color: #fff !important;
}

@media (max-width: 767px) {
    .inn-appointment__form {
        padding: 20px 18px 18px;
    }

    .inn-appointment__row--half {
        grid-template-columns: 1fr;
    }

    #wrap_all {
        overflow-x: hidden;
    }

    .inn-main-footer .inn-footer-block {
        padding: 16px 12px 32px;
    }

    .inn-footer-divider {
        margin: 28px auto;
        gap: 12px;
    }

    .inn-footer-social {
        gap: 10px;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .avia-section,
    .container,
    .container_wrap {
        max-width: 100%;
    }

    .flex_column {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 989px) {
    .av-main-nav-wrap,
    .main_menu {
        max-width: 100%;
    }

    .header_main_alternate,
    .av_header_with_border {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Hide cookie bar on Laravel clone */
.avia-cookie-consent-wrap {
    display: none !important;
}

/* Main footer (home + contact) — centered block */
.inn-main-footer .inn-footer-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 15px 40px;
    text-align: center;
}

.inn-footer-intro__sub {
    text-align: center;
    color: #7a7a7a;
    margin: 0 0 10px;
    font-size: 15px;
}

.inn-footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px auto;
    max-width: 520px;
}

.inn-footer-divider--small {
    margin: 30px auto 24px;
}

.inn-footer-divider__line {
    flex: 1;
    height: 1px;
    background: #d3d3d3;
    max-width: 200px;
}

.inn-footer-divider__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #072f4c;
    font-size: 28px;
    line-height: 1;
}

.inn-footer-divider__icon--small {
    width: 36px;
    height: 36px;
    font-size: 20px;
}

.inn-footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 0 auto 36px;
}

.inn-footer-social__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(45deg, #094978, #105e96);
    color: #ffffff !important;
    font-size: 22px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.inn-footer-social__link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(7, 47, 76, 0.35);
    background: linear-gradient(45deg, #072f4c, #094978);
    color: #ffffff !important;
}

.inn-footer-legal {
    text-align: center;
    font-size: 12px;
    line-height: 1.65;
    color: #555;
}

.inn-footer-legal__heading {
    font-weight: 700;
    color: #072f4c;
    margin: 0 0 8px;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.inn-footer-legal__text {
    margin: 0 0 24px;
}

.inn-footer-legal__disclaimer {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.inn-footer-legal a {
    color: #094978;
    text-decoration: none;
}

.inn-footer-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px 12px;
    margin-bottom: 12px;
    font-size: 12px;
}

.inn-footer-nav a {
    color: #072f4c;
    text-decoration: none;
}

.inn-footer-nav a:hover {
    text-decoration: none;
}

.inn-footer-nav span {
    color: #999;
}

.inn-footer-copy {
    margin: 0;
    font-size: 12px;
    color: #666;
    text-align: center;
}

/* How we operate — 1 row × 3 columns (image div + text div) */
.inn-operate-columns {
    margin-top: 0;
    margin-bottom: 0;
}

.inn-operate-card__image-wrap {
    width: 100%;
}

.inn-operate-card__img {
    width: auto;
    height: auto;
    display: block;
    max-width: 120px;
    max-height: 100px;
    margin: 0 auto;
    object-fit: contain;
}

.inn-operate-card__text {
    padding: 0 8px 10px;
}

/* Contact page — blue badge icon (Font Awesome instead of medical font) */
.inn-contact-badge-icon {
    display: block;
    text-align: center;
    margin-bottom: 8px;
}

.inn-contact-badge-icon i {
    font-size: 56px;
    line-height: 1;
    color: #ffffff;
}
