:root {
    --PC500: #070707;
    --PC500-RGB: 7, 7, 7;
    --PC400: #cfa44f;
    --PC300: #e2bd77;
    --LN0: #ffffff;
    --LN10: #f2f2f2;
    --DN0: #000000;
    --DN0-RGB: 0, 0, 0;
    --DN20: #171717;
    --DN30: #1f1f1f;
    --DN40: #2a2a2a;
    --DN70: #5d5d5d;
    --DN90: #a9a9a9;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body.site-body {
    background: radial-gradient(circle at 10% 0%, #191919, #050505 58%);
    color: var(--LN0);
    font-family: "Red Hat Display", "Segoe UI", sans-serif;
    line-height: 1.45;
    min-height: 100vh;
}

body.site-body a {
    color: inherit;
    text-decoration: none;
}

body.site-body button,
body.site-body input,
body.site-body select,
body.site-body textarea {
    font: inherit;
}

img {
    max-width: 100%;
}

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.container-extended {
    width: min(1360px, 94%);
    margin: 0 auto;
}

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 200;
    background-color: var(--PC500);
    padding: 1rem 0;
}

.header--blurred {
    background-color: rgba(var(--DN0-RGB), 0.78);
    backdrop-filter: blur(8px);
}

.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo img {
    height: 50px;
    width: auto;
    display: block;
}

.header-logo-text {
    color: var(--PC300);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.header-desktop-nav {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    flex-wrap: wrap;
    justify-content: center;
}

.header-menu-anchor {
    color: var(--PC300);
    border: 1px solid rgba(207, 164, 79, 0.7);
    font-size: 0.86rem;
    font-weight: 700;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.header-menu-anchor:hover {
    color: #111;
    background: var(--PC300);
    border-color: var(--PC300);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.header-language-selection-current-btn,
.header-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.04);
    color: var(--LN0);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    cursor: pointer;
    transition: 0.2s ease;
}

.header-menu-button:hover,
.header-language-selection-current-btn:hover {
    border-color: var(--PC300);
    color: var(--PC300);
}

.header-cta {
    position: fixed;
    right: 42px;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 180;
}

.header-cta a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    background: rgba(var(--PC500-RGB), 0.74);
    border: 1px solid rgba(207, 164, 79, 0.75);
    color: var(--LN0);
    border-radius: 999px;
    padding: 0.4rem 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    white-space: nowrap;
    transition: 0.2s ease;
}

.header-cta a:hover {
    background: rgba(207, 164, 79, 0.95);
    border-color: rgba(207, 164, 79, 0.95);
    color: #121212;
}

body[data-rtl="true"] .header-cta {
    right: auto;
    left: 42px;
}

.navigation-overlay {
    position: fixed;
    inset: 0;
    z-index: 220;
    background: rgba(0, 0, 0, 0.72);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s ease;
}

body.menu-open .navigation-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.navigation {
    position: absolute;
    top: 0;
    right: 0;
    width: min(92vw, 420px);
    height: 100%;
    padding: 2rem 1.4rem;
    background: linear-gradient(180deg, #0f0f0f, #050505);
    border-left: 1px solid rgba(207, 164, 79, 0.34);
    transform: translateX(100%);
    transition: 0.28s ease;
    display: flex;
    flex-direction: column;
}

body[data-rtl="true"] .navigation {
    right: auto;
    left: 0;
    transform: translateX(-100%);
    border-left: none;
    border-right: 1px solid rgba(207, 164, 79, 0.34);
}

body.menu-open .navigation {
    transform: translateX(0);
}

.navigation-header {
    margin-bottom: 1.6rem;
}

.navigation-back-button {
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: var(--LN0);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}

.navigation-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.navigation-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigation-menu li + li {
    margin-top: 0.5rem;
}

.navigation-menu a {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--LN0);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 0.75rem 0.9rem;
}

.navigation-menu a:hover {
    border-color: rgba(207, 164, 79, 0.72);
    color: var(--PC300);
}

.navigation-footer {
    margin-top: 2rem;
    color: var(--DN90);
}

.hero {
    padding-top: 82px;
}

.main-slideshow {
    position: relative;
    min-height: calc(100vh - 82px);
    overflow: hidden;
}

