:root {
    --sqo-ink: #151713;
    --sqo-ink-soft: #2c2d27;
    --sqo-cream: #fff8ea;
    --sqo-sand: #f2dfbd;
    --sqo-gold: #f4b63f;
    --sqo-amber: #d9812b;
    --sqo-clay: #a9482c;
    --sqo-oasis: #0f766e;
    --sqo-sky: #dff4ef;
    --sqo-line: rgba(21, 23, 19, 0.14);
    --sqo-white-line: rgba(255, 248, 234, 0.22);
    --sqo-shadow: 0 24px 60px rgba(21, 23, 19, 0.18);
}

html {
    scroll-behavior: smooth;
}

.sqo-site {
    background: var(--sqo-cream);
    color: var(--sqo-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

.sqo-site * {
    letter-spacing: 0;
}

.sqo-site a {
    color: inherit;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.sqo-site a:hover {
    color: var(--sqo-amber);
    text-decoration: none;
}

.sqo-site img,
.sqo-site video {
    max-width: 100%;
}

.super_container {
    overflow: hidden;
    background: var(--sqo-cream);
}

#loading-container {
    background: var(--sqo-ink) !important;
}

.lds-ripple div {
    border-color: var(--sqo-gold) !important;
}

.sqo-toast {
    position: fixed;
    top: 104px;
    right: 24px;
    z-index: 1200;
    max-width: min(360px, calc(100vw - 32px));
    padding: 14px 18px;
    border-radius: 8px;
    color: #fff;
    font-weight: 800;
    box-shadow: var(--sqo-shadow);
    animation: sqoToastOut 4.5s ease forwards;
}

.sqo-toast-success {
    background: var(--sqo-oasis);
}

.sqo-toast-error {
    background: var(--sqo-clay);
}

.sqo-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sqo-oasis);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.sqo-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.sqo-button,
.sqo-site .button,
.sqo-site .form_submit_button,
.sqo-site .book_button a,
.sqo-site .search_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--sqo-gold), var(--sqo-amber));
    color: #1f160a !important;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(217, 129, 43, 0.28);
}

.sqo-button:hover,
.sqo-site .button:hover,
.sqo-site .book_button a:hover,
.sqo-site .search_button:hover {
    transform: translateY(-2px);
    color: #1f160a !important;
    box-shadow: 0 18px 38px rgba(217, 129, 43, 0.34);
}

.sqo-button-ghost {
    background: rgba(255, 248, 234, 0.1);
    color: var(--sqo-cream) !important;
    border-color: var(--sqo-white-line);
    box-shadow: none;
}

.sqo-button-ghost:hover {
    background: rgba(255, 248, 234, 0.18);
    color: #fff !important;
}

.sqo-button-light {
    background: var(--sqo-cream);
    color: var(--sqo-ink) !important;
    box-shadow: none;
}

.sqo-text-link,
.sqo-card-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--sqo-oasis);
    font-weight: 800;
}

.sqo-card-link:hover,
.sqo-text-link:hover {
    gap: 14px;
}

.sqo-site .button_bcg,
.sqo-site .button span,
.sqo-site .book_button span,
.sqo-site .search_button span,
.sqo-site .form_submit_button span {
    display: none !important;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sqo-header {
    position: fixed !important;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent !important;
    pointer-events: none;
}

.sqo-nav {
    height: auto !important;
    background: transparent !important;
    box-shadow: none !important;
}

.sqo-nav-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    min-height: 76px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 248, 234, 0.16);
    border-radius: 8px;
    background: rgba(21, 23, 19, 0.5);
    backdrop-filter: blur(18px);
    pointer-events: auto;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    transform: translateY(-18px);
    opacity: 0;
    transition: opacity 500ms ease, transform 500ms ease, background 220ms ease, border-color 220ms ease;
}

.sqo-ready .sqo-nav-inner {
    opacity: 1;
    transform: translateY(0);
}

.sqo-header.scrolled .sqo-nav-inner,
.sqo-header.is-scrolled .sqo-nav-inner {
    background: rgba(21, 23, 19, 0.82);
    border-color: rgba(244, 182, 63, 0.24);
}

.sqo-brand,
.sqo-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.sqo-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.sqo-brand span {
    display: grid;
    color: var(--sqo-cream);
    line-height: 1.05;
}

.sqo-brand strong {
    font-size: 15px;
    text-transform: uppercase;
}

.sqo-brand small {
    color: var(--sqo-sand);
    font-size: 12px;
    font-weight: 700;
}

.sqo-nav-links {
    display: flex;
    justify-content: flex-end;
}

.sqo-nav-links .main_nav_list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.sqo-nav-links .main_nav_item {
    margin: 0 !important;
}

.sqo-nav-links .main_nav_item::after {
    display: none !important;
}

.sqo-nav-links .main_nav_item a {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    color: rgba(255, 248, 234, 0.88) !important;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.sqo-nav-links .main_nav_item a:hover {
    background: rgba(255, 248, 234, 0.1);
    color: var(--sqo-gold) !important;
}

.sqo-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 17px;
    border-radius: 999px;
    background: #25d366;
    color: #082211 !important;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.sqo-nav-cta:hover {
    transform: translateY(-2px);
    color: #082211 !important;
}

.sqo-menu-button {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--sqo-white-line);
    border-radius: 999px;
    color: var(--sqo-cream);
    text-align: center;
    line-height: 44px;
}

.sqo-menu-button i {
    color: inherit !important;
    font-size: 18px;
}

.sqo-mobile-menu {
    background: rgba(21, 23, 19, 0.96) !important;
}

.sqo-mobile-logo {
    width: 90px;
    margin-bottom: 26px;
}

.sqo-mobile-menu .menu_item {
    margin-bottom: 16px;
}

.sqo-mobile-menu .menu_item a {
    color: var(--sqo-cream) !important;
    font-size: 30px;
    font-weight: 900;
}

.sqo-mobile-cta {
    margin-top: 12px;
    color: var(--sqo-gold) !important;
    font-weight: 800;
}

.sqo-hero {
    position: relative;
    min-height: 92vh !important;
    background: var(--sqo-ink);
}

.sqo-hero-slider,
.sqo-hero-slider .home_slider,
.sqo-hero-slider .owl-stage-outer,
.sqo-hero-slider .owl-stage,
.sqo-hero-slider .owl-item,
.sqo-hero-slide {
    height: 92vh !important;
    min-height: 680px;
}

.sqo-hero-slider {
    position: absolute !important;
    inset: 0;
    background: var(--sqo-ink) !important;
}

.sqo-hero-slide {
    position: relative;
    overflow: hidden;
}

.sqo-hero-bg {
    position: absolute !important;
    inset: 0;
    opacity: 1 !important;
    background-size: cover !important;
    background-position: center !important;
    transform: scale(1.04);
    animation: sqoHeroDrift 16s ease-in-out infinite alternate;
}

.sqo-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(12, 13, 10, 0.9) 0%, rgba(12, 13, 10, 0.66) 42%, rgba(12, 13, 10, 0.24) 100%),
        radial-gradient(circle at 78% 22%, rgba(15, 118, 110, 0.36), transparent 30%),
        linear-gradient(0deg, rgba(21, 23, 19, 0.62), transparent 44%);
}

