/* ============================================
   Packages Slider
   ============================================ */

.pkg-slider-wrapper {
    background: #111111;
    padding: 40px 20px;
    direction: rtl;
}

.pkg-swiper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px 50px;
    overflow: hidden;
    position: relative;
}

/* ---------- Card ---------- */
.pkg-card {
    --card-accent: #e8a924;
    --card-border: #e8a924;
    background: #1a1a1a;
    border: 2px dashed var(--card-border);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pkg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ---------- Header ---------- */
.pkg-card__header {
    background: var(--card-accent);
    padding: 10px 16px;
    text-align: center;
}

.pkg-card__header span {
    color: #111;
    font-size: 15px;
    font-weight: 700;
}

/* ---------- Image ---------- */
.pkg-card__image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.pkg-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.pkg-card:hover .pkg-card__image img {
    transform: scale(1.05);
}

/* ---------- Price ---------- */
.pkg-card__price {
    text-align: center;
    padding: 20px 16px 4px;
}

.pkg-card__price-value {
    display: block;
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.pkg-card__price-currency {
    display: block;
    font-size: 14px;
    color: #bbbbbb;
    margin-top: 4px;
}

/* ---------- Duration ---------- */
.pkg-card__duration {
    text-align: center;
    color: #999999;
    font-size: 13px;
    padding: 4px 16px 12px;
    border-bottom: 1px solid #2a2a2a;
    margin: 0 20px;
}

/* ---------- Details ---------- */
.pkg-card__details {
    list-style: none;
    padding: 16px 24px;
    margin: 0;
    flex-grow: 1;
}

.pkg-card__details li {
    color: #cccccc;
    font-size: 13px;
    padding: 5px 0;
    position: relative;
    padding-right: 16px;
    line-height: 1.6;
}

.pkg-card__details li::before {
    content: '•';
    color: var(--card-accent);
    position: absolute;
    right: 0;
    top: 5px;
    font-size: 14px;
}

/* ---------- CTA ---------- */
.pkg-card__cta {
    padding: 0 20px 20px;
    margin-top: auto;
}

.pkg-card__cta a {
    display: block;
    text-align: center;
    background: transparent;
    border: 2px solid var(--card-accent);
    color: var(--card-accent);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pkg-card__cta a:hover {
    background: var(--card-accent);
    color: #111;
}

/* ---------- Arrows ---------- */
.pkg-swiper-prev,
.pkg-swiper-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pkg-swiper-prev:hover,
.pkg-swiper-next:hover {
    background: rgba(232, 169, 36, 0.2);
    border-color: #e8a924;
    color: #e8a924;
}

.pkg-swiper-prev { right: 0; }
.pkg-swiper-next { left: 0; }

/* ---------- Pagination ---------- */
.pkg-swiper-pagination {
    text-align: center;
    margin-top: 20px;
}

.pkg-swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #444;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.pkg-swiper-pagination .swiper-pagination-bullet-active {
    background: #e8a924;
    width: 28px;
    border-radius: 5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .pkg-slider-wrapper { padding: 24px 10px; }
    .pkg-swiper { padding: 0 10px 40px; }
    .pkg-card__image { height: 150px; }
    .pkg-card__price-value { font-size: 40px; }
    .pkg-swiper-prev,
    .pkg-swiper-next { display: none; }
}

@media (max-width: 480px) {
    .pkg-card__price-value { font-size: 36px; }
    .pkg-card__header span { font-size: 13px; }
}
