/* Tezash public website refinement
   Scoped to .tezash-public-shell so dashboard/admin modules are unaffected. */
:root {
    --tz-ink: #122b37;
    --tz-ink-2: #284652;
    --tz-brand: #0f766e;
    --tz-brand-dark: #0a5b56;
    --tz-accent: #c8a86b;
    --tz-accent-soft: #f3ead8;
    --tz-canvas: #f6f8f7;
    --tz-surface: #ffffff;
    --tz-border: #dfe8e5;
    --tz-muted: #6b7f87;
    --tz-shadow-sm: 0 8px 24px rgba(19, 48, 57, .08);
    --tz-shadow-md: 0 18px 50px rgba(19, 48, 57, .14);
    --tz-radius-sm: 10px;
    --tz-radius: 16px;
    --tz-radius-lg: 24px;
    --tz-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html { scroll-behavior: smooth; }
body.tezash-public-shell {
    margin: 0;
    color: var(--tz-ink-2);
    background: var(--tz-surface);
    font-family: var(--tz-font);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
.tezash-public-shell * { box-sizing: border-box; }
.tezash-public-shell ::selection { background: rgba(15,118,110,.16); color: var(--tz-ink); }
.tezash-public-shell h1,
.tezash-public-shell h2,
.tezash-public-shell h3,
.tezash-public-shell h4,
.tezash-public-shell h5,
.tezash-public-shell h6 { color: var(--tz-ink); letter-spacing: -.025em; }
.tezash-public-shell a { color: var(--tz-brand); }
.tezash-public-shell a:hover { color: var(--tz-brand-dark); }
.tezash-public-shell .container { max-width: 1180px; }
.tezash-public-shell .text-primary,
.tezash-public-shell .text-danger { color: var(--tz-brand) !important; }
.tezash-public-shell .bg-primary { background-color: var(--tz-brand) !important; }
.tezash-public-shell .bg-gray { background: var(--tz-canvas) !important; }
.tezash-public-shell .border-bottom,
.tezash-public-shell .border-top,
.tezash-public-shell .border-right { border-color: var(--tz-border) !important; }

.tezash-skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10000;
    transform: translateY(-160%);
    padding: .65rem .9rem;
    border-radius: 8px;
    background: var(--tz-ink);
    color: #fff !important;
    box-shadow: var(--tz-shadow-sm);
}
.tezash-skip-link:focus { transform: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(15,118,110,.28);
    outline-offset: 2px;
}

/* Navigation */
.tezash-public-shell .tz-navbar {
    min-height: 76px;
    padding: 0 22px;
    align-items: center !important;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(223,232,229,.92);
    box-shadow: 0 4px 20px rgba(19,48,57,.055) !important;
    backdrop-filter: saturate(150%) blur(16px);
    -webkit-backdrop-filter: saturate(150%) blur(16px);
}
.tezash-public-shell .header-sticky.sticky { background: rgba(255,255,255,.96); }
.tezash-public-shell .navbar-brand {
    display: flex;
    align-items: center;
    margin: 0 28px 0 0;
    padding: 8px 0;
}
.tezash-public-shell .navbar-brand img { max-height: 54px; max-width: 210px; width: auto; object-fit: contain; }
.tezash-public-shell .navbar-light .navbar-nav .nav-link {
    position: relative;
    padding: 27px 12px;
    color: var(--tz-ink) !important;
    font-size: 14px;
    font-weight: 650;
    letter-spacing: -.01em;
    transition: color .2s ease;
}
.tezash-public-shell .navbar-light .navbar-nav .nav-link::after {
    border: 0;
}
.tezash-public-shell .navbar-light .navbar-nav > .nav-item > .nav-link::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 17px;
    height: 2px;
    border-radius: 99px;
    background: var(--tz-brand);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}
.tezash-public-shell .navbar-light .navbar-nav > .nav-item:hover > .nav-link::before,
.tezash-public-shell .navbar-light .navbar-nav > .nav-item.active > .nav-link::before { transform: scaleX(1); }
.tezash-public-shell .navbar-light .navbar-nav > .nav-item:hover > .nav-link,
.tezash-public-shell .navbar-light .navbar-nav > .nav-item.active > .nav-link { color: var(--tz-brand) !important; }
.tezash-public-shell .dropdown-menu {
    min-width: 210px;
    margin-top: 0;
    padding: 10px;
    border: 1px solid var(--tz-border);
    border-radius: 14px;
    box-shadow: var(--tz-shadow-md);
}
.tezash-public-shell .dropdown-menu::before { display: none; }
.tezash-public-shell .dropdown-item {
    padding: 9px 11px;
    border-radius: 9px;
    color: var(--tz-ink-2);
    font-weight: 550;
}
.tezash-public-shell .dropdown-item:hover { color: var(--tz-brand); background: rgba(15,118,110,.07); }
.tezash-public-shell .navbar-right { gap: 3px; }
.tezash-public-shell .login .nav-link {
    display: flex;
    align-items: center;
    min-height: 40px;
    margin: 0;
    padding: 10px 12px !important;
    border: 0 !important;
    border-radius: 10px;
    color: var(--tz-ink) !important;
    font-size: 13px !important;
    text-transform: none;
}
.tezash-public-shell .nav-btn form { margin: 0; }
.tezash-public-shell .nav-btn .nav-link {
    min-height: 42px;
    margin: 0 4px;
    padding: 10px 17px !important;
    border-radius: 11px;
    background: var(--tz-brand) !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700;
    box-shadow: 0 8px 18px rgba(15,118,110,.18);
}
.tezash-public-shell .nav-btn .nav-link:hover { background: var(--tz-brand-dark) !important; }
.tezash-public-shell .tz-language-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 2px;
    padding: 0 0 0 6px;
}
.tezash-public-shell .tz-language-icon { color: var(--tz-muted); font-size: 13px; }
.tezash-public-shell #select_language {
    min-height: 38px;
    height: 38px;
    max-width: 112px;
    padding: 5px 26px 5px 8px;
    border: 1px solid var(--tz-border);
    border-radius: 10px;
    background-color: #fff;
    color: var(--tz-ink-2);
    font-size: 12px;
    font-weight: 600;
    box-shadow: none;
}
.tezash-public-shell .navbar-toggler {
    width: 42px;
    height: 42px;
    border: 1px solid var(--tz-border);
    border-radius: 11px;
    background: #fff;
}

