/* style.css */
:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #e74c3c;
    --light: #ecf0f1;
    --dark: #2c3e50;
    --text: #333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--primary);
    color: white;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    
}

.logo img {
    height: 2em; /* tingginya sama dengan tinggi font dari .logo */
    width: auto; /* biar proporsinya gak aneh */
    margin-right: 20px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/herodes.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s;
}
.btn {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: white;
    color: var(--primary);
}

/* About Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 30px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 300px;
    border-radius: 10px;
    
}

/* Packages Section */
.packages {
    background-color: var(--light);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.package-image {
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-content {
    padding: 20px;
}

.package-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.package-content .price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 15px;
}

.package-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.package-content ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.package-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}
/* Package destinations styling */
.package-destinations {
    margin-bottom: 20px;
    position: relative;
}

.destination-preview,
.destination-full {
    transition: all 0.3s ease;
}

.more-destinations {
    color: #3498db;
    font-weight: 500;
}

.package-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.btn-view-more {
    background-color: #3498db;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-view-more:hover {
    background-color: #2980b9;
}

.btn-view-route {
    background-color: #3498db;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-view-route:hover {
    background-color: #2980b9;
}
.btn-toggle-destinations {
    background-color: #3498db;
    margin-left: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn-toggle-destinations:hover {
    background-color: #2980b9;
}

.package-card.expanded .btn-toggle-destinations {
    background-color: #95a5a6;
}

.package-card.expanded .btn-toggle-destinations:hover {
    background-color: #7f8c8d;
}


/* Expanded state */
.package-card.expanded .destination-preview {
    display: none;
}

.package-card.expanded .destination-full {
    display: block !important;
}

.package-card.expanded .btn-view-more {
    display: none;
}

.package-card.expanded .btn-view-route {
    display: inline-block !important;
}

/* Responsive adjustments for package actions */
@media (max-width: 576px) {
    .package-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .package-actions .btn {
        width: 100%;
        text-align: center;
        margin-left: 0 !important;
    }
}
/* Jeep Package Section */
.jeep-packages {
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

.jeep-packages .section-title p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-top: 10px;
}

.jeep-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.jeep-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.jeep-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.jeep-card .package-content h3 {
    color: #2c3e50;
    font-size: 1.4rem;
}

.jeep-card .price {
    color: #e74c3c;
    font-size: 1.3rem;
    font-weight: bold;
}

.jeep-card .btn {
    background-color: #3498db;
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.jeep-card .btn:hover {
    background-color: #2980b9;
}
/* Jeep Package Full Width */
.jeep-package-full {
    grid-column: 1 / -1;
    margin-top: 40px;
    border: 2px solid #3498db;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
    transition: all 0.3s ease;
}

.jeep-package-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.3);
}

.jeep-package-container {
    display: flex;
    flex-wrap: wrap;
}

.jeep-package-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.jeep-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.jeep-package-full:hover .jeep-package-image img {
    transform: scale(1.05);
}

