
/* ==========================
   LUXURY BLACK & GOLD THEME
========================== */
.luxury-destinations-section {
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 175, 55, 0.1),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(212, 175, 55, 0.08),
            transparent 35%
        ),
        #050505;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

/* Header */

.luxury-header {
    margin-bottom: 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.section-tag {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 50px;
    color: #d4af37;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(212, 175, 55, 0.08);
    margin-bottom: 18px;
}

.header-left h2 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.header-left h2 span {
    color: #d4af37;
}

.header-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.2;
}

/* View All Button */
.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;

    background: linear-gradient(135deg, #d4af37, #f6e27a);

    color: #111111;
    transition: 0.4s ease;
}

.view-all-btn:hover {
    color: #111111;
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
}

/* ==========================
       LUXURY CARD
========================== */

.luxury-card {
    background: rgba(15, 15, 15, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.45s ease;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    height: 100%;
}

.luxury-card:hover {
    transform: translateY(-12px);

    border-color: rgba(212, 175, 55, 0.45);

    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(212, 175, 55, 0.15);
}

/* Card Image */

.card-image {
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 120px;

    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));

    pointer-events: none;
}

.carousel-inner {
    border-radius: 28px 28px 0 0;
}

.carousel-item img {
    width: 100%;
    height: 270px;

    object-fit: cover;

    transition: transform 0.8s ease;
}

.luxury-card:hover .carousel-item img {
    transform: scale(1.08);
}

/* Carousel Controls */

.carousel-control-prev,
.carousel-control-next {
    width: 42px;
    height: 42px;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(0, 0, 0, 0.55);

    border-radius: 50%;

    opacity: 0;

    transition: 0.35s ease;
}

.luxury-card:hover .carousel-control-prev,
.luxury-card:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(212, 175, 55, 0.9);
}

/* Card Body */

.card-body {
    padding: 28px 25px 30px;
}

.destination-badge {
    display: inline-block;

    padding: 7px 14px;

    border-radius: 40px;

    background: rgba(212, 175, 55, 0.08);

    border: 1px solid rgba(212, 175, 55, 0.25);

    color: #d4af37;

    font-size: 11px;

    letter-spacing: 2px;

    margin-bottom: 18px;
}

.card-body h3 {
    margin-bottom: 18px;
}

.card-body h3 a {
    color: #ffffff;

    font-size: 28px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.35s ease;
}

.card-body h3 a:hover {
    color: #d4af37;
}

.tour-count {
    color: rgba(255, 255, 255, 0.75);

    font-size: 15px;

    margin-bottom: 28px;
}

.tour-count span {
    color: #d4af37;

    font-size: 30px;

    font-weight: 800;

    margin-right: 5px;
}

/* ==========================
        CTA BUTTON
========================== */

.explore-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;

    padding: 14px 20px;

    border-radius: 60px;

    text-decoration: none;

    font-weight: 700;

    letter-spacing: 1px;

    color: #111111;

    background: linear-gradient(135deg, #d4af37, #f8e28a);

    transition: all 0.4s ease;

    overflow: hidden;

    position: relative;
}

.explore-btn:hover {
    color: #111111;

    text-decoration: none;

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35);
}

/* Gold Shine Effect */

.explore-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    transform: skewX(-25deg);

    background: linear-gradient(
        transparent,
        rgba(255, 255, 255, 0.45),
        transparent
    );

    transition: all 0.8s ease;
}

.explore-btn:hover::before {
    left: 140%;
}

/* ==========================
       GRID SPACING
========================== */

.luxury-grid {
    row-gap: 12px;
}

/* ==========================
      RESPONSIVE DESIGN
========================== */

@media (max-width: 1199px) {
    .header-left h2 {
        font-size: 42px;
    }

    .carousel-item img {
        height: 240px;
    }

    .card-body h3 a {
        font-size: 24px;
    }
}

@media (max-width: 991px) {
    .luxury-destinations-section {
        padding: 70px 0;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-left h2 {
        font-size: 36px;
    }

    .header-left p {
        max-width: 100%;
    }

    .view-all-btn {
        margin-top: 10px;
    }

    .carousel-item img {
        height: 230px;
    }
}

@media (max-width: 767px) {
    .header-left h2 {
        font-size: 30px;
    }

    .section-tag {
        font-size: 11px;

        letter-spacing: 1px;
    }

    .carousel-item img {
        height: 220px;
    }

    .card-body {
        padding: 22px;
    }

    .card-body h3 a {
        font-size: 22px;
    }

    .tour-count span {
        font-size: 26px;
    }
}

@media (max-width: 575px) {
    .luxury-destinations-section {
        padding: 60px 0;
    }

    .header-left h2 {
        font-size: 26px;
    }

    .header-left p {
        font-size: 14px;
    }

    .carousel-item img {
        height: 200px;
    }

    .destination-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .explore-btn {
        padding: 13px 18px;

        font-size: 14px;
    }
}

/* ==========================
      SCROLLBAR (OPTIONAL)
========================== */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
    background: #d4af37;

    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: #f1d36b;
}