.main-slideshow-video {
    position: absolute;
    inset: 0;
}

.main-slideshow-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-slideshow:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.76) 70%, rgba(0, 0, 0, 0.9) 100%);
}

.main-slideshow-caption {
    position: relative;
    z-index: 4;
    padding: clamp(3.5rem, 12vh, 8rem) 0 clamp(2rem, 6vh, 3.5rem);
}

.main-slideshow-caption-wrapper {
    max-width: 860px;
}

.header-title {
    margin: 0 0 0.85rem;
    font-size: clamp(2rem, 5.1vw, 4.5rem);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.header-descriptions {
    margin: 0;
    max-width: 760px;
    font-size: clamp(0.96rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
}

.plan-your-trip {
    margin-top: 1.5rem;
}

.plan-your-trip-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    padding: 0.85rem;
    border-radius: 16px;
    border: 1px solid rgba(207, 164, 79, 0.56);
    background: rgba(0, 0, 0, 0.72);
}

.plan-your-trip-filters input,
.plan-your-trip-filters select,
.plan-your-trip-filters button,
.lead-form input,
.lead-form textarea,
.lead-form button {
    width: 100%;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: #101010;
    color: var(--LN0);
    padding: 0.68rem 0.78rem;
    font-family: inherit;
}

.plan-your-trip-filters input::placeholder,
.lead-form input::placeholder,
.lead-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.plan-your-trip-filters button,
.lead-form button,
.footer-subscribe-btn {
    border: none;
    background: linear-gradient(120deg, #8d6c2b, #cea95e);
    color: #111;
    font-weight: 800;
    cursor: pointer;
    transition: filter 0.2s ease;
}

.plan-your-trip-filters button:hover,
.lead-form button:hover,
.footer-subscribe-btn:hover {
    filter: brightness(1.07);
}

.home-section {
    padding: 3.6rem 0;
}

.headline-title {
    margin-bottom: 1.2rem;
    max-width: 980px;
}

.headline-title-tag {
    margin: 0;
    font-size: clamp(1.65rem, 3.2vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 900;
}

.headline-title .desc {
    margin: 0.7rem 0 0;
    color: rgba(255, 255, 255, 0.74);
    max-width: 760px;
}

.rounded-card {
    position: relative;
    display: block;
    min-height: 330px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
}

.rounded-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rounded-card span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.88) 84%);
}

.rounded-card:hover img {
    transform: scale(1.06);
}

.list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.glass-card {
    display: block;
    color: var(--LN0);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(207, 164, 79, 0.48);
    border-radius: 16px;
    padding: 1rem;
    transition: 0.2s ease;
}

.glass-card:hover {
    border-color: var(--PC300);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.07);
}

.glass-card small {
    color: rgba(255, 255, 255, 0.62);
    display: block;
    margin-top: 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.transfer-filter-wrap {
    display: flex;
    justify-content: center;
    margin: 1.2rem 0 1.8rem;
}

.transfer-filter-form {
    width: min(840px, 100%);
    display: grid;
    grid-template-columns: 2fr 1fr auto auto;
    gap: 0.7rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(207, 164, 79, 0.36);
    border-radius: 18px;
    padding: 0.95rem;
}

.transfer-filter-form input,
.transfer-filter-form select {
    width: 100%;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: #101010;
    color: #fff;
    padding: 0.7rem 0.82rem;
    font-family: inherit;
}

.transfer-filter-form button {
    border: none;
    border-radius: 999px;
    min-height: 42px;
    padding: 0 1.2rem;
    cursor: pointer;
    font-weight: 800;
    background: linear-gradient(120deg, #8d6c2b, #cea95e);
    color: #101010;
}

.transfer-filter-reset {
    min-height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    font-weight: 700;
    font-size: 0.85rem;
}

.page-section {
    padding: 2.7rem 0 3.2rem;
}

.page-section h1 {
    margin-top: 0;
    margin-bottom: 0.6rem;
    font-size: clamp(1.7rem, 4vw, 3rem);
}

.page-section h2 {
    margin-top: 2rem;
}

.page-section article {
    color: rgba(255, 255, 255, 0.87);
}

.entity-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.listing-card {
    min-height: 320px;
}

.listing-card .listing-card-meta {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    border: 1px solid rgba(207, 164, 79, 0.7);
    background: rgba(0, 0, 0, 0.5);
    color: #f9e0a8;
    border-radius: 999px;
    padding: 0.25rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.listing-card .listing-card-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 0 1rem 1rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
}

.inner-hero {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    min-height: clamp(300px, 46vh, 460px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 1.5rem;
}

.inner-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inner-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.82));
}