.sqo-hero-content {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: end;
    gap: 48px;
    width: min(1140px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    padding: 170px 0 170px;
    text-align: left !important;
}

.sqo-hero-copy {
    max-width: 760px;
}

.sqo-hero-copy .sqo-eyebrow {
    color: var(--sqo-gold);
}

.sqo-hero-copy h1 {
    margin: 18px 0 18px;
    color: var(--sqo-cream) !important;
    font-size: 82px !important;
    font-weight: 950 !important;
    line-height: 0.94 !important;
    text-transform: none !important;
    text-shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
}

.sqo-hero-copy p {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 248, 234, 0.86);
    font-size: 19px;
    line-height: 1.75;
}

.sqo-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.sqo-hero-card {
    padding: 24px;
    border: 1px solid var(--sqo-white-line);
    border-radius: 8px;
    background: rgba(255, 248, 234, 0.12);
    color: var(--sqo-cream);
    backdrop-filter: blur(18px);
}

.sqo-hero-card span {
    color: var(--sqo-gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sqo-hero-card strong {
    display: block;
    margin: 10px 0;
    font-size: 26px;
    line-height: 1.08;
}

.sqo-hero-card p {
    margin: 0;
    color: rgba(255, 248, 234, 0.76);
    line-height: 1.65;
}

.sqo-hero-bottom {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: min(860px, calc(100% - 48px));
    transform: translateX(-50%);
    border: 1px solid var(--sqo-white-line);
    border-radius: 8px;
    background: rgba(21, 23, 19, 0.58);
    backdrop-filter: blur(18px);
}

.sqo-hero-stat {
    padding: 16px 20px;
    border-right: 1px solid var(--sqo-white-line);
}

.sqo-hero-stat:last-child {
    border-right: 0;
}

.sqo-hero-stat strong,
.sqo-hero-stat span {
    display: block;
}

.sqo-hero-stat strong {
    color: var(--sqo-gold);
    font-size: 24px;
    font-weight: 950;
}

.sqo-hero-stat span {
    color: rgba(255, 248, 234, 0.74);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.sqo-slider-arrow {
    position: absolute !important;
    z-index: 5;
    display: grid !important;
    place-items: center;
    width: 46px !important;
    height: 46px !important;
    border: 1px solid var(--sqo-white-line);
    border-radius: 50%;
    background: rgba(21, 23, 19, 0.55);
    color: var(--sqo-cream);
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease;
}

.sqo-slider-arrow:hover {
    transform: translateY(-2px);
    background: var(--sqo-gold);
    color: var(--sqo-ink);
}

.sqo-slider-prev {
    left: 24px !important;
}

.sqo-slider-next {
    right: 24px !important;
}

.sqo-hero .sqo-slider-arrow {
    top: 50%;
}

.sqo-hero-dots {
    position: absolute;
    right: 54px;
    bottom: 132px;
    z-index: 5;
}

.sqo-hero-dots .home_slider_custom_dots {
    display: flex;
    gap: 10px;
}

.sqo-hero-dots .home_slider_custom_dot {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: rgba(255, 248, 234, 0.72);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.sqo-hero-dots .home_slider_custom_dot div {
    width: 22px;
    height: 2px;
    margin: 0;
    background: rgba(255, 248, 234, 0.32);
}

.sqo-hero-dots .home_slider_custom_dot.active,
.sqo-hero-dots .home_slider_custom_dot:hover {
    color: var(--sqo-gold);
}

.sqo-hero-dots .home_slider_custom_dot.active div {
    background: var(--sqo-gold);
}

.sqo-section {
    position: relative;
    padding: 96px 0;
}

.sqo-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.sqo-section-heading h2,
.sqo-split-heading h2 {
    margin: 14px 0 0;
    color: var(--sqo-ink);
    font-size: 42px;
    font-weight: 950;
    line-height: 1.08;
    text-transform: none;
}

.sqo-section-heading p,
.sqo-split-heading p {
    margin: 18px auto 0;
    color: rgba(21, 23, 19, 0.68);
    font-size: 16px;
    line-height: 1.8;
}

.sqo-split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 38px;
}

.sqo-split-heading > p {
    max-width: 430px;
    margin: 0;
}

.sqo-signature-tours {
    background:
        linear-gradient(180deg, var(--sqo-cream), #f7eddc 68%, var(--sqo-cream));
}

.sqo-feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.sqo-feature-strip div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 68px;
    padding: 14px 18px;
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.55);
    color: var(--sqo-ink-soft);
    font-weight: 850;
}

.sqo-feature-strip i {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.12);
    color: var(--sqo-oasis);
}

.sqo-tour-card-grid {
    row-gap: 30px;
}

.sqo-tour-card,
.sqo-latest-card,
.sqo-testimonial-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 46px rgba(74, 52, 25, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    will-change: transform;
}

.sqo-tour-card::after,
.sqo-latest-card::after,
.sqo-testimonial-card::after,
.sqo-detail-booking-card::after,
.sqo-review-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.26) 48%, transparent 68%);
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 220ms ease, transform 650ms ease;
}

.sqo-tour-card:hover,
.sqo-latest-card:hover,
.sqo-testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 118, 110, 0.3);
    box-shadow: var(--sqo-shadow);
}

.sqo-tour-card:hover::after,
.sqo-latest-card:hover::after,
.sqo-testimonial-card:hover::after,
.sqo-detail-booking-card:hover::after,
.sqo-review-card:hover::after {
    opacity: 1;
    transform: translateX(100%);
}

.sqo-tour-media,
.sqo-latest-image {
    position: relative;
    display: block;
    overflow: hidden;
    color: #fff;
}

.sqo-tour-media {
    aspect-ratio: 4 / 3;
}

.sqo-tour-media img,
.sqo-latest-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 450ms ease;
}

.sqo-tour-card:hover .sqo-tour-media img,
.sqo-latest-card:hover .sqo-latest-image img {
    transform: scale(1.06);
}

.sqo-tour-badge,
.sqo-latest-image span {
    position: absolute;
    left: 16px;
    top: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(21, 23, 19, 0.72);
    color: var(--sqo-cream);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.sqo-tour-card-body,
.sqo-latest-content {
    padding: 24px;
}

.sqo-card-kicker {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--sqo-oasis);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sqo-stars,
.sqo-testimonial-stars {
    color: var(--sqo-gold);
    white-space: nowrap;
}

.sqo-tour-card h3,
.sqo-latest-card h3,
.sqo-testimonial-card h3 {
    margin: 0 0 12px;
    color: var(--sqo-ink);
    font-size: 22px;
    font-weight: 950;
    line-height: 1.18;
}

.sqo-tour-card p,
.sqo-latest-card p,
.sqo-testimonial-card p {
    color: rgba(21, 23, 19, 0.66);
    line-height: 1.7;
}

.sqo-video-stories {
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(21, 23, 19, 0.96), rgba(38, 36, 26, 0.96)),
        url("../images/cta.jpg") center/cover;
    color: var(--sqo-cream);
}

.sqo-video-stories .sqo-eyebrow,
.sqo-video-stories .sqo-split-heading h2,
.sqo-video-stories .sqo-split-heading p {
    color: var(--sqo-cream);
}

