:root {
    --tribal-dark: #1c1408;
    --tribal-red: #8b0000;
    --tribal-ocre: #b8860b;
    --tribal-natural: #8f755f;
    --tribal-light: #f5e8d0;
    --tribal-green: #2f4f2f;
    --tribal-teal: #2a6e6e;
    --tribal-blue: #1e3a5f;
}

body {
    font-family:
        "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans",
        Arial, sans-serif;
    background-color: var(--tribal-dark);
    color: var(--tribal-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tribal Background Pattern */
.tribal-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.05;
    background-image:
        radial-gradient(
            circle at 25% 25%,
            var(--tribal-red) 2px,
            transparent 2px
        ),
        radial-gradient(
            circle at 75% 75%,
            var(--tribal-ocre) 2px,
            transparent 2px
        ),
        radial-gradient(
            circle at 50% 50%,
            var(--tribal-natural) 1px,
            transparent 1px
        );
    background-size:
        100px 100px,
        150px 150px,
        80px 80px;
}

/* Common Header/Navbar */
header {
    background-color: rgba(28, 20, 8, 0.95);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 3px solid var(--tribal-ocre);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
    color: inherit;
}
.logo:hover,
.logo:focus {
    text-decoration: none !important;
    color: inherit;
}
a.logo {
    color: var(--tribal-light) !important;
}
a.logo:hover,
a.logo:focus {
    color: var(--tribal-light) !important;
    text-decoration: none !important;
}

.tribal-symbol {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--tribal-red), var(--tribal-ocre));
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--tribal-dark);
    font-weight: bold;
}

.logo-text h1 {
    font-size: 1.6rem;
    color: var(--tribal-light) !important;
    letter-spacing: 1.5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 0;
    line-height: 1.2;
}
.logo-text span {
    color: var(--tribal-ocre) !important;
    font-size: 0.85rem;
    display: block;
    letter-spacing: 2px;
}

a {
    text-decoration: none !important;
}
a:hover {
    text-decoration: none !important;
}

.navbar-nav .nav-link {
    color: var(--tribal-light) !important;
    font-weight: bold;
    padding: 8px 12px !important;
    position: relative;
    transition: all 0.3s;
    letter-spacing: 1px;
    font-size: 0.95rem;
}
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--tribal-ocre);
    bottom: 0;
    left: 12px;
    transition: width 0.3s;
}
.navbar-nav .nav-link:hover::after {
    width: calc(100% - 24px);
}
.navbar-nav .nav-link:hover {
    color: var(--tribal-ocre) !important;
}

.navbar-toggler {
    border-color: var(--tribal-ocre) !important;
    color: var(--tribal-ocre) !important;
    padding: 0.25rem 0.5rem;
    font-size: 1.1rem;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.5) !important;
}

.navbar-collapse {
    background-color: rgba(28, 20, 8, 0.98);
    padding: 1rem;
    border-radius: 0 0 8px 8px;
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-top: none;
    margin-top: 0.5rem;
}

/* Common Button */
.tribal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--tribal-light);
    border: 2px solid var(--tribal-ocre);
    padding: 10px 25px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    min-height: 44px;
    text-decoration: none;
}
.tribal-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(184, 134, 11, 0.2);
    transition: left 0.5s;
}
.tribal-btn:hover::before {
    left: 100%;
}
.tribal-btn:hover {
    background-color: var(--tribal-ocre);
    color: var(--tribal-dark);
}

