@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;600;700&display=swap');

:root {
  --primary: #1a6b5a;
  --primary-dark: #0d4a3e;
  --primary-light: #e8f5f0;
  --accent: #f97316;
  --accent-dark: #ea6b0a;
  --dark: #1a1a2e;
  --text: #555;
  --light-bg: #f8faf9;
  --white: #fff;
  --border: #e0e8e4;
  --shadow: 0 8px 30px rgba(26, 107, 90, 0.12);
  --shadow-hover: 0 20px 60px rgba(26, 107, 90, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    /* Account for fixed top-bar (38px) + navbar (~62px) = 100px on non-hero pages */
    /* Hero section is full-screen so it doesn't need padding */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
}

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

a:hover {
    color: var(--accent);
}

img {
    max-width: 100%;
    object-fit: cover;
    height: auto;
}

.section-padding {
    padding: 90px 0;
}

.section-title {
    font-size: 2.5rem;
    position: relative;
    text-align: center;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--accent);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    text-align: center;
}

.badge-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    background: var(--primary-light);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    font-size: 0.85rem;
    padding: 8px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    width: 100%;
    transition: transform 0.3s ease;
}

.top-bar .contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--white);
}

.top-bar i {
    color: var(--accent);
    margin-right: 6px;
}

.top-bar .social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.top-bar .social-icons a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.top-bar .social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.top-bar .social-icons a i {
    margin: 0;
    color: var(--white);
}

/* Navbar */
.navbar-custom {
    background: transparent;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    padding: 12px 0;
    z-index: 1050;
    position: fixed;
    top: 38px; /* height of top bar */
    left: 0;
    right: 0;
    width: 100%;
}

.navbar-custom.scrolled {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 10px 0;
    top: 0; /* Topbar scrolls away, navbar sticks to very top */
}

/* Inner pages need padding-top to clear fixed topbar + navbar */
.page-header-offset {
    padding-top: 100px; /* 38px topbar + ~62px navbar */
}

.navbar-custom .navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-custom .navbar-brand img {
    height: 40px;
}

.navbar-custom .navbar-brand .brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--white);
    font-size: 1.4rem;
    margin: 0;
    transition: var(--transition);
}

.navbar-custom.scrolled .brand-name {
    color: var(--primary);
}

.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    position: relative;
    transition: var(--transition);
}

.navbar-custom.scrolled .nav-link {
    color: var(--dark);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

/* Don't apply underline to dropdown toggle — Bootstrap uses ::after for caret */
.navbar-custom .nav-link.dropdown-toggle::after {
    content: none;
    display: none;
}

/* Re-add Bootstrap dropdown caret */
.navbar-custom .dropdown-toggle::after {
    display: inline-block;
    content: '';
    margin-left: 0.4em;
    vertical-align: 0.15em;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background: none;
    transition: none;
}

.navbar-custom .nav-link:not(.dropdown-toggle):hover::after,
.navbar-custom .nav-link:not(.dropdown-toggle).active::after {
    width: 60%;
}

.navbar-custom .nav-link:hover {
    color: var(--accent) !important;
}

.navbar-custom.scrolled .nav-link.active {
    color: var(--primary);
}

.nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    border-radius: 50px;
    padding: 10px 28px !important;
    font-weight: 600;
    margin-left: 15px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.dropdown-menu-custom {
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: var(--radius);
    padding: 10px;
    min-width: 220px;
    top: 110%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
}

.dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item-custom {
    padding: 10px 16px;
    border-radius: 8px;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item-custom:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 0;
}
.navbar-toggler:focus {
    box-shadow: none;
}
.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 30px;
    height: 24px;
}
.navbar-toggler-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}
.navbar-custom.scrolled .navbar-toggler-icon span {
    background: var(--dark);
}
.navbar-toggler-icon span:nth-child(1) { top: 0; }
.navbar-toggler-icon span:nth-child(2) { top: 11px; }
.navbar-toggler-icon span:nth-child(3) { top: 22px; }

/* Hero Section (Home) */
.hero-section {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}

/* Swiper needs explicit height on the container and slides */
.hero-swiper {
    height: 100vh;
    min-height: 700px;
    width: 100%;
}

.hero-swiper .swiper-wrapper {
    height: 100%;
}