.sqo-video-stories .sqo-eyebrow {
    color: var(--sqo-gold);
}

.sqo-video-shell {
    position: relative;
    padding: 0 68px;
}

.sqo-video-card {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    align-items: center;
    gap: 34px;
    min-height: 500px;
    padding: 28px;
    border: 1px solid var(--sqo-white-line);
    border-radius: 8px;
    background: rgba(255, 248, 234, 0.08);
}

.sqo-video-card video {
    width: 100%;
    aspect-ratio: 9 / 14;
    max-height: 560px;
    border-radius: 8px;
    background: #000;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.sqo-video-copy span {
    color: var(--sqo-gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sqo-video-copy h3 {
    margin: 12px 0;
    color: var(--sqo-cream);
    font-size: 38px;
    font-weight: 950;
}

.sqo-video-copy p {
    max-width: 540px;
    color: rgba(255, 248, 234, 0.78);
    font-size: 18px;
    line-height: 1.75;
}

.sqo-video-stories .sqo-slider-prev,
.sqo-testimonials .sqo-slider-prev {
    left: 0 !important;
    top: 50%;
}

.sqo-video-stories .sqo-slider-next,
.sqo-testimonials .sqo-slider-next {
    right: 0 !important;
    top: 50%;
}

.sqo-latest-tours {
    background: #f6ead7;
}

.sqo-latest-grid {
    row-gap: 28px;
}

.sqo-latest-card {
    display: grid;
    grid-template-columns: 42% minmax(0, 1fr);
    min-height: 330px;
}

.sqo-latest-image {
    height: 100%;
    min-height: 310px;
}

.sqo-ride-icons {
    display: flex;
    gap: 12px;
    margin: 18px 0;
}

.sqo-ride-icons img {
    width: 32px;
    height: 32px;
    padding: 6px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.09);
    object-fit: contain;
}

.sqo-testimonials {
    background:
        radial-gradient(circle at 18% 20%, rgba(15, 118, 110, 0.11), transparent 26%),
        var(--sqo-cream);
}

.sqo-testimonial-shell {
    position: relative;
    padding: 0 66px;
}

.sqo-testimonial-card {
    display: flex;
    flex-direction: column;
    min-height: 520px;
    padding: 0;
}

.sqo-testimonial-media {
    position: relative;
    height: 210px;
    margin: 0;
    overflow: hidden;
    background: var(--sqo-sand);
}

.sqo-testimonial-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(21, 23, 19, 0.62));
}

.sqo-testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 700ms ease, filter 400ms ease;
}

.sqo-testimonial-card:hover .sqo-testimonial-media img {
    filter: saturate(1.08) contrast(1.04);
    transform: scale(1.08);
}

.sqo-testimonial-media span {
    position: absolute;
    left: 18px;
    bottom: 16px;
    z-index: 1;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 248, 234, 0.92);
    color: var(--sqo-ink);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.sqo-testimonial-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px 30px 30px;
}

.sqo-testimonial-card h3 {
    max-width: 620px;
    margin-top: 14px;
    font-size: 26px;
}

.sqo-testimonial-card p {
    flex: 1;
    max-width: 760px;
    font-size: 16px;
}

.sqo-testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.sqo-testimonial-author strong {
    color: var(--sqo-ink);
    font-weight: 950;
}

.sqo-testimonial-author span {
    color: rgba(21, 23, 19, 0.52);
    font-size: 13px;
    font-weight: 800;
}

.sqo-contact-band {
    background:
        linear-gradient(135deg, rgba(15, 118, 110, 0.92), rgba(21, 23, 19, 0.94)),
        url("../images/slides/aitbenhaddou.jpg") center/cover;
    color: var(--sqo-cream);
}

.sqo-contact-copy {
    padding-right: 30px;
}

.sqo-contact-copy .sqo-eyebrow,
.sqo-contact-copy h2,
.sqo-contact-copy p,
.sqo-contact-options a {
    color: var(--sqo-cream);
}

.sqo-contact-copy .sqo-eyebrow {
    color: var(--sqo-gold);
}

.sqo-contact-copy h2 {
    margin: 14px 0 18px;
    font-size: 42px;
    font-weight: 950;
    line-height: 1.08;
}

.sqo-contact-copy p {
    color: rgba(255, 248, 234, 0.78);
    line-height: 1.8;
}

.sqo-contact-options {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.sqo-contact-options a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
}

.sqo-contact-card {
    padding: 30px !important;
    border: 1px solid var(--sqo-white-line);
    border-radius: 8px;
    background: rgba(255, 248, 234, 0.12) !important;
    backdrop-filter: blur(18px);
    box-shadow: var(--sqo-shadow);
}

.sqo-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.sqo-form-header span {
    color: var(--sqo-cream);
    font-size: 24px;
    font-weight: 950;
}

.sqo-form-header a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 14px;
    border-radius: 999px;
    background: #25d366;
    color: #092513 !important;
    font-weight: 900;
}

.sqo-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.sqo-form-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
    margin-top: 6px;
}

.sqo-form-actions .sqo-button {
    width: 100%;
    height: 56px;
    min-height: 56px;
    margin: 0 !important;
    padding: 0 18px;
    transform: none !important;
    white-space: nowrap;
}

.sqo-form-actions .form_submit_button {
    line-height: 1 !important;
    border: 1px solid transparent;
}

.sqo-whatsapp-button {
    background: #25d366;
    color: #082211 !important;
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.24);
}

.sqo-whatsapp-button:hover {
    color: #082211 !important;
    box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
}

.sqo-site .input_field,
.sqo-site .text_field,
.sqo-site .search_input,
.sqo-site .form-control {
    width: 100%;
    min-height: 54px;
    margin-bottom: 14px;
    padding: 0 16px;
    border: 1px solid rgba(21, 23, 19, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--sqo-ink);
    font-size: 15px;
    outline: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.sqo-site .text_field,
.sqo-site textarea.form-control {
    min-height: 130px;
    padding-top: 16px;
    resize: vertical;
}

.sqo-site .input_field:focus,
.sqo-site .text_field:focus,
.sqo-site .search_input:focus,
.sqo-site .form-control:focus {
    border-color: var(--sqo-oasis);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.14);
}

.sqo-site .home:not(.sqo-hero) {
    position: relative;
    overflow: hidden;
    height: 420px !important;
    min-height: 420px !important;
    background: var(--sqo-ink);
}

.sqo-site .home:not(.sqo-hero)::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(21, 23, 19, 0.88), rgba(21, 23, 19, 0.42)),
        linear-gradient(0deg, rgba(21, 23, 19, 0.62), transparent 55%);
}

.sqo-site .home_background {
    opacity: 0.9;
}

.sqo-site .home_content {
    position: relative !important;
    left: auto !important;
    bottom: auto !important;
    transform: none !important;
    z-index: 2;
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    text-align: left;
}

.sqo-site .home_title {
    padding-top: 170px;
    color: var(--sqo-cream);
    font-size: 60px;
    font-weight: 950;
    text-transform: none;
}

.sqo-detail-hero {
    position: relative;
    display: flex;
    align-items: end;
    min-height: 720px;
    overflow: hidden;
    background: var(--sqo-ink);
    color: var(--sqo-cream);
}

