.dlt-hero,
.dlt-hero * {
    box-sizing: border-box;
}

.dlt-hero {
    --dlt-hero-accent: var(--dlt-global-primary, #0EA5E9);
    --dlt-trust-bar-bg: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.08));
    --dlt-trust-item-bg: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.07));
    position: relative;
    width: 100%;
    min-height: 680px;
    overflow: hidden;
    isolation: isolate;
    color: #ffffff;
    background: #071120;
}

.dlt-hero__bg,
.dlt-hero__bg-layer,
.dlt-hero__overlay,
.dlt-hero__shape {
    position: absolute;
    inset: 0;
}

.dlt-hero__bg {
    z-index: -4;
    background: radial-gradient(circle at 20% 20%, rgba(var(--dlt-global-primary-rgb, 14,165,233), 0.36), transparent 32%), linear-gradient(135deg, #071120 0%, #16444f 48%, #0c1b2e 100%);
}

.dlt-hero__bg-layer {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1200ms ease, transform 6500ms ease;
    will-change: opacity, transform;
}

.dlt-hero__bg-layer.is-active {
    opacity: 1;
    transform: scale(1.03);
}

.dlt-hero--fade-zoom .dlt-hero__bg-layer.is-active,
.dlt-hero__bg-layer.is-initial-zoom {
    animation: dltHeroFadeZoom 6500ms ease-out both;
}

@keyframes dltHeroFadeZoom {
    from {
        opacity: 0;
        transform: scale(1.10);
        filter: saturate(0.92) blur(1.5px);
    }
    18% {
        opacity: 1;
        filter: saturate(1) blur(0);
    }
    to {
        opacity: 1;
        transform: scale(1.03);
        filter: saturate(1) blur(0);
    }
}

.dlt-hero--fade-only .dlt-hero__bg-layer {
    transform: scale(1);
    transition: opacity 1200ms ease;
}

.dlt-hero--fade-only .dlt-hero__bg-layer.is-active {
    transform: scale(1);
    animation: none;
}

.dlt-hero--soft-slide .dlt-hero__bg-layer {
    transform: translateX(24px) scale(1.04);
    transition: opacity 1200ms ease, transform 5200ms ease;
}

.dlt-hero--soft-slide .dlt-hero__bg-layer.is-active {
    transform: translateX(0) scale(1.02);
    animation: none;
}

.dlt-hero__overlay {
    z-index: -3;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.12) 100%);
}

.dlt-hero__shape {
    z-index: -2;
    pointer-events: none;
}

.dlt-hero__shape--one {
    width: 420px;
    height: 420px;
    left: -160px;
    top: 18%;
    right: auto;
    bottom: auto;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(var(--dlt-global-primary-rgb, 14,165,233), 0.38), transparent 68%);
    filter: blur(16px);
    opacity: 0.7;
}

.dlt-hero__shape--two {
    width: 360px;
    height: 360px;
    right: -140px;
    bottom: 8%;
    left: auto;
    top: auto;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16), transparent 68%);
    filter: blur(22px);
    opacity: 0.8;
}

.dlt-hero__container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    min-height: inherit;
    margin: 0 auto;
    padding: 110px 24px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dlt-hero__content {
    max-width: 650px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.dlt-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    text-shadow: 0 2px 18px rgba(0,0,0,0.25);
}

.dlt-hero__eyebrow span {
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--dlt-hero-accent);
    box-shadow: 0 0 20px rgba(var(--dlt-global-primary-rgb, 14,165,233), 0.6);
}

.dlt-hero__title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 5.7vw, 78px);
    font-weight: 900;
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-shadow: 0 12px 38px rgba(0, 0, 0, 0.34);
}

.dlt-hero__description {
    max-width: 560px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.7;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.32);
}

.dlt-hero__buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.dlt-hero__button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transform: translateZ(0);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.dlt-hero__button::before {
    content: "";
    position: absolute;
    inset: -42% -28%;
    background: linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.40) 50%, transparent 72%);
    transform: translateX(-78%) rotate(8deg);
    transition: transform 0.58s ease;
    pointer-events: none;
}