.hero-swiper .swiper-slide {
    height: 100vh !important;
    min-height: 700px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-swiper .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 74, 62, 0.72) 0%, rgba(26, 26, 46, 0.55) 100%);
    z-index: 1;
}

.hero-swiper .swiper-slide .container {
    position: relative;
    z-index: 2;
}

/* Swiper nav buttons */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: var(--white);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.25);
    transition: var(--transition);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 900;
}

/* Swiper pagination */
.hero-swiper .swiper-pagination {
    bottom: 28px !important;
}

.hero-swiper .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

.hero-slide {
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 74, 62, 0.75) 0%, rgba(26, 26, 46, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding-top: 100px;
    width: 100%;
}

.hero-content .subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.hero-search-box {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 15px;
    align-items: center;
}

.hero-search-box .form-control {
    height: 54px;
    border-radius: 8px;
    border: none;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}
.hero-search-box .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

.hero-search-box .btn-search {
    background: var(--accent);
    color: var(--white);
    height: 54px;
    padding: 0 36px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    border: none;
    transition: var(--transition);
}

.hero-search-box .btn-search:hover {
    background: var(--accent-dark);
}

.hero-arrows .swiper-button-next, 
.hero-arrows .swiper-button-prev {
    color: var(--white);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: var(--transition);
}
.hero-arrows .swiper-button-next:hover, 
.hero-arrows .swiper-button-prev:hover {
    background: var(--primary);
}
.hero-arrows .swiper-button-next::after, 
.hero-arrows .swiper-button-prev::after {
    font-size: 1.2rem;
}

.swiper-pagination-custom {
    bottom: 30px !important;
}

.swiper-pagination-custom .swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
    width: 24px;
    border-radius: 4px;
}

/* Page Hero (Inner Pages) */
.page-hero {
    height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px; /* offset for fixed topbar (38px) + navbar (~62px) */
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 74, 62, 0.8) 0%, rgba(26, 26, 46, 0.6) 100%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding-top: 0;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.breadcrumb-custom {
    background: transparent;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom .breadcrumb-item {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--white);
}
.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--accent);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--accent);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "/";
}

/* Stats Section */
.stats-section {
    background: var(--dark);
    padding: 70px 0;
    position: relative;
}

.stat-item {
    text-align: center;
    color: var(--white);
    padding: 20px 0;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 8px;
    display: block;
}

/* Destination / Activity Cards */
.dest-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.card-link-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.card-link-wrapper:hover {
    color: inherit;
}

.card-link-wrapper:hover .dest-card,
.dest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.dest-card .card-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.dest-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.dest-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.dest-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
    transition: var(--transition);
    pointer-events: none;
}

.dest-card .card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.dest-card .card-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.dest-card .card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
    transition: var(--transition);
}
.dest-card:hover .card-title {
    color: var(--primary);
}

.dest-card .card-text {
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: auto;
}

.dest-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
}

.dest-card .card-meta .price {
    font-weight: 700;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.dest-card .card-meta .price span {
    font-size: 1.25rem;
}

.dest-card .card-meta .duration {
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
}
.dest-card .card-meta .duration i {
    color: var(--accent);
}

/* Activity Feature Cards */
.activity-icon-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    height: 100%;
}

.activity-icon-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--accent);
    box-shadow: var(--shadow-hover);
}

.activity-icon-card .icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.activity-icon-card:hover .icon-wrap {
    background: var(--primary);
}

.activity-icon-card .icon-wrap i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}
.activity-icon-card:hover .icon-wrap i {
    color: var(--white);
}

.activity-icon-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 12px;
}
.activity-icon-card p {
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0;
}

/* Why Choose Us */
.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 36px;
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: var(--transition);
}
.feature-item:hover .feature-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.feature-content h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 0.9rem;
    color: var(--text);
    margin: 0;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    position: relative;
    margin: 20px;
    height: calc(100% - 40px);
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 6rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card .content-wrap {
    position: relative;
    z-index: 1;
}

.testimonial-card .stars {
    color: #f5a623;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-card .text {
    font-style: italic;
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .author img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-light);
}

.testimonial-card .author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    margin: 0 0 2px;
}

.testimonial-card .author-role {
    color: #888;
    font-size: 0.82rem;
    margin: 0;
}

/* CTA Banner */
.cta-section {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 74, 62, 0.85);
}

