/* 927f59 */
.notification-alert {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffb41e, #a08d3e);
    color: white;
    padding: 7px 20px;
    text-align: center;
    z-index: 10000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.notification-alert .message {
    font-size: 14px;
}

.notification-alert .close-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

    .notification-alert .close-btn:hover {
        background: rgba(255, 255, 255, 0.5);
    }

.notification-alert .cta-button {
    background: white;
    color: #022239;
    border: none;
    padding: 3px 12px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 12px;
}

    .notification-alert .cta-button:hover {
        background: #f0f0f0;
        transform: translateY(-2px);
    }

body.has-notification {
    margin-top: 38px;
}

/* Animation for notification */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.notification-alert {
    animation: slideDown 0.5s ease forwards;
}

@media (max-width: 568px) {
    .notification-alert {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    body.has-notification {
        margin-top: 109px;
    }
}

@media (max-width: 375px) {
    body.has-notification {
        margin-top: 130px;
    }
}

.slider2-container {
    position: relative;
    overflow: hidden;
    /* border-radius: 15px; */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.slider2 {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide2 {
    flex: 0 0 auto;
    width: 300px;
    margin: 0 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, #1e3c52, #022239);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .slide2:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    }

.slide2-image {
    height: 180px;
    overflow: hidden;
}

    .slide2-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.slide2:hover .slide2-image img {
    transform: scale(1.05);
}

.slide2-content {
    padding: 20px;
}

    .slide2-content h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
        color: #fff;
    }

    .slide2-content p {
        color: #f6e5c1;
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }

    .slide2-content .price {
        font-size: 1.3rem;
        font-weight: bold;
        color: #927f59;
        margin-bottom: 15px;
    }

.btn {
    display: inline-block;
    background: linear-gradient(to right, #b29b6e, #927f59);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

.slider2-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.control-btn {
    background: rgb(146, 127, 89, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

    .control-btn:hover {
        background: rgb(146, 127, 89);
        transform: scale(1.1);
    }

.slider2-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .dot.active {
        background: rgb(146, 127, 89);
        transform: scale(1.2);
    }

.description {
    text-align: center;
    max-width: 800px;
    margin: 30px auto;
    line-height: 1.6;
    font-size: 1.1rem;
    color: rgb(232, 214, 177);
}

@media (max-width: 768px) {
    .slide2 {
        width: 250px;
    }
}

@media (max-width: 480px) {
    .slide2 {
        width: 220px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
    }
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.reviews-header {
    text-align: center;
    margin-bottom: 50px;
}

.reviews-title {
    font-size: 2.8rem;
    color: rgb(146, 127, 89);
    margin-bottom: 15px;
    font-weight: 700;
}

.reviews-subtitle {
    font-size: 1.2rem;
    color: rgb(177, 155, 111);
    max-width: 600px;
    margin: 0 auto;
}

.reviews-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.reviews-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.reviews-slide {
    flex: 0 0 33.333%;
    padding: 15px;
    box-sizing: border-box;
}

.review-card {
    background: white;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgb(146, 127, 89, 0.2);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .review-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(146, 127, 89, 0.3);
    }

    .review-card::before {
        content: "";
        position: absolute;
        top: 15px;
        left: 25px;
        font-size: 80px;
        color: rgb(146, 127, 89, 0.2);
        font-family: Georgia, serif;
        line-height: 1;
    }

.review-stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient( 135deg, rgb(146, 127, 89) 0%, rgb(75, 65, 44) 100% );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    margin-right: 15px;
    box-shadow: 0 5px 15px rgba(42, 93, 130, 0.2);
}

.review-info h3 {
    font-size: 1.2rem;
    color: rgb(146, 127, 89);
    margin-bottom: 5px;
}

.review-info p {
    font-size: 0.95rem;
    color: #6c757d;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(146, 127, 89);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgb(146, 127, 89);
}

    .slider-btn:hover {
        background: rgb(146, 127, 89);
        color: white;
        transform: scale(1.1);
    }

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    background-color: #dde1e6;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .slider-dot.active {
        background-color: rgb(146, 127, 89);
        transform: scale(1.3);
    }

.reviews-stats {
    background: linear-gradient( 135deg, rgb(146, 127, 89) 0%, rgb(75, 65, 46) 100% );
    border-radius: 16px;
    padding: 40px;
    margin-top: 60px;
    color: white;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

@media (max-width: 992px) {
    .reviews-slide {
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .reviews-slide {
        flex: 0 0 100%;
    }

    .reviews-stats {
        flex-direction: column;
        gap: 30px;
    }

    .reviews-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .testimonial-content

{
    padding: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
}

.author-image {
    width: 60px;
    height: 60px;
}

.author-info h4 {
    font-size: 1.1rem;
}

.testimonial-stats {
    margin-top: 2rem;
}
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hajj-header h1 {
        font-size: 2.5rem !important;
    }

    .packages-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .header-stats {
        gap: 2rem !important;
    }

    .detail-row {
        flex-direction: column !important;
        gap: 8px;
    }

    .detail-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hajj-header {
        padding: 3rem 0 !important;
    }

    .package-content {
        padding: 1.5rem !important;
    }

    .header-stats {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}
@media (max-width: 768px) {
    .package-title {
        font-size: 2.5rem !important;
    }

    .quick-info {
        flex-direction: column !important;
        gap: 1rem !important;
    }

    .info-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .included-grid {
        grid-template-columns: 1fr !important;
    }

    .related-packages-grid {
        grid-template-columns: 1fr !important;
    }

    .package-hero {
        min-height: 60vh !important;
        padding: 2rem 0 !important;
    }
}

@media (max-width: 480px) {
    .package-hero {
        min-height: 50vh !important;
    }

    .price-card {
        padding: 2rem !important;
    }

    .detail-card {
        padding: 2rem !important;
    }

    .contact-card {
        padding: 2rem !important;
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}


@media (max-width: 768px) {
    .package-card

{
    flex-direction: column;
    min-height: auto;
    max-width: 100%;
}

.card-image {
    flex: 0 0 250px;
    height: 250px;
}

.card-content {
    padding: 2rem;
}

.package-title {
    font-size: 1.5rem;
    height: auto;
    -webkit-line-clamp: 2;
}

.package-description {
    height: auto;
}

.price {
    font-size: 2rem;
}

.package-info {
    flex-direction: column;
    gap: 1rem;
    height: auto;
}

.card-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    height: auto;
}
}