:root {
    --ca-ink: #24343d;
    --ca-muted: #687982;
    --ca-navy: #17324d;
    --ca-navy-deep: #102536;
    --ca-teal: #3f777b;
    --ca-teal-soft: #dce9e7;
    --ca-accent: #c77855;
    --ca-accent-dark: #a95e40;
    --ca-surface: #ffffff;
    --ca-background: #f4f6f5;
    --ca-border: #dfe6e4;
    --ca-radius-sm: 10px;
    --ca-radius: 18px;
    --ca-shadow: 0 12px 35px rgba(26, 49, 61, .10);
    --ca-shadow-hover: 0 18px 45px rgba(26, 49, 61, .16);
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--ca-background);
    color: var(--ca-ink);
    font-family: "Segoe UI", "TitilliumWeb-Regular", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--ca-navy-deep);
    font-family: "Segoe UI", "TitilliumWeb-SemiBold", Arial, sans-serif;
    font-weight: 650;
    letter-spacing: -.02em;
}

a, a:hover {
    color: var(--ca-teal);
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 3px solid rgba(63, 119, 123, .28);
    outline-offset: 2px;
}

.container {
    max-width: 1180px;
}

.header-top {
    background: rgba(16, 37, 54, .82);
    border-bottom: 1px solid rgba(255, 255, 255, .12) !important;
    padding: 7px 0;
    backdrop-filter: blur(12px);
}

.header-top-content,
.header-top-content a {
    color: rgba(255, 255, 255, .88);
    font-size: 14px;
}

.header-top-content i,
.header-top-content a:hover {
    color: #e8b59f;
}

.header-bottom {
    background: rgba(16, 37, 54, .70);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding: 12px 0;
    backdrop-filter: blur(14px);
}

.header-bottom.sticky {
    background: rgba(16, 37, 54, .96);
    border-bottom: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .16);
    padding: 8px 0;
}

.site-logo {
    height: auto;
    max-height: 52px;
    width: 126px;
}

.header-bottom li {
    margin-right: 30px;
}

.header-bottom li a {
    color: rgba(255, 255, 255, .90);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .04em;
    padding: 10px 0;
    position: relative;
}

.header-bottom li a::after {
    background: #e8b59f;
    border-radius: 2px;
    bottom: 2px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%) scaleX(0);
    transition: transform .25s ease;
    width: 24px;
}

.header-bottom li.active > a,
.header-bottom li a:hover {
    color: #ffffff;
}

.header-bottom li.active > a::after,
.header-bottom li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.top-area::before,
.breadcrumb-area::before {
    background: linear-gradient(110deg, rgba(11, 31, 45, .84), rgba(24, 55, 71, .54));
    opacity: 1;
}

.hero-area {
    min-height: 510px;
}

.hero-area-content {
    padding: 185px 0 105px;
}

.hero-area-content h1 {
    font-size: clamp(42px, 5vw, 66px);
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.08;
    margin: 0 auto;
    max-width: 900px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .28);
}

.hero-area-content h2 {
    color: rgba(255, 255, 255, .84);
    font-size: clamp(19px, 2.2vw, 28px);
    font-weight: 400;
    letter-spacing: 0;
    margin: 22px 0 0;
}

.hero-area-content h1:hover {
    color: #ffffff;
}

.vegas-timer-progress {
    background: var(--ca-accent);
}