.sqo-detail-hero-bg,
.sqo-detail-hero-overlay {
    position: absolute;
    inset: 0;
}

.sqo-detail-hero-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: sqoHeroDrift 18s ease-in-out infinite alternate;
}

.sqo-detail-hero-overlay {
    background:
        linear-gradient(90deg, rgba(21, 23, 19, 0.92), rgba(21, 23, 19, 0.55) 46%, rgba(21, 23, 19, 0.18)),
        linear-gradient(0deg, rgba(21, 23, 19, 0.88), transparent 50%);
}

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

.sqo-detail-hero-content {
    max-width: 820px;
    padding: 180px 0 118px;
}

.sqo-detail-hero-content .sqo-eyebrow {
    color: var(--sqo-gold);
}

.sqo-detail-hero-content h1 {
    margin: 18px 0;
    color: var(--sqo-cream);
    font-size: 72px;
    font-weight: 950;
    line-height: 0.98;
}

.sqo-detail-hero-content p {
    color: rgba(255, 248, 234, 0.84);
    font-size: 20px;
    font-weight: 800;
}

.sqo-detail-actions,
.sqo-detail-booking-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.sqo-detail-page {
    background: var(--sqo-cream);
}

.sqo-detail-summary {
    position: relative;
    z-index: 3;
    margin-top: -58px;
}

.sqo-detail-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--sqo-white-line);
    border-radius: 8px;
    background: rgba(21, 23, 19, 0.92);
    box-shadow: var(--sqo-shadow);
}

.sqo-detail-stats div {
    padding: 22px 24px;
    border-right: 1px solid var(--sqo-white-line);
}

.sqo-detail-stats div:last-child {
    border-right: 0;
}

.sqo-detail-stats span,
.sqo-detail-stats strong {
    display: block;
}

.sqo-detail-stats span {
    color: var(--sqo-gold);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.sqo-detail-stats strong {
    margin-top: 8px;
    color: var(--sqo-cream);
    font-size: 18px;
    font-weight: 950;
    line-height: 1.2;
}

.sqo-detail-main {
    padding-top: 86px;
}

.sqo-detail-story {
    margin-bottom: 32px;
}

.sqo-detail-story h2 {
    margin: 14px 0 18px;
    color: var(--sqo-ink);
    font-size: 42px;
    font-weight: 950;
}

.sqo-detail-description {
    color: rgba(21, 23, 19, 0.7);
    font-size: 16px;
    line-height: 1.85;
}

.sqo-detail-description p {
    color: inherit;
}

.sqo-detail-gallery {
    display: grid;
    gap: 14px;
}

.sqo-detail-main-image,
.sqo-detail-gallery-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 18px 46px rgba(74, 52, 25, 0.08);
}

.sqo-detail-main-image {
    aspect-ratio: 16 / 10;
}

.sqo-detail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.sqo-detail-gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
}

.sqo-detail-gallery-grid img {
    aspect-ratio: 1 / 1;
    transition: transform 450ms ease;
}

.sqo-detail-gallery-grid a:hover img {
    transform: scale(1.06);
}

.sqo-detail-booking-card {
    position: sticky;
    top: 118px;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 234, 0.86)),
        var(--sqo-cream);
    box-shadow: var(--sqo-shadow);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.sqo-detail-booking-head span,
.sqo-detail-booking-head strong {
    display: block;
}

.sqo-detail-booking-head span {
    color: var(--sqo-oasis);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.sqo-detail-booking-head strong {
    margin-top: 8px;
    color: var(--sqo-ink);
    font-size: 27px;
    font-weight: 950;
    line-height: 1.1;
}

.sqo-detail-booking-actions .sqo-button {
    flex: 1 1 190px;
}

.sqo-booking-divider {
    position: relative;
    margin: 24px 0 18px;
    text-align: center;
}

.sqo-booking-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--sqo-line);
}

.sqo-booking-divider span {
    position: relative;
    display: inline-flex;
    padding: 0 12px;
    background: var(--sqo-cream);
    color: rgba(21, 23, 19, 0.5);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sqo-detail-booking-form label {
    display: grid;
    gap: 7px;
    margin: 0 0 14px;
}

.sqo-detail-booking-form label span {
    color: var(--sqo-ink);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sqo-detail-submit {
    width: 100%;
}

.sqo-detail-form-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.sqo-detail-form-actions .sqo-button {
    width: 100%;
}

.sqo-detail-trust {
    padding-top: 0;
}

.sqo-detail-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sqo-detail-trust-grid div,
.sqo-review-card,
.sqo-detail-review-form {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 46px rgba(74, 52, 25, 0.08);
}

.sqo-detail-trust-grid div {
    padding: 28px;
}

.sqo-detail-trust-grid i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.1);
    color: var(--sqo-oasis);
    font-size: 20px;
}

.sqo-detail-trust-grid h3,
.sqo-review-card h3 {
    color: var(--sqo-ink);
    font-size: 22px;
    font-weight: 950;
}

.sqo-detail-trust-grid p,
.sqo-review-card p {
    color: rgba(21, 23, 19, 0.66);
    line-height: 1.75;
}

.sqo-detail-reviews {
    padding-top: 0;
}

.sqo-review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 34px;
}

.sqo-review-card {
    padding: 26px;
}

.sqo-review-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.sqo-review-card-head h3 {
    margin: 0;
}

.sqo-review-card-head span {
    display: inline-grid;
    place-items: center;
    min-width: 56px;
    height: 42px;
    border-radius: 8px;
    background: var(--sqo-oasis);
    color: #fff;
    font-weight: 950;
}

.sqo-detail-review-form {
    max-width: 840px;
    margin: 0 auto;
    padding: 30px;
}

.sqo-detail-review-form .sqo-section-heading {
    margin-bottom: 24px;
}

.sqo-detail-review-form textarea {
    margin-bottom: 14px;
}

.sqo-site .offers,
.sqo-site .listing,
.sqo-site .intro,
.sqo-site .stats,
.sqo-site .add,
.sqo-site .milestones,
.sqo-site .faq,
.sqo-site .contact_form_section,
.sqo-site .about {
    background: var(--sqo-cream);
}

.sqo-site .section_title,
.sqo-site .intro_title,
.sqo-site .reviews_title,
.sqo-site .contact_title,
.sqo-site .section_subtitle {
    color: var(--sqo-ink);
    font-weight: 950;
    text-transform: none;
}

.sqo-site .offers_sorting_container {
    margin: 0 0 34px;
}

.sqo-site .offers_sorting {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0;
}

.sqo-site .offers_sorting > li {
    min-width: 150px;
    height: auto;
    margin: 0;
    padding: 14px 18px;
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: #fff;
    color: var(--sqo-ink);
    font-weight: 900;
}

.sqo-site .offers_sorting li ul {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--sqo-shadow);
}

.sqo-site .offers_grid .offers_item {
    margin-bottom: 28px;
    padding: 22px;
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(74, 52, 25, 0.08);
}

.sqo-site .offers_image_container {
    overflow: hidden;
    min-height: 260px;
    border-radius: 8px;
}

.sqo-site .offers_image_background {
    min-height: 260px;
    background-size: cover;
    background-position: center;
}