.cta-section .content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

/* Blog Cards */
.blog-card {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.blog-card .blog-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card .blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.06);
}

.blog-card .blog-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card .blog-category {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 10px;
    display: inline-block;
}

.blog-card .blog-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--dark);
}

.blog-card .blog-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card .blog-title a:hover {
    color: var(--primary);
}

.blog-card .blog-meta {
    font-size: 0.82rem;
    color: #888;
    display: flex;
    gap: 16px;
}

.blog-card .blog-meta i {
    color: var(--primary);
    margin-right: 5px;
}

.blog-card .blog-excerpt {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    margin: 12px 0 20px;
    flex-grow: 1;
}

.blog-card .read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    margin-top: auto;
}

.blog-card .read-more:hover {
    color: var(--accent);
    gap: 10px;
}

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

.sidebar-widget .widget-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--primary-light);
    margin-bottom: 20px;
    position: relative;
    color: var(--dark);
}

.sidebar-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.recent-post-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}
.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.recent-post-item .post-info .title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    margin-bottom: 4px;
    display: block;
    text-decoration: none;
    transition: var(--transition);
}
.recent-post-item .post-info .title:hover {
    color: var(--primary);
}

.recent-post-item .post-info .date {
    font-size: 0.78rem;
    color: #888;
}
.recent-post-item .post-info .date i {
    color: var(--accent);
    margin-right: 4px;
}

.tag-cloud a {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.82rem;
    padding: 5px 14px;
    border-radius: 20px;
    margin: 4px;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.tag-cloud a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Single Blog / Destination Page */
.single-post-header {
    padding-bottom: 30px;
    border-bottom: 2px solid var(--primary-light);
    margin-bottom: 40px;
}

.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #888;
    font-size: 0.88rem;
    margin: 16px 0;
}

.single-post-meta i {
    color: var(--primary);
    margin-right: 6px;
}

.single-post-content {
    font-size: 1.05rem;
}

.single-post-content h2, 
.single-post-content h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    margin-top: 36px;
    margin-bottom: 16px;
}

.single-post-content p {
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 24px;
}

.single-post-content img {
    border-radius: var(--radius);
    margin: 24px 0;
    width: 100%;
}

.single-post-content blockquote {
    border-left: 4px solid var(--primary);
    padding: 16px 24px;
    background: var(--primary-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 24px 0;
    font-style: italic;
    color: var(--dark);
    font-weight: 500;
}

.single-post-content ul, 
.single-post-content ol {
    padding-left: 24px;
    line-height: 2;
    margin-bottom: 24px;
}

.author-box {
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    display: flex;
    gap: 20px;
    margin-top: 48px;
}

.author-box img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-box .author-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}
.author-box p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.tags-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 15px;
}
.tags-section span {
    font-weight: 600;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

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

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

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 107, 90, 0.6);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

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

/* Info Box / Trip Details */
.info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.info-card .info-card-header {
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    text-align: center;
}

.info-card .info-card-header h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin: 0;
    color: var(--white);
}

.info-card .info-card-header .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    margin-top: 10px;
    display: block;
}

.info-card .info-card-body {
    padding: 24px;
}

.info-detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.info-detail-row:last-child {
    border-bottom: none;
}

.info-detail-row .icon {
    width: 38px;
    height: 38px;
    background: var(--primary-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.info-detail-row .details {
    flex-grow: 1;
}

.info-detail-row .label {
    font-size: 0.82rem;
    color: #888;
    display: block;
    margin-bottom: 2px;
}

.info-detail-row .value {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
    display: block;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--primary);
    padding: 70px 0;
    position: relative;
    z-index: 10;
}

.newsletter-section h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--white);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    height: 52px;
    border-radius: 50px;
    border: none;
    padding: 0 24px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
}
.newsletter-form .form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.5);
}

.newsletter-form .btn-subscribe {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 0 32px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: var(--transition);
}

.newsletter-form .btn-subscribe:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

/* Footer */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.75);
    padding-top: 70px;
}

.site-footer h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 14px;
}

.site-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--accent);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 35px;
}

.footer-logo .brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
    margin: 0;
}