.theme-btn,
.theme-btn6,
.contact-us-area .theme-btn,
.single-post .theme-btn {
    background: var(--ca-accent);
    border: 1px solid var(--ca-accent) !important;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(199, 120, 85, .22);
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: .02em;
    padding: 12px 22px;
    text-transform: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.theme-btn:hover,
.theme-btn6:hover,
.contact-us-area .theme-btn:hover,
.single-post .theme-btn:hover {
    background: var(--ca-accent-dark);
    border-color: var(--ca-accent-dark) !important;
    box-shadow: 0 12px 28px rgba(169, 94, 64, .25);
    color: #ffffff !important;
    transform: translateY(-2px);
}

.theme-btn3 {
    background: var(--ca-navy);
    border-color: var(--ca-navy) !important;
    box-shadow: none;
}

.mt-20 .theme-btn {
    border-radius: 999px;
    padding: 13px 28px;
}

.nav.nav-tabs {
    align-items: center;
    background: #e8edeb;
    border-radius: 14px;
    display: flex;
    gap: 5px;
    margin: 42px 0 0;
    padding: 5px;
}

.nav-tabs li {
    flex: 1;
    text-align: center;
}

.nav-tabs li a {
    background: transparent;
    border: 0;
    border-radius: 10px;
    color: var(--ca-muted);
    display: block;
    font-size: 14px;
    font-weight: 650;
    padding: 11px 16px;
    text-transform: none;
}

.nav-tabs li a.active,
.nav-tabs li a:hover {
    background: var(--ca-surface);
    box-shadow: 0 4px 14px rgba(26, 49, 61, .09);
    color: var(--ca-navy);
}

.tab-content {
    background: var(--ca-surface);
    border: 1px solid var(--ca-border);
    border-radius: var(--ca-radius);
    box-shadow: var(--ca-shadow);
    padding: 34px;
}

select,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="search"],
input[type="password"],
textarea {
    background: var(--ca-surface);
    border: 1px solid #cfd9d6;
    border-radius: var(--ca-radius-sm);
    color: var(--ca-ink);
    min-height: 48px;
    padding: 11px 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

select:focus,
input:focus,
textarea:focus {
    border: 1px solid var(--ca-teal);
    box-shadow: 0 0 0 4px rgba(63, 119, 123, .12);
}

.single-feature {
    background: var(--ca-surface);
    border: 1px solid var(--ca-border);
    border-radius: var(--ca-radius);
    box-shadow: var(--ca-shadow);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.single-feature:hover {
    box-shadow: var(--ca-shadow-hover);
    transform: translateY(-5px);
}

.feature-image {
    background: #e7ecea;
    overflow: hidden;
}

.feature-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%;
}

.single-feature:hover .feature-image img {
    transform: scale(1.025);
}

.feature-overlay {
    background: linear-gradient(to top, rgba(16, 37, 54, .52), rgba(16, 37, 54, .08));
}

.feature-overlay a {
    background: rgba(255, 255, 255, .92);
    border: 0;
    color: var(--ca-navy);
}

.feature-middle {
    background: #f7f9f8;
    border: 0;
    border-bottom: 1px solid var(--ca-border);
    display: flex;
    gap: 8px;
    padding: 11px 14px;
}

.feature-middle a {
    color: var(--ca-muted);
    float: none;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 33.333% !important;
}

.feature-middle a i {
    color: var(--ca-teal);
}

.feature-bottom {
    border: 0;
    padding: 17px 15px 13px;
}

.feature-bottom h5 {
    color: var(--ca-navy);
    font-size: 16px;
}

.single-feature > div:last-child {
    padding: 0 15px 16px;
}

.single-feature .theme-btn3 {
    background: transparent;
    border: 0 !important;
    box-shadow: none;
    color: var(--ca-accent-dark) !important;
    font-size: 19px;
    padding: 0;
}

.list-area {
    background: var(--ca-background);
}

.sidebar {
    padding-left: 0;
}

.search_title {
    background: var(--ca-navy);
    border: 0;
    border-radius: var(--ca-radius) var(--ca-radius) 0 0;
    color: #ffffff;
    font-size: 17px;
    letter-spacing: .01em;
    padding: 16px;
    text-transform: none;
}

.list-sidebar {
    background: var(--ca-surface);
    border: 1px solid var(--ca-border);
    border-radius: 0 0 var(--ca-radius) var(--ca-radius);
    box-shadow: var(--ca-shadow);
    padding: 10px 18px 22px;
}

.list-sidebar input,
.list-sidebar select {
    border: 1px solid #d4ddda;
    margin: 12px 0 0;
}

.single-post.listing-post {
    border: 1px solid var(--ca-border);
    border-radius: var(--ca-radius);
    box-shadow: var(--ca-shadow);
    font-size: 14px;
    overflow: hidden;
    padding: 18px;
}

.single-post.listing-post h4.post-title::before,
.single-post.listing-post h4.post-title::after {
    background: var(--ca-accent);
}

.stm-filter-chosen-units-list li {
    background: var(--ca-teal-soft);
    border-radius: 999px !important;
    box-shadow: none !important;
    color: var(--ca-navy) !important;
    padding: 7px 38px 7px 14px !important;
}

.stm-filter-chosen-units-list li button {
    color: var(--ca-teal);
}

.bottoniera-view-type {
    color: var(--ca-teal);
}

.breadcrumb-area {
    background-attachment: scroll;
    padding: 155px 0 64px;
}

.breadcrumb-area h2 {
    font-size: clamp(30px, 4vw, 44px);
}

.sideDesc {
    background: var(--ca-surface);
    border: 1px solid var(--ca-border);
    border-radius: var(--ca-radius);
    box-shadow: var(--ca-shadow);
    overflow: hidden;
}

.head,
.head2 {
    background: var(--ca-navy);
    color: #ffffff;
    letter-spacing: .04em;
}

.label {
    color: var(--ca-teal);
}

.contact-us-area {
    background: var(--ca-surface);
    border-radius: var(--ca-radius);
}

.footer {
    background: var(--ca-navy-deep);
    color: rgba(255, 255, 255, .78);
    padding-top: 35px;
}

.footer::before {
    display: none;
}

.footer h4.widget-title {
    color: #ffffff;
    font-size: 18px;
    letter-spacing: .01em;
    text-transform: none;
}

.widget-social-icons a {
    background: var(--ca-teal);
    border: 0;
}

.widget-social-icons a:hover {
    background: var(--ca-accent);
    border: 0;
}

.widget li i {
    color: #e8b59f;
}

.map-responsive iframe {
    border: 0 !important;
    border-radius: 14px;
    min-height: 260px;
}

.copyright {
    background: #0b1c29;
    border-top: 1px solid rgba(255, 255, 255, .10);
    margin-top: 35px;
    padding: 15px 0;
}

.scrollToTop {
    background: var(--ca-teal);
    border-radius: 50%;
    box-shadow: var(--ca-shadow);
}

.swal2-container.swal2-shown {
    background: rgba(16, 37, 54, .50) !important;
    backdrop-filter: blur(3px);
}

.swal2-popup {
    border-radius: 20px !important;
    box-shadow: 0 24px 70px rgba(9, 29, 42, .24) !important;
    max-width: 620px !important;
    padding: 28px !important;
}

.swal2-title {
    color: var(--ca-navy) !important;
    font-size: 26px !important;
}

.swal2-confirm {
    background: var(--ca-teal) !important;
    border: 0 !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    min-width: 110px;
    padding: 11px 20px !important;
}

@media only screen and (max-width: 991px) {
    .header-bottom li {
        margin-right: 12px;
    }

    .tab-content {
        padding: 26px;
    }

    .sidebar {
        margin: 0 auto 28px;
        max-width: none;
    }

    .single-post.listing-post {
        max-width: none;
    }

    .footer .widget {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .header-bottom {
        padding: 9px 0;
    }

    .site-logo {
        max-height: 46px;
        width: 110px;
    }

    .slicknav_btn {
        background: rgba(255, 255, 255, .10);
        border-radius: 10px;
        padding: 10px;
    }

    ul.slicknav_nav {
        background: rgba(16, 37, 54, .98);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 12px;
        box-shadow: var(--ca-shadow-hover);
        min-width: 210px;
        padding: 14px 18px;
    }

    .slicknav_nav a {
        border-radius: 8px;
        padding: 9px 6px;
    }

    .hero-area {
        min-height: 420px;
        padding: 0;
    }

    .hero-area-content {
        padding: 150px 0 65px !important;
    }

    .hero-area-content h1 {
        font-size: clamp(30px, 9vw, 42px);
    }

    .hero-area-content h2 {
        font-size: 18px;
    }

    .nav.nav-tabs {
        display: block;
        margin-top: 30px;
        padding: 6px;
    }

    .nav.nav-tabs li {
        margin-bottom: 3px;
        width: 100%;
    }

    .tab-content {
        border-radius: 14px;
        padding: 18px !important;
    }

    .theme-btn,
    .theme-btn6 {
        min-height: 44px;
        padding: 10px 18px;
    }

    .pulsanti {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-left: 0;
        margin-right: 0;
    }

    .pulsanti > [class*="col-"] {
        padding-left: 0;
        padding-right: 0;
        text-align: center;
        width: 100%;
    }

    .pulsanti .theme-btn,
    .pulsanti .fb-share-button {
        display: inline-flex;
        float: none !important;
        justify-content: center;
        margin: 0 !important;
    }

    .feature-middle {
        gap: 4px;
        padding: 10px;
    }

    .single-feature,
    .single-post {
        max-width: 430px;
    }

    .breadcrumb-area {
        padding: 130px 0 45px;
    }

    .footer {
        padding-top: 25px;
    }

    .widget-get-in-touch li {
        align-items: flex-start;
        display: flex;
        justify-content: center;
        text-align: left;
    }

    .swal2-popup {
        margin: 16px !important;
        padding: 22px 18px !important;
        width: calc(100% - 32px) !important;
    }
}

@media only screen and (max-width: 420px) {
    body {
        font-size: 15px;
    }

    .hero-area-content {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }

    .feature-middle a {
        font-size: 11px;
    }

    .single-post.listing-post {
        padding: 13px;
    }
}

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