.sqo-site .offer_name {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    border-radius: 8px;
    background: rgba(21, 23, 19, 0.78);
}

.sqo-site .offer_name a {
    color: var(--sqo-cream) !important;
    font-weight: 900;
}

.sqo-site .offers_price {
    color: var(--sqo-ink);
    font-size: 24px;
    font-weight: 950;
}

.sqo-site .offers_price span {
    color: var(--sqo-oasis);
}

.sqo-site .offers_text,
.sqo-site .hotel_info_text,
.sqo-site .about_text,
.sqo-site .stats_text,
.sqo-site .faq_answer {
    color: rgba(21, 23, 19, 0.68);
    line-height: 1.8;
}

.sqo-site .pagination-container {
    left: auto !important;
    display: flex;
    justify-content: center;
    width: 100%;
}

.sqo-site .pagination li a,
.sqo-site .pagination li span {
    border-radius: 8px;
    color: var(--sqo-ink) !important;
}

.sqo-site .pagination li.active span {
    background: var(--sqo-oasis) !important;
}

.sqo-site .single_listing {
    padding: 54px 0;
}

.sqo-site .hotel_title {
    color: var(--sqo-ink);
    font-size: 38px;
    font-weight: 950;
}

.sqo-site .hotel_image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--sqo-shadow);
}

.sqo-site .hotel_image img {
    width: 100%;
    max-height: 620px;
    object-fit: cover;
}

.sqo-site .hotel_gallery img {
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.sqo-site .search {
    background: var(--sqo-ink);
    border-radius: 8px;
}

.sqo-site .search_panel_content {
    gap: 14px;
    padding: 24px;
}

.sqo-site .reviews .review,
.sqo-site .add_review .contact_form_container,
.sqo-site .faq_item,
.sqo-site .about_info,
.sqo-site .about_content,
.sqo-site .contact_form_section .contact_form_container {
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 44px rgba(74, 52, 25, 0.08);
}

.sqo-site .faq {
    padding: 86px 0;
}

.sqo-site .faq_section {
    margin-top: 32px;
}

.sqo-site .faq_item {
    margin-bottom: 14px;
    padding: 20px 24px;
}

.sqo-site .faq_question a {
    color: var(--sqo-ink);
    font-weight: 900;
}

.sqo-site .travelix_map iframe {
    filter: saturate(0.88) contrast(1.02);
}

.sqo-footer {
    padding: 86px 0 46px;
    background:
        linear-gradient(145deg, #141611, #25231a 58%, #102a29);
    color: var(--sqo-cream);
}

.sqo-footer-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 64px;
    padding: 28px;
    border: 1px solid var(--sqo-white-line);
    border-radius: 8px;
    background: rgba(255, 248, 234, 0.08);
}

.sqo-footer-cta .sqo-eyebrow {
    color: var(--sqo-gold);
}

.sqo-footer-cta h2 {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--sqo-cream);
    font-size: 34px;
    font-weight: 950;
    line-height: 1.12;
}

.sqo-footer-grid {
    row-gap: 34px;
}

.sqo-footer-brand img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.sqo-footer-brand span {
    color: var(--sqo-cream);
    font-size: 20px;
    font-weight: 950;
    line-height: 1.05;
}

.sqo-footer .footer_about_text {
    margin-top: 22px;
    color: rgba(255, 248, 234, 0.72);
    line-height: 1.8;
}

.sqo-footer .footer_title {
    margin-bottom: 18px;
    color: var(--sqo-gold);
    font-size: 13px;
    font-weight: 950;
    text-transform: uppercase;
}

.sqo-footer .footer_social_list {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}

.sqo-footer .footer_social_item a {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--sqo-white-line);
    border-radius: 50%;
    color: var(--sqo-cream);
}

.sqo-footer .footer_social_item a:hover {
    background: var(--sqo-gold);
    color: var(--sqo-ink);
}

.sqo-footer .tags_list,
.sqo-footer-links,
.sqo-footer .contact_info_list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sqo-footer .tag_item {
    float: none;
}

.sqo-footer .tag_item a,
.sqo-footer-links a,
.sqo-footer .contact_info_text,
.sqo-footer .contact_info_text a {
    color: rgba(255, 248, 234, 0.74);
    font-weight: 700;
}

.sqo-footer .tag_item a:hover,
.sqo-footer-links a:hover,
.sqo-footer .contact_info_text a:hover {
    color: var(--sqo-gold);
}

.sqo-footer .contact_info_item {
    align-items: flex-start;
    gap: 12px;
}

.sqo-footer .contact_info_item i {
    width: 20px;
    color: var(--sqo-gold);
    line-height: 1.6;
}

.sqo-copyright {
    padding: 18px 0;
    background: #0e100d;
    color: rgba(255, 248, 234, 0.72);
    font-size: 13px;
}

.sqo-copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.sqo-copyright a {
    color: var(--sqo-gold);
}

.whatsapp-button {
    position: fixed !important;
    right: 96px !important;
    bottom: 24px !important;
    z-index: 1050 !important;
    display: grid !important;
    place-items: center;
    width: 58px !important;
    height: 58px !important;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.whatsapp-button img {
    width: 32px !important;
    height: 32px !important;
}

#TA_cdswritereviewlg834,
.TA_cdswritereviewlg {
    display: none !important;
}

.sqo-chatbot {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1060;
    font-family: inherit;
}

.sqo-chat-toggle {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border: 0;
    border-radius: 50%;
    background: var(--sqo-ink);
    color: var(--sqo-cream);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    cursor: pointer;
}

.sqo-chat-toggle i {
    font-size: 20px;
}

.sqo-chat-toggle span {
    position: absolute;
    right: 2px;
    top: -6px;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 2px solid var(--sqo-cream);
    border-radius: 50%;
    background: var(--sqo-gold);
    color: var(--sqo-ink);
    font-size: 11px;
    font-weight: 950;
}

.sqo-chat-panel {
    position: absolute;
    right: 0;
    bottom: 76px;
    display: grid;
    grid-template-rows: auto 1fr auto auto;
    width: 370px;
    max-width: calc(100vw - 32px);
    height: 560px;
    max-height: calc(100vh - 130px);
    overflow: hidden;
    border: 1px solid rgba(255, 248, 234, 0.18);
    border-radius: 8px;
    background: #fffaf0;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px) scale(0.97);
    transition: opacity 180ms ease, transform 180ms ease;
}

.sqo-chatbot.is-open .sqo-chat-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.sqo-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, var(--sqo-ink), #20413c);
    color: var(--sqo-cream);
}

.sqo-chat-header span,
.sqo-chat-header strong {
    display: block;
}

.sqo-chat-header span {
    color: var(--sqo-gold);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
}

.sqo-chat-header strong {
    margin-top: 3px;
    font-size: 17px;
    font-weight: 950;
}

.sqo-chat-header button {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--sqo-white-line);
    border-radius: 50%;
    background: transparent;
    color: var(--sqo-cream);
    cursor: pointer;
}

.sqo-chat-messages {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    padding: 16px;
}

.sqo-chat-message {
    max-width: 86%;
    padding: 12px 14px;
    border-radius: 8px;
    color: var(--sqo-ink);
    font-size: 14px;
    line-height: 1.5;
}

