/* Reset & Base Styles */
:root {
    --primary-color: #7b2cbf; /* Retali Purple */
    --primary-dark: #5a189a;
    --primary-light: #9d4edd;
    --secondary-color: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --accent-gold: #ffc107;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline, .btn-whatsapp {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-dark);
    color: #fff;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    width: 100%;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.social-icons a {
    color: #fff;
    margin-left: 15px;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--accent-gold);
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
}

.logo img {
    height: 60px; /* Adjust based on logo aspect ratio */
}

.nav-menu ul {
    display: flex;
}

.nav-menu li {
    margin-left: 25px;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Slider */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay */
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: #fff;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 2;
}

.slider-controls button:hover {
    background: var(--primary-color);
}

#prevBtn { left: 20px; }
#nextBtn { right: 20px; }

/* Stats */
.stats {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px 0;
    margin-top: -5px; /* Cover any gap */
}

.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--accent-gold);
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 5px;
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-bg {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 10px auto 0;
}

/* About */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check-list i {
    color: var(--primary-color);
    margin-right: 10px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    max-width: 300px;
}

/* Features (Why Us) */
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

/* Top 3 cards - 33% width each */
.feature-card:nth-child(1),
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 200px;
}

/* Bottom 2 cards - 50% width each */
.feature-card:nth-child(4),
.feature-card:nth-child(5) {
    flex: 0 0 calc(50% - 15px);
    min-width: 200px;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.margin-top {
    margin-top: 25px;
}

.margin-top-large {
    margin-top: 2rem;
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
}

/* Packages */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.package-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid #eee;
    transition: var(--transition);
}

.package-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.package-card.recommended {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.9rem;
}

.package-header {
    background: var(--primary-color);
    color: #fff;
    padding: 30px 20px;
    text-align: center;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.package-body {
    padding: 30px 20px;
    text-align: center;
}

.package-body ul {
    margin-bottom: 25px;
    text-align: left;
}

.package-body li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.package-body li i {
    color: var(--primary-color);
    width: 25px;
    margin-right: 10px;
}

/* Haji Section */
.haji-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.haji-image {
    flex: 1;
}

.haji-image img {
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.haji-content {
    flex: 1;
}

.haji-content h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.haji-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Booking Form Section */
.booking-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-content h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.form-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.whatsapp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(123, 44, 191, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.whatsapp-form button {
    margin-top: 10px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
}

/* Visi & Misi Section */
.visi-misi-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.visi-misi-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: var(--transition);
}

.visi-misi-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.card-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.visi-misi-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.visi-misi-card p {
    color: var(--text-light);
    line-height: 1.8;
    text-align: left;
}

.misi-list {
    text-align: left;
}

.misi-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.misi-list i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Profil Section Enhancements */
#about h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

#about .check-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

#about .check-list i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Footer */
footer {
    background-color: #2a0a40; /* Very Dark Purple */
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    background: #fff;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
    max-width: 150px;
}

.footer-links h4, .footer-cta h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-details p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.contact-details i {
    margin-right: 10px;
    margin-top: 5px;
    color: var(--accent-gold);
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Growth Section - Peningkatan Jamaah Retali */
.growth-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-gold));
}

.timeline-item {
    margin-bottom: 30px;
    position: relative;
}