/* Common Footer */
footer {
    background-color: rgba(28, 20, 8, 0.98);
    padding: 3rem 0 1.5rem;
    margin-top: 3rem;
    border-top: 3px solid var(--tribal-ocre);
}
.footer-column {
    margin-bottom: 2rem;
}
.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    color: var(--tribal-ocre);
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(184, 134, 11, 0.3);
}
.footer-column p {
    color: #d4c9b8;
    font-size: 0.9rem;
    line-height: 1.5;
}
.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.footer-links li {
    margin-bottom: 0.6rem;
}
.footer-links a {
    color: var(--tribal-light);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--tribal-ocre);
    padding-left: 8px;
    text-decoration: none;
}
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(184, 134, 11, 0.2);
    color: var(--tribal-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
}
.social-links a:hover {
    background-color: var(--tribal-ocre);
    color: var(--tribal-dark);
    transform: translateY(-3px);
}
.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(245, 232, 208, 0.7);
    font-size: 0.85rem;
}

/* Common Section Title */
.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 0 1rem;
}
.section-title h2 {
    font-size: 2rem;
    color: var(--tribal-light);
    display: inline-block;
    padding-bottom: 12px;
    position: relative;
    margin-bottom: 0.5rem;
}
.section-title h2::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 3px;
    background-color: var(--tribal-ocre);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.section-title p {
    color: #d4c9b8;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ARTICLE DETAIL PAGE ===== */
.article-hero {
    background: linear-gradient(rgba(28, 20, 8, 0.85), rgba(28, 20, 8, 0.9));
    padding: 4rem 0 2rem;
    margin-top: 70px;
}
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.article-header {
    margin-bottom: 3rem;
    text-align: center;
}
.article-category {
    display: inline-block;
    background-color: rgba(184, 134, 11, 0.2);
    color: var(--tribal-ocre);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.article-title {
    font-size: 2.5rem;
    color: var(--tribal-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    color: #a89a7d;
    font-size: 0.95rem;
    flex-wrap: wrap;
}
.article-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.article-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--tribal-ocre);
}
.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
    border: 2px solid rgba(184, 134, 11, 0.3);
}
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #f0e6d0;
}
.article-content h2 {
    color: var(--tribal-ocre);
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
}
.article-content h3 {
    color: var(--tribal-light);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}
.article-content p {
    margin-bottom: 1.5rem;
}
.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.article-content li {
    margin-bottom: 0.5rem;
}
.article-content blockquote {
    border-left: 4px solid var(--tribal-ocre);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #d4c9b8;
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 2rem 0;
    border-radius: 10px;
    border: 2px solid rgba(184, 134, 11, 0.3);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}
.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s;
    cursor: pointer;
    border: 1px solid rgba(184, 134, 11, 0.3);
}
.gallery-img:hover {
    transform: scale(1.02);
}
.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
}
.nav-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tribal-light);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    background-color: rgba(40, 32, 20, 0.8);
    border: 1px solid rgba(184, 134, 11, 0.3);
    transition: all 0.3s;
}
.nav-btn:hover {
    background-color: rgba(184, 134, 11, 0.2);
    color: var(--tribal-ocre);
}

/* ===== BLOG PAGE ===== */
.blog-hero {
    background:
        linear-gradient(rgba(28, 20, 8, 0.85), rgba(28, 20, 8, 0.9)),
        url("/default-image/blog.jpg");

    background-size: cover;
    background-position: center;
    padding: 5rem 0 3rem;
    margin-top: 70px;
    text-align: center;
}
.blog-hero h1 {
    font-size: 2.5rem;
    color: var(--tribal-light);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}
.blog-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #f0e6d0;
    padding: 0 1rem;
}
.blog-content {
    padding: 3rem 0;
}
.blog-card {
    background-color: rgba(40, 32, 20, 0.8);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    border: 1px solid rgba(184, 134, 11, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--tribal-ocre);
}
.blog-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.blog-card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-category {
    display: inline-block;
    background-color: rgba(184, 134, 11, 0.2);
    color: var(--tribal-ocre);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 0.8rem;
    align-self: flex-start;
}
.blog-card-title {
    font-size: 1.3rem;
    color: var(--tribal-light);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}