.sqo-chat-message.bot {
    align-self: flex-start;
    background: #f0e4cf;
}

.sqo-chat-message.user {
    align-self: flex-end;
    background: var(--sqo-oasis);
    color: #fff;
}

.sqo-chat-prompts {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 16px;
    border-top: 1px solid var(--sqo-line);
}

.sqo-chat-prompts button {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid rgba(15, 118, 110, 0.2);
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    color: var(--sqo-oasis);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
}

.sqo-chat-form {
    display: grid;
    grid-template-columns: 1fr 46px;
    gap: 8px;
    padding: 12px;
    border-top: 1px solid var(--sqo-line);
}

.sqo-chat-form input {
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    border: 1px solid var(--sqo-line);
    border-radius: 999px;
    background: #fff;
    color: var(--sqo-ink);
    outline: 0;
}

.sqo-chat-form button {
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--sqo-gold);
    color: var(--sqo-ink);
    cursor: pointer;
}

@keyframes sqoHeroDrift {
    from {
        transform: scale(1.04) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.1) translate3d(-18px, -10px, 0);
    }
}

@keyframes sqoToastOut {
    0%,
    82% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-10px);
        visibility: hidden;
    }
}

@keyframes sqoButtonPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(244, 182, 63, 0.34), 0 14px 30px rgba(217, 129, 43, 0.28);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(244, 182, 63, 0), 0 18px 38px rgba(217, 129, 43, 0.34);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(244, 182, 63, 0), 0 14px 30px rgba(217, 129, 43, 0.28);
    }
}

.sqo-hero-actions .sqo-button:first-child,
.sqo-detail-actions .sqo-button:first-child,
.sqo-detail-submit,
.sqo-detail-form-actions .sqo-whatsapp-button {
    animation: sqoButtonPulse 2.9s ease-in-out infinite;
}

.sqo-page {
    background: var(--sqo-cream);
}

.sqo-page-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 660px;
    overflow: hidden;
    background: var(--sqo-ink);
    color: var(--sqo-cream);
}

.sqo-page-hero-bg,
.sqo-page-hero-overlay {
    position: absolute;
    inset: 0;
}

.sqo-page-hero-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: sqoHeroDrift 18s ease-in-out infinite alternate;
}

.sqo-page-hero-overlay {
    background:
        linear-gradient(90deg, rgba(21, 23, 19, 0.94), rgba(21, 23, 19, 0.56) 48%, rgba(21, 23, 19, 0.18)),
        linear-gradient(0deg, rgba(21, 23, 19, 0.82), transparent 56%);
}

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

.sqo-page-hero-content {
    max-width: 820px;
    padding: 160px 0 84px;
}

.sqo-page-hero-content .sqo-eyebrow {
    color: var(--sqo-gold);
}

.sqo-page-hero-content h1 {
    margin: 18px 0;
    color: var(--sqo-cream);
    font-size: 68px;
    font-weight: 950;
    line-height: 0.98;
}

.sqo-page-hero-content p {
    max-width: 650px;
    color: rgba(255, 248, 234, 0.82);
    font-size: 18px;
    line-height: 1.75;
}

.sqo-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.sqo-contact-band {
    padding: 112px 0;
}

.sqo-contact-card,
.sqo-contact-form-panel {
    background: rgba(255, 248, 234, 0.96) !important;
    color: var(--sqo-ink);
}

.sqo-contact-card {
    border-color: rgba(255, 248, 234, 0.38);
}

.sqo-form-header-dark span,
.sqo-contact-card label span,
.sqo-contact-form-panel label span {
    color: var(--sqo-ink);
}

.sqo-form-header-dark p {
    margin: 6px 0 0;
    color: rgba(21, 23, 19, 0.62);
    font-size: 14px;
    font-weight: 700;
}

.sqo-contact-card label,
.sqo-contact-form-panel label {
    display: grid;
    gap: 7px;
    margin: 0 0 14px;
}

.sqo-contact-card label span,
.sqo-contact-form-panel label span {
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}

.sqo-contact-card .sqo-button-ghost {
    background: #fff;
    color: var(--sqo-ink) !important;
    border-color: var(--sqo-line);
}

.sqo-contact-card .sqo-button-ghost:hover {
    background: var(--sqo-sky);
    color: var(--sqo-ink) !important;
}

.sqo-filter-pills {
    align-items: center;
}

.sqo-site .sqo-filter-pills > li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: auto;
    min-height: 46px;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sqo-site .sqo-filter-pills > li:hover,
.sqo-site .sqo-filter-pills > li.is-active {
    transform: translateY(-2px);
    border-color: rgba(15, 118, 110, 0.28);
    background: var(--sqo-sky);
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.12);
}

.sqo-tours-catalog {
    padding-top: 96px;
}

.sqo-tours-grid {
    display: block;
}

.sqo-tours-grid .offers_item {
    width: 100%;
}

.sqo-tour-list-card {
    display: grid;
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    margin-bottom: 24px !important;
    padding: 0 !important;
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 46px rgba(74, 52, 25, 0.08);
}

.sqo-tour-list-media {
    position: relative;
    min-height: 285px;
    overflow: hidden;
    color: var(--sqo-cream);
}

.sqo-tour-list-media img {
    width: 100%;
    height: 100%;
    min-height: 285px;
    object-fit: cover;
    transition: transform 620ms ease;
}

.sqo-tour-list-card:hover .sqo-tour-list-media img {
    transform: scale(1.06);
}

.sqo-tour-list-media span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(21, 23, 19, 0.78);
    color: var(--sqo-cream);
    font-size: 11px;
    font-weight: 950;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
}

.sqo-tour-list-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.sqo-tour-list-content h3 {
    margin: 0 0 14px;
    color: var(--sqo-ink);
    font-size: 30px;
    font-weight: 950;
    line-height: 1.05;
}

.sqo-tour-list-content p {
    color: rgba(21, 23, 19, 0.66);
    line-height: 1.75;
}

.sqo-tour-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 24px;
}

.sqo-tour-list-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid var(--sqo-line);
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.07);
    color: var(--sqo-ink-soft);
    font-size: 12px;
    font-weight: 850;
}

.sqo-tour-list-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.sqo-tour-list-actions .sqo-button-light {
    border-color: var(--sqo-line);
}

.sqo-empty-state {
    display: grid;
    justify-items: center;
    gap: 12px;
    padding: 56px 24px;
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: #fff;
    text-align: center;
    box-shadow: 0 18px 46px rgba(74, 52, 25, 0.08);
}

.sqo-empty-state i {
    color: var(--sqo-oasis);
    font-size: 34px;
}

.sqo-empty-state h3 {
    margin: 0;
    color: var(--sqo-ink);
    font-size: 28px;
    font-weight: 950;
}

.sqo-empty-state p {
    max-width: 520px;
    color: rgba(21, 23, 19, 0.65);
}

.sqo-about-story {
    padding-top: 104px;
}

.sqo-about-image-stack {
    position: relative;
    padding: 0 46px 46px 0;
}

.sqo-about-main-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: var(--sqo-shadow);
}