.inner-hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(1rem, 4vw, 2rem);
}

.inner-hero-content h1 {
    margin: 0 0 0.55rem;
    font-size: clamp(1.8rem, 4.4vw, 3.2rem);
}

.inner-hero-content p {
    margin: 0;
    max-width: 920px;
    color: rgba(255, 255, 255, 0.87);
}

.entity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0 0 0.9rem;
}

.entity-meta span {
    border: 1px solid rgba(207, 164, 79, 0.62);
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #f4d792;
    background: rgba(0, 0, 0, 0.35);
}

.entity-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.entity-panel {
    border: 1px solid rgba(207, 164, 79, 0.38);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    padding: 1rem;
}

.entity-panel h3 {
    margin-top: 0;
}

.entity-list {
    margin: 0;
    padding-left: 1.1rem;
    display: grid;
    gap: 0.45rem;
}

body[data-rtl="true"] .entity-list {
    padding-left: 0;
    padding-right: 1.1rem;
}

.lead-form {
    display: grid;
    gap: 0.65rem;
    margin-top: 1.5rem;
    max-width: 560px;
}

.breadcrumb-wrap {
    margin-top: 82px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    font-size: 0.89rem;
    padding: 0.84rem 0;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.68);
}

.breadcrumb a:hover {
    color: var(--PC300);
}

.footer {
    background: #070707;
    border-top: 1px solid rgba(207, 164, 79, 0.42);
    margin-top: 2rem;
    padding: 3rem 0 1.1rem;
}

.footer--body {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.8fr);
    gap: 1.2rem;
    align-items: flex-start;
}

.footer--body--subscribe {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    background: #111;
    padding: 1.25rem;
}

.footer-subscribe-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
}

.footer-subscribe-desc {
    color: rgba(255, 255, 255, 0.67);
    margin: 0.55rem 0 1rem;
}

.footer-subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    padding: 0.4rem 1.1rem;
}

.footer--body--menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    color: var(--PC300);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.footer-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
}

.footer-navigation a {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 500;
}

.footer-navigation a:hover {
    color: var(--PC300);
}

.footer--copyright {
    margin-top: 1.55rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
}

.whatsapp-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 205;
    background: #25d366;
    color: #0b1f12;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 0.76rem 1.04rem;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

body[data-rtl="true"] {
    text-align: right;
}

body[data-rtl="true"] .header-main-row,
body[data-rtl="true"] .header-actions,
body[data-rtl="true"] .footer--body,
body[data-rtl="true"] .breadcrumb {
    direction: rtl;
}

body[data-rtl="true"] .navigation {
    text-align: right;
}

.text-center {
    text-align: center;
}

nav[role="navigation"] {
    margin-top: 1.4rem;
}

.pagination {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin: 2rem 0 0;
    padding: 0;
}

.page-item {
    list-style: none;
}

.page-link,
.page-item span,
.page-item a {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(207, 164, 79, 0.42);
    background: rgba(255, 255, 255, 0.045);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.3rem 0.75rem;
}

