






/* ===============================
   DRIVELUX — Hero service section
================================ */

.service-hover-section {
    position: relative;
    overflow: hidden !important;
    isolation: isolate;
    background: #06080d;
}

.service-hover-section > .e-con-inner {
    position: relative;
    z-index: 3;
}

.service-hover-bg {
    position: absolute;
    inset: 0;
    z-index: 0;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    opacity: 0;
    transform: scale(1.035);

    transition:
        opacity .85s ease,
        transform 1.25s ease;

    pointer-events: none;
    will-change: opacity, transform;
}

.service-hover-bg.is-visible {
    opacity: 1;
    transform: scale(1);
}

.service-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 1;

    transition: opacity .65s ease;

    background:
    radial-gradient(
        circle at 22% 18%,
        rgba(201,155,98,.09) 0%,
        rgba(201,155,98,.035) 22%,
        rgba(201,155,98,0) 48%
    ),
    radial-gradient(
        circle at 78% 42%,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,.08) 44%,
        rgba(0,0,0,.22) 100%
    ),
    linear-gradient(
        90deg,
        rgba(9,18,30,.72) 0%,
        rgba(9,18,30,.56) 24%,
        rgba(9,18,30,.34) 46%,
        rgba(9,18,30,.14) 66%,
        rgba(9,18,30,.02) 86%
    ),
    linear-gradient(
        180deg,
        rgba(0,0,0,.10) 0%,
        rgba(0,0,0,.20) 100%
    );
}

@media (max-width: 768px) {
  .service-hover-overlay {
    background:
      radial-gradient(
        circle at 50% 18%,
        rgba(201,155,98,.09) 0%,
        rgba(201,155,98,.035) 22%,
        rgba(201,155,98,0) 48%
      ),
      radial-gradient(
        circle at 50% 82%,
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,.08) 44%,
        rgba(0,0,0,.22) 100%
      ),
      linear-gradient(
        180deg,
        rgba(9,18,30,.74) 0%,
        rgba(9,18,30,.58) 24%,
        rgba(9,18,30,.36) 46%,
        rgba(9,18,30,.16) 68%,
        rgba(9,18,30,.03) 88%
      ),
      linear-gradient(
        180deg,
        rgba(0,0,0,.12) 0%,
        rgba(0,0,0,.22) 100%
      );
  }
}

/* DRIVELUX — Cards*/

.service-hover-section .hover-card {
    --dl-card-radius: 20px;
    --dl-card-inner-radius: 14px;

    position: relative;
    overflow: hidden !important;
    isolation: isolate;
    cursor: pointer;

    border-radius: var(--dl-card-radius);
    border: 1px solid rgba(201,155,98,.32) !important;

    background-color: #07090c !important;
    background-clip: padding-box;

    transform: translate3d(0,0,0) scale(1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    -webkit-mask-image: -webkit-radial-gradient(white, black);

    box-shadow:
        0 16px 38px rgba(0,0,0,.18),
        inset 0 0 0 1px rgba(255,255,255,.025);

    transition:
        transform .55s cubic-bezier(.19,1,.22,1),
        box-shadow .55s cubic-bezier(.19,1,.22,1),
        border-color .45s ease,
        filter .45s ease;
}

.service-hover-section .hover-tours {
    --dl-card-radius: 20px 42px 20px 20px;
}

.service-hover-section .hover-mobility {
    --dl-card-radius: 20px 20px 20px 42px;
}

.service-hover-section .hover-card::before {
    content: "";
    position: absolute;
    inset: 0px;
    z-index: 0;
    pointer-events: none;

    border-radius: inherit;

    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(201,155,98,.14) 0%,
            rgba(201,155,98,.05) 26%,
            rgba(201,155,98,0) 58%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,.22) 0%,
            rgba(0,0,0,.46) 45%,
            rgba(0,0,0,.78) 100%
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,.58) 0%,
            rgba(0,0,0,.34) 48%,
            rgba(0,0,0,.18) 100%
        );

    opacity: .96;

    transform: translateZ(0);
    transition:
        opacity .45s ease,
        background .45s ease;
}

.service-hover-section .hover-card::after {
    content: "";
    position: absolute;
    inset: 11px;
    z-index: 2;
    pointer-events: none;

    border-radius: var(--dl-card-inner-radius);
    border: 1px solid rgba(201,155,98,.18);

    opacity: .55;
    transform: scale(.985);

    transition:
        opacity .5s ease,
        transform .55s cubic-bezier(.19,1,.22,1),
        border-color .5s ease;
}