.sqo-about-floating-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 220px;
    padding: 24px;
    border: 1px solid var(--sqo-white-line);
    border-radius: 8px;
    background: rgba(21, 23, 19, 0.92);
    color: var(--sqo-cream);
    box-shadow: var(--sqo-shadow);
}

.sqo-about-floating-card strong,
.sqo-about-floating-card span {
    display: block;
}

.sqo-about-floating-card strong {
    color: var(--sqo-gold);
    font-size: 36px;
    font-weight: 950;
}

.sqo-about-floating-card span {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sqo-about-copy h2,
.sqo-contact-side h2 {
    margin: 14px 0 18px;
    color: var(--sqo-ink);
    font-size: 46px;
    font-weight: 950;
    line-height: 1.05;
}

.sqo-about-copy p,
.sqo-contact-side p {
    color: rgba(21, 23, 19, 0.66);
    line-height: 1.8;
}

.sqo-about-proof-grid,
.sqo-value-grid {
    display: grid;
    gap: 16px;
}

.sqo-about-proof-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 28px;
}

.sqo-about-proof-grid div,
.sqo-value-card {
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 46px rgba(74, 52, 25, 0.08);
}

.sqo-about-proof-grid div {
    padding: 20px;
}

.sqo-about-proof-grid strong,
.sqo-about-proof-grid span {
    display: block;
}

.sqo-about-proof-grid strong {
    color: var(--sqo-oasis);
    font-size: 24px;
    font-weight: 950;
}

.sqo-about-proof-grid span {
    margin-top: 6px;
    color: rgba(21, 23, 19, 0.62);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.45;
}

.sqo-value-grid {
    grid-template-columns: repeat(3, 1fr);
}

.sqo-value-card {
    padding: 30px;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.sqo-value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sqo-shadow);
}

.sqo-value-card i {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.1);
    color: var(--sqo-oasis);
    font-size: 21px;
}

.sqo-value-card h3 {
    color: var(--sqo-ink);
    font-size: 24px;
    font-weight: 950;
}

.sqo-value-card p {
    color: rgba(21, 23, 19, 0.66);
    line-height: 1.75;
}

.sqo-about-route {
    padding-top: 0;
}

.sqo-route-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 38px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(21, 23, 19, 0.94), rgba(15, 118, 110, 0.86)),
        url("../images/slides/Tfoltot.jpg") center/cover;
    color: var(--sqo-cream);
    box-shadow: var(--sqo-shadow);
}

.sqo-route-panel .sqo-eyebrow,
.sqo-route-panel h2,
.sqo-route-panel p {
    color: var(--sqo-cream);
}

.sqo-route-panel .sqo-eyebrow {
    color: var(--sqo-gold);
}

.sqo-route-panel h2 {
    max-width: 720px;
    margin: 12px 0;
    font-size: 42px;
    font-weight: 950;
    line-height: 1.08;
}

.sqo-route-panel p {
    max-width: 760px;
    color: rgba(255, 248, 234, 0.76);
    line-height: 1.75;
}

.sqo-contact-workspace {
    padding-top: 100px;
}

.sqo-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
    align-items: start;
}

.sqo-contact-side,
.sqo-contact-form-panel {
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(74, 52, 25, 0.08);
}

.sqo-contact-side {
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 234, 0.84));
}

.sqo-contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.sqo-contact-methods a,
.sqo-contact-methods div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 14px;
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: #fff;
}

.sqo-contact-methods i {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.1);
    color: var(--sqo-oasis);
}

.sqo-contact-methods strong,
.sqo-contact-methods span {
    display: block;
}

.sqo-contact-methods strong {
    color: var(--sqo-ink);
    font-weight: 950;
}

.sqo-contact-methods span {
    min-width: 0;
    color: rgba(21, 23, 19, 0.64);
    font-weight: 750;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.sqo-contact-form-panel {
    padding: 32px;
}

.sqo-map-panel {
    overflow: hidden;
    margin-top: 28px;
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(74, 52, 25, 0.08);
}

.sqo-map-panel iframe {
    display: block;
    filter: saturate(0.9) contrast(1.03);
}

.sqo-detail-itinerary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.sqo-detail-itinerary div {
    padding: 22px;
    border: 1px solid var(--sqo-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 18px 46px rgba(74, 52, 25, 0.08);
}

.sqo-detail-itinerary span {
    color: var(--sqo-oasis);
    font-size: 12px;
    font-weight: 950;
}

.sqo-detail-itinerary h3 {
    margin: 8px 0;
    color: var(--sqo-ink);
    font-size: 20px;
    font-weight: 950;
}

.sqo-detail-itinerary p,
.sqo-booking-note,
.sqo-compact-heading p {
    color: rgba(21, 23, 19, 0.64);
    line-height: 1.65;
}

.sqo-booking-note {
    margin: -4px 0 18px;
    font-size: 13px;
    font-weight: 700;
}

.sqo-detail-review-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
    gap: 28px;
    align-items: start;
}

.sqo-detail-review-layout .sqo-review-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
}

.sqo-empty-review-card i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: rgba(15, 118, 110, 0.1);
    color: var(--sqo-oasis);
    font-size: 20px;
}

.sqo-detail-review-form {
    max-width: none;
    margin: 0;
}

.sqo-compact-heading {
    margin-bottom: 22px;
    text-align: left;
}

.sqo-compact-heading h2 {
    margin: 12px 0 8px;
    color: var(--sqo-ink);
    font-size: 36px;
    font-weight: 950;
    line-height: 1.08;
}

.sqo-file-field {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    margin: 0 0 14px;
    border: 1px solid rgba(21, 23, 19, 0.14);
    border-radius: 8px;
    background: #fff;
    color: var(--sqo-ink);
    font-weight: 850;
    cursor: pointer;
    overflow: hidden;
}

.sqo-file-field input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.sqo-footer .footer_social_item {
    display: block;
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    text-align: left !important;
}

.sqo-footer .footer_social_item:hover {
    background: transparent !important;
}

.sqo-footer .footer_social_item a {
    display: grid !important;
    place-items: center !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: 42px !important;
    height: 42px !important;
    line-height: 1 !important;
    font-size: 16px;
}

.sqo-footer .footer_social_item a i {
    display: block;
    position: static !important;
    top: auto !important;
    transform: none !important;
    line-height: 1;
    color: inherit !important;
    font-size: 16px !important;
}

@media (max-width: 1199px) {
    .sqo-page-hero-content h1 {
        font-size: 58px;
    }

    .sqo-tour-list-card {
        grid-template-columns: 300px minmax(0, 1fr);
    }
}