.page-item.active .page-link,
.page-item.active span {
    background: linear-gradient(120deg, #8d6c2b, #e2bd77);
    border-color: rgba(226, 189, 119, 0.95);
    color: #080808;
}

.page-item.disabled .page-link,
.page-item.disabled span {
    opacity: 0.38;
    pointer-events: none;
}

body.site-body main {
    overflow-x: clip;
}

.header {
    min-height: 82px;
    display: flex;
    align-items: center;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.header--scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(14px);
}

.header-main-row {
    min-height: 52px;
}

.header-logo-text {
    text-transform: uppercase;
}

.header-desktop-nav {
    gap: 0.2rem;
}

.header-menu-anchor {
    border-color: transparent;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    padding: 0.46rem 0.72rem;
}

.header-menu-anchor:hover {
    color: #0b0b0b;
}

.header-language-selection-current-btn,
.header-menu-button {
    min-height: 42px;
    border-color: rgba(255, 255, 255, 0.32);
    background: #050505;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.header-menu-button::before {
    content: "";
    width: 18px;
    height: 12px;
    margin-right: 0.48rem;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    box-shadow: 0 5px 0 currentColor;
}

body[data-rtl="true"] .header-menu-button::before {
    margin-right: 0;
    margin-left: 0.48rem;
}

.header-cta {
    top: 128px;
}

.header-cta a {
    min-height: 44px;
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.78);
    backdrop-filter: blur(12px);
}

.main-slideshow {
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
}

.main-slideshow-caption {
    min-height: calc(100vh - 82px);
    display: flex;
    align-items: flex-end;
}

.main-slideshow-caption-wrapper {
    padding-bottom: clamp(1rem, 5vh, 3rem);
}

.plan-your-trip-filters {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.44);
}

.plan-your-trip-filters button {
    grid-column: span 1;
}

.home-section {
    padding: clamp(3.2rem, 6vw, 5rem) 0;
}

.headline-title-tag {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.headline-title .desc {
    font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.cards-swiper {
    overflow: visible;
}

.rounded-card {
    min-height: unset;
    aspect-ratio: 16 / 10;
    border-radius: 30px;
    background: #111;
    border-color: rgba(207, 164, 79, 0.34);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.rounded-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 28%, rgba(0, 0, 0, 0.88) 100%);
    pointer-events: none;
}

.rounded-card img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.rounded-card span {
    z-index: 3;
    background: transparent;
    padding: 1.15rem 1.2rem;
    font-size: clamp(1.08rem, 1.6vw, 1.55rem);
    line-height: 1.12;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.7);
}

.featured-slider-card {
    aspect-ratio: 16 / 9;
}

.carousel-slider-item {
    aspect-ratio: 4 / 5;
    min-height: 390px;
}

.blog-slider-v2-card {
    aspect-ratio: 16 / 11;
}

.listing-card {
    min-height: 340px;
    aspect-ratio: 4 / 3.15;
}

.listing-card .listing-card-desc {
    z-index: 3;
    margin: 0;
}

.list-grid {
    gap: 1.15rem;
}

.glass-card {
    border-radius: 24px;
    padding: 1.25rem;
    min-height: 132px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018));
}

.glass-card h3,
.glass-card p {
    margin-top: 0;
}

.transfer-filter-form {
    box-shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
}

.transfer-filter-reset {
    color: rgba(255, 255, 255, 0.84);
}

.inner-hero {
    min-height: clamp(340px, 52vh, 540px);
    border-radius: 30px;
}

.footer {
    background: #000;
    border-top-color: rgba(255, 255, 255, 0.1);
    padding: clamp(3.5rem, 7vw, 6rem) 0 1.4rem;
}

.footer--body {
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.5fr);
    align-items: center;
    gap: clamp(2rem, 7vw, 7rem);
}

.footer--body--subscribe {
    border: 0;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
    padding: 1.5rem;
}

.footer--body--menu {
    align-items: center;
    text-align: center;
}

.footer-logo {
    color: #fff;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.footer-navigation ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1.3rem;
}

.footer--copyright {
    text-align: center;
}

img.is-fallback-image {
    filter: saturate(0.92) contrast(1.04);
}

@media (max-width: 1340px) {
    .header-cta {
        right: 20px;
    }

    body[data-rtl="true"] .header-cta {
        left: 20px;
    }
}