.blog-card-text {
    color: #d4c9b8;
    margin-bottom: 1.2rem;
    line-height: 1.5;
    font-size: 0.95rem;
    flex-grow: 1;
}
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    padding-top: 0.8rem;
    color: #a89a7d;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.blog-card-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--tribal-ocre);
}
.sidebar-widget {
    background-color: rgba(40, 32, 20, 0.8);
    border-radius: 8px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(184, 134, 11, 0.2);
}
.widget-title {
    font-size: 1.2rem;
    color: var(--tribal-ocre);
    margin-bottom: 1.2rem;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(184, 134, 11, 0.3);
}
.categories-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.categories-list li {
    margin-bottom: 0.6rem;
}
.categories-list a {
    color: var(--tribal-light);
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    justify-content: space-between;
    padding: 7px 10px;
    border-radius: 5px;
    background-color: rgba(28, 20, 8, 0.4);
    font-size: 0.9rem;
}
.categories-list a:hover {
    background-color: rgba(184, 134, 11, 0.2);
    color: var(--tribal-ocre);
    padding-left: 15px;
}
.categories-list .count {
    background-color: rgba(184, 134, 11, 0.3);
    color: var(--tribal-ocre);
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    min-width: 24px;
    text-align: center;
}
.blog-pagination {
    margin-top: 2rem;
}
.page-link {
    background-color: rgba(40, 32, 20, 0.8);
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: var(--tribal-light);
    margin: 0 3px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
}
.page-link:hover {
    background-color: rgba(184, 134, 11, 0.2);
    border-color: var(--tribal-ocre);
    color: var(--tribal-light);
}
.page-item.active .page-link {
    background-color: var(--tribal-ocre);
    border-color: var(--tribal-ocre);
    color: var(--tribal-dark);
    font-weight: bold;
}

/* ===== ETHICAL TOURISM PAGE ===== */
.ethical-hero {
    background:
        linear-gradient(rgba(18, 13, 6, 0.9), rgba(18, 13, 6, 0.95)),
        url("/default-image/hiking.jpg");
    background-size: cover;
    background-position: center;
    padding: 5rem 0 3rem;
    margin-top: 70px;
    text-align: center;
}

.ethical-hero h1 {
    font-size: 2.5rem;
    color: var(--tribal-light);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.ethical-hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #f0e6d0;
    padding: 0 1rem;
}
.ethical-badge {
    display: inline-block;
    background-color: rgba(42, 110, 110, 0.8);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border: 2px solid var(--tribal-teal);
}
.principles-section {
    padding: 4rem 0;
    background-color: rgba(47, 79, 47, 0.1);
}
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.principle-card {
    background-color: rgba(40, 32, 20, 0.8);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(184, 134, 11, 0.2);
    transition: transform 0.3s;
    height: 100%;
}
.principle-card:hover {
    transform: translateY(-5px);
    border-color: var(--tribal-ocre);
}
.principle-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(184, 134, 11, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    font-size: 1.8rem;
    color: var(--tribal-ocre);
}
.principle-card h3 {
    font-size: 1.3rem;
    color: var(--tribal-light);
    margin-bottom: 0.8rem;
}
.principle-card p {
    color: #d4c9b8;
    font-size: 0.95rem;
    line-height: 1.5;
}
.packages-section {
    padding: 4rem 0;
}
.tour-card {
    background-color: rgba(40, 32, 20, 0.8);
    border-radius: 10px;
    overflow: visible;
    margin-bottom: 2rem;
    border: 1px solid rgba(184, 134, 11, 0.2);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--tribal-ocre);
}
.tour-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--tribal-red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    max-width: calc(100% - 40px);
    overflow: hidden;
    text-overflow: ellipsis;
}
.tour-title {
    font-size: 1.5rem;
    color: var(--tribal-light);
    margin-bottom: 0.5rem;
    padding-right: 80px;
}
.tour-duration {
    color: var(--tribal-ocre);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}