.service-hover-section .hover-card > * {
    position: relative;
    z-index: 3;
}

/* Hover + JS auto active state */

.service-hover-section .hover-card:hover,
.service-hover-section .hover-card.is-active {
    transform: translate3d(0,-9px,0) scale(1.018);

    border-color: rgba(201,155,98,.78) !important;

    box-shadow:
        0 30px 70px rgba(0,0,0,.34),
        0 0 0 1px rgba(201,155,98,.14),
        inset 0 1px 0 rgba(255,255,255,.07);

    filter: saturate(1.06) contrast(1.04);
}

.service-hover-section .hover-card:hover::before,
.service-hover-section .hover-card.is-active::before {
    opacity: 1;

    background:
        radial-gradient(
            circle at 78% 18%,
            rgba(201,155,98,.24) 0%,
            rgba(201,155,98,.08) 28%,
            rgba(201,155,98,0) 60%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,.18) 0%,
            rgba(0,0,0,.48) 46%,
            rgba(0,0,0,.82) 100%
        ),
        linear-gradient(
            90deg,
            rgba(0,0,0,.64) 0%,
            rgba(0,0,0,.40) 48%,
            rgba(0,0,0,.22) 100%
        );
}

.service-hover-section .hover-card:hover::after,
.service-hover-section .hover-card.is-active::after {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(201,155,98,.42);
}


.service-hero-copy {
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .service-hover-section .hover-card:hover,
    .service-hover-section .hover-card.is-active {
        transform: translate3d(0,-4px,0) scale(1.01);
    }

    .service-hover-section .hover-card::before {
        inset: 0px;
    }

    .service-hover-section .hover-card::after {
        inset: 9px;
    }
}

/*    DRIVELUX — Card icon hover */

.service-hover-section .hover-card .elementor-widget-icon {
    transition: background-color .3s ease, border-color .3s ease;
}

.service-hover-section .hover-card .elementor-widget-icon .elementor-icon {
    color: #C99B62;
    transition: color .3s ease;
}

.service-hover-section .hover-card .elementor-widget-icon svg,
.service-hover-section .hover-card .elementor-widget-icon svg * {
    fill: currentColor !important;
}

.service-hover-section .hover-card:hover .elementor-widget-icon,
.service-hover-section .hover-card.is-active .elementor-widget-icon {
    background-color: #C99B62 !important;
}

.service-hover-section .hover-card:hover .elementor-widget-icon .elementor-icon,
.service-hover-section .hover-card.is-active .elementor-widget-icon .elementor-icon {
    color: #000000 !important;
}





















/* =========================
   DRIVELUX — premium smooth glass reveal
   ========================= */

.service-transfers-section.fx-glass {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #000000 !important;
}

.service-transfers-section.fx-glass > .e-con-inner {
    position: relative;
    z-index: 3;
}

.service-transfers-section.fx-glass::before,
.service-transfers-section.fx-glass::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

/* Background image + soft golden atmosphere */
.service-transfers-section.fx-glass::before {
    inset: -8%;
    z-index: 0;

    background:
        radial-gradient(
            circle at 28% 40%,
            rgba(224,176,122,.18) 0%,
            rgba(224,176,122,.075) 20%,
            rgba(224,176,122,0) 48%
        ),
        radial-gradient(
            circle at 72% 55%,
            rgba(201,155,98,.13) 0%,
            rgba(201,155,98,.055) 22%,
            rgba(201,155,98,0) 54%
        ),
        url("https://v2.drivelux.it/wp-content/uploads/2026/04/bg.jpg") center center / cover no-repeat;

    opacity: 0;
    transform: scale(1.055);
    filter: blur(26px) saturate(.95) brightness(.66) contrast(1.02);
    will-change: opacity, transform, filter;
}