@media (max-width: 1100px) {
    .header-desktop-nav {
        display: none;
    }

    .plan-your-trip-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .list-grid,
    .entity-card-grid,
    .footer-navigation ul {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .entity-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .header-cta {
        display: none;
    }

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

    .hero {
        padding-top: 75px;
    }

    .main-slideshow {
        min-height: 82vh;
    }

    .footer--body {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 0.72rem 0;
    }

    .header-logo img {
        height: 40px;
    }

    .header-menu-button,
    .header-language-selection-current-btn {
        min-height: 34px;
        font-size: 0.7rem;
        padding: 0.4rem 0.72rem;
    }

    .main-slideshow-caption {
        padding-top: 4.2rem;
    }

    .plan-your-trip-filters {
        grid-template-columns: 1fr;
    }

    .list-grid,
    .entity-card-grid,
    .footer-navigation ul {
        grid-template-columns: 1fr;
    }

    .rounded-card {
        min-height: 280px;
    }
}

/* GoTürkiye-inspired refinement layer */
:root {
    --PC500: #000000;
    --PC500-RGB: 0, 0, 0;
}

html {
    background: #000000;
}

body.site-body {
    background: #000000;
    font-family: "Red Hat Display", "__Red_Hat_Display_38fe0e", "__Red_Hat_Display_Fallback_38fe0e", Arial, sans-serif;
}

.header,
.footer,
.breadcrumb-wrap {
    background: #000000;
}

.header-title {
    max-width: 1120px;
    font-size: clamp(3.2rem, 7.6vw, 7rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.header-descriptions {
    font-size: clamp(1.05rem, 1.45vw, 1.35rem);
    line-height: 1.45;
}

.headline-title {
    margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}

.headline-title-tag,
.page-heading h1,
.page-section > h1 {
    font-size: clamp(3rem, 5.2vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 900;
}

.headline-title .desc,
.page-section > p,
.page-heading p {
    font-size: clamp(1.05rem, 1.35vw, 1.32rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.76);
}

.language-icon {
    width: 20px;
    height: 20px;
    color: #ffffff;
    flex: 0 0 auto;
}

.header-language-selection-current-btn {
    gap: 0.42rem;
}

.home-section .cards-swiper {
    position: relative;
    padding: 0 4.4rem;
}

.home-section .swiper-slide {
    height: auto;
}

.featured-slider-card,
.carousel-slider-item,
.blog-slider-v2-card {
    aspect-ratio: 0.72;
    min-height: clamp(360px, 29vw, 520px);
    border-radius: clamp(26px, 2vw, 38px);
    border: 0;
    background: #1f1f1f;
}

.home-section .rounded-card span {
    font-size: clamp(1.55rem, 2.1vw, 2.45rem);
    line-height: 1.08;
    font-weight: 900;
    padding: clamp(1.2rem, 2vw, 1.9rem);
    max-width: 92%;
}

.home-section .rounded-card::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.82) 100%);
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 12;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.18s ease;
}

.carousel-arrow::before {
    content: "";
    width: 14px;
    height: 14px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
}

.carousel-arrow-prev {
    left: 0.7rem;
}

.carousel-arrow-prev::before {
    transform: rotate(-135deg);
    margin-left: 5px;
}

.carousel-arrow-next {
    right: 0.7rem;
}

.carousel-arrow-next::before {
    transform: rotate(45deg);
    margin-right: 5px;
}

.carousel-arrow:hover {
    background: #ffffff;
    color: #000000;
}

.carousel-arrow.swiper-button-disabled {
    opacity: 0.28;
    pointer-events: none;
}

.entity-card-grid {
    gap: clamp(1rem, 2vw, 1.5rem);
}

.entity-card-grid .listing-card {
    aspect-ratio: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    border: 0;
    border-radius: 28px;
    background: #202020;
    box-shadow: none;
    overflow: hidden;
}

.entity-card-grid .listing-card::after {
    display: none;
}

.entity-card-grid .listing-card img {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(220px, 18vw, 300px);
    flex: 0 0 auto;
    object-fit: cover;
}

.entity-card-grid .listing-card:hover img {
    transform: scale(1.04);
}

.entity-card-grid .listing-card span {
    position: static;
    background: transparent;
    color: #ffffff;
    padding: 1.1rem 1.15rem 0.45rem;
    font-size: clamp(1.25rem, 1.7vw, 1.8rem);
    line-height: 1.13;
    font-weight: 900;
    text-shadow: none;
}

.entity-card-grid .listing-card .listing-card-meta {
    position: static;
    align-self: flex-start;
    margin: 0 1.15rem 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    color: #e2bd77;
}

.entity-card-grid .listing-card .listing-card-desc {
    position: static;
    margin: 0;
    padding: 0 1.15rem 1.2rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.96rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.transfer-filter-form,
.plan-your-trip-filters {
    background: rgba(18, 18, 18, 0.88);
}

.page-heading {
    max-width: 980px;
    margin-bottom: clamp(1.6rem, 4vw, 3rem);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.7rem;
    color: #e2bd77;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
}

.contact-info-panel {
    display: grid;
    gap: 1rem;
}

.contact-info-card,
.contact-form-panel,
.contact-map {
    border-radius: 30px;
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info-card {
    padding: 1.25rem;
}

.contact-info-label {
    display: block;
    margin-bottom: 0.45rem;
    color: #e2bd77;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-info-card a,
.contact-info-card p {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.08rem, 1.6vw, 1.35rem);
    font-weight: 800;
    line-height: 1.35;
}

.contact-form-panel {
    padding: clamp(1rem, 2.5vw, 1.6rem);
}

.contact-form {
    max-width: none;
    margin: 0;
}

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

.form-grid textarea {
    grid-column: 1 / -1;
    min-height: 150px;
    resize: vertical;
}

.form-success,
.form-errors {
    border-radius: 18px;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.form-success {
    background: rgba(37, 211, 102, 0.14);
    color: #9bf0ba;
}

.form-errors {
    display: grid;
    gap: 0.3rem;
    background: rgba(255, 74, 74, 0.12);
    color: #ffb8b8;
}

.contact-map {
    margin-top: clamp(1rem, 3vw, 2rem);
    overflow: hidden;
    min-height: clamp(320px, 42vw, 520px);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
    filter: grayscale(1) invert(0.92) contrast(0.9);
}

@media (max-width: 1100px) {
    .home-section .cards-swiper {
        padding: 0 3.6rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .header-title,
    .headline-title-tag,
    .page-heading h1,
    .page-section > h1 {
        font-size: clamp(2.55rem, 12vw, 4.2rem);
    }

    .home-section .cards-swiper {
        padding: 0 2.8rem;
    }

    .featured-slider-card,
    .carousel-slider-item,
    .blog-slider-v2-card {
        min-height: 390px;
    }

    .carousel-arrow {
        width: 44px;
        height: 44px;
    }

    .entity-card-grid .listing-card img {
        height: 235px;
    }

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

@media (max-width: 480px) {
    .home-section .cards-swiper {
        padding: 0 2.2rem;
    }

    .featured-slider-card,
    .carousel-slider-item,
    .blog-slider-v2-card {
        min-height: 360px;
        border-radius: 26px;
    }

    .home-section .rounded-card span {
        font-size: 1.55rem;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
        border-width: 1.5px;
    }
}

/* Final responsive stability layer */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body.site-body,
body.site-body main {
    background: #000000;
}

.main-slideshow-video {
    background: #000000 var(--hero-poster, none) center / cover no-repeat;
}

.main-slideshow-video video {
    background: #000000 var(--hero-poster, none) center / cover no-repeat;
}

.main-slideshow-caption-wrapper {
    width: min(1180px, 100%);
    max-width: min(1180px, 100%);
}

.plan-your-trip {
    width: min(1120px, 100%);
}

.plan-your-trip-filters {
    grid-template-columns: repeat(4, minmax(180px, 1fr));
}

.plan-your-trip-filters input,
.plan-your-trip-filters select,
.plan-your-trip-filters button,
.transfer-filter-form input,
.transfer-filter-form select,
.transfer-filter-form button,
.lead-form input,
.lead-form textarea,
.lead-form button {
    min-width: 0;
}

.page-section,
.page-heading,
.entity-card-grid,
.entity-card-grid .listing-card,
.entity-card-grid .listing-card span,
.entity-card-grid .listing-card .listing-card-desc,
.contact-info-card,
.contact-info-card a,
.contact-info-card p,
.contact-form-panel,
.form-grid,
.breadcrumb {
    min-width: 0;
}

.entity-card-grid .listing-card span,
.entity-card-grid .listing-card .listing-card-desc,
.contact-info-card a,
.contact-info-card p,
.page-section > p,
.page-heading p,
.header-descriptions {
    overflow-wrap: anywhere;
}

@media (min-width: 1280px) {
    .featured-slider-card,
    .carousel-slider-item,
    .blog-slider-v2-card {
        min-height: 560px;
    }
}

@media (max-width: 1100px) {
    .plan-your-trip-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .container,
    .container-extended {
        width: 100%;
        padding-inline: 20px;
    }

    .header {
        min-height: 82px;
    }

    .header-main-row {
        gap: 0.55rem;
        min-width: 0;
    }

    .header-logo {
        min-width: 0;
    }

    .header-logo-text {
        font-size: 1.02rem;
        letter-spacing: 0.05em;
        white-space: nowrap;
    }

    .header-actions {
        flex: 0 0 auto;
        gap: 0.38rem;
    }

    .header-language-selection-current-btn {
        padding-inline: 0.68rem;
    }

    .header-menu-button {
        width: 38px;
        min-width: 38px;
        padding: 0;
        font-size: 0;
    }

    .header-menu-button::before {
        margin: 0;
    }

    body[data-rtl="true"] .header-menu-button::before {
        margin: 0;
    }

    .hero {
        padding-top: 82px;
    }

    .main-slideshow {
        min-height: auto;
        border-radius: 0 0 24px 24px;
    }

    .main-slideshow-caption {
        min-height: auto;
        align-items: flex-start;
        padding: clamp(4rem, 14vh, 6rem) 0 2.5rem;
    }

    .main-slideshow-caption-wrapper {
        padding-bottom: 0;
    }

    .header-title {
        max-width: 100%;
        font-size: clamp(3.05rem, 13vw, 3.75rem);
        line-height: 0.9;
        letter-spacing: -0.06em;
    }

    .header-descriptions {
        max-width: 100%;
        font-size: 1rem;
    }

    .plan-your-trip {
        margin-top: 1.25rem;
    }

    .plan-your-trip-filters {
        grid-template-columns: 1fr;
        border-radius: 22px;
        padding: 0.72rem;
    }

    .page-section {
        padding-top: 2.35rem;
    }

    .headline-title-tag,
    .page-heading h1,
    .page-section > h1 {
        max-width: 100%;
        font-size: clamp(2.85rem, 11.5vw, 3.35rem);
        line-height: 0.92;
        letter-spacing: -0.058em;
        overflow-wrap: anywhere;
    }

    .headline-title .desc,
    .page-section > p,
    .page-heading p {
        font-size: 1rem;
    }

    .entity-card-grid {
        width: 100%;
        grid-template-columns: 1fr;
    }

    .entity-card-grid .listing-card {
        width: 100%;
        border-radius: 28px;
    }

    .entity-card-grid .listing-card img {
        height: clamp(220px, 58vw, 270px);
    }

    .entity-card-grid .listing-card span {
        font-size: clamp(1.32rem, 6vw, 1.68rem);
    }

    .home-section .cards-swiper {
        padding: 0 2.35rem;
    }

    .featured-slider-card,
    .carousel-slider-item,
    .blog-slider-v2-card {
        min-height: 370px;
    }

    .contact-layout {
        gap: 1rem;
    }

    .contact-info-card,
    .contact-form-panel,
    .contact-map {
        border-radius: 24px;
    }

    .contact-info-card a,
    .contact-info-card p {
        font-size: 1.04rem;
    }

    .contact-form-panel {
        padding: 1rem;
    }

    .whatsapp-cta {
        right: 12px;
        bottom: 12px;
        padding: 0.65rem 0.78rem;
        font-size: 0.86rem;
    }
}

@media (max-width: 390px) {
    .container,
    .container-extended {
        padding-inline: 16px;
    }

    .header-logo-text {
        font-size: 0.92rem;
    }

    .header-language-selection-current-btn {
        min-width: 56px;
        padding-inline: 0.54rem;
    }

    .language-icon {
        width: 18px;
        height: 18px;
    }

    .header-title {
        font-size: clamp(2.72rem, 12.4vw, 3.05rem);
    }

    .headline-title-tag,
    .page-heading h1,
    .page-section > h1 {
        font-size: clamp(2.45rem, 10.6vw, 2.95rem);
    }

    .home-section .cards-swiper {
        padding: 0 1.9rem;
    }
}