.dlt-hero__button-icon,
.dlt-hero__button-text {
    position: relative;
    z-index: 1;
}

.dlt-hero__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.dlt-hero__button-icon svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
}

.dlt-hero__button--primary {
    background: var(--dlt-hero-accent);
    color: #ffffff;
    box-shadow: 0 18px 38px rgba(var(--dlt-global-primary-rgb, 14,165,233), 0.32);
}

.dlt-hero__button--secondary {
    background: #ffffff;
    color: #111111;
    box-shadow: 0 18px 38px rgba(255, 255, 255, 0.18);
}

.dlt-hero__button:hover,
.dlt-hero__button:focus {
    transform: translateY(-2px) scale(1.015);
    text-decoration: none;
}

.dlt-hero__button:hover::before,
.dlt-hero__button:focus::before {
    transform: translateX(78%) rotate(8deg);
}

.dlt-hero__button:hover .dlt-hero__button-icon,
.dlt-hero__button:focus .dlt-hero__button-icon {
    transform: translateX(3px) rotate(-8deg);
}

.dlt-hero__button--primary:hover,
.dlt-hero__button--primary:focus {
    color: #ffffff;
    background: var(--dlt-global-primary-dark, #0284C7);
    box-shadow: 0 22px 44px rgba(var(--dlt-global-primary-rgb, 14,165,233), 0.42);
}

.dlt-hero__button--secondary:hover,
.dlt-hero__button--secondary:focus {
    color: #111111;
    background: #f6f6f6;
    box-shadow: 0 22px 44px rgba(255, 255, 255, 0.24);
}

.dlt-hero__trust {
    width: 100%;
    margin-top: 72px;
    padding: 10px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: var(--dlt-trust-bar-bg) !important;
    -webkit-backdrop-filter: blur(24px) saturate(1.28);
    backdrop-filter: blur(24px) saturate(1.28);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.dlt-hero__trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.dlt-hero__trust-item {
    position: relative;
    min-width: 0;
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 12px 16px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: var(--dlt-trust-item-bg) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    backdrop-filter: blur(18px) saturate(1.25);
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 12px 34px rgba(5, 12, 24, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.dlt-hero__trust-item::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.16) 48%, transparent 100%);
    transform: translateX(-110%);
    transition: transform 0.58s ease;
}

a.dlt-hero__trust-item:hover,
a.dlt-hero__trust-item:focus {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.20), 0 18px 42px rgba(5, 12, 24, 0.18);
    text-decoration: none;
}

a.dlt-hero__trust-item:hover::before,
a.dlt-hero__trust-item:focus::before {
    transform: translateX(110%);
}

.dlt-hero__trust-image {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    min-width: 56px;
    height: 56px;
}

.dlt-hero__trust-image img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    border-radius: 0;
}

.dlt-hero__trust-item--tripadvisor-travellers {
    min-height: 98px;
}

.dlt-hero__trust-item--tripadvisor-travellers .dlt-hero__trust-image {
    width: 74px;
    min-width: 74px;
    height: 88px;
}

.dlt-hero__trust-item--tripadvisor-travellers .dlt-hero__trust-image img {
    max-width: 74px;
    max-height: 88px;
    object-fit: contain;
    object-position: center center;
}

.dlt-hero__trust-item--google-reviews .dlt-hero__trust-image img {
    max-width: 52px;
    max-height: 52px;
}

.dlt-hero__trust-item--tripadvisor .dlt-hero__trust-image img {
    max-width: 50px;
    max-height: 50px;
}

.dlt-hero__trust-item--sltda-licensed-travel-agent .dlt-hero__trust-image img {
    max-width: 56px;
    max-height: 56px;
}

.dlt-hero__trust-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.dlt-hero__trust-title {
    display: block;
    max-width: 100%;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    word-break: break-word;
    text-shadow: 0 7px 20px rgba(0, 0, 0, 0.28);
}