.tour-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.tour-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.tour-description {
    color: #d4c9b8;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.95rem;
    flex-grow: 1;
}
.tour-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}
.tour-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #d4c9b8;
    font-size: 0.9rem;
}
.tour-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--tribal-ocre);
    font-weight: bold;
}
.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(184, 134, 11, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}
.tour-price {
    font-size: 1.5rem;
    color: var(--tribal-ocre);
    font-weight: bold;
}
.tour-price span {
    font-size: 0.9rem;
    color: #a89a7d;
    font-weight: normal;
}
.tour-actions {
    display: flex;
    gap: 10px;
}
.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
}
.why-choose-section {
    padding: 4rem 0;
    background-color: rgba(42, 110, 110, 0.1);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(184, 134, 11, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--tribal-ocre);
}
.benefit-content h3 {
    font-size: 1.2rem;
    color: var(--tribal-light);
    margin-bottom: 0.5rem;
}
.benefit-content p {
    color: #d4c9b8;
    font-size: 0.9rem;
    line-height: 1.5;
}
.modal-content {
    background-color: rgba(40, 32, 20, 0.95);
    color: var(--tribal-light);
    border: 1px solid var(--tribal-ocre);
}
.modal-header {
    border-bottom: 1px solid rgba(184, 134, 11, 0.3);
}
.modal-title {
    color: var(--tribal-ocre);
}
.form-control,
.form-select {
    background-color: rgba(28, 20, 8, 0.7);
    border: 1px solid rgba(184, 134, 11, 0.3);
    color: var(--tribal-light);
}
.form-control:focus,
.form-select:focus {
    background-color: rgba(28, 20, 8, 0.9);
    border-color: var(--tribal-ocre);
    color: var(--tribal-light);
    box-shadow: 0 0 0 0.25rem rgba(184, 134, 11, 0.25);
}
.form-label {
    color: #d4c9b8;
}

/* ===== HOME / CAROUSEL PAGE ===== */
.hero-carousel {
    height: 100vh;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}
.carousel-slides {
    display: flex;
    width: 500%;
    height: 100%;
    transition: transform 1s ease-in-out;
}
.carousel-slide {
    width: 20%;
    height: 100%;
    position: relative;
}
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 800px;
    z-index: 2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}
.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--tribal-light);
    text-transform: uppercase;
    letter-spacing: 3px;
}
.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(28, 20, 8, 0.7);
    color: var(--tribal-light);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border: 1px solid var(--tribal-ocre);
}
.carousel-nav:hover {
    background-color: var(--tribal-ocre);
    color: var(--tribal-dark);
}
.prev-slide {
    left: 20px;
}
.next-slide {
    right: 20px;
}
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    list-style: none;
    padding: 0;
    margin: 0;
}
.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}
.indicator.active {
    background-color: var(--tribal-ocre);
    transform: scale(1.3);
}
.tribal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 4rem;
}
.tribal-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    transition:
        transform 0.5s,
        box-shadow 0.5s;
}
.tribal-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.7);
}
.tribal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.tribal-item:hover img {
    transform: scale(1.1);
}
.item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(28, 20, 8, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.5s;
}
.tribal-item:hover .item-overlay {
    transform: translateY(0);
}
.item-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--tribal-ocre);
}
.culture-section {
    background-color: rgba(47, 79, 47, 0.2);
    padding: 4rem 0;
    margin: 4rem 0;
    position: relative;
}
.culture-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(
        90deg,
        var(--tribal-red),
        var(--tribal-ocre),
        var(--tribal-green)
    );
}
.culture-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--tribal-ocre);
    position: relative;
    padding-bottom: 10px;
}
.culture-content h3::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--tribal-red);
    bottom: 0;
    left: 0;
}
.culture-features {
    list-style: none;
    margin-top: 2rem;
    padding-left: 0;
}
.culture-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}
.culture-features li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--tribal-ocre);
    font-size: 1.2rem;
}
.activities-carousel {
    max-width: 1000px;
    margin: 4rem auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
}
.activities-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.activity-slide {
    min-width: 100%;
    display: flex;
    background-color: rgba(28, 20, 8, 0.9);
}
.activity-image {
    flex: 1;
    min-width: 300px;
}
.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.activity-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.activity-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--tribal-ocre);
}
.activity-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}
.activity-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(184, 134, 11, 0.8);
    color: var(--tribal-dark);
    border: none;
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}
.activity-nav:hover {
    background-color: var(--tribal-ocre);
}
.activity-prev {
    left: 10px;
}
.activity-next {
    right: 10px;
}
.themes-section {
    padding: 5rem 0;
    background-color: rgba(28, 20, 8, 0.7);
    position: relative;
}
.theme-card {
    background: linear-gradient(
        145deg,
        rgba(47, 79, 47, 0.3),
        rgba(28, 20, 8, 0.8)
    );
    border-radius: 10px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s;
    border: 1px solid rgba(184, 134, 11, 0.2);
    text-align: center;
}
.theme-card:hover {
    transform: translateY(-10px);
    border-color: var(--tribal-ocre);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}
