/* Destination Cards & Badges Styling */

/* Popular Place Cards */
.place-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid var(--slate-100);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    cursor: pointer;
}

.place-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(6, 182, 212, 0.25);
}

.place-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.place-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.place-card:hover .place-img {
    /* transform: scale(1.08); Removed as requested */
}

.price-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--slate-900);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.place-info {
    padding: 20px 8px 8px 8px;
}

.place-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 6px;
}

.place-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--slate-500);
    font-weight: 500;
}

.place-location svg {
    width: 16px;
    height: 16px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

/* Explore More Destination Cards */
.explore-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 14px;
    border: 1px solid var(--slate-100);
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.explore-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(6, 182, 212, 0.2);
}

.explore-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 16px;
}

.explore-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.explore-card:hover .explore-img {
    /* transform: scale(1.08); Removed */
}

.rating-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--slate-900);
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.rating-badge span {
    color: var(--accent-yellow);
}

.explore-info {
    display: flex;
    flex-direction: column;
    padding: 16px 8px 12px 8px;
    flex-grow: 1;
}

.explore-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 12px;
    line-height: 1.4;
}

.explore-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--slate-500);
    margin-bottom: 24px;
}

.explore-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    border-top: 1px solid var(--slate-100);
    padding-top: 16px;
}

.explore-price {
    display: flex;
    flex-direction: column;
}

.explore-price .amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
}

.explore-price .period {
    font-size: 0.8rem;
    color: var(--slate-500);
    font-weight: 500;
}

/* =========================================================
   Holiday Package Cards (.holiday-card)
========================================================= */
.holiday-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    border: 1px solid var(--slate-200);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.holiday-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-cyan);
}

.holiday-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    min-height: 240px;
    overflow: hidden;
    background: var(--slate-100);
}

.holiday-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.holiday-card:hover .holiday-img {
    /* transform: scale(1.08); Removed */
}

.holiday-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-gradient);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.3);
    z-index: 2;
}

.holiday-rating {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    border-radius: var(--radius-pill);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--slate-900);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.holiday-info {
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.holiday-duration {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-cyan);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.holiday-duration svg {
    color: var(--primary-cyan);
}

.holiday-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
    line-height: 1.35;
}

.holiday-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 16px;
}

.holiday-location svg {
    width: 16px;
    height: 16px;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.holiday-inclusions {
    margin-bottom: 20px;
}

.holiday-inclusions span {
    display: inline-block;
    padding: 6px 12px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--slate-700);
}

.holiday-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--slate-100);
    padding-top: 16px;
    margin-top: auto;
}

.holiday-price .label {
    display: block;
    font-size: 0.75rem;
    color: var(--slate-400);
    text-transform: uppercase;
    font-weight: 600;
}

.holiday-price .amount {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--slate-900);
}

/* =========================================================
   Trust Pillar Cards (.trust-card)
========================================================= */
.trust-card {
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: all var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trust-card:hover {
    background: var(--white);
    border-color: var(--primary-cyan);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(6, 182, 212, 0.1);
}

.trust-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.trust-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-cyan);
    opacity: 0.85;
}

.trust-badge {
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.trust-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1.5px solid var(--primary-light);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.trust-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.trust-description {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* =========================================================
   Verified Traveler Reviews (.review-card & Slider)
========================================================= */
.reviews-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 16px 0 24px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-slider-track {
    display: flex;
    gap: 32px;
    width: max-content;
    animation: reviewsSlide 35s linear infinite;
    align-items: stretch;
}

.reviews-slider-wrapper:hover .reviews-slider-track {
    animation-play-state: paused;
}

@keyframes reviewsSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reviews-slider-track .review-card {
    width: 400px;
    flex-shrink: 0;
    height: auto;
}

@media (max-width: 1024px) {
    .reviews-slider-track .review-card {
        width: 340px;
    }
}

@media (max-width: 640px) {
    .reviews-slider-track .review-card {
        width: 290px;
    }
}

.review-card {
    background: var(--white);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-smooth);
}

.review-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(6, 182, 212, 0.15);
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 2px;
}

.reviewer-location {
    font-size: 0.85rem;
    color: var(--slate-500);
}

.review-rating {
    font-size: 0.95rem;
    font-weight: 700;
    color: #f59e0b;
    letter-spacing: 2px;
}

.review-quote {
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.65;
    margin-bottom: 24px;
    font-style: italic;
    flex: 1;
}

.review-card-footer {
    border-top: 1px solid var(--slate-100);
    padding-top: 16px;
}

.review-package-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-cyan);
    background: var(--primary-light);
    padding: 6px 12px;
    border-radius: var(--radius-pill);
}

/* Umrah Detailed Info Styles */
.umrah-hotels {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--slate-200);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hotel-item {
    font-size: 0.85rem;
    color: var(--slate-700);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hotel-icon {
    font-size: 1rem;
}

.hotel-name {
    font-weight: 600;
    color: var(--slate-900);
}

.umrah-prices {
    margin-top: 14px;
    background: var(--slate-50);
    padding: 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-100);
}

.price-header {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--slate-500);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-align: center;
}

.price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.room-type {
    color: var(--slate-500);
    font-weight: 600;
}

.room-price {
    color: var(--primary);
    font-weight: 700;
}