/* Buttons and fields */
.tezash-public-shell .btn {
    border-radius: 11px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.01em;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.tezash-public-shell .btn:hover { transform: translateY(-1px); }
.tezash-public-shell .btn-primary,
.tezash-public-shell .btn-success {
    background: var(--tz-brand) !important;
    border-color: var(--tz-brand) !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(15,118,110,.16);
}
.tezash-public-shell .btn-primary:hover,
.tezash-public-shell .btn-primary:focus,
.tezash-public-shell .btn-success:hover,
.tezash-public-shell .btn-success:focus {
    background: var(--tz-brand-dark) !important;
    border-color: var(--tz-brand-dark) !important;
}
.tezash-public-shell .btn-gray { background: #f2f6f5; border: 1px solid var(--tz-border); color: var(--tz-ink-2); }
.tezash-public-shell .btn-gray:hover { background: #e9f1ef; color: var(--tz-brand); }
.tezash-public-shell .btn-white { color: var(--tz-ink); border-color: #fff; }
.tezash-public-shell .form-control,
.tezash-public-shell .custom-select {
    min-height: 46px;
    border: 1px solid var(--tz-border);
    border-radius: 10px;
    color: var(--tz-ink);
    background-color: #fff;
    box-shadow: none;
}
.tezash-public-shell .form-control:focus,
.tezash-public-shell .custom-select:focus {
    border-color: rgba(15,118,110,.55);
    box-shadow: 0 0 0 3px rgba(15,118,110,.09);
}
.tezash-public-shell textarea.form-control { min-height: 120px; }

/* Main layout */
.tezash-public-shell .tezash-main { overflow: hidden; }
.tezash-public-shell .tezash-main .section { padding-top: 72px; padding-bottom: 72px; }
.tezash-public-shell .section-title .block-title,
.tezash-public-shell .section-title .title { color: var(--tz-ink); font-size: clamp(28px, 3vw, 40px) !important; line-height: 1.15; }
.tezash-public-shell .section-title .sub-title,
.tezash-public-shell .section-title .para-desc { max-width: 700px; margin-inline: auto; color: var(--tz-muted); font-size: 16px !important; }
.tezash-public-shell .badge-soft-primary {
    padding: 7px 11px;
    border: 1px solid rgba(15,118,110,.14);
    border-radius: 99px;
    background: rgba(15,118,110,.08);
    color: var(--tz-brand);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.tezash-public-shell .card {
    border: 1px solid var(--tz-border);
    border-radius: var(--tz-radius);
    box-shadow: var(--tz-shadow-sm);
    overflow: hidden;
}
.tezash-public-shell .card-body { padding: 22px; }

/* Home hero */
.tezash-public-shell .tz-home-alerts { position: relative; z-index: 12; }
.tezash-public-shell .tz-home-hero { height: 650px; background: var(--tz-ink); }
.tezash-public-shell .tz-home-hero .animation-slide .item,
.tezash-public-shell .tz-home-hero .header-slider-preloader { height: 650px; }
.tezash-public-shell .tz-home-hero .animation-slide .item::after {
    z-index: 0;
    background: linear-gradient(90deg, rgba(8,31,40,.88) 0%, rgba(8,31,40,.68) 42%, rgba(8,31,40,.30) 70%, rgba(8,31,40,.18) 100%);
}
.tezash-public-shell .tz-home-hero .hero-header_wrap { min-height: 650px; }
.tezash-public-shell .tz-home-hero .header-text { max-width: 650px; }
.tezash-public-shell .tz-home-hero .header-subtitle {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin-bottom: 17px;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 99px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}
.tezash-public-shell .tz-home-hero .header-subtitle::before { display: none; }
.tezash-public-shell .tz-home-hero .header-title {
    max-width: 680px;
    margin: 0 0 18px !important;
    color: #fff !important;
    font-family: var(--tz-font) !important;
    font-size: clamp(42px, 5vw, 66px) !important;
    font-weight: 750 !important;
    line-height: 1.02 !important;
    letter-spacing: -.05em;
    text-shadow: 0 10px 34px rgba(0,0,0,.18);
}
.tezash-public-shell .tz-home-hero .header-des {
    max-width: 610px;
    margin: 0 !important;
    color: rgba(255,255,255,.84) !important;
    font-size: 17px !important;
    line-height: 1.7;
    text-shadow: none !important;
}
.tezash-public-shell .tz-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tezash-public-shell .tz-hero-actions .btn { min-height: 48px; padding: 12px 18px; }
.tezash-public-shell .tz-hero-secondary {
    border: 1px solid rgba(255,255,255,.34);
    background: rgba(255,255,255,.08);
    color: #fff !important;
    backdrop-filter: blur(8px);
}
.tezash-public-shell .tz-hero-secondary:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }
.tezash-public-shell .tz-home-hero .offer-carousel { max-width: 390px; margin-left: auto; }
.tezash-public-shell .tz-home-hero .offer {
    position: relative;
    min-height: 360px;
    height: auto;
    padding: 52px 30px 34px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background: rgba(6,31,39,.48);
    box-shadow: 0 24px 60px rgba(0,0,0,.22);
    backdrop-filter: blur(16px);
}
.tezash-public-shell .tz-home-hero .offer h2 {
    margin-bottom: 14px !important;
    color: #fff !important;
    font-family: var(--tz-font) !important;
    font-size: 31px;
    line-height: 1.15;
}
.tezash-public-shell .tz-home-hero .offer h3 { color: rgba(255,255,255,.82) !important; font-size: 16px !important; }
.tezash-public-shell .tz-home-hero .offer .btn { margin-top: 24px !important; }
.tezash-public-shell .tz-home-hero .ribbon {
    top: 18px;
    right: 18px;
    bottom: auto;
    left: auto;
    width: auto;
    height: auto;
    padding: 7px 11px;
    border-radius: 99px;
    background: var(--tz-accent);
}
.tezash-public-shell .tz-home-hero .ribbon::before,
.tezash-public-shell .tz-home-hero .ribbon::after { display: none; }
.tezash-public-shell .tz-home-hero .ribbon span {
    margin: 0;
    transform: none;
    color: #1f2b2f;
    font-size: 13px;
    font-weight: 800;
}
.tezash-public-shell .tz-home-hero .animation-slide.owl-theme .owl-nav [class*="owl-"] {
    width: 44px;
    height: 44px;
    line-height: 40px;
    border-radius: 50%;
    color: var(--tz-ink);
    font-size: 17px;
}

/* Booking search */
.tezash-public-shell .tz-booking-search,
.tezash-public-shell .roomlist-search .search-area,
.tezash-public-shell .py-5.bg-gray .search-area {
    border: 1px solid var(--tz-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--tz-shadow-md) !important;
    overflow: hidden;
}
.tezash-public-shell .tz-booking-search { margin: -52px 0 0; }
.tezash-public-shell .tz-booking-search .search-option,
.tezash-public-shell .py-5.bg-gray .search-area .search-option { min-height: 104px; background: #fff; }
.tezash-public-shell .search-form-content .search-option { border-color: var(--tz-border) !important; }
.tezash-public-shell .search-form-content .search-option label {
    top: 19px;
    left: 22px;
    width: auto;
    transform: none;
    color: var(--tz-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
}
.tezash-public-shell .search-form-content .search-option > .form-control {
    height: 104px;
    padding: 41px 22px 12px;
    border: 0;
    border-radius: 0;
    color: var(--tz-ink);
    font-size: 16px;
    font-weight: 700;
}
.tezash-public-shell .search-form-content .search-title { font-size: 10px !important; letter-spacing: .12em; color: var(--tz-muted); }
.tezash-public-shell .search-form-content .btn {
    height: 104px;
    min-height: 104px;
    padding: 16px 20px;
    border-radius: 0;
    background: var(--tz-brand) !important;
    color: #fff;
    font-size: 15px;
    box-shadow: none;
}
.tezash-public-shell .search-form-content .btn::before { display: none; }
.tezash-public-shell .search-form-content .btn span { margin-bottom: 4px; color: rgba(255,255,255,.72); font-size: 10px; letter-spacing: .04em; }
.tezash-public-shell .search-form-content .btn span p { display: inline; margin: 0 0 0 4px; }
.tezash-public-shell .btn-pm {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--tz-border);
    border-radius: 50%;
    color: var(--tz-brand);
    background: #fff;
}
.tezash-public-shell input.spinner { color: var(--tz-ink); font-weight: 800; }

/* Home sections */
.tezash-public-shell .tz-feature-strip { padding-top: 108px !important; padding-bottom: 54px !important; }
.tezash-public-shell .feature-box {
    height: 100%;
    padding: 25px 18px;
    border: 1px solid transparent;
    border-radius: 16px;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.tezash-public-shell .feature-box:hover { transform: translateY(-3px); background: #fff; border-color: var(--tz-border); box-shadow: var(--tz-shadow-sm); }
.tezash-public-shell .feature-box .feature-box-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(19,48,57,.08);
}
.tezash-public-shell .feature-box .feature-box-icon img { max-width: 38px; max-height: 38px; object-fit: contain; }
.tezash-public-shell .feature-box-title { font-size: 17px !important; }
.tezash-public-shell .feature-box p { color: var(--tz-muted); font-size: 13px; line-height: 1.55; }
.tezash-public-shell .tz-about-section img.rounded { width: 100%; min-height: 430px; object-fit: cover; border-radius: 22px !important; box-shadow: var(--tz-shadow-md); }
.tezash-public-shell .tz-about-section .section-title { padding: 12px 0; }
.tezash-public-shell .tz-about-section .section-title .title { max-width: 630px; margin-bottom: 16px !important; }
.tezash-public-shell .tz-about-section .section-title .para-desc { margin-left: 0; }
.tezash-public-shell .tz-join-card {
    max-width: 1120px;
    margin-top: 4px;
    padding: 48px 32px !important;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 24px !important;
    background: linear-gradient(125deg, #0b2633 0%, #0e645f 100%) !important;
    box-shadow: 0 22px 55px rgba(10,52,58,.19);
    overflow: hidden;
}
.tezash-public-shell .tz-join-card h2 { color: #fff !important; font-size: clamp(26px, 3vw, 36px) !important; line-height: 1.25; }
.tezash-public-shell .tz-join-card .btn-outline-white { border-radius: 11px; }
.tezash-public-shell .tz-offer-card { border-radius: 16px !important; transition: transform .2s ease, box-shadow .2s ease; }
.tezash-public-shell .tz-offer-card:hover { transform: translateY(-4px); box-shadow: var(--tz-shadow-md); }
.tezash-public-shell .tz-offer-card .card-img { overflow: hidden; background: var(--tz-ink); border-radius: 0; }
.tezash-public-shell .tz-offer-card .card-img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.tezash-public-shell .tz-offer-card .card-body { min-height: 82px; display: flex; align-items: center; }
.tezash-public-shell .tz-offer-card .weeklyoffer-title { font-size: 17px; }
.tezash-public-shell .tz-destination-card { min-height: 390px !important; border-radius: 20px !important; box-shadow: var(--tz-shadow-md) !important; }
.tezash-public-shell .tz-destination-card::before { border-radius: 20px; background: linear-gradient(to top, rgba(6,31,39,.92) 0%, rgba(6,31,39,.54) 42%, rgba(6,31,39,.04) 75%); }
.tezash-public-shell .tz-destination-card .card-body { padding: 26px; }
.tezash-public-shell .tz-destination-card .item-tag { border-radius: 99px; color: var(--tz-brand-dark); }
.tezash-public-shell .destinations-carousel.owl-theme .owl-nav [class*="owl-"] {
    width: 46px;
    height: 46px;
    border: 6px solid #fff;
    background: var(--tz-brand);
    font-size: 12px;
}

/* Inner page headers and content */
.tezash-public-shell .hero_single {
    padding: 58px 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(200,168,107,.18), transparent 28%),
        linear-gradient(135deg, #f3f7f6 0%, #f9fbfa 100%);
    border-bottom: 1px solid var(--tz-border);
}
.tezash-public-shell .hero_single h1 { font-size: clamp(30px, 4vw, 44px) !important; font-weight: 760; }
.tezash-public-shell .tezash-main > .section:first-child:not(.section-feature):not(.tz-about-section) { position: relative; }
.tezash-public-shell .tezash-main > .section:first-child .display-4 { font-size: clamp(38px, 5vw, 58px); line-height: 1.08; }

/* Rooms */
.tezash-public-shell .py-5.bg-gray { padding: 36px 0 !important; }
.tezash-public-shell .py-5.bg-gray .search-area { margin: 0 !important; }
.tezash-public-shell .room-list {
    border: 1px solid var(--tz-border) !important;
    border-radius: 18px !important;
    box-shadow: var(--tz-shadow-sm) !important;
    transition: transform .2s ease, box-shadow .2s ease;
}
.tezash-public-shell .room-list:hover { transform: translateY(-3px); box-shadow: var(--tz-shadow-md) !important; }
.tezash-public-shell .room-list .card-body { padding: 20px; }
.tezash-public-shell .room-list .room-img { overflow: hidden; border-radius: 14px; }
.tezash-public-shell .room-list .room-img:before { border-radius: 14px; background: linear-gradient(to top, rgba(8,31,40,.28), transparent 55%); }
.tezash-public-shell .room-list .room-img img { width: 270px; height: 190px; max-width: 100%; object-fit: cover; border-radius: 14px; }
.tezash-public-shell .room-list .item-title { color: var(--tz-ink); font-size: 22px; }
.tezash-public-shell .room-list .item-description { max-width: 560px; color: var(--tz-muted); }
.tezash-public-shell .room-list .room-size { color: var(--tz-ink-2); font-size: 13px !important; }
.tezash-public-shell .room-list .item-info { min-width: 165px; }
.tezash-public-shell .room-list .price { color: var(--tz-brand) !important; }
.tezash-public-shell .room-list .collapse .card { border-radius: 12px !important; box-shadow: none; background: var(--tz-canvas); }
.tezash-public-shell .zoom-icon,
.tezash-public-shell .like-icon { border-radius: 8px; box-shadow: var(--tz-shadow-sm); }
.tezash-public-shell .zoom-icon:hover,
.tezash-public-shell .like-icon:hover { background: var(--tz-brand); }

/* About, team, gallery, contact */
.tezash-public-shell .team-member figure { overflow: hidden; border-radius: 16px; box-shadow: var(--tz-shadow-sm); }
.tezash-public-shell .team-member figure img { width: 100%; aspect-ratio: 4 / 4.5; object-fit: cover; }
.tezash-public-shell .clients { max-height: 72px; opacity: .72; filter: grayscale(1); transition: .2s ease; }
.tezash-public-shell .clients:hover { opacity: 1; filter: none; }
.tezash-public-shell .section-gallery { padding: 20px 18px 70px; background: var(--tz-surface); }
.tezash-public-shell .section-gallery .filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.tezash-public-shell .section-gallery .filters label {
    margin: 0 !important;
    padding: 8px 12px;
    border: 1px solid var(--tz-border);
    border-radius: 99px;
    background: #fff;
    font-size: 13px;
    cursor: pointer;
}
.tezash-public-shell .section-gallery .grid-item a { overflow: hidden; border-radius: 16px; }
.tezash-public-shell .section-gallery .grid-item img { transition: transform .35s ease; }
.tezash-public-shell .section-gallery .grid-item:hover img { transform: scale(1.025); }
.tezash-public-shell .gallery-info { border-radius: 16px; }
.tezash-public-shell .map-content { background: var(--tz-canvas); }
.tezash-public-shell #map { min-height: 380px; }
.tezash-public-shell .contact-info { padding: 26px; border: 1px solid var(--tz-border); border-radius: 16px; background: var(--tz-canvas); }
.tezash-public-shell .section-about form { padding: 26px; border: 1px solid var(--tz-border); border-radius: 16px; background: #fff; box-shadow: var(--tz-shadow-sm); }

/* Login/register and customer forms */
.tezash-public-shell .form-wrapper { width: 100%; max-width: 460px; padding: 6px 15px 20px; }
.tezash-public-shell .form-container { max-width: 460px; }
.tezash-public-shell .form-container .panel {
    padding: 32px;
    border: 1px solid var(--tz-border);
    border-radius: 18px;
    box-shadow: var(--tz-shadow-md);
}
.tezash-public-shell .form-container .panel-header h3 { color: var(--tz-ink); font-size: 26px !important; }
.tezash-public-shell .facebook-color { border-radius: 9px; }

/* Newsletter + footer */
.tezash-public-shell .tz-newsletter {
    padding: 54px 0;
    background: linear-gradient(120deg, #0d303d 0%, #0b2633 100%);
    border-top: 1px solid rgba(255,255,255,.06);
}
.tezash-public-shell .tz-newsletter h3 { color: #fff !important; font-size: 27px; }
.tezash-public-shell .tz-newsletter p { color: rgba(255,255,255,.68); }
.tezash-public-shell .tz-newsletter .input-group { padding: 6px; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: rgba(255,255,255,.07); }
.tezash-public-shell .tz-newsletter .form-control { border: 0 !important; border-radius: 9px 0 0 9px !important; background: #fff; }
.tezash-public-shell .tz-newsletter .btn { border-radius: 0 9px 9px 0 !important; }
.tezash-public-shell .tz-footer { background: #081f28 !important; border-top: 1px solid rgba(255,255,255,.06) !important; }
.tezash-public-shell .tz-footer .footer-logo img { max-height: 58px; width: auto; }
.tezash-public-shell .tz-footer p,
.tezash-public-shell .tz-footer address,
.tezash-public-shell .tz-footer li,
.tezash-public-shell .tz-footer .footer-about { color: rgba(255,255,255,.62); }
.tezash-public-shell .tz-footer .link-title { margin-bottom: 16px !important; font-size: 15px !important; letter-spacing: .02em; }
.tezash-public-shell .tz-footer a { color: rgba(255,255,255,.68); }
.tezash-public-shell .tz-footer a:hover { color: #fff; }
.tezash-public-shell .tz-footer .social-icon a { display: flex; align-items: center; gap: 9px; }
.tezash-public-shell .tz-footer .icon-wrap {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
}
.tezash-public-shell .tz-sub-footer { background: #061921 !important; border-color: rgba(255,255,255,.06) !important; }
.tezash-public-shell .tz-sub-footer .copy,
.tezash-public-shell .tz-sub-footer a { color: rgba(255,255,255,.56) !important; font-size: 12px; }

/* Utility polish */
.tezash-public-shell .alert { border: 0; border-radius: 12px; box-shadow: var(--tz-shadow-sm); }
.tezash-public-shell .alert-success { background: #eaf7f2; color: #17664f; }
.tezash-public-shell .alert-danger { background: #fff0f0; color: #9f3030; }
.tezash-public-shell .table { color: var(--tz-ink-2); }
.tezash-public-shell .table thead th { border-bottom-width: 1px; color: var(--tz-ink); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; }
.tezash-public-shell .table td,
.tezash-public-shell .table th { border-color: var(--tz-border); }

/* Responsive */
@media (max-width: 1199.98px) {
    .tezash-public-shell .tz-navbar { padding-inline: 14px; }
    .tezash-public-shell .navbar-light .navbar-nav .nav-link { padding-inline: 8px; font-size: 13px; }
    .tezash-public-shell .tz-home-hero { height: 610px; }
    .tezash-public-shell .tz-home-hero .animation-slide .item,
    .tezash-public-shell .tz-home-hero .header-slider-preloader,
    .tezash-public-shell .tz-home-hero .hero-header_wrap { height: 610px; min-height: 610px; }
    .tezash-public-shell .tz-home-hero .offer { min-height: 330px; padding: 48px 24px 28px; }
}

@media (max-width: 991.98px) {
    .tezash-public-shell .tz-navbar { min-height: 68px; align-items: center !important; }
    .tezash-public-shell .navbar-brand { margin-right: auto; }
    .tezash-public-shell .navbar-brand img { max-height: 48px; max-width: 175px; }
    .tezash-public-shell .navbar-collapse {
        order: 3;
        flex-basis: 100%;
        margin: 8px -14px 0;
        padding: 8px 18px 18px;
        border-top: 1px solid var(--tz-border);
        background: #fff;
    }
    .tezash-public-shell .navbar-light .navbar-nav .nav-link { padding: 11px 4px; }
    .tezash-public-shell .navbar-light .navbar-nav > .nav-item > .nav-link::before { display: none; }
    .tezash-public-shell .navbar-right { gap: 0; }
    .tezash-public-shell .login .nav-link { min-height: 40px; padding: 8px !important; font-size: 17px !important; }
    .tezash-public-shell .tz-language-switcher { padding-left: 2px; }
    .tezash-public-shell .tz-language-icon { display: none; }
    .tezash-public-shell #select_language { max-width: 94px; }
    .tezash-public-shell .nav-btn { display: none; }
    .tezash-public-shell .tz-home-hero { height: 560px; }
    .tezash-public-shell .tz-home-hero .animation-slide .item,
    .tezash-public-shell .tz-home-hero .header-slider-preloader,
    .tezash-public-shell .tz-home-hero .hero-header_wrap { height: 560px; min-height: 560px; }
    .tezash-public-shell .tz-home-hero .header-text { max-width: 630px; }
    .tezash-public-shell .tz-booking-search { margin: 24px 0 0; padding: 0; overflow: visible; background: transparent; border: 0; box-shadow: none !important; }
    .tezash-public-shell .tz-booking-search .search-form-content { gap: 10px 0; }
    .tezash-public-shell .tz-booking-search .search-option,
    .tezash-public-shell .py-5.bg-gray .search-area .search-option { min-height: 84px; border: 1px solid var(--tz-border) !important; }
    .tezash-public-shell .search-form-content .search-option > .form-control { height: 82px; padding-top: 34px; border-radius: 12px; }
    .tezash-public-shell .search-form-content .btn { height: 82px; min-height: 82px; border-radius: 12px; }
    .tezash-public-shell .tz-feature-strip { padding-top: 54px !important; }
    .tezash-public-shell .room-list .item-info { margin-top: 18px; }
}

@media (max-width: 767.98px) {
    .tezash-public-shell .tz-navbar { padding: 0 12px; }
    .tezash-public-shell .tz-language-switcher { display: none; }
    .tezash-public-shell .tezash-main .section { padding-top: 52px; padding-bottom: 52px; }
    .tezash-public-shell .tz-home-hero { height: 520px; }
    .tezash-public-shell .tz-home-hero .animation-slide .item,
    .tezash-public-shell .tz-home-hero .header-slider-preloader,
    .tezash-public-shell .tz-home-hero .hero-header_wrap { height: 520px; min-height: 520px; }
    .tezash-public-shell .tz-home-hero .animation-slide .item::after { background: linear-gradient(90deg, rgba(8,31,40,.9), rgba(8,31,40,.55)); }
    .tezash-public-shell .tz-home-hero .header-title { font-size: 41px !important; }
    .tezash-public-shell .tz-home-hero .header-des { max-width: 520px; font-size: 15px !important; line-height: 1.55; }
    .tezash-public-shell .tz-hero-actions { margin-top: 22px; }
    .tezash-public-shell .tz-hero-actions .btn { min-height: 44px; padding: 10px 14px; }
    .tezash-public-shell .tz-feature-strip .col-sm-6 { margin-bottom: 12px !important; }
    .tezash-public-shell .feature-box { padding: 18px 14px; background: #fff; border-color: var(--tz-border); }
    .tezash-public-shell .tz-about-section img.rounded { min-height: 300px; }
    .tezash-public-shell .tz-join-card { margin-inline: 15px; padding: 36px 20px !important; border-radius: 18px !important; }
    .tezash-public-shell .tz-offer-card .card-img img { aspect-ratio: 16 / 10; }
    .tezash-public-shell .tz-destination-card { min-height: 340px !important; }
    .tezash-public-shell .room-list .room-img img { width: 100%; height: 220px; }
    .tezash-public-shell .room-list .item-info { text-align: left !important; }
    .tezash-public-shell .room-list .d-flex.justify-content-md-end { justify-content: flex-start !important; }
    .tezash-public-shell .section-gallery { padding-inline: 10px; }
    .tezash-public-shell .section-gallery .filters { margin: 26px 0 !important; }
    .tezash-public-shell .tz-newsletter { padding: 42px 0; }
    .tezash-public-shell .tz-footer { padding-top: 44px !important; padding-bottom: 34px !important; }
}

@media (max-width: 575.98px) {
    .tezash-public-shell .container { padding-left: 16px; padding-right: 16px; }
    .tezash-public-shell .navbar-brand img { max-width: 150px; }
    .tezash-public-shell .tz-home-hero { height: 500px; }
    .tezash-public-shell .tz-home-hero .animation-slide .item,
    .tezash-public-shell .tz-home-hero .header-slider-preloader,
    .tezash-public-shell .tz-home-hero .hero-header_wrap { height: 500px; min-height: 500px; }
    .tezash-public-shell .tz-home-hero .header-title { font-size: 36px !important; }
    .tezash-public-shell .tz-home-hero .header-subtitle { font-size: 10px; }
    .tezash-public-shell .tz-hero-actions { gap: 8px; }
    .tezash-public-shell .tz-hero-actions .btn { width: 100%; justify-content: center; text-align: center; }
    .tezash-public-shell .tz-booking-search { margin-top: 18px; }
    .tezash-public-shell .search-form-content .search-option { border-radius: 12px; overflow: hidden; }
    .tezash-public-shell .section-title .block-title,
    .tezash-public-shell .section-title .title { font-size: 28px !important; }
    .tezash-public-shell .form-container .panel { padding: 24px 20px; }
    .tezash-public-shell .tz-newsletter .input-group { display: block; padding: 6px; }
    .tezash-public-shell .tz-newsletter .form-control,
    .tezash-public-shell .tz-newsletter .btn { width: 100%; border-radius: 9px !important; }
    .tezash-public-shell .tz-newsletter .input-group-append { display: block; margin-top: 6px; }
    .tezash-public-shell .tz-sub-footer .text-right { text-align: center !important; margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .tezash-public-shell .tz-home-hero .col-md-7 { flex: 0 0 100%; max-width: 100%; }
    .tezash-public-shell .tz-home-hero .col-md-5 { display: none !important; }
}

/* ========================================================================
   Public theme v9: admin-managed colors + deeper responsive hardening
   ======================================================================== */
:root {
    --tz-page-bg: #ffffff;
    --tz-header-bg: #ffffff;
    --tz-header-text: #122b37;
    --tz-footer-bg: #081f28;
    --tz-footer-bottom: #061921;
    --tz-footer-text: #9fb0b6;
    --tz-button-text: #ffffff;
    --tz-hero-overlay: #081f28;
    --tz-hero-text: #ffffff;
    --tz-newsletter-bg: #0b2633;
    --tz-brand-rgb: 15,118,110;
    --tz-ink-rgb: 18,43,55;
    --tz-hero-overlay-rgb: 8,31,40;
    --tz-hero-text-rgb: 255,255,255;
    --tz-footer-text-rgb: 159,176,182;
    --tz-accent-rgb: 200,168,107;
}

/* Theme colors - every major public surface inherits an admin setting. */
body.tezash-public-shell { background: var(--tz-page-bg); color: var(--tz-ink-2); }
.tezash-public-shell .tz-navbar,
.tezash-public-shell .header-sticky.sticky { background: var(--tz-header-bg); border-color: var(--tz-border); }
.tezash-public-shell .navbar-light .navbar-nav .nav-link,
.tezash-public-shell .login .nav-link,
.tezash-public-shell .navbar-toggler { color: var(--tz-header-text) !important; }
.tezash-public-shell .navbar-toggler { background: var(--tz-header-bg); border-color: var(--tz-border); }
.tezash-public-shell .navbar-light .navbar-toggler-icon { filter: none; }
.tezash-public-shell .dropdown-menu,
.tezash-public-shell .dropdown-item,
.tezash-public-shell #select_language,
.tezash-public-shell #select_language_mobile { background-color: var(--tz-surface); color: var(--tz-ink-2); border-color: var(--tz-border); }
.tezash-public-shell .dropdown-item:hover { background: rgba(var(--tz-brand-rgb), .075); color: var(--tz-brand); }
.tezash-public-shell .nav-btn .nav-link,
.tezash-public-shell .btn-primary,
.tezash-public-shell .btn-success,
.tezash-public-shell .search-form-content .btn,
.tezash-public-shell .zoom-icon:hover,
.tezash-public-shell .like-icon:hover { background: var(--tz-brand) !important; border-color: var(--tz-brand) !important; color: var(--tz-button-text) !important; }
.tezash-public-shell .nav-btn .nav-link:hover,
.tezash-public-shell .btn-primary:hover,
.tezash-public-shell .btn-primary:focus,
.tezash-public-shell .btn-success:hover,
.tezash-public-shell .btn-success:focus { background: var(--tz-brand-dark) !important; border-color: var(--tz-brand-dark) !important; color: var(--tz-button-text) !important; }
.tezash-public-shell .badge-soft-primary { background: rgba(var(--tz-brand-rgb), .08); border-color: rgba(var(--tz-brand-rgb), .15); }
.tezash-public-shell .form-control,
.tezash-public-shell .custom-select,
.tezash-public-shell .card,
.tezash-public-shell .section-about form,
.tezash-public-shell .feature-box:hover,
.tezash-public-shell .feature-box .feature-box-icon,
.tezash-public-shell .section-gallery .filters label,
.tezash-public-shell .btn-pm,
.tezash-public-shell .tz-booking-search,
.tezash-public-shell .roomlist-search .search-area,
.tezash-public-shell .py-5.bg-gray .search-area,
.tezash-public-shell .tz-booking-search .search-option,
.tezash-public-shell .py-5.bg-gray .search-area .search-option { background-color: var(--tz-surface); border-color: var(--tz-border); color: var(--tz-ink-2); }
.tezash-public-shell .form-control:focus,
.tezash-public-shell .custom-select:focus { border-color: rgba(var(--tz-brand-rgb), .58); box-shadow: 0 0 0 3px rgba(var(--tz-brand-rgb), .10); }
.tezash-public-shell .bg-gray,
.tezash-public-shell .map-content,
.tezash-public-shell .contact-info,
.tezash-public-shell .room-list .collapse .card { background: var(--tz-canvas) !important; }
.tezash-public-shell .section-gallery { background: var(--tz-page-bg); }
.tezash-public-shell .hero_single {
    background: radial-gradient(circle at 85% 20%, rgba(var(--tz-accent-rgb), .18), transparent 28%), linear-gradient(135deg, var(--tz-canvas) 0%, var(--tz-page-bg) 100%);
}
.tezash-public-shell .tz-home-hero { background: var(--tz-hero-overlay); }
.tezash-public-shell .tz-home-hero .animation-slide .item::after {
    background: linear-gradient(90deg, rgba(var(--tz-hero-overlay-rgb), .90) 0%, rgba(var(--tz-hero-overlay-rgb), .70) 42%, rgba(var(--tz-hero-overlay-rgb), .34) 70%, rgba(var(--tz-hero-overlay-rgb), .20) 100%);
}
.tezash-public-shell .tz-home-hero .header-title,
.tezash-public-shell .tz-home-hero .header-subtitle,
.tezash-public-shell .tz-home-hero .offer h2,
.tezash-public-shell .tz-join-card h2 { color: var(--tz-hero-text) !important; }
.tezash-public-shell .tz-home-hero .header-des,
.tezash-public-shell .tz-home-hero .offer h3 { color: rgba(var(--tz-hero-text-rgb), .84) !important; }
.tezash-public-shell .tz-home-hero .header-subtitle,
.tezash-public-shell .tz-hero-secondary { border-color: rgba(var(--tz-hero-text-rgb), .30); background: rgba(var(--tz-hero-text-rgb), .09); color: var(--tz-hero-text) !important; }
.tezash-public-shell .tz-hero-secondary:hover { background: rgba(var(--tz-hero-text-rgb), .17); border-color: rgba(var(--tz-hero-text-rgb), .48); }
.tezash-public-shell .tz-home-hero .offer { border-color: rgba(var(--tz-hero-text-rgb), .18); background: rgba(var(--tz-hero-overlay-rgb), .54); }
.tezash-public-shell .tz-home-hero .ribbon { background: var(--tz-accent); }
.tezash-public-shell .tz-home-hero .ribbon span { color: var(--tz-heading-color, var(--tz-ink)); }
.tezash-public-shell .tz-join-card { background: linear-gradient(125deg, var(--tz-hero-overlay) 0%, var(--tz-brand-dark) 100%) !important; }
.tezash-public-shell .tz-destination-card::before { background: linear-gradient(to top, rgba(var(--tz-hero-overlay-rgb), .92) 0%, rgba(var(--tz-hero-overlay-rgb), .54) 42%, rgba(var(--tz-hero-overlay-rgb), .05) 75%); }
.tezash-public-shell .room-list .room-img:before { background: linear-gradient(to top, rgba(var(--tz-hero-overlay-rgb), .30), transparent 55%); }
.tezash-public-shell .tz-newsletter { background: var(--tz-newsletter-bg); }
.tezash-public-shell .tz-newsletter h3,
.tezash-public-shell .tz-newsletter .btn { color: var(--tz-button-text) !important; }
.tezash-public-shell .tz-newsletter p { color: rgba(var(--tz-hero-text-rgb), .72); }
.tezash-public-shell .tz-newsletter .input-group { border-color: rgba(var(--tz-hero-text-rgb), .16); background: rgba(var(--tz-hero-text-rgb), .07); }
.tezash-public-shell .tz-newsletter .form-control { background: var(--tz-surface); color: var(--tz-ink-2); }
.tezash-public-shell .tz-footer { background: var(--tz-footer-bg) !important; border-color: rgba(var(--tz-footer-text-rgb), .14) !important; }
.tezash-public-shell .tz-footer p,
.tezash-public-shell .tz-footer address,
.tezash-public-shell .tz-footer li,
.tezash-public-shell .tz-footer .footer-about,
.tezash-public-shell .tz-footer a { color: var(--tz-footer-text); }
.tezash-public-shell .tz-footer .link-title { color: var(--tz-button-text) !important; }
.tezash-public-shell .tz-footer a:hover { color: var(--tz-button-text); }
.tezash-public-shell .tz-footer .icon-wrap { border-color: rgba(var(--tz-footer-text-rgb), .28); }
.tezash-public-shell .tz-sub-footer { background: var(--tz-footer-bottom) !important; border-color: rgba(var(--tz-footer-text-rgb), .14) !important; }
.tezash-public-shell .tz-sub-footer .copy,
.tezash-public-shell .tz-sub-footer a { color: var(--tz-footer-text) !important; }
.tezash-public-shell .text-white { color: var(--tz-hero-text) !important; }
.tezash-public-shell .search-form-content .btn span { color: rgba(var(--tz-hero-text-rgb), .78); }

/* Better rhythm and content resilience */
.tezash-public-shell { overflow-x: hidden; }
.tezash-public-shell img { max-width: 100%; height: auto; }
.tezash-public-shell p,
.tezash-public-shell h1,
.tezash-public-shell h2,
.tezash-public-shell h3,
.tezash-public-shell h4,
.tezash-public-shell h5,
.tezash-public-shell h6,
.tezash-public-shell a,
.tezash-public-shell span { overflow-wrap: break-word; }
.tezash-public-shell .tezash-main { min-height: 42vh; overflow: clip; }
.tezash-public-shell .tezash-main .section { padding-top: clamp(48px, 6vw, 72px); padding-bottom: clamp(48px, 6vw, 72px); }
.tezash-public-shell .card,
.tezash-public-shell .room-list,
.tezash-public-shell .feature-box { isolation: isolate; }
.tezash-public-shell .btn { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; }
.tezash-public-shell input[type="text"],
.tezash-public-shell input[type="email"],
.tezash-public-shell input[type="number"],
.tezash-public-shell input[type="password"],
.tezash-public-shell select,
.tezash-public-shell textarea { max-width: 100%; }
.tezash-public-shell .table-responsive { border-radius: 12px; }
.tezash-public-shell .media { min-width: 0; }
.tezash-public-shell .media-body { min-width: 0; }

/* Mobile navigation tools live inside the expanded menu. */
.tezash-public-shell .tz-mobile-nav-tools { display: none; }
.tezash-public-shell .tz-mobile-language { display: flex; align-items: center; gap: 8px; min-width: 0; flex: 1 1 auto; }
.tezash-public-shell #select_language_mobile { width: 100%; min-height: 42px; height: 42px; border: 1px solid var(--tz-border); border-radius: 10px; padding: 5px 30px 5px 10px; font-size: 13px; font-weight: 600; }
.tezash-public-shell .tz-mobile-book { flex: 0 0 auto; white-space: nowrap; }

/* Room/detail/customer pages: prevent legacy fixed widths from breaking small screens. */
.tezash-public-shell .width_238 { width: 238px; max-width: 100%; height: auto; object-fit: cover; }
.tezash-public-shell .room-list .card-body > .row { align-items: center; }
.tezash-public-shell .room-list .item-info { width: auto; }
.tezash-public-shell .contact-service { border: 1px solid var(--tz-border); border-radius: 14px; background: var(--tz-surface); }
.tezash-public-shell .list_item_price { white-space: normal; }
.tezash-public-shell .section-about .row > [class*="col-"] { min-width: 0; }

@media (max-width: 1199.98px) {
    .tezash-public-shell .container { max-width: 960px; }
    .tezash-public-shell .navbar-light .navbar-nav .nav-link { padding-left: 7px; padding-right: 7px; }
    .tezash-public-shell .tz-home-hero .header-title { font-size: clamp(38px, 5vw, 58px) !important; }
}

@media (max-width: 991.98px) {
    .tezash-public-shell .container { max-width: 100%; padding-left: 22px; padding-right: 22px; }
    .tezash-public-shell .tz-navbar { flex-wrap: wrap; min-height: 68px; padding: 0 16px; }
    .tezash-public-shell .navbar-brand { max-width: calc(100% - 118px); margin-right: auto; }
    .tezash-public-shell .navbar-brand img { max-width: min(175px, 100%); }
    .tezash-public-shell .navbar-collapse {
        width: calc(100% + 32px);
        margin: 0 -16px;
        padding: 12px 16px 18px;
        background: var(--tz-header-bg);
        border-top: 1px solid var(--tz-border);
        max-height: calc(100vh - 68px);
        overflow-y: auto;
        overscroll-behavior: contain;
        box-shadow: 0 16px 28px rgba(var(--tz-ink-rgb), .08);
    }
    .tezash-public-shell .tz-mobile-nav-tools { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; padding-bottom: 11px; border-bottom: 1px solid var(--tz-border); }
    .tezash-public-shell .tz-language-switcher { display: none !important; }
    .tezash-public-shell .navbar-right { margin-left: 4px; }
    .tezash-public-shell .navbar-light .navbar-nav .nav-item { width: 100%; }
    .tezash-public-shell .navbar-light .navbar-nav .nav-link { padding: 11px 8px; border-radius: 9px; }
    .tezash-public-shell .navbar-light .navbar-nav .nav-link:hover { background: rgba(var(--tz-brand-rgb), .07); }
    .tezash-public-shell .dropdown-menu { position: static !important; float: none; width: 100%; margin: 0 0 5px; padding: 5px 8px; border: 0; box-shadow: none; background: rgba(var(--tz-brand-rgb), .045); }
    .tezash-public-shell .dropdown-item { padding: 9px 10px; }
    .tezash-public-shell .tz-home-hero,
    .tezash-public-shell .tz-home-hero .animation-slide .item,
    .tezash-public-shell .tz-home-hero .header-slider-preloader,
    .tezash-public-shell .tz-home-hero .hero-header_wrap { height: auto; min-height: 540px; }
    .tezash-public-shell .tz-home-hero .hero-header_wrap { display: flex; align-items: center; padding: 58px 0 70px; }
    .tezash-public-shell .tz-home-hero .header-text { margin: 0 !important; }
    .tezash-public-shell .tz-booking-search { margin-top: 22px; }
    .tezash-public-shell .tz-booking-search .search-form-content { margin: 0 -5px; }
    .tezash-public-shell .tz-booking-search .search-form-content > [class*="col-"] { padding: 5px; }
    .tezash-public-shell .tz-booking-search .search-option { border-radius: 12px; overflow: hidden; }
    .tezash-public-shell .search-form-content .btn { width: 100%; }
    .tezash-public-shell .tz-about-section img.rounded { min-height: 360px; }
    .tezash-public-shell .tz-join-card { width: auto; margin-left: 22px; margin-right: 22px; }
    .tezash-public-shell .tz-footer .col-lg-3,
    .tezash-public-shell .tz-footer .col-lg-7 { margin-left: 0 !important; }
}

@media (max-width: 767.98px) {
    .tezash-public-shell .container { padding-left: 18px; padding-right: 18px; }
    .tezash-public-shell .navbar-brand { max-width: calc(100% - 100px); }
    .tezash-public-shell .navbar-brand img { max-height: 44px; }
    .tezash-public-shell .login .nav-link { width: 40px; justify-content: center; }
    .tezash-public-shell .navbar-toggler { width: 40px; height: 40px; padding: 8px; }
    .tezash-public-shell .tz-home-hero,
    .tezash-public-shell .tz-home-hero .animation-slide .item,
    .tezash-public-shell .tz-home-hero .header-slider-preloader,
    .tezash-public-shell .tz-home-hero .hero-header_wrap { min-height: 505px; }
    .tezash-public-shell .tz-home-hero .animation-slide .item::after { background: linear-gradient(90deg, rgba(var(--tz-hero-overlay-rgb), .92), rgba(var(--tz-hero-overlay-rgb), .62)); }
    .tezash-public-shell .tz-home-hero .hero-header_wrap { padding: 48px 0 56px; }
    .tezash-public-shell .tz-home-hero .header-title { font-size: clamp(34px, 9vw, 44px) !important; line-height: 1.06 !important; }
    .tezash-public-shell .tz-home-hero .header-des { font-size: 15px !important; }
    .tezash-public-shell .tz-booking-search .search-form-content > .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .tezash-public-shell .tz-booking-search .search-option,
    .tezash-public-shell .py-5.bg-gray .search-area .search-option,
    .tezash-public-shell .search-form-content .search-option > .form-control,
    .tezash-public-shell .search-form-content .btn { min-height: 78px; height: 78px; }
    .tezash-public-shell .search-form-content .search-option > .form-control { padding: 32px 16px 10px; }
    .tezash-public-shell .search-form-content .search-option label { top: 14px; left: 16px; }
    .tezash-public-shell .tz-feature-strip { padding-top: 42px !important; }
    .tezash-public-shell .feature-box { height: 100%; }
    .tezash-public-shell .tz-about-section img.rounded { min-height: 280px; max-height: 440px; }
    .tezash-public-shell .tz-join-card { margin-left: 18px; margin-right: 18px; }
    .tezash-public-shell .room-list .card-body { padding: 16px; }
    .tezash-public-shell .room-list .room-img img { width: 100%; height: clamp(210px, 55vw, 320px); }
    .tezash-public-shell .room-list .item-title { font-size: 20px; }
    .tezash-public-shell .room-list .item-info { min-width: 0; margin-top: 14px; }
    .tezash-public-shell .media.contact-service { padding: 16px !important; }
    .tezash-public-shell .section-about form { padding: 20px; }
    .tezash-public-shell #map { min-height: 300px; }
    .tezash-public-shell .hero_single { padding: 42px 0; }
    .tezash-public-shell .hero_single h1 { font-size: clamp(28px, 8vw, 38px) !important; }
    .tezash-public-shell .tz-footer .row > [class*="col-"] { margin-bottom: 22px; }
    .tezash-public-shell .tz-footer .row > [class*="col-"]:last-child { margin-bottom: 0; }
}

@media (max-width: 575.98px) {
    .tezash-public-shell .container { padding-left: 15px; padding-right: 15px; }
    .tezash-public-shell .tz-navbar { padding: 0 12px; }
    .tezash-public-shell .navbar-collapse { width: calc(100% + 24px); margin-left: -12px; margin-right: -12px; padding-left: 12px; padding-right: 12px; }
    .tezash-public-shell .navbar-brand { max-width: calc(100% - 96px); }
    .tezash-public-shell .navbar-brand img { max-width: 145px; max-height: 42px; }
    .tezash-public-shell .tz-mobile-nav-tools { align-items: stretch; }
    .tezash-public-shell .tz-mobile-book { padding-left: 12px; padding-right: 12px; font-size: 12px; }
    .tezash-public-shell #select_language_mobile { font-size: 12px; }
    .tezash-public-shell .tz-home-hero,
    .tezash-public-shell .tz-home-hero .animation-slide .item,
    .tezash-public-shell .tz-home-hero .header-slider-preloader,
    .tezash-public-shell .tz-home-hero .hero-header_wrap { min-height: 490px; }
    .tezash-public-shell .tz-home-hero .hero-header_wrap { padding: 42px 0 48px; }
    .tezash-public-shell .tz-home-hero .header-title { font-size: clamp(32px, 10vw, 39px) !important; }
    .tezash-public-shell .tz-home-hero .header-subtitle { max-width: 100%; white-space: normal; }
    .tezash-public-shell .tz-hero-actions { display: grid; grid-template-columns: 1fr; }
    .tezash-public-shell .tz-hero-actions .btn { width: 100%; }
    .tezash-public-shell .tz-booking-search .search-form-content > .col-sm-6 { flex: 0 0 100%; max-width: 100%; }
    .tezash-public-shell .tz-booking-search .search-option,
    .tezash-public-shell .py-5.bg-gray .search-area .search-option,
    .tezash-public-shell .search-form-content .search-option > .form-control { min-height: 72px; height: 72px; }
    .tezash-public-shell .search-form-content .btn { min-height: 76px; height: auto; padding: 14px; }
    .tezash-public-shell .tz-feature-strip .row { margin-left: -6px; margin-right: -6px; }
    .tezash-public-shell .tz-feature-strip .row > [class*="col-"] { padding-left: 6px; padding-right: 6px; }
    .tezash-public-shell .feature-box { padding: 16px 12px; }
    .tezash-public-shell .feature-box .feature-box-icon { width: 52px; height: 52px; }
    .tezash-public-shell .tz-about-section img.rounded { min-height: 240px; }
    .tezash-public-shell .tz-join-card { margin-left: 15px; margin-right: 15px; padding: 30px 18px !important; }
    .tezash-public-shell .tz-join-card .btn { width: 100%; margin: 5px 0 !important; }
    .tezash-public-shell .tz-destination-card { min-height: 310px !important; }
    .tezash-public-shell .card-body { padding: 17px; }
    .tezash-public-shell .room-list .media,
    .tezash-public-shell .card-body > .media { display: block; }
    .tezash-public-shell .room-list .media > img,
    .tezash-public-shell .card-body > .media > img.width_238 { width: 100% !important; max-width: 100%; margin: 0 0 14px !important; max-height: 260px; object-fit: cover; border-radius: 12px; }
    .tezash-public-shell .contact-service .card-icon { margin-bottom: 10px; }
    .tezash-public-shell .section-gallery { padding-left: 8px; padding-right: 8px; }
    .tezash-public-shell .section-gallery .filters { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 7px; -webkit-overflow-scrolling: touch; }
    .tezash-public-shell .section-gallery .filters label { white-space: nowrap; }
    .tezash-public-shell .form-container .panel,
    .tezash-public-shell .section-about form { padding: 20px 16px; }
    .tezash-public-shell .form-control,
    .tezash-public-shell .custom-select,
    .tezash-public-shell input,
    .tezash-public-shell select,
    .tezash-public-shell textarea { font-size: 16px; }
    .tezash-public-shell .tz-newsletter { padding: 36px 0; }
    .tezash-public-shell .tz-newsletter h3 { font-size: 23px; }
    .tezash-public-shell .tz-footer { padding-top: 36px !important; padding-bottom: 26px !important; }
    .tezash-public-shell .tz-footer .footer-logo img { max-width: 180px; }
    .tezash-public-shell .tz-sub-footer .row { text-align: center; }
    .tezash-public-shell .tz-sub-footer .text-right { text-align: center !important; }
}

@media (max-width: 374.98px) {
    .tezash-public-shell .navbar-brand img { max-width: 120px; }
    .tezash-public-shell .tz-mobile-nav-tools { flex-direction: column; }
    .tezash-public-shell .tz-mobile-book { width: 100%; }
    .tezash-public-shell .tz-home-hero .header-title { font-size: 30px !important; }
    .tezash-public-shell .tz-home-hero .header-des { font-size: 14px !important; }
}

/* Bootstrap utility harmonization for the public theme. */
.tezash-public-shell .text-primary { color: var(--tz-brand) !important; }
.tezash-public-shell .text-dark { color: var(--tz-ink) !important; }
.tezash-public-shell .text-muted { color: var(--tz-muted) !important; }
.tezash-public-shell .text-warning,
.tezash-public-shell .star_colour { color: var(--tz-accent) !important; }
.tezash-public-shell .bg-white { background-color: var(--tz-surface) !important; }
.tezash-public-shell .btn-outline-white { border-color: rgba(var(--tz-hero-text-rgb), .55); color: var(--tz-hero-text) !important; background: transparent; }
.tezash-public-shell .btn-outline-white:hover { border-color: var(--tz-hero-text); background: var(--tz-hero-text); color: var(--tz-hero-overlay) !important; }
.tezash-public-shell .btn-white { background: var(--tz-surface); border-color: var(--tz-surface); color: var(--tz-ink) !important; }

/* Hamburger follows the admin-selected header text color, including dark headers. */
.tezash-public-shell .navbar-toggler-icon {
    position: relative;
    width: 20px;
    height: 14px;
    background-image: none !important;
    border-top: 2px solid var(--tz-header-text);
    border-bottom: 2px solid var(--tz-header-text);
}
.tezash-public-shell .navbar-toggler-icon::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    border-top: 2px solid var(--tz-header-text);
}