/* Premium golden glass sweep */
.service-transfers-section.fx-glass::after {
    inset: -35% -45%;
    z-index: 1;

    background:
        linear-gradient(
            112deg,
            rgba(224,176,122,0) 0%,
            rgba(224,176,122,0) 35%,

            rgba(224,176,122,.05) 42%,
            rgba(224,176,122,.16) 47%,
            rgba(255,226,186,.34) 50%,
            rgba(224,176,122,.18) 53%,
            rgba(224,176,122,.07) 58%,

            rgba(224,176,122,0) 66%,
            rgba(224,176,122,0) 100%
        );

    opacity: 0;
    transform: translate3d(-80%, 0, 0) skewX(-10deg);
    filter: blur(26px);
    will-change: transform, opacity, filter;
    mix-blend-mode: screen;
}

/* Start animations */
.service-transfers-section.fx-glass.fx-glass-start::before {
    animation: dlxGlassImagePremium 7200ms ease-in-out forwards;
}

.service-transfers-section.fx-glass.fx-glass-start::after {
    animation: dlxGlassSweepPremium 7200ms ease-in-out forwards;
}

.service-transfers-section.fx-glass.fx-glass-start .dlx-glass-veil {
    animation: dlxGlassVeilPremium 7200ms ease-in-out forwards;
}

/* Smooth image reveal — без резких скачков */
@keyframes dlxGlassImagePremium {
    0% {
        opacity: 0;
        transform: scale(1.055);
        filter: blur(26px) saturate(.95) brightness(.66) contrast(1.02);
    }

    10% {
        opacity: .025;
        transform: scale(1.052);
        filter: blur(24px) saturate(.97) brightness(.68) contrast(1.02);
    }

    20% {
        opacity: .06;
        transform: scale(1.047);
        filter: blur(21px) saturate(1) brightness(.71) contrast(1.03);
    }

    30% {
        opacity: .105;
        transform: scale(1.040);
        filter: blur(18px) saturate(1.03) brightness(.74) contrast(1.03);
    }

    40% {
        opacity: .155;
        transform: scale(1.032);
        filter: blur(15px) saturate(1.06) brightness(.77) contrast(1.04);
    }

    50% {
        opacity: .215;
        transform: scale(1.024);
        filter: blur(12px) saturate(1.09) brightness(.80) contrast(1.05);
    }

    60% {
        opacity: .275;
        transform: scale(1.016);
        filter: blur(9px) saturate(1.12) brightness(.84) contrast(1.05);
    }

    68% {
        opacity: .34;
        transform: scale(1.010);
        filter: blur(7px) saturate(1.14) brightness(.86) contrast(1.06);
    }

    76% {
        opacity: .28;
        transform: scale(1.006);
        filter: blur(9px) saturate(1.10) brightness(.82) contrast(1.04);
    }

    84% {
        opacity: .20;
        transform: scale(1.003);
        filter: blur(13px) saturate(1.04) brightness(.74) contrast(1.03);
    }

    92% {
        opacity: .10;
        transform: scale(1.001);
        filter: blur(18px) saturate(.98) brightness(.66) contrast(1.01);
    }

    100% {
        opacity: 0;
        transform: scale(1);
        filter: blur(24px) saturate(.92) brightness(.58) contrast(1);
    }
}

/* Smooth golden light sweep */
@keyframes dlxGlassSweepPremium {
    0% {
        opacity: 0;
        transform: translate3d(-80%, 0, 0) skewX(-10deg);
        filter: blur(28px);
    }

    12% {
        opacity: .08;
    }

    22% {
        opacity: .22;
    }

    34% {
        opacity: .42;
        filter: blur(22px);
    }

    46% {
        opacity: .62;
        filter: blur(17px);
    }

    58% {
        opacity: .50;
        filter: blur(19px);
    }

    70% {
        opacity: .30;
    }

    82% {
        opacity: .14;
    }

    100% {
        opacity: 0;
        transform: translate3d(80%, 0, 0) skewX(-10deg);
        filter: blur(30px);
    }
}

/* Smooth veil — убирает ощущение мигания */
@keyframes dlxGlassVeilPremium {
    0% {
        opacity: 1;
    }

    15% {
        opacity: .98;
    }

    30% {
        opacity: .92;
    }

    45% {
        opacity: .84;
    }

    58% {
        opacity: .72;
    }

    70% {
        opacity: .78;
    }

    84% {
        opacity: .90;
    }

    100% {
        opacity: 1;
    }
}

