/* ============================================================
   BONFIRE ADVENTURES — Destination Pages (Shared)
   ============================================================ */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1e1e1e;
    background: #f8f9fa;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

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

:root {
    --orange: #E87A20;
    --orange-dark: #c9691c;
    --orange-light: #fef3e8;
    --green: #27ae60;
    --green-hover: #1e8f4e;
    --dark: #1a1a2e;
    --gray-100: #f5f5f5;
    --gray-200: #e8e8e8;
    --gray-300: #d1d1d1;
    --gray-400: #a0a0a0;
    --gray-500: #6b6b6b;
    --gray-600: #4a4a4a;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 122, 32, 0.35);
}

.btn-green {
    background: var(--green);
    color: var(--white);
}
.btn-green:hover {
    background: var(--green-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(39, 174, 96, 0.35);
}

/* ----- TOP BAR ----- */
.top-bar {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    font-size: 13px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 16px;
}
.top-bar a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}
.top-bar a:hover {
    color: var(--orange);
}
.top-bar i {
    color: var(--orange);
    margin-right: 4px;
}

/* ----- HEADER ----- */
.header {
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
    color: var(--orange);
}
.logo img {
    height: 40px;
    width: auto;
}
.logo .sub {
    font-weight: 400;
    font-size: 14px;
    color: var(--gray-600);
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav a {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    transition: var(--transition);
    position: relative;
}
.nav a:hover,
.nav a.active {
    color: var(--orange);
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}
.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--dark);
    cursor: pointer;
    padding: 4px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--gray-600);
    flex-wrap: wrap;
}
.header-contact a {
    color: var(--gray-600);
    transition: var(--transition);
}
.header-contact a:hover {
    color: var(--orange);
}
.header-contact i {
    color: var(--orange);
    margin-right: 4px;
}

/* ----- BREADCRUMB ----- */
.breadcrumb {
    padding: 16px 0 8px;
    font-size: 14px;
    color: var(--gray-500);
}
.breadcrumb a {
    color: var(--gray-500);
    transition: var(--transition);
}
.breadcrumb a:hover {
    color: var(--orange);
}
.breadcrumb span {
    margin: 0 6px;
    color: var(--gray-300);
}
.breadcrumb .current {
    color: var(--orange);
    font-weight: 600;
}

/* ----- DESTINATION HERO ----- */
.dest-hero {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('hero.webp') center/cover no-repeat;
    padding: 50px 0;
    border-radius: 0 0 30px 30px;
}
.dest-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0 0 30px 30px;
    z-index: 1;
}
.dest-hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}
.dest-hero h1 {
    color: var(--white);
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 4px;
}
.dest-hero .location-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    padding: 4px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}
.dest-hero .rating {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(4px);
    padding: 2px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    color: #fbbf24;
    margin-top: 6px;
}
.dest-hero .rating i {
    margin-right: 4px;
}

/* ----- DESTINATION CONTENT ----- */
.dest-content {
    margin-top: -30px;
    position: relative;
    z-index: 3;
}

.dest-main {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    align-items: start;
}

.dest-description {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 35px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}
.dest-description h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}
.dest-description p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}
.dest-description .browse-btn {
    margin-top: 8px;
}
.dest-description .chat-expert-btn {
    margin-top: 12px;
}

/* ----- SIDEBAR ----- */
.dest-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
}
.sidebar-card .stat-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
}
.sidebar-card .stat-row:last-child {
    border-bottom: none;
}
.sidebar-card .stat-row .label {
    color: var(--gray-500);
}
.sidebar-card .stat-row .value {
    font-weight: 600;
    color: var(--dark);
}
.sidebar-card .stat-row .value .orange {
    color: var(--orange);
}

/* ----- TABS ----- */
.dest-tabs {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}
.dest-tabs .tab-headers {
    display: flex;
    gap: 4px;
    background: var(--gray-100);
    padding: 4px 6px;
    border-bottom: 1px solid var(--gray-200);
}
.dest-tabs .tab-headers .tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    color: var(--gray-500);
    font-family: inherit;
}
.dest-tabs .tab-headers .tab-btn.active {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.dest-tabs .tab-headers .tab-btn:hover:not(.active) {
    color: var(--dark);
}
.dest-tabs .tab-panel {
    display: none;
    padding: 24px 30px 30px;
}
.dest-tabs .tab-panel.active {
    display: block;
}
.dest-tabs .tab-panel h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.dest-tabs .tab-panel p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.8;
}
.dest-tabs .tab-panel .highlight-text {
    color: var(--orange);
    font-weight: 600;
}

/* ----- PACKAGES GRID ----- */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 16px;
}
.package-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 18px 20px;
    transition: var(--transition);
}
.package-item:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.package-item .pkg-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark);
}
.package-item .pkg-location {
    font-size: 13px;
    color: var(--gray-500);
}
.package-item .pkg-desc {
    font-size: 14px;
    color: var(--gray-600);
    margin: 6px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.package-item .pkg-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--orange);
}
.package-item .pkg-details {
    margin-top: 8px;
    display: inline-block;
    color: var(--orange);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}
.package-item .pkg-details:hover {
    color: var(--orange-dark);
}
.package-item .pkg-duration {
    display: inline-block;
    background: var(--gray-100);
    padding: 2px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 6px;
}

/* ----- FAQ ----- */
.faq-section {
    margin-top: 30px;
}
.faq-section h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}
.faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 14px 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-question {
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    transition: var(--transition);
    padding: 2px 0;
}
.faq-question:hover {
    color: var(--orange);
}
.faq-question i {
    transition: transform 0.3s ease;
    color: var(--orange);
    font-size: 16px;
}
.faq-question.open i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--gray-600);
    font-size: 15px;
    padding: 0 4px;
    line-height: 1.7;
}
.faq-answer.open {
    max-height: 300px;
    padding-top: 10px;
}

/* ----- FOOTER ----- */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 20px;
    margin-top: 40px;
}
.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}
.footer h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}
.footer a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 6px;
    transition: var(--transition);
}
.footer a:hover {
    color: var(--orange);
}
.footer .contact-info p {
    font-size: 14px;
    margin-bottom: 6px;
}
.footer .contact-info i {
    color: var(--orange);
    width: 24px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a {
    display: inline;
    margin: 0 12px;
    color: rgba(255, 255, 255, 0.35);
}
.footer-bottom a:hover {
    color: var(--orange);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
    .dest-main {
        grid-template-columns: 1fr;
    }
    .header-contact {
        display: none;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 16px 0 8px;
        gap: 12px;
        border-top: 1px solid var(--gray-200);
    }
    .nav.open {
        display: flex;
    }
    .nav a {
        width: 100%;
        padding: 6px 0;
    }
    .nav a::after {
        display: none;
    }

    .top-bar .container {
        justify-content: center;
        font-size: 12px;
    }

    .dest-hero h1 {
        font-size: 30px;
    }
    .dest-description {
        padding: 20px;
    }
    .dest-tabs .tab-headers {
        flex-wrap: wrap;
    }
    .dest-tabs .tab-headers .tab-btn {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
        font-size: 13px;
    }
    .dest-tabs .tab-panel {
        padding: 16px 18px 20px;
    }
    .packages-grid {
        grid-template-columns: 1fr;
    }
    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer .contact-info i {
        width: auto;
        margin-right: 6px;
    }
}

@media (max-width: 480px) {
    .dest-hero {
        min-height: 30vh;
        padding: 40px 0;
    }
    .dest-hero h1 {
        font-size: 24px;
    }
    .dest-description h2 {
        font-size: 20px;
    }
    .sidebar-card {
        padding: 16px;
    }
}