.timeline-marker {
    position: absolute;
    left: -50px;
    top: 5px;
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 0.75rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.timeline-content {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
    font-size: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.jamaah-count {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Bar Chart Stats */
.stats-grid {
    display: flex;
    flex-direction: column;
}

.stats-header {
    margin-bottom: 30px;
    text-align: center;
}

.stats-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.total-jamaah {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.total-jamaah strong {
    color: var(--primary-color);
}

.bar-chart {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 12px;
}

.bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bar-item.highlight {
    grid-column: span 2;
}

.bar-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-align: center;
}

.bar-container {
    width: 100%;
    height: 200px;
    background-color: #f0f0f0;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-width: 40px;
    position: relative;
}

.bar {
    width: 90%;
    background: linear-gradient(180deg, var(--primary-color), var(--primary-light));
    border-radius: 4px 4px 0 0;
    transition: var(--transition);
    cursor: pointer;
}

.bar:hover {
    background: linear-gradient(180deg, var(--primary-dark), var(--primary-color));
    transform: scaleY(1.05);
}

.bar.total-bar {
    background: linear-gradient(180deg, var(--accent-gold), #ffb300);
    width: 80%;
}

.bar-value {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 8px;
    text-align: center;
    min-height: 20px;
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.page-hero a {
    display: inline-block;
    margin-bottom: 10px;
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* Keunggulan Section */
.keunggulan-section {
    background-color: var(--bg-light);
}

.keunggulan-flow {
    text-align: center;
    margin: 40px 0;
}

.keunggulan-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 50px;
}

.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.keunggulan-card {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.keunggulan-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.keunggulan-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.keunggulan-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.keunggulan-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Fasilitas Section */
.fasilitas-section {
    background-color: #fff;
}

.fasilitas-banner {
    text-align: center;
    margin: 30px 0 50px 0;
}

.fasilitas-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.fasilitas-container {
    margin-top: 50px;
}

.fasilitas-group {
    margin-bottom: 50px;
}

.fasilitas-group-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
}

.fasilitas-group-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Airlines Grid */
.airlines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.airline-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    min-height: 100px;
    overflow: hidden;
}

.airline-logo img {
    max-width: 90%;
    max-height: 80px;
    object-fit: contain;
}

/* Hotel List */
.hotel-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.hotel-list li {
    padding: 12px;
    background: #f8f9fa;
    margin-bottom: 10px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.hotel-list li::before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

/* Transport Section */
.transport-image {
    margin: 25px 0;
    text-align: center;
}

.transport-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.transport-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 20px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Gallery Sections */
.gallery-section {
    background-color: #fff;
}

.gallery-section-wrapper {
    margin-bottom: 80px;
}

.gallery-section-wrapper:nth-child(1),
.gallery-section-wrapper:nth-child(2),
.gallery-section-wrapper:nth-child(3) {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.gallery-section-wrapper:nth-child(1) .section-title,
.gallery-section-wrapper:nth-child(2) .section-title,
.gallery-section-wrapper:nth-child(3) .section-title,
.gallery-section-wrapper:nth-child(4) .section-title {
    text-align: center;
}

.gallery-section-wrapper:last-child {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-section-wrapper:nth-child(1) .gallery-grid {
    display: flex;
    justify-content: center;
}

.gallery-section-wrapper:nth-child(2) .gallery-grid {
    grid-template-columns: 1fr;
}

.gallery-section-wrapper:nth-child(3) .gallery-grid {
    display: flex;
    justify-content: center;
    grid-template-columns: 1fr;
}

.gallery-section-wrapper:nth-child(4) .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
    background-color: #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-section-wrapper:nth-child(1) .gallery-item {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: visible;
    aspect-ratio: auto;
    cursor: default;
}

.gallery-section-wrapper:nth-child(2) .gallery-item {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: visible;
    aspect-ratio: auto;
    cursor: default;
}

.gallery-section-wrapper:nth-child(3) .gallery-item {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: visible;
    aspect-ratio: auto;
    cursor: default;
}

.gallery-section-wrapper:nth-child(4) .gallery-item {
    width: 100%;
    max-width: 100%;
    height: auto;
    overflow: visible;
    aspect-ratio: auto;
    cursor: default;
}

.gallery-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.gallery-section-wrapper:nth-child(1):hover .gallery-item,
.gallery-section-wrapper:nth-child(2):hover .gallery-item,
.gallery-section-wrapper:nth-child(3):hover .gallery-item,
.gallery-section-wrapper:nth-child(4):hover .gallery-item {
    box-shadow: none;
    transform: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-section-wrapper:nth-child(1) .gallery-item img,
.gallery-section-wrapper:nth-child(2) .gallery-item img,
.gallery-section-wrapper:nth-child(3) .gallery-item img,
.gallery-section-wrapper:nth-child(4) .gallery-item img {
    object-fit: contain;
    height: auto;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(123, 44, 191, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: #fff;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.lightbox-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid #fff;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* Responsive Features Section */
@media (max-width: 1024px) {
    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3) {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .feature-card:nth-child(1),
    .feature-card:nth-child(2),
    .feature-card:nth-child(3),
    .feature-card:nth-child(4),
    .feature-card:nth-child(5) {
        flex: 0 0 calc(100% - 0px);
    }

    .airlines-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 10px;
    }

    .airline-logo {
        min-height: 80px;
        padding: 10px;
    }

    .keunggulan-grid {
        grid-template-columns: 1fr;
    }

    .keunggulan-card {
        padding: 20px;
    }

    .gallery-section-wrapper {
        margin-bottom: 50px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .lightbox-nav {
        padding: 0 10px;
    }

    .lightbox-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Growth Summary */
.growth-summary {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.1), rgba(157, 78, 221, 0.1));
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.growth-summary i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    opacity: 0.3;
}

.growth-summary p {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Responsive Growth Section */
@media (max-width: 992px) {
    .growth-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .growth-container {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline::before {
        left: -5px;
    }
    
    .timeline-marker {
        left: -35px;
        width: 28px;
        height: 28px;
        font-size: 0.65rem;
    }
    
    .bar-chart {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 8px;
    }
    
    .bar-container {
        height: 150px;
    }
    
    .bar-label {
        font-size: 0.7rem;
    }
    
    .bar-value {
        font-size: 0.65rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .haji-container {
        flex-direction: column;
    }
    
    .package-card.recommended {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px; /* Adjust header height */
        left: -100%;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column-reverse;
    }
}