/* Mobile — vertical premium reveal */
@media (max-width: 767px) {
    .service-transfers-section.fx-glass::before {
        inset: -10%;
        background-position: center center;
        filter: blur(24px) saturate(1.05) brightness(.74) contrast(1.04);
    }

    .service-transfers-section.fx-glass::after {
        inset: -45% -70%;

        background:
            linear-gradient(
                180deg,
                rgba(224,176,122,0) 0%,
                rgba(224,176,122,0) 32%,
                rgba(224,176,122,.07) 42%,
                rgba(255,226,186,.30) 50%,
                rgba(224,176,122,.09) 58%,
                rgba(224,176,122,0) 70%,
                rgba(224,176,122,0) 100%
            );

        filter: blur(24px);
        transform: translate3d(0, -65%, 0);
    }

    @keyframes dlxGlassSweepPremium {
        0% {
            opacity: 0;
            transform: translate3d(0, -65%, 0);
            filter: blur(30px);
        }

        14% {
            opacity: .08;
        }

        26% {
            opacity: .18;
        }

        42% {
            opacity: .34;
            filter: blur(22px);
        }

        56% {
            opacity: .28;
        }

        72% {
            opacity: .14;
        }

        100% {
            opacity: 0;
            transform: translate3d(0, 65%, 0);
            filter: blur(32px);
        }
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .service-transfers-section.fx-glass::before,
    .service-transfers-section.fx-glass::after,
    .service-transfers-section.fx-glass .dlx-glass-veil {
        animation: none !important;
    }
}


:root {
  --bg:       #ffffff;
  --bg2:      #000000;
  --bg3:      #ffffff;
  --surface:  #181510;
  --surface2: #1E1A14;
  --gold:     #C8945A;
  --gold2:    #E0B07A;
  --gold3:    #F5D5A8;
  --white:    #F4F0E8;
  --white2:   #D6CFBF;
  --muted:    #a3a3a3;
  --faint:    #5d5b58;
  --line:     rgba(200,148,90,0.14);
  --line2:    rgba(244,240,232,0.07);
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'DM Sans', sans-serif;
}


/* ─── SECTION TAG ─── */
.sec-tag {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
}
.sec-tag-n {
  font-family: var(--serif);
  font-size: 14px; font-style: italic;
  color: var(--faint);
  letter-spacing: .06em;
}
.sec-tag-rule { width: 24px; height: 1px; background: var(--gold); opacity: .6; }
.sec-tag-label {
  font-size: 12px; font-weight: 400;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold);
}


/* ───   ─── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  background: var(--bg2);
  padding: 22px 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: scroll-left 45s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.mq-item {
  display: flex; align-items: center; gap: 28px;
  padding: 0 36px;
  font-size: 11.5px; font-weight: 400;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted); white-space: nowrap;
  transition: color .3s;
}
.mq-item:hover { color: var(--white2); }
.mq-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--e-global-color-a6464f2); opacity: .5; flex-shrink: 0; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.metric-n sup {
    font-size: 18px;
    color: var(--e-global-color-a6464f2);
    vertical-align: super;
}









/* ===== ОБЩАЯ ЗОНА ===== */
.dl-popup-area,
.dl-popup-area .e-con,
.dl-popup-area .elementor-element,
.dl-popup-area .elementor-widget-container,
.dl-popup-area .elementor-widget-wrap,
.dl-popup-area .elementor-column,
.dl-popup-area .elementor-container {
    overflow: visible !important;
}

/* ===== КАЖДЫЙ БЛОК ===== */
.dl-popup-area .dl-popup-box {
    position: relative;
    z-index: 1;
    overflow: visible !important;
}

.dl-popup-area .dl-popup-box:hover {
    z-index: 9999;
}

