/* CSS untuk Halaman Paket Umroh */

/* Page Banner */
.page-banner {
    background-image: url('../img/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 60px;
    position: relative;
    margin-bottom: 60px;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 71, 42, 0.7);
    z-index: 1;
}

.page-banner .container {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.breadcrumb a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb i {
    font-size: 12px;
    color: var(--secondary-color);
}

.breadcrumb span {
    color: var(--secondary-color);
}

/* Filter Section */
.filter-section {
    margin-top: -30px;
    margin-bottom: 50px;
}

.filter-container {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 30px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.filter-header h3 {
    color: var(--dark-color);
    font-size: 22px;
    margin-bottom: 0;
}

.filter-toggle {
    display: none;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-toggle:hover {
    background-color: var(--primary-color-dark);
}

.filter-form {
    width: 100%;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.filter-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-item label {
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

.filter-item select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    color: var(--text-color);
    background-color: var(--white);
    font-family: var(--font-primary);
    font-size: 14px;
}

.filter-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.filter-btn {
    min-width: 150px;
}

/* Packages List */
.packages-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.package-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    z-index: 2;
}

.package-img {
    height: auto;
    min-height: 200px;
    max-height: 250px;
    overflow: hidden;
    position: relative;
}

.package-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.package-card:hover .package-img img {
    transform: scale(1.1);
}

.package-content {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.package-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--dark-color);
    font-weight: 600;
    line-height: 1.3;
}

.package-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--gray-500);
}

.package-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.package-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 15px;
    margin-bottom: 15px;
    font-size: 13px;
}

.package-features p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.package-features p i {
    color: var(--primary-color);
    font-size: 12px;
}

.package-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.package-highlights span {
    font-size: 11px;
    padding: 4px 8px;
    background-color: rgba(12, 113, 61, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 500;
}

.package-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.package-price .btn-primary {
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.per-person {
    font-size: 11px;
    color: var(--gray-500);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 8px;
}

.page-item, .page-nav {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    font-weight: 500;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.page-item:hover,
.page-nav:hover {
    background-color: var(--gray-100);
}

.page-item.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.page-separator {
    color: var(--gray-500);
}

/* Promo Banner */
.promo-banner {
    margin: 60px 0;
    background-image: url('../img/promo-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(12, 113, 61, 0.9), rgba(12, 113, 61, 0.7));
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.promo-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.promo-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.promo-countdown {
    margin: 30px 0;
}

.countdown-title {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.countdown-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.timer-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: var(--radius-md);
    min-width: 70px;
}

.timer-number {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.timer-label {
    font-size: 12px;
    opacity: 0.7;
}

.timer-separator {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    opacity: 0.5;
    margin-top: -10px;
}

/* FAQ Section */
.faq-section {
    margin: 60px 0;
}

.accordion {
    margin-top: 30px;
}

.accordion-item {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 0;
    margin: 0;
}

.accordion-button {
    width: 100%;
    padding: 20px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    background-color: var(--white);
    color: var(--dark-color);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background-color: var(--gray-100);
}

.accordion-button:after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: all 0.3s ease;
}

.accordion-button.active {
    background-color: var(--gray-100);
}

.accordion-button.active:after {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content-inner {
    padding: 0 20px 20px;
    color: var(--text-color);
    line-height: 1.7;
}

.faq-cta {
    margin-top: 40px;
    text-align: center;
}

.faq-cta p {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* CTA Section */
.cta {
    background-image: url('../img/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 80px 0;
    margin-top: 60px;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .package-row {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .package-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .filter-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .package-img {
        height: fit-content;
    }
    
    .package-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .package-row {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .page-banner h1 {
        font-size: 32px;
    }
    
    .filter-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .filter-form {
        display: none;
    }
    
    .filter-form.active {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .filter-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .promo-content h2 {
        font-size: 28px;
    }
    
    .promo-content h3 {
        font-size: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .timer-item {
        min-width: 60px;
    }
    
    .timer-number {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .page-banner {
        padding: 100px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 28px;
    }
    
    .package-content h3 {
        font-size: 20px;
    }
    
    .package-price {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .package-price .btn-primary {
        width: 100%;
    }
    
    .timer-separator {
        margin: 0 5px;
    }
}

/* Filter Results Styles */
.alert {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeIn 0.5s ease;
}

.alert i {
    font-size: 18px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border-left: 4px solid #28a745;
    color: #155724;
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.1);
    border-left: 4px solid #17a2b8;
    color: #0c5460;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}