.footer-about {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-links {
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.footer-links a::before {
    content: '\203A';
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.footer-contact-item .fc-icon {
    color: var(--accent);
    margin-top: 3px;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}
.footer-bottom a:hover {
    color: var(--accent);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: 0 4px 15px rgba(26, 107, 90, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

/* Contact Page */
.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.contact-card .cc-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}
.contact-card:hover .cc-icon {
    background: var(--primary);
    color: var(--white);
}

.contact-card h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact-card p, .contact-card a {
    color: var(--text);
    font-size: 0.95rem;
    margin: 0;
}
.contact-card a:hover {
    color: var(--accent);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
}

.contact-form .form-control {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(26, 107, 90, 0.15);
    outline: none;
}

.contact-form .form-label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow);
}
.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 404 Page */
.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.error-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(6rem, 20vw, 14rem);
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    opacity: 0.12;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.error-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 0;
}

.error-icon {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 24px;
}
.error-content h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Buttons */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(26, 107, 90, 0.3);
}

.btn-accent-custom {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.btn-accent-custom:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.3);
}

.btn-outline-primary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 50px;
    padding: 12px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

.btn-white-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    border-radius: 50px;
    padding: 12px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

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

/* Utilities */
.text-primary-custom { color: var(--primary) !important; }
.text-accent { color: var(--accent) !important; }
.bg-primary-custom { background: var(--primary) !important; }
.bg-light-custom { background: var(--light-bg) !important; }
.rounded-custom { border-radius: var(--radius) !important; }
.rounded-lg-custom { border-radius: var(--radius-lg) !important; }
.shadow-custom { box-shadow: var(--shadow) !important; }

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto;
    border-radius: 2px;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
.loader {
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-custom {
        background: var(--dark);
        padding: 10px 0;
    }
    .navbar-custom .nav-link {
        padding: 10px 15px;
    }
    .navbar-custom .nav-link::after {
        display: none;
    }
    .nav-cta {
        margin: 10px 15px;
        display: inline-block;
    }
    .dropdown-menu-custom {
        box-shadow: none;
        background: transparent;
        padding-left: 20px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    .dropdown-menu-custom.show {
        display: block;
    }
    .dropdown-item-custom {
        color: rgba(255,255,255,0.8);
    }
    .dropdown-item-custom:hover {
        background: transparent;
        color: var(--accent);
    }
    .top-bar {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-search-box {
        flex-direction: column;
        padding: 20px;
    }
    .hero-search-box .form-control,
    .hero-search-box .btn-search {
        width: 100%;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-hero {
        height: 320px;
    }
    .page-hero-content h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .cta-section {
        padding: 70px 0;
    }
    .cta-section h2 {
        font-size: 2.2rem;
    }
    .info-card {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .author-box {
        flex-direction: column;
        text-align: center;
    }
    .hero-arrows {
        display: none;
    }
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    .testimonial-card {
        padding: 24px;
        margin: 10px;
    }
}


html {
    scroll-behavior: smooth;
}

/* =============================================
   MOBILE NAVBAR FIX
   ============================================= */

/* When navbar is open (expanded) on mobile, give it a solid bg */
@media (max-width: 991px) {
    .navbar-custom .navbar-collapse {
        background: var(--dark);
        border-radius: var(--radius);
        padding: 16px;
        margin-top: 10px;
        box-shadow: var(--shadow);
    }

    .navbar-custom.scrolled .navbar-collapse {
        background: var(--white);
    }

    .navbar-custom .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 10px 16px !important;
        border-radius: 8px;
    }

    .navbar-custom.scrolled .nav-link {
        color: var(--dark) !important;
    }

    .navbar-custom .nav-link:hover {
        background: rgba(255,255,255,0.08);
    }

    .navbar-custom.scrolled .nav-link:hover {
        background: var(--primary-light);
        color: var(--primary) !important;
    }

    .nav-cta {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: 8px !important;
        margin-left: 0 !important;
    }

    .page-hero {
        margin-top: 90px;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(255,255,255,0.15);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Hero slide content z-index fix */
.hero-swiper .swiper-slide > * {
    position: relative;
    z-index: 2;
}

/* Fix Bootstrap text-primary to use our green */
.text-primary {
    color: var(--primary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

/* btn-accent-custom inline styles */
.btn-accent-custom {
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
}

.btn-accent-custom:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}

/* Section divider */
.section-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 16px auto;
    border-radius: 2px;
    display: block;
}
