:root {
    --primary: #0e2e17;
    --secondary: #d4af37;
    --light: #f8f9fa;
    --dark: #c6bbbb;
    --text: #333333;
    --text-light: #6c757d;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    z-index: 1000;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    right: 0;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
}

nav.scrolled {
    background-color: #ffffff; /* Visible background after scroll */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navmenu .logo {
    padding-left: 50px;
}

.navmenu .btn {
    margin-right: 2%;
}

.logo-img {
    width: 250px;
    height: 100px;
}

.logo span {
    color: var(--secondary);
}

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

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

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

.btn:hover {
    background-color: #1f5230;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: #0e2e17;
}

.btn-secondary:hover {
    background-color: #b8941f;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Section Styling */
section {
    padding: 100px 0;
}

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

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

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



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

.about-content-reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

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

/* Packages Section */
.packages {
    background-color: #f9f9f9;
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.package-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.package-card:hover .package-image img {
    transform: scale(1.1);
}

.package-content {
    padding: 25px;
}

.package-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
}

.package-details {
    margin: 15px 0;
    list-style: none;
}

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

.package-details i {
    color: var(--secondary);
    margin-right: 10px;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0;
}

/* Testimonials */
.testimonials-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: thin;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    min-width: 300px;
    flex: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.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;
}

/* Contact Section */
.contact {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    color: #b8941f;
    margin-bottom: 20px;
}

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

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

.contact-details i {
    color: #b8941f;
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #e3efb0;
    color: white;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/*--------------------------------------------------------------
# Scroll Top Button
-------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #25D366; /* WhatsApp green */
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-top i {
  font-size: 24px;
  color: white;
  line-height: 0;
}

.scroll-top:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 25px;
}

/* Footer */
footer {
    background-color: #181b19;
    color: white;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 150px;
    margin-bottom: 30px;
    text-align: left;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--secondary);
}

.footer-links h4 {
    color: var(--secondary);
    margin-bottom: 20px;
}

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

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

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

.footer-links a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2c3a49;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Ensure image-based social icons (e.g., TripAdvisor PNG) match size */
.social-icons a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid #2c3a49;
    font-size: 0.9rem;
    color: #ccc;
}

/* Page Content */
.page-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

#home-page {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

/* Mobile overlay for navigation */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.mobile-nav-overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-content-reverse {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .packages-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        z-index: 1001;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
        padding: 15px 20px;
        display: block;
        text-align: center;
        border-radius: 5px;
        margin: 5px 0;
        transition: background-color 0.3s ease;
    }
    
    .nav-links a:hover {
        background-color: rgba(0, 0, 0, 0.1);
    }
    
    /* Header adjustments */
    .navmenu {
        justify-content: space-between;
    }
    
    .logo-img {
        width: 120px;
        height: 60px;
    }
    
    /* Hero section */
    .hero {
        padding-top: 100px;
        min-height: 80vh;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 2.3rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    /* Section adjustments */
    section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    /* Package cards */
    .packages-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .package-card {
        margin-bottom: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .package-image {
        height: 180px;
    }
    
    /* Contact form */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-content > div {
        text-align: left;
    }
    
    /* Testimonials */
    .testimonials-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial {
        min-width: auto;
    }
    
    /* Gallery */
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
        gap: 15px;
    }
    
    .gallery-item img {
        height: 200px !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero p {
        font-size: 0.95rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .packages-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-content {
        padding: 20px;
    }
    
    .package-details li {
        font-size: 0.9rem;
    }
    
    .package-price {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-img {
        width: 100px;
        height: 50px;
    }
    
    .nav-links {
        width: 90%;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 12px;
        font-size: 16px;
        min-height: 44px;
        border-radius: 5px;
    }
    
    .contact-form textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .gallery-container {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-item img {
        height: 180px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.6rem;
    }
    
    .package-content h3 {
        font-size: 1.3rem;
    }
    
    .package-details li {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
        min-height: 44px;
    }
    
    .logo-img {
        width: 80px;
        height: 40px;
    }
    
    .nav-links {
        width: 95%;
    }
    
    .nav-links a {
        font-size: 1.1rem;
    }
    
    .contact-details li {
        font-size: 0.9rem;
    }
    
    .footer-logo {
        font-size: 1.5rem;
    }
    
    .footer-links h4 {
        font-size: 1.1rem;
    }
    
    .footer-links li {
        font-size: 0.9rem;
    }
}