/* Day Tours Slider - Elementor Widget CSS */

.dts-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* ── Left Panel ── */
.dts-left-panel {
    flex: 0 0 280px;
    min-width: 220px;
    padding-top: 10px;
}

.dts-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #0B7A75;
    margin: 0 0 20px;
    line-height: 1.1;
}

.dts-section-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #0B7A75;
    margin: 0 0 36px;
    text-transform: capitalize;
}

.dts-btn-main {
    display: inline-block;
    background-color: #E8611A;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.25s ease, transform 0.15s ease;
    cursor: pointer;
    border: none;
}

.dts-btn-main:hover {
    background-color: #c94f10;
    transform: translateY(-1px);
    color: #ffffff;
    text-decoration: none;
}

/* ── Slider Area ── */
.dts-slider-area {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.dts-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.dts-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* ── Card ── */
.dts-card {
    flex: 0 0 calc(50% - 12px);
    min-width: 0;
}

.dts-card-image-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 18px;
}

.dts-card-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.4s ease;
}

.dts-card:hover .dts-card-image {
    transform: scale(1.03);
}

.dts-card-body {
    padding: 0 4px;
}

.dts-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0B7A75;
    margin: 0 0 10px;
    line-height: 1.3;
}

.dts-card-desc {
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.65;
    margin: 0 0 20px;
}

.dts-btn-explore {
    display: inline-block;
    background-color: #E8611A;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 36px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background-color 0.25s ease, transform 0.15s ease;
    cursor: pointer;
    border: none;
}

.dts-btn-explore:hover {
    background-color: #c94f10;
    transform: translateY(-1px);
    color: #ffffff;
    text-decoration: none;
}

/* ── Navigation ── */
.dts-nav-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
}

.dts-nav-btn {
    background: none;
    border: none;
    color: #0B7A75;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    transition: color 0.2s, transform 0.15s;
    line-height: 0;
    font-size: 0;
}

.dts-nav-btn svg {
    display: block;
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.dts-nav-btn:hover {
    color: #085041;
    transform: scale(1.15);
    background: none !important;
    background-color: transparent !important;
    border-color: currentColor;
    box-shadow: none !important;
    outline: none;
}

.dts-nav-btn:focus {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    outline: none;
}

.dts-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.dts-slide-counter {
    font-size: 1rem;
    color: #0B7A75;
    font-weight: 500;
    letter-spacing: 0.5px;
    min-width: 60px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.dts-progress-track {
    flex: 1;
    height: 2px;
    background-color: #ddd;
    border-radius: 2px;
    overflow: hidden;
}

.dts-progress-bar {
    height: 100%;
    background-color: #0B7A75;
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 0%;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .dts-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    .dts-left-panel {
        flex: none;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-top: 0;
    }
    .dts-slider-area {
        width: 100%;
        max-width: 100%;
    }
    /* Image height: use aspect-ratio on tablet so it fills proportionally */
    .dts-card-image {
        height: auto;
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 768px) {
    .dts-wrapper {
        gap: 20px;
    }
    .dts-card-image {
        aspect-ratio: 4 / 3;
    }
    .dts-card-image-wrap {
        margin-bottom: 12px;
    }
    .dts-section-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    .dts-section-desc {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }
    .dts-card-title {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }
    .dts-card-desc {
        font-size: 0.85rem;
        margin-bottom: 14px;
        /* Allow full text — no clamp */
        overflow: visible;
        white-space: normal;
    }
    .dts-card-body {
        overflow: visible;
    }
    .dts-nav-wrap {
        gap: 8px;
        margin-top: 18px;
    }
}

@media (max-width: 480px) {
    .dts-wrapper {
        gap: 16px;
    }
    .dts-card-image {
        aspect-ratio: 3 / 2;
    }
    .dts-section-title {
        font-size: 1.5rem;
    }
    .dts-nav-wrap {
        gap: 6px;
        margin-top: 14px;
    }
    .dts-btn-main {
        width: 100%;
        text-align: center;
    }
}

/* ── Navigation Button Styles ── */
.dts-nav-btn--circle,
.dts-nav-btn--square {
    border: 2px solid currentColor !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.dts-nav-btn--circle {
    border-radius: 50%;
}

.dts-nav-btn--square {
    border-radius: 6px;
}

.dts-nav-btn--circle:hover,
.dts-nav-btn--square:hover {
    background-color: currentColor;
}

.dts-nav-btn--circle:hover svg,
.dts-nav-btn--circle:hover,
.dts-nav-btn--square:hover {
    color: inherit;
}

/* Filled hover effect */
.dts-nav-btn--circle:hover,
.dts-nav-btn--square:hover {
    filter: brightness(1.15);
}