.theme-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--tribal-red), var(--tribal-ocre));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--tribal-dark);
}
.theme-card h3 {
    color: var(--tribal-ocre);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.services-section {
    padding: 5rem 0;
    background-color: rgba(47, 79, 47, 0.1);
}
.service-item {
    background-color: rgba(28, 20, 8, 0.8);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 5px solid var(--tribal-ocre);
    transition: all 0.3s;
}
.service-item:hover {
    border-left-color: var(--tribal-red);
    transform: translateX(10px);
}
.service-icon {
    color: var(--tribal-ocre);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.service-item h3 {
    color: var(--tribal-ocre);
    margin-bottom: 1rem;
}
.team-section {
    padding: 5rem 0;
    background-color: rgba(28, 20, 8, 0.8);
    position: relative;
}
.team-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(
        90deg,
        var(--tribal-ocre),
        var(--tribal-red),
        var(--tribal-green)
    );
}
.team-carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 50px;
}
.team-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 25px;
    padding: 20px 5px;
}
.team-card {
    background: linear-gradient(
        145deg,
        rgba(47, 79, 47, 0.2),
        rgba(28, 20, 8, 0.9)
    );
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    min-width: 280px;
    flex: 0 0 auto;
    transition: all 0.4s;
    border: 1px solid rgba(184, 134, 11, 0.3);
    position: relative;
    overflow: hidden;
}
.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--tribal-ocre);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}
.team-img-container {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--tribal-ocre);
    position: relative;
    background-color: var(--tribal-dark);
}
.team-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.team-card:hover .team-img-container img {
    transform: scale(1.1);
}
.team-card h3 {
    color: var(--tribal-ocre);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.team-card .position {
    color: var(--tribal-light);
    font-weight: bold;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: block;
}
.team-card .location {
    color: var(--tribal-natural);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: block;
}
.team-card p {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}
.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(184, 134, 11, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tribal-light);
    text-decoration: none;
    transition: all 0.3s;
}
.team-social a:hover {
    background-color: var(--tribal-ocre);
    color: var(--tribal-dark);
    transform: translateY(-3px);
}
.team-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(184, 134, 11, 0.8);
    color: var(--tribal-dark);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-carousel-nav:hover {
    background-color: var(--tribal-ocre);
    transform: translateY(-50%) scale(1.1);
}
.team-carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.team-prev {
    left: 5px;
}
.team-next {
    right: 5px;
}
.team-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.team-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(184, 134, 11, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.team-indicator.active {
    background-color: var(--tribal-ocre);
    transform: scale(1.3);
}

/* ===== TRANSPORTATION PAGE ===== */
.transportation-hero {
    background:
        linear-gradient(rgba(28, 20, 8, 0.85), rgba(28, 20, 8, 0.9)),
        url("/default-image/transportasi.jpg");

    background-size: cover;
    background-position: center;
    padding: 6rem 0 3rem;
    margin-top: 70px;
    text-align: center;
}
.transportation-title {
    font-size: 3rem;
    color: var(--tribal-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}
.transportation-subtitle {
    font-size: 1.2rem;
    color: var(--tribal-ocre);
    max-width: 700px;
    margin: 0 auto 2rem;
}
.filter-section {
    background-color: rgba(40, 32, 20, 0.8);
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem auto 3rem;
    border: 1px solid rgba(184, 134, 11, 0.3);
}
.filter-title {
    color: var(--tribal-ocre);
    margin-bottom: 1.5rem;
    text-align: center;
}
.filter-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.filter-btn {
    background-color: rgba(28, 20, 8, 0.7);
    color: var(--tribal-light);
    border: 1px solid rgba(184, 134, 11, 0.5);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
    background-color: var(--tribal-ocre);
    color: var(--tribal-dark);
}
.transportation-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}
.transportation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.transportation-card {
    background-color: rgba(40, 32, 20, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(184, 134, 11, 0.3);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
}
.transportation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card-content {
    padding: 1.5rem;
}
.card-title {
    font-size: 1.4rem;
    color: var(--tribal-light);
    margin-bottom: 0.5rem;
}
.card-category {
    display: inline-block;
    background-color: rgba(184, 134, 11, 0.2);
    color: var(--tribal-ocre);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.card-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}
.card-features li {
    padding: 0.3rem 0;
    color: #d4c9b8;
    font-size: 0.9rem;
}
.card-features i {
    color: var(--tribal-ocre);
    margin-right: 8px;
    width: 20px;
}
.card-price {
    font-size: 1.5rem;
    color: var(--tribal-ocre);
    font-weight: bold;
    margin: 1rem 0;
}
.card-price span {
    font-size: 0.9rem;
    color: #a89a7d;
    font-weight: normal;
}
.card-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}
.book-btn {
    flex: 1;
    background-color: var(--tribal-ocre);
    color: var(--tribal-dark);
    border: none;
    padding: 0.7rem;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}
.book-btn:hover {
    background-color: #d4a017;
}
.detail-btn {
    flex: 1;
    background-color: transparent;
    color: var(--tribal-light);
    border: 1px solid rgba(184, 134, 11, 0.5);
    padding: 0.7rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.detail-btn:hover {
    background-color: rgba(184, 134, 11, 0.1);
}
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal-content {
    background-color: var(--tribal-dark);
    border-radius: 10px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    border: 2px solid var(--tribal-ocre);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.modal-title {
    font-size: 1.5rem;
    color: var(--tribal-light);
}
.close-modal {
    background: none;
    border: none;
    color: var(--tribal-light);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-label {
    display: block;
    color: var(--tribal-ocre);
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: rgba(40, 32, 20, 0.8);
    border: 1px solid rgba(184, 134, 11, 0.5);
    border-radius: 5px;
    color: var(--tribal-light);
    font-size: 1rem;
}
.form-textarea {
    min-height: 100px;
    resize: vertical;
}
.submit-booking {
    width: 100%;
    padding: 1rem;
    background-color: var(--tribal-ocre);
    color: var(--tribal-dark);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 1rem;
}
.submit-booking:hover {
    background-color: #d4a017;
}
.info-section {
    background-color: rgba(40, 32, 20, 0.8);
    padding: 3rem;
    border-radius: 10px;
    margin: 3rem auto;
    border: 1px solid rgba(184, 134, 11, 0.3);
}
.info-title {
    color: var(--tribal-ocre);
    margin-bottom: 1.5rem;
}
.info-list {
    list-style: none;
    padding: 0;
}
.info-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.2);
    color: #d4c9b8;
}
.info-list li:last-child {
    border-bottom: none;
}
.info-list i {
    color: var(--tribal-ocre);
    margin-right: 10px;
}

/* ===== RESPONSIVE BREAKPOINTS (Common + Merged) ===== */
@media (max-width: 576px) {
    .logo-text h1 {
        font-size: 1.3rem;
    }
    .logo-text span {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
    .tribal-symbol {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .navbar-nav .nav-link {
        padding: 6px 10px !important;
        font-size: 0.9rem;
    }
    .article-title {
        font-size: 1.8rem;
    }
    .article-image {
        height: 250px;
    }
    .article-content {
        font-size: 1rem;
    }
    .article-content h2 {
        font-size: 1.5rem;
    }
    .article-content h3 {
        font-size: 1.2rem;
    }
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    .blog-hero {
        padding: 4rem 0 2.5rem;
        margin-top: 65px;
    }
    .blog-hero h1 {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }
    .blog-hero p {
        font-size: 0.95rem;
    }
    .blog-card-img {
        height: 180px;
    }
    .blog-card-title {
        font-size: 1.15rem;
    }
    .blog-card-text {
        font-size: 0.9rem;
    }
    .ethical-hero {
        padding: 4rem 0 2.5rem;
        margin-top: 65px;
    }
    .ethical-hero h1 {
        font-size: 1.8rem;
        padding: 0 0.5rem;
    }
    .tour-title {
        font-size: 1.3rem;
        padding-right: 70px;
    }
    .tour-badge {
        right: 10px;
        font-size: 0.7rem;
        padding: 4px 10px;
        max-width: calc(100% - 20px);
    }
    .tour-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .slide-content h2 {
        font-size: 1.8rem;
    }
    .transportation-title {
        font-size: 2rem;
    }
    .transportation-grid {
        grid-template-columns: 1fr;
    }
    .filter-group {
        flex-direction: column;
        align-items: center;
    }
    .filter-btn {
        width: 100%;
        max-width: 200px;
    }
    .card-actions {
        flex-direction: column;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    .ethical-hero h1 {
        font-size: 2rem;
    }
    .tour-title {
        font-size: 1.4rem;
        padding-right: 90px;
    }
    .tour-badge {
        right: 15px;
        font-size: 0.75rem;
    }
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .article-title {
        font-size: 2.3rem;
    }
    .article-image {
        height: 350px;
    }
    .blog-hero h1 {
        font-size: 2.2rem;
    }
    .ethical-hero h1 {
        font-size: 2.2rem;
    }
    .tour-title {
        font-size: 1.5rem;
        padding-right: 100px;
    }
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .transportation-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 993px) and (max-width: 1200px) {
    .ethical-hero h1 {
        font-size: 2.3rem;
    }
    .principles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1201px) {
    .blog-hero h1 {
        font-size: 2.8rem;
    }
    .ethical-hero h1 {
        font-size: 2.8rem;
    }
    .principles-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .container {
        max-width: 1140px;
    }
}

/* Additional common responsive tweaks */
@media (max-width: 768px) {
    .container,
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .slide-content h2 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
    .activity-slide {
        flex-direction: column;
    }
    .team-carousel-container {
        padding: 0 40px;
    }
}

@media (max-width: 576px) {
    .team-carousel-container {
        padding: 0 30px;
    }
}

/* Animations */
.blog-card,
.sidebar-widget,
.tour-card,
.principle-card,
.benefit-item,
.team-card {
    animation: fadeInUp 0.6s ease-out;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Touch-friendly */
@media (hover: none) and (pointer: coarse) {
    .tribal-item:hover,
    .team-card:hover,
    .theme-card:hover,
    .service-item:hover,
    .social-links a:hover {
        transform: none;
    }
    .tribal-item:active,
    .team-card:active,
    .tribal-btn:active {
        transform: scale(0.98);
    }
}

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

.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    transform: scale(1.12);
    color: #fff;
}