@media (max-width: 991px) {
    .sqo-page-hero {
        min-height: 600px;
    }

    .sqo-page-hero-content {
        padding-top: 140px;
    }

    .sqo-page-hero-content h1 {
        font-size: 48px;
    }

    .sqo-contact-layout,
    .sqo-detail-review-layout,
    .sqo-tour-list-card {
        grid-template-columns: 1fr;
    }

    .sqo-tour-list-media,
    .sqo-tour-list-media img {
        min-height: 280px;
    }

    .sqo-about-proof-grid,
    .sqo-value-grid,
    .sqo-detail-itinerary {
        grid-template-columns: 1fr;
    }

    .sqo-route-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .sqo-page-hero {
        min-height: 560px;
    }

    .sqo-page-hero-content h1,
    .sqo-about-copy h2,
    .sqo-contact-side h2,
    .sqo-route-panel h2 {
        font-size: 38px;
    }

    .sqo-contact-form-panel,
    .sqo-contact-side,
    .sqo-contact-card,
    .sqo-route-panel,
    .sqo-detail-review-form {
        padding: 22px !important;
    }

    .sqo-form-grid {
        grid-template-columns: 1fr;
    }

    .sqo-form-actions {
        grid-template-columns: 1fr;
    }

    .sqo-tour-list-content {
        padding: 24px;
    }

    .sqo-tour-list-actions,
    .sqo-page-hero-actions {
        flex-direction: column;
    }

    .sqo-tour-list-actions .sqo-button,
    .sqo-page-hero-actions .sqo-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal-up,
    .sqo-hero-bg,
    .sqo-site a,
    .sqo-button,
    .sqo-tour-card,
    .sqo-latest-card,
    .sqo-testimonial-card,
    .sqo-detail-booking-card,
    .sqo-review-card,
    .sqo-chat-panel {
        transition: none !important;
        animation: none !important;
    }
}

@media (max-width: 1199px) {
    .sqo-hero-copy h1 {
        font-size: 66px !important;
    }

    .sqo-hero-content {
        grid-template-columns: 1fr 300px;
    }
}

@media (max-width: 991px) {
    .sqo-header {
        top: 12px;
    }

    .sqo-nav-inner {
        min-height: 68px;
    }

    .sqo-nav-links,
    .sqo-nav-cta {
        display: none;
    }

    .sqo-menu-button {
        display: block;
    }

    .sqo-brand img {
        width: 50px;
        height: 50px;
    }

    .sqo-hero-slider,
    .sqo-hero-slider .home_slider,
    .sqo-hero-slider .owl-stage-outer,
    .sqo-hero-slider .owl-stage,
    .sqo-hero-slider .owl-item,
    .sqo-hero-slide {
        min-height: 760px;
    }

    .sqo-hero-content {
        grid-template-columns: 1fr;
        align-items: center;
        padding: 140px 0 230px;
    }

    .sqo-hero-copy h1 {
        font-size: 56px !important;
    }

    .sqo-hero-card {
        max-width: 420px;
    }

    .sqo-hero-bottom {
        grid-template-columns: 1fr;
        bottom: 18px;
    }

    .sqo-hero-stat {
        border-right: 0;
        border-bottom: 1px solid var(--sqo-white-line);
    }

    .sqo-hero-stat:last-child {
        border-bottom: 0;
    }

    .sqo-hero-dots {
        right: 24px;
        bottom: 180px;
    }

    .sqo-section {
        padding: 76px 0;
    }

    .sqo-section-heading h2,
    .sqo-split-heading h2,
    .sqo-contact-copy h2 {
        font-size: 34px;
    }

    .sqo-split-heading,
    .sqo-footer-cta,
    .sqo-copyright-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .sqo-feature-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .sqo-video-card,
    .sqo-latest-card {
        grid-template-columns: 1fr;
    }

    .sqo-video-card {
        min-height: auto;
    }

    .sqo-video-card video {
        max-height: 460px;
    }

    .sqo-contact-copy {
        margin-bottom: 34px;
        padding-right: 0;
    }

    .sqo-detail-hero {
        min-height: 640px;
    }

    .sqo-detail-hero-content h1 {
        font-size: 54px;
    }

    .sqo-detail-stats,
    .sqo-detail-trust-grid,
    .sqo-review-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sqo-detail-stats div:nth-child(2) {
        border-right: 0;
    }

    .sqo-detail-stats div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--sqo-white-line);
    }

    .sqo-detail-booking-card {
        position: relative;
        top: auto;
        margin-top: 34px;
    }
}

@media (max-width: 767px) {
    .sqo-nav-inner {
        width: calc(100% - 24px);
        margin: 0 auto;
    }

    .sqo-brand span {
        display: none;
    }

    .sqo-hero,
    .sqo-hero-slider,
    .sqo-hero-slider .home_slider,
    .sqo-hero-slider .owl-stage-outer,
    .sqo-hero-slider .owl-stage,
    .sqo-hero-slider .owl-item,
    .sqo-hero-slide {
        min-height: 720px !important;
    }

    .sqo-hero-content {
        width: calc(100% - 32px);
        padding-top: 118px;
    }

    .sqo-hero-copy h1 {
        font-size: 44px !important;
    }

    .sqo-hero-copy p {
        font-size: 16px;
    }

    .sqo-hero-card {
        display: none;
    }

    .sqo-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .sqo-hero-bottom {
        width: calc(100% - 32px);
    }

    .sqo-slider-arrow {
        display: none !important;
    }

    .sqo-hero-dots {
        display: none;
    }

    .sqo-section-heading h2,
    .sqo-split-heading h2,
    .sqo-contact-copy h2 {
        font-size: 30px;
    }

    .sqo-feature-strip,
    .sqo-form-grid {
        grid-template-columns: 1fr;
    }

    .sqo-video-shell,
    .sqo-testimonial-shell {
        padding: 0;
    }

    .sqo-video-card,
    .sqo-footer-cta,
    .sqo-contact-card {
        padding: 22px !important;
    }

    .sqo-testimonial-card {
        padding: 0 !important;
    }

    .sqo-video-copy h3 {
        font-size: 28px;
    }

    .sqo-site .home_title {
        font-size: 42px;
    }

    .sqo-site .home:not(.sqo-hero) {
        height: 360px !important;
        min-height: 360px !important;
    }

    .sqo-chatbot {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-button {
        right: 86px !important;
        bottom: 18px !important;
        width: 54px !important;
        height: 54px !important;
    }

    .sqo-testimonial-media {
        height: 190px;
    }

    .sqo-testimonial-body {
        padding: 24px;
    }

    .sqo-detail-hero {
        min-height: 590px;
    }

    .sqo-detail-hero-content {
        padding: 128px 0 80px;
    }

    .sqo-detail-hero-content h1 {
        font-size: 40px;
    }

    .sqo-detail-actions,
    .sqo-detail-booking-actions,
    .sqo-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .sqo-detail-stats,
    .sqo-detail-trust-grid,
    .sqo-review-grid,
    .sqo-detail-gallery-grid {
        grid-template-columns: 1fr;
    }

    .sqo-detail-stats div {
        border-right: 0 !important;
        border-bottom: 1px solid var(--sqo-white-line);
    }

    .sqo-detail-stats div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 480px) {
    .sqo-hero-copy h1 {
        font-size: 38px !important;
    }

    .sqo-hero-bottom {
        display: none;
    }

    .sqo-hero,
    .sqo-hero-slider,
    .sqo-hero-slider .home_slider,
    .sqo-hero-slider .owl-stage-outer,
    .sqo-hero-slider .owl-stage,
    .sqo-hero-slider .owl-item,
    .sqo-hero-slide {
        min-height: 650px !important;
    }

    .sqo-hero-content {
        padding-bottom: 80px;
    }

    .sqo-chat-panel {
        right: -16px;
        width: calc(100vw - 20px);
    }
}
