/* Base Styles */
:root {
    --primary-color: #25D366; /* WhatsApp Green */
    --primary-color-dark: #128C7E; /* WhatsApp Green Darker */
    --secondary-color: #e67e22;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --success-color: #27ae60;
    --danger-color: #e74c3c;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

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

section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.bg-gray {
    background-color: #f9f9f9;
}

/* Hero Section */
.hero {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 120px 0 100px;
    margin-top: 70px; /* Sesuaikan dengan tinggi header */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero .btn {
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for hero section */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 80px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

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

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

.main-nav ul li a:hover::after,
.main-nav ul li a.active::after {
    width: 100%;
}

.btn-contact {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-contact:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Tour Packages Section */
.tour-packages {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tour-package {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.tour-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.tour-package:hover .tour-image img {
    transform: scale(1.05);
}

.highlight-price {
    color: #f1c40f;
    font-weight: bold;
    font-size: 1.2em;
    background-color: #fffde7;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-left: 5px;
}

.feature-list {
    list-style-type: none;
    padding-left: 20px;
    margin-top: 5px;
}

.feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.feature-list li:before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.btn-book {
    display: block;
    margin: 20px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-book:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.2);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #ff5e62, #ff9966);
    color: white;
    padding: 5px 35px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    transform-origin: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    z-index: 10;
    border: none;
    outline: none;
    transition: all 0.3s ease;
}

.popular-tag:hover {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.tour-package:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tour-package h3 {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px;
    text-align: center;
    margin: 0;
}

.tour-details {
    padding: 20px;
    list-style: none;
}

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

.tour-details i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.tour-package .price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 15px;
}

.tour-package .price del {
    font-size: 1rem;
    font-weight: normal;
    color: var(--text-light);
    margin-right: 8px;
}

.btn-book {
    display: block;
    width: 80%;
    margin: 0 auto 20px;
    background-color: #25D366;
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-book:hover {
    background-color: #128C7E;
    color: var(--white);
}

/* Destinasi Wisata Section */
.destination-card {
    cursor: pointer; /* Menandakan kartu bisa diklik */
}
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-btn {
    padding: 10px 25px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.destination-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

.destination-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.destination-card:hover .destination-link {
    transform: translateY(-5px);
}

.destination-card.highlight {
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.15);
}

.destination-image {
    height: 200px;
    overflow: hidden;
}

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

.destination-card:hover .destination-image img {
    transform: scale(1.05);
}

.destination-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.destination-card h4 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.destination-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0 0 15px 0;
    line-height: 1.5;
    flex: 1;
}

/* Warna untuk CTA */
:root {
--cta-color: #25D366; /* Warna hijau WhatsApp */
--cta-hover: #128C7E; /* Warna hijau WhatsApp yang lebih gelap */
}

.btn-detail, .btn-whatsapp {
display: inline-block;
padding: 8px 20px;
background-color: var(--primary-color);
color: white;
text-decoration: none;
border-radius: 50px;
font-size: 0.9rem;
text-align: center;
transition: all 0.3s ease;
margin-top: auto;
width: fit-content;
font-weight: 500;
border: none;
cursor: pointer;
pointer-events: none; /* Agar event click tetap ke parent link */
}

.btn-detail:hover, .btn-whatsapp:hover {
background-color: var(--cta-hover);
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Tombol WhatsApp khusus */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp i {
    font-size: 1.2em;
}

/* Popular tag untuk destinasi */
.destination-card .popular-tag {
    top: 18px;
    right: -35px;
    font-size: 0.7rem;
    padding: 4px 30px;
}

/* Responsif untuk kartu destinasi */
@media (max-width: 768px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .destination-image {
        height: 220px;
    }
    
    .destination-card .popular-tag {
        font-size: 0.65rem;
        right: -30px;
        padding: 3px 25px;
        top: 15px;
    }
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.destination-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.destination-card h4 {
    padding: 15px;
    margin: 0;
    font-size: 1.2rem;
    color: var(--dark-color);
}

.btn-detail {
    display: block;
    text-align: center;
    padding: 10px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-detail:hover {
    background-color: var(--secondary-color);
}

/* Destination Detail Page */
.destination-detail {
    padding: 60px 0;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-color);
}

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

.destination-header h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.destination-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.destination-meta .category {
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.destination-meta .location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
}

.destination-meta .location i {
    color: var(--primary-color);
}

.destination-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
}

.destination-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.03);
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail {
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail:hover, .thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    display: block;
}

.destination-info {
    padding: 20px 0;
}

.destination-info h2 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.destination-info h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.destination-info p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-color);
}

.destination-cta {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

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

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

.info-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-box h3 i {
    color: var(--primary-color);
    font-size: 1.2em;
}

.info-box p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.map-container {
    margin: 50px 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.map-container h3 {
    padding: 20px;
    margin: 0;
    background-color: var(--dark-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-container h3 i {
    color: var(--primary-color);
}

/* Related Destinations Section */
.related-destinations {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.related-destinations .section-title {
    margin-bottom: 40px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .destination-content {
        grid-template-columns: 1fr;
    }
    
    .destination-gallery {
        position: static;
        margin-bottom: 40px;
    }
}

/* Modal Styles */
.modal {
    display: none; /* Tersembunyi secara default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 25px;
    border: 1px solid #ddd;
    width: 90%;
    max-width: 700px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeInModal 0.5s;
}

@keyframes fadeInModal {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
}

.modal-close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    line-height: 1;
}

.modal-close-btn:hover,
.modal-close-btn:focus {
    color: var(--dark-color);
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.modal-dest-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.modal-body {
    margin-bottom: 20px;
}

.modal-dest-category {
    font-size: 0.9rem;
    color: var(--text-light);
    background-color: #f9f9f9;
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 15px;
}

.modal-body h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.modal-dest-full-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    max-height: 200px; /* Batasi tinggi deskripsi jika terlalu panjang */
    overflow-y: auto; /* Tambahkan scroll jika deskripsi panjang */
    padding-right: 10px; /* Ruang untuk scrollbar */
}

.modal-dest-full-description p {
    margin-bottom: 10px;
}

.modal-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.modal-footer .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    font-size: 1.1rem;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    cursor: pointer;
    border: none;
    font-weight: 600;
    margin-top: 10px;
}

.modal-footer .btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
    text-decoration: none;
}

/* Pastikan tombol bisa diklik */
.modal-footer .btn-whatsapp,
.modal-footer .btn-whatsapp * {
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

.modal-footer .btn-whatsapp i {
    margin-right: 8px;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 15% auto;
        padding: 20px;
    }
    .modal-header h3 {
        font-size: 1.5rem;
    }
    .modal-dest-image {
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .destination-header h1 {
        font-size: 2rem;
    }
    
    .destination-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
    }
    
    .destination-cta {
        flex-direction: column;
    }
    
    .btn-outline, .btn-whatsapp {
        width: 100%;
        text-align: center;
    }
}

/* Testimoni Section */
.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.rating {
    color: #f1c40f;
    margin-bottom: 15px;
}

.rating i {
    margin-right: 5px;
}

.testimonial .review {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial .author {
    font-weight: 600;
    color: var(--dark-color);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 20px;
}

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

.footer h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links ul {
    list-style: none;
}

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

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

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

.contact-info {
    list-style: none;
}

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

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-info a {
    color: var(--light-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--cta-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: var(--cta-hover);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Booking Actions */
.booking-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.booking-actions .btn {
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
    .booking-actions {
        padding: 0;
        margin: 15px 0;
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
        box-sizing: border-box;
    }
    
    .booking-actions .btn {
        width: 100%;
        max-width: 100%;
        font-size: 1rem;
        padding: 12px 10px;
        margin: 0;
        box-sizing: border-box;
    }
    
    .booking-actions .btn i {
        font-size: 1.1em;
        margin-right: 5px;
    }
    
    /* Discount badge mobile layout */
    .discount-badge {
        display: block !important;
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 10px;
        width: fit-content;
        transform: none !important;
    }
    
    .discount-info {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .discount-info > div {
        width: 100%;
    }
    
    /* Fix for mobile viewport */
    @supports (padding: max(0px)) {
        .booking-actions {
            padding-left: max(15px, env(safe-area-inset-left));
            padding-right: max(15px, env(safe-area-inset-right));
            width: auto;
            margin-left: 0;
            margin-right: 0;
        }
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background-color: var(--primary-color);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 999;
        padding: 30px;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav ul li {
        margin: 0 0 20px 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 90px;
        right: 20px;
    }
}

/* Tour Package Description Styles - Visually hidden but accessible to search engines */
.tour-description {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    /* Keep the content in the document flow for screen readers */
    clip-path: inset(50%);
    /* Ensure the element takes no space */
    margin: 0;
    padding: 0;
    /* Hide the content visually */
    visibility: hidden;
    opacity: 0;
    /* Keep it accessible to screen readers */
    position: absolute;
    left: -9999px;
    /* For browsers that don't support clip-path */
    height: 1px;
    width: 1px;
    overflow: hidden;
    /* For screen readers that don't support clip-path */
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
}

/* Alternative for modern browsers */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