.dlt-hero__trust-subtitle {
    display: block;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.84);
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    word-break: break-word;
    text-shadow: 0 7px 20px rgba(0, 0, 0, 0.26);
}

.dlt-hero__rating-value {
    display: inline-block;
    margin-right: 4px;
    color: #ffffff;
    font-weight: 800;
    white-space: nowrap;
}

.dlt-hero__rating-stars {
    display: inline-block;
    margin-left: 3px;
    color: #fbbc05;
    letter-spacing: 0.5px;
    font-size: 0.95em;
    white-space: nowrap;
}

.dlt-hero__trust-item--tripadvisor .dlt-hero__rating-stars {
    color: #00D36F;
}

.dlt-hero__trust-item--tripadvisor .dlt-hero__trust-copy {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.dlt-hero__trust-item--tripadvisor .dlt-hero__trust-title,
.dlt-hero__trust-item--tripadvisor .dlt-hero__trust-subtitle {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}


@media (max-width: 1200px) {
    .dlt-hero__container {
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .dlt-hero__trust-grid {
        grid-template-columns: repeat(5, minmax(145px, 1fr));
    }

    .dlt-hero__trust-item {
        padding: 9px 10px;
        gap: 10px;
    }
}

@media (max-width: 1024px) {
    .dlt-hero {
        min-height: 620px;
    }

    .dlt-hero__container {
        padding-top: 92px;
        padding-bottom: 28px;
    }

    .dlt-hero__title {
        font-size: clamp(38px, 8vw, 64px);
        letter-spacing: -0.045em;
    }

    .dlt-hero__description {
        font-size: 17px;
    }

    .dlt-hero__trust {
        margin-top: 54px;
    }

    .dlt-hero__trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dlt-hero__trust-item:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .dlt-hero {
        min-height: auto;
    }

    .dlt-hero__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.72) 100%);
    }

    .dlt-hero__container {
        min-height: 640px;
        padding: 84px 16px 22px;
        justify-content: center;
    }

    .dlt-hero__content {
        max-width: 100%;
    }

    .dlt-hero__eyebrow {
        margin-bottom: 14px;
        font-size: 12.5px;
        letter-spacing: 0.04em;
    }

    .dlt-hero__eyebrow span {
        width: 26px;
    }

    .dlt-hero__title {
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1.02;
        letter-spacing: -0.04em;
    }

    .dlt-hero__description {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.65;
    }

    .dlt-hero__buttons {
        width: 100%;
        margin-top: 26px;
        gap: 10px;
    }

    .dlt-hero__button {
        width: 100%;
        min-height: 50px;
        padding: 0 18px;
    }

    .dlt-hero__trust {
        margin-top: 36px;
        padding: 8px;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(34, 41, 52, 0.52), rgba(255, 255, 255, 0.10)) !important;
        -webkit-backdrop-filter: blur(18px) saturate(1.15) !important;
        backdrop-filter: blur(18px) saturate(1.15) !important;
    }

    .dlt-hero__trust-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .dlt-hero__trust-item {
        min-height: 68px;
        padding: 9px 11px;
        border-radius: 15px;
        background: linear-gradient(135deg, rgba(48, 55, 66, 0.66), rgba(255, 255, 255, 0.12)) !important;
        -webkit-backdrop-filter: blur(18px) saturate(1.18) !important;
        backdrop-filter: blur(18px) saturate(1.18) !important;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 26px rgba(5, 12, 24, 0.18) !important;
        border: 1px solid rgba(255, 255, 255, 0.20) !important;
    }

    .dlt-hero__trust-item::before {
        opacity: 0.55;
    }

    .dlt-hero__trust-image {
        width: 44px;
        min-width: 44px;
        height: 44px;
    }

    .dlt-hero__trust-image img {
        max-height: 46px;
    }
}

@media (max-width: 420px) {
    .dlt-hero__container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dlt-hero__trust-image img {
        max-height: 44px;
    }
}