.jeep-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
}
.jeep-destinasi{
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 20px;
    font-size: 0,8rem;
    position: absolute;
    padding: 8px 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.jeep-package-content {
    flex: 2;
    min-width: 300px;
    padding: 30px;
    background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.jeep-package-content h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.jeep-package-content .price {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 25px;
}

.jeep-package-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.jeep-features, .jeep-destinations {
    flex: 1;
    min-width: 250px;
    
}

.jeep-features h4, .jeep-destinations h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.jeep-features ul, .jeep-destinations ul {
    list-style: none;
}

.jeep-features li, .jeep-destinations li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.jeep-features i {
    color: #27ae60;
    margin-right: 10px;
    font-size: 1.1rem;
}

.jeep-destinations i {
    color: #3498db;
    margin-right: 10px;
    font-size: 1.1rem;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #3498db, #2980b9);
    width: 100%;
    text-align: center;
    display: block;
}

.btn-large:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jeep-package-container {
        flex-direction: column;
    }
    
    .jeep-package-content h3 {
        font-size: 1.5rem;
    }
    
    .jeep-package-content .price {
        font-size: 1.3rem;
    }
    
    .jeep-package-details {
        flex-direction: column;
        gap: 20px;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .jeep-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .jeep-card .package-content h3 {
        font-size: 1.2rem;
    }
}

/* Flexible Package Section */
.flexible-package {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: -100px;
}

.flexible-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.destination-option {
    background-color: var(--light);
    padding: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.destination-option:hover {
    border-color: var(--secondary);
}

.destination-option.selected {
    background-color: rgba(52, 152, 219, 0.1);
    border-color: var(--secondary);
}

.destination-option input {
    margin-right: 10px;
    cursor: pointer;
}

.destination-info {
    flex: 1;
}

.destination-info h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.destination-price {
    font-weight: bold;
    color: var(--accent);
}

.total-price {
    text-align: right;
    font-size: 1.5rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.total-price span {
    font-weight: bold;
    color: var(--accent);
}

/* Booking Section */
.booking-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border 0.3s;
}

.form-control:focus {
    border-color: var(--secondary);
    outline: none;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: rgba(52, 152, 219, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.author-info p {
    color: #777;
    font-size: 0.9rem;
}

/* Articles Section */
/* Articles Section Enhancements */
.articles-container {
    position: relative;
}

.articles-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 8px 16px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background-color: #e9ecef;
}

.filter-btn.active {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    min-height: 500px;
}

.article-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.article-card.hidden {
    display: none;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.article-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #2c3e50;
    line-height: 1.4;
}

.article-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #6c757d;
}

.article-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 5px;
    color: #3498db;
}

.article-excerpt {
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.6;
    flex-grow: 1;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
    font-size: 0.8rem;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Articles Navigation */
.articles-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.nav-btn {
    padding: 10px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.nav-btn:hover:not(:disabled) {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.nav-btn:disabled {
    background-color: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

.page-info {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

/* Responsive adjustments for articles */
@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .articles-filter {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .article-content {
        padding: 15px;
    }
    
    .article-content h3 {
        font-size: 1.1rem;
    }
    
    .articles-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .page-info {
        order: -1;
    }
}

@media (max-width: 576px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Article Detail */
.article-detail {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.article-detail-image {
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
}

.article-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail-meta {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.article-detail-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.article-detail-meta i {
    margin-right: 5px;
    color: var(--secondary);
}

.article-detail-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-detail-content h3 {
    margin: 30px 0 15px;
    color: var(--primary);
}

.article-detail-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-detail-content ul li {
    margin-bottom: 10px;
}

.back-to-articles {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 30px;
}

.back-to-articles i {
    margin-right: 5px;
    transition: transform 0.3s;
}

.back-to-articles:hover i {
    transform: translateX(-5px);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-column p {
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* Package Detail */
.package-detail {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.package-detail-image {
    height: 300px;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 10px;
    position: relative;
}

.package-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.package-detail-content h3 {
    margin: 25px 0 15px;
    color: var(--primary);
    font-size: 1.5rem;
}

.package-itinerary {
    background-color: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.package-itinerary h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.package-itinerary ol {
    padding-left: 20px;
}

.package-itinerary ol li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.back-to-packages {
    display: inline-flex;
    align-items: center;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    margin-top: 30px;
}

.back-to-packages i {
    margin-right: 5px;
    transition: transform 0.3s;
}

.back-to-packages:hover i {
    transform: translateX(-5px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .article-detail-image {
        height: 300px;
    }
    .package-detail-image {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--primary);
        transition: left 0.3s;
        padding: 20px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    .hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('img/heromob.png') no-repeat center center/cover;
  }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
    }
    
    .about-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .booking-form, .flexible-package {
        padding: 30px 20px;
    }
    
    .article-detail {
        padding: 30px 20px;
    }
    
    .article-detail-image {
        height: 250px;
    }
    .package-detail-image {
        height: 200px;
    }
    .package-detail {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 15px;
        display: block;
    }
    
    .article-detail-meta {
        flex-direction: column;
    }
    
    .article-detail-meta span {
        margin-bottom: 10px;
    }
    
    .flexible-options {
        grid-template-columns: 1fr;
    }
    .package-detail-image {
        height: 200px;
    }
   
}