/* ===== ВНУТРЕННЯЯ КАРТОЧКА ===== */
.dl-popup-area .dl-popup-box .elementor-icon-box-wrapper {
    position: relative;
    overflow: visible !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.dl-popup-area .dl-popup-box:hover .elementor-icon-box-wrapper {
 
    transform: translateY(-3px);
    z-index: 9999;
}

/* ===== ИКОНКА И ТАЙТЛ ВСЕГДА ВИДНЫ ===== */
.dl-popup-area .dl-popup-box .elementor-icon-box-icon {
    position: relative;
    z-index: 2;
}

.dl-popup-area .dl-popup-box .elementor-icon-box-title {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* ===== ОПИСАНИЕ КАК ВСПЛЫВАЮЩЕЕ ОКНО ===== */
/* Показываем ВВЕРХ, чтобы верхний ряд не уходил под нижний */
.dl-popup-area .dl-popup-box .elementor-icon-box-description {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: calc(100% + 14px);
    top: auto;
    margin: 0;
    padding: 16px 18px;
    background: #ffffff;
    color: #1f1f1f;
    border: 1px solid rgba(201, 155, 98, 0.22);
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    z-index: 10000;
    pointer-events: none;
    font-size: 14px;
    line-height: 1.6;
}

/* хвостик */
.dl-popup-area .dl-popup-box .elementor-icon-box-description::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 28px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-right: 1px solid rgba(201, 155, 98, 0.22);
    border-bottom: 1px solid rgba(201, 155, 98, 0.22);
    transform: rotate(45deg);
}

/* ===== ПОКАЗ ПРИ HOVER ===== */
.dl-popup-area .dl-popup-box:hover .elementor-icon-box-description {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===== ЕСЛИ НУЖНО, ЧТОБЫ ОКНО БЫЛО БОЛЕЕ ПЛАВНЫМ ===== */
.dl-popup-area .dl-popup-box .elementor-icon-box-description,
.dl-popup-area .dl-popup-box .elementor-icon-box-wrapper {
    will-change: transform, opacity;
}

/* ===== МОБИЛКА =====  
@media (max-width: 767px) {
    .dl-popup-area .dl-popup-box .elementor-icon-box-description {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 14px;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
    }

    .dl-popup-area .dl-popup-box .elementor-icon-box-description::before {
        display: none;
    }
} */



/* ─── MOBILITY SECTION ───  */
/* ==============================
   Drivelux Luxury Mobility Cards
   Hover effect for .mcard
   ============================== */

.mcard {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  isolation: isolate;
  cursor: pointer;
  transition:
    transform .55s cubic-bezier(.22, .61, .36, 1),
    box-shadow .55s ease,
    border-color .55s ease;
}

/* затемнение поверх background-image */
.mcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .92) 0%,
      rgba(0, 0, 0, .78) 27%,
      rgba(0, 0, 0, .36) 58%,
      rgba(0, 0, 0, .18) 100%
    );
  transition: opacity .55s ease, background .55s ease;
  pointer-events: none;
}

/* золотой блик */
.mcard::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -80%;
  width: 45%;
  height: 180%;
  z-index: 2;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(201, 155, 98, .08) 35%,
    rgba(255, 255, 255, .16) 50%,
    rgba(201, 155, 98, .08) 65%,
    transparent 100%
  );
  transform: rotate(12deg);
  opacity: 0;
  transition:
    left .9s cubic-bezier(.22, .61, .36, 1),
    opacity .45s ease;
  pointer-events: none;
}

/* весь контент поверх overlay */
.mcard .elementor-icon-box-wrapper {
  position: relative;
  z-index: 4;
}

/* иконка */
.mcard .elementor-icon {
  color: #C99B62 !important;
  transition:
    transform .45s ease,
    color .45s ease,
    filter .45s ease;
}

.mcard svg {
  transition: transform .45s ease, filter .45s ease;
}

/* заголовок */
.mcard .elementor-icon-box-title,
.mcard .elementor-icon-box-title span {
  transition:
    color .4s ease,
    transform .4s ease;
}

/* описание */
.mcard .elementor-icon-box-description {
  transition:
    color .4s ease,
    transform .4s ease,
    opacity .4s ease;
}

/* hover карточки */
.mcard:hover {
  transform: translateY(-6px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .42),
    0 0 0 1px rgba(201, 155, 98, .45);
}

/* overlay на hover — текстовая часть становится богаче */
.mcard:hover::before {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, .96) 0%,
      rgba(0, 0, 0, .84) 30%,
      rgba(0, 0, 0, .34) 62%,
      rgba(0, 0, 0, .08) 100%
    );
}

/* движение блика */
.mcard:hover::after {
  left: 120%;
  opacity: 1;
}

/* иконка на hover */
.mcard:hover .elementor-icon {
  transform: translateY(-4px) scale(1.08);
  color: #E0B476 !important;
  filter: drop-shadow(0 0 10px rgba(201, 155, 98, .42));
}

.mcard:hover svg {
  transform: rotate(-3deg);
}

/* title hover */
.mcard:hover .elementor-icon-box-title,
.mcard:hover .elementor-icon-box-title span {
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* description hover */
.mcard:hover .elementor-icon-box-description {
  color: rgba(255, 255, 255, .92) !important;
  transform: translateY(-2px);
  opacity: 1;
}

/* тонкая золотая линия снизу */
.mcard .elementor-icon-box-content {
  position: relative;
}

.mcard .elementor-icon-box-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    #C99B62,
    rgba(201, 155, 98, 0)
  );
  transition: width .55s ease;
}

.mcard:hover .elementor-icon-box-content::after {
  width: 120px;
}

/* mobile: hover можно сделать спокойнее */
@media (max-width: 767px) {
  .mcard:hover {
    transform: translateY(-3px);
  }

  .mcard::after {
    display: none;
  }
}




/* ─── CONCIERGE SECTION ─── */



/* ─── Transfer Services ─── */
.dl-border-short {
    position: relative;
    border-left: none !important;
}
.dl-border-short::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 60%;
    width: 1px;
    background: #d4a76f45;
    transform: translateY(-50%);
}










.dl-tours-frame {
 
  aspect-ratio: 849 / 571;
  padding: 33px 24px 22px 36px;
  box-sizing: border-box;
}

.dl-tours-grid {
  display: grid !important;
 
  grid-template-columns: 266fr 211fr 82fr 219fr !important;
  grid-template-rows: 255fr 58fr 190fr !important;
  gap: 6px;
}

.dl-tour-card {
  min-width: 0;
  min-height: 0;
}

.italy {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.france {
  grid-column: 2 / 4;
  grid-row: 1 / 2;
}

.switzerland {
  grid-column: 4 / 5;
  grid-row: 1 / 2;
}

.city {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.wine {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
}

.exclusive {
  grid-column: 3 / 5;
  grid-row: 2 / 4;
}

@media (max-width: 700px) {
  .dl-tours-frame {
    width: 100%;
    aspect-ratio: auto;
    padding: 0;
  }

  .dl-tours-grid {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    height: auto;
  }

  .dl-tour-card {
    min-height: 220px;
  }

  .italy,
  .switzerland {
    min-height: 315px;
  }

  .france,
  .wine {
    min-height: 255px;
  }
}

/* ================================
   DL Tours — Premium Hover Effect
================================ */

.dl-tour-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 6px;
  cursor: pointer;

  transition:
    transform .45s cubic-bezier(.22, 1, .36, 1),
    box-shadow .45s cubic-bezier(.22, 1, .36, 1),
    filter .45s ease;
}

/* затемнение / luxury overlay 
.dl-tour-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, .18) 0%,
      rgba(0, 0, 0, .28) 48%,
      rgba(0, 0, 0, .62) 100%
    );

  transition:
    background .45s ease,
    opacity .45s ease;
}*/

/* диагональный свет */
.dl-tour-card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -80%;
  width: 55%;
  height: 180%;
  z-index: 2;
  pointer-events: none;

  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, .06) 35%,
    rgba(255, 235, 190, .28) 50%,
    rgba(255, 255, 255, .06) 65%,
    transparent 100%
  );

  transform: rotate(8deg);
  opacity: 0;
  transition:
    left .75s cubic-bezier(.22, 1, .36, 1),
    opacity .35s ease;
}

/* контент поверх overlay */
.dl-tour-card .elementor-widget,
.dl-tour-card .elementor-icon-box-wrapper,
.dl-tour-card .elementor-icon-box-content {
  position: relative;
  z-index: 3;
}

/* текст */
.dl-tour-card .elementor-icon-box-title,
.dl-tour-card .elementor-icon-box-description {
  transition:
    transform .45s cubic-bezier(.22, 1, .36, 1),
    opacity .45s ease,
    text-shadow .45s ease;
}

/* эффект при наведении */
@media (hover: hover) {
  .dl-tour-card:hover {
    z-index: 5;
    transform: translateY(-5px) scale(1.012);
    filter: saturate(1.08) contrast(1.04);
    box-shadow:
      0 24px 55px rgba(0, 0, 0, .38),
      0 0 0 1px rgba(201, 155, 98, .55);
  }

  .dl-tour-card:hover::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, .08) 0%,
        rgba(0, 0, 0, .24) 45%,
        rgba(0, 0, 0, .74) 100%
      );
  }

  .dl-tour-card:hover::after {
    left: 130%;
    opacity: 1;
  }

  .dl-tour-card:hover .elementor-icon-box-title {
    transform: translateY(-4px);
    text-shadow: 0 8px 24px rgba(0, 0, 0, .45);
  }

  .dl-tour-card:hover .elementor-icon-box-description {
    transform: translateY(-2px);
    opacity: .95;
    text-shadow: 0 8px 22px rgba(0, 0, 0, .45);
  }

  /* остальные карточки чуть затемняются, когда одна активна */
  .dl-tours-grid:hover .dl-tour-card:not(:hover) {
    filter: brightness(.72) saturate(.82);
  }
}
/* описание скрыто по умолчанию */
.dl-tour-card .elementor-icon-box-description {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transform: translateY(10px);
  transition:
    opacity .35s ease,
    max-height .35s ease,
    margin-top .35s ease,
    transform .35s ease;
}

/* при наведении описание появляется */
@media (hover: hover) {
  .dl-tour-card:hover .elementor-icon-box-description {
    opacity: 1;
    max-height: 80px;
    margin-top: 10px;
    transform: translateY(0);
  }
}









/* ===============================
   DRIVELUX — Luxury Card Hover
   =============================== */

.dl-lux-card {
  position: relative;
  overflow: visible;
  cursor: pointer;
  transition: transform .45s ease;
}

/* фото-контейнер */
.dl-lux-card .dl-lux-card-img {
  position: relative;
  overflow: visible !important;
  border-radius: 5px;
  isolation: isolate;
  z-index: 1;
}

/* затемнение / luxury grading поверх фото */
.dl-lux-card .dl-lux-card-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      135deg,
      rgba(20, 14, 8, .18),
      rgba(201, 155, 98, .14) 45%,
      rgba(0, 0, 0, .28)
    );
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: none;
}

/* мягкий световой блик */
.dl-lux-card .dl-lux-card-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,.18) 45%,
    transparent 100%
  );
  transform: skewX(-18deg);
  opacity: 0;
  transition: left .75s ease, opacity .45s ease;
  pointer-events: none;
}

/* если фото задано как background в Elementor */
.dl-lux-card .dl-lux-card-img {
  background-size: 100% auto;
  background-position: center;
  transition:
    background-size .75s ease,
    filter .55s ease,
    box-shadow .55s ease;
}

/* сама карточка на hover */
.dl-lux-card:hover {
  transform: translateY(-6px);
}

/* фото на hover */
.dl-lux-card:hover .dl-lux-card-img {
  background-size: 106% auto;
  filter: contrast(1.04) saturate(1.04);
  box-shadow: 0 18px 42px rgba(0,0,0,.16);
}

.dl-lux-card:hover .dl-lux-card-img::before {
  opacity: 1;
}

.dl-lux-card:hover .dl-lux-card-img::after {
  left: 125%;
  opacity: 1;
}

/* иконка */
.dl-lux-card .elementor-widget-icon {
  position: relative;
  z-index: 5;
  transition: transform .45s ease;
}

.dl-lux-card .elementor-icon {
  transition:
    background-color .45s ease,
    color .45s ease,
    border-color .45s ease,
    box-shadow .45s ease;
}

.dl-lux-card:hover .elementor-widget-icon {
  transform: translateY(-6px);
}

.dl-lux-card:hover .elementor-icon {
  background: #C99B62 !important;
  color: #fff !important;
  border-color: #C99B62 !important;
  box-shadow: 0 12px 26px rgba(201,155,98,.32);
}

/* заголовок */
.dl-lux-card h3,
.dl-lux-card .elementor-heading-title {
  transition: color .35s ease, transform .35s ease;
}

.dl-lux-card:hover h3,
.dl-lux-card:hover .elementor-widget-heading:first-of-type .elementor-heading-title {
  color: #C99B62;
  transform: translateY(-2px);
}

/* текст */
.dl-lux-card p {
  transition: color .35s ease, transform .35s ease;
}

.dl-lux-card:hover p {
  color: rgba(20,20,20,.82);
  transform: translateY(-2px);
}

/* тонкая линия снизу карточки */
.dl-lux-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    #C99B62,
    rgba(201,155,98,0)
  );
  transition: width .55s ease;
}

.dl-lux-card:hover::after {
  width: 72%;
}