:root {
    --primary-green: #2d6a4f;
    --dark-green: #1b4332;
    --light-green: #95d5b2;
    --accent-gold: #d4a373;
    --accent-earth: #a47148;
    --bg-cream: #faf8f5;
    --bg-warm: #f5f0eb;
    --text-dark: #2c2c2c;
    --text-muted: #6b7280;
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15)
}

* {
    box-sizing: border-box
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-cream);
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Playfair Display', serif
}

::-webkit-scrollbar {
    width: 8px
}

::-webkit-scrollbar-track {
    background: var(--bg-cream)
}

::-webkit-scrollbar-thumb {
    background: var(--light-green);
    border-radius: 4px
}

.navbar-custom {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    padding: .75rem 0;
    transition: all .3s;
    z-index: 1050
}

.navbar-custom.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08)
}

.navbar-brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark-green) !important;
    letter-spacing: -.02em
}

.navbar-brand-text span {
    color: var(--accent-gold)
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    font-size: .9rem;
    letter-spacing: .01em;
    padding: .5rem 1rem !important;
    position: relative;
    transition: color .3s
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width .3s;
    border-radius: 2px
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%
}

.nav-link:hover {
    color: var(--primary-green) !important
}

.nav-cta {
    background: var(--primary-green) !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: .5rem 1.5rem !important;
    font-size: .85rem !important;
    letter-spacing: .02em;
    transition: all .3s !important
}

.nav-cta::after {
    display: none !important
}

.nav-cta:hover {
    background: var(--dark-green) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, .3)
}

.dropdown-menu {
    border: 1px solid rgba(0, 0, 0, .06);
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
    padding: .5rem;
    margin-top: .5rem !important;
    background: #fff
}

.dropdown-item {
    border-radius: 10px;
    padding: .6rem 1rem;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all .2s
}

.dropdown-item:hover {
    background: rgba(45, 106, 79, .06);
    color: var(--primary-green)
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 8px;
    color: var(--primary-green)
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1.12)
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, .85) 0%, rgba(45, 106, 79, .6) 50%, rgba(0, 0, 0, .4) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .8rem;
    color: #fff;
    font-weight: 500;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInUp .8s ease .2s both
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 1.25rem;
    animation: fadeInUp .8s ease .4s both
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 2rem;
    max-width: 520px;
    animation: fadeInUp .8s ease .6s both
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp .8s ease .8s both
}

.btn-explore {
    background: #fff;
    color: var(--dark-green);
    font-weight: 600;
    padding: .85rem 2rem;
    border-radius: 50px;
    border: none;
    font-size: .95rem;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none
}

.btn-explore:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 163, 115, .35)
}

.btn-outline-light-custom {
    background: transparent;
    color: #fff;
    font-weight: 500;
    padding: .85rem 2rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, .35);
    font-size: .95rem;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .6);
    color: #fff
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    animation: fadeInUp .8s ease 1s both
}

.stats-bar {
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, .1)
}

.stat-item {
    text-align: center;
    padding: 1.25rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.stat-item:last-child {
    border-right: none
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff
}

.stat-label {
    font-size: .75rem;
    color: rgba(255, 255, 255, .65);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 500
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.section-padding {
    padding: 5rem 0
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary-green);
    margin-bottom: .75rem
}

.section-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 2px
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -.02em;
    margin-bottom: .75rem
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 570px;
    line-height: 1.7;
    font-weight: 300
}

.filter-section {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
    margin-top: -3rem;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(0, 0, 0, .04)
}

.filter-input-group {
    position: relative
}

.filter-input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: .85rem
}

.filter-input-group .form-control,
.filter-input-group .form-select {
    padding-left: 40px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    font-size: .9rem;
    height: 48px;
    transition: border-color .3s, box-shadow .3s;
    background: var(--bg-cream)
}

.filter-input-group .form-control:focus,
.filter-input-group .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, .1);
    background: #fff
}

.btn-search {
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 12px;
    height: 48px;
    padding: 0 1.75rem;
    font-weight: 600;
    font-size: .9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .3s
}

.btn-search:hover {
    background: var(--dark-green);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 106, 79, .3)
}

.dest-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 420px;
    cursor: pointer;
    transition: transform .5s, box-shadow .5s
}

.dest-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2)
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.dest-card:hover img {
    transform: scale(1.08)
}

.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, rgba(0, 0, 0, .1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem
}

.dest-card-location {
    font-size: .75rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    margin-bottom: .25rem
}

.dest-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: .35rem
}

.dest-card-info {
    font-size: .85rem;
    color: rgba(255, 255, 255, .7)
}

@media(max-width:767.98px) {
    .dest-card {
        height: 300px
    }
}

.tour-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: all .4s;
    height: 100%;
    display: flex;
    flex-direction: column
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover)
}

.tour-card-img {
    position: relative;
    height: 240px;
    overflow: hidden
}

.tour-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.tour-card:hover .tour-card-img img {
    transform: scale(1.08)
}

.tour-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-green);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 4px 12px;
    border-radius: 50px
}

.tour-card-badge.gold {
    background: var(--accent-gold)
}

.tour-card-wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: var(--text-muted);
    font-size: .9rem;
    cursor: pointer;
    transition: all .3s
}

.tour-card-wishlist:hover,
.tour-card-wishlist.active {
    background: #ef4444;
    color: #fff;
    transform: scale(1.1)
}

.tour-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column
}

.tour-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: .75rem
}

.tour-card-meta span {
    font-size: .8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px
}

.tour-card-meta i {
    color: var(--primary-green);
    font-size: .75rem
}

.tour-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .5rem;
    line-height: 1.3
}

.tour-card-desc {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.tour-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0
}

.tour-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-green)
}

.tour-card-price small {
    font-family: 'Inter', sans-serif;
    font-size: .75rem;
    font-weight: 400;
    color: var(--text-muted)
}

.btn-details {
    background: var(--bg-cream);
    color: var(--text-dark);
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: .55rem 1.25rem;
    font-size: .85rem;
    font-weight: 600;
    transition: all .3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.btn-details:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 106, 79, .25)
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, .04);
    height: 100%;
    transition: transform .3s
}

.testimonial-card:hover {
    transform: translateY(-4px)
}

.testimonial-stars {
    color: #f59e0b;
    font-size: .85rem;
    margin-bottom: 1rem
}

.testimonial-text {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 1.25rem
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover
}

.testimonial-name {
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-dark)
}

.testimonial-role {
    font-size: .78rem;
    color: var(--text-muted)
}

.cta-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    border-radius: 24px;
    padding: 4rem 3rem;
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%
}

.footer {
    background: var(--dark-green);
    color: rgba(255, 255, 255, .7)
}

.footer h5 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem
}

.footer a {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: .88rem;
    transition: color .3s;
    display: block;
    padding: 3px 0
}

.footer a:hover {
    color: var(--accent-gold)
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    font-size: .95rem;
    margin-right: 8px;
    transition: all .3s;
    padding: 0
}

.footer-social a:hover {
    background: var(--accent-gold);
    color: #fff;
    transform: translateY(-2px)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 1.5rem;
    margin-top: 3rem
}

.page-banner {
    position: relative;
    height: 45vh;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden
}

.page-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, .88) 0%, rgba(45, 106, 79, .65) 100%)
}

.page-banner-content {
    position: relative;
    z-index: 2
}

.page-banner-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem
}

.page-banner-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 300
}

.about-story-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow-hover)
}

.about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.value-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: all .3s;
    height: 100%
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover)
}

.value-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(45, 106, 79, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.4rem;
    color: var(--primary-green)
}

.value-card h5 {
    font-size: 1.05rem;
    margin-bottom: .5rem
}

.value-card p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    position: relative
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 20px;
    top: 48px;
    bottom: 0;
    width: 2px;
    background: var(--light-green)
}

.timeline-dot {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: var(--primary-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700
}

.team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, .04);
    transition: all .4s;
    text-align: center;
    height: 100%
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover)
}

.team-card-img {
    height: 280px;
    overflow: hidden;
    position: relative
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.team-card:hover .team-card-img img {
    transform: scale(1.06)
}

.team-card-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
    display: flex;
    justify-content: center;
    gap: 8px;
    transform: translateY(100%);
    transition: transform .3s
}

.team-card:hover .team-card-social {
    transform: translateY(0)
}

.team-card-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: all .3s
}

.team-card-social a:hover {
    background: var(--primary-green);
    color: #fff
}

.team-card-body {
    padding: 1.5rem
}

.team-card-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .25rem
}

.team-card-role {
    font-size: .82rem;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .75rem
}

.team-card-bio {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300
}

.contact-info-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, .04);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all .3s;
    height: 100%
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover)
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: rgba(45, 106, 79, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--primary-green)
}

.contact-form {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, .04)
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: .75rem 1rem;
    font-size: .9rem;
    transition: border-color .3s, box-shadow .3s;
    background: var(--bg-cream)
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, .1);
    background: #fff
}

.contact-form .form-label {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-dark)
}

.map-placeholder {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background: #e5e7eb;
    position: relative
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: saturate(.8) contrast(1.05)
}

.detail-hero {
    position: relative;
    height: 70vh;
    min-height: 450px;
    overflow: hidden
}

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .1) 50%, rgba(0, 0, 0, .2) 100%)
}

.detail-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 2
}

.breadcrumb-custom {
    font-size: .82rem;
    margin-bottom: 1rem
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: color .3s
}

.breadcrumb-custom a:hover {
    color: var(--accent-gold)
}

.breadcrumb-custom span {
    color: rgba(255, 255, 255, .4);
    margin: 0 8px
}

.breadcrumb-custom .current {
    color: #fff
}

.detail-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem
}

.detail-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center
}

.detail-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .85);
    font-size: .9rem
}

.detail-meta-item i {
    color: var(--accent-gold)
}

.detail-rating {
    color: #f59e0b
}

.detail-info-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, .04);
    padding: 2rem
}

.detail-price-big {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green)
}

.detail-price-big small {
    font-family: 'Inter', sans-serif;
    font-size: .85rem;
    font-weight: 400;
    color: var(--text-muted)
}

.btn-book {
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 14px;
    padding: .9rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.btn-book:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 106, 79, .3);
    color: #fff
}

.btn-back {
    background: transparent;
    color: var(--primary-green);
    border: 1.5px solid var(--primary-green);
    border-radius: 14px;
    padding: .9rem 2rem;
    font-weight: 600;
    font-size: .95rem;
    width: 100%;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none
}

.btn-back:hover {
    background: var(--primary-green);
    color: #fff
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: .75rem 0
}

.highlight-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: rgba(45, 106, 79, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: .9rem
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 8px;
    border-radius: 20px;
    overflow: hidden
}

.gallery-grid .gal-item {
    overflow: hidden;
    cursor: pointer;
    position: relative
}

.gallery-grid .gal-item:first-child {
    grid-column: span 2;
    grid-row: span 2
}

.gallery-grid .gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.gallery-grid .gal-item:hover img {
    transform: scale(1.08)
}

.gallery-grid .gal-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background .3s
}

.gallery-grid .gal-item:hover::after {
    background: rgba(0, 0, 0, .15)
}

.gal-item .gal-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1rem;
    z-index: 2;
    transition: transform .3s
}

.gallery-grid .gal-item:hover .gal-zoom {
    transform: translate(-50%, -50%) scale(1)
}

@media(max-width:767.98px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 140px)
    }

    .gallery-grid .gal-item:first-child {
        grid-column: span 2;
        grid-row: span 1
    }
}

.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible
}

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
    transform: scale(.9);
    transition: transform .4s
}

.lightbox-overlay.active img {
    transform: scale(1)
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .2)
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, .25)
}

.lightbox-prev {
    left: 1.5rem
}

.lightbox-next {
    right: 1.5rem
}

.lightbox-counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, .6);
    font-size: .85rem;
    font-weight: 500
}

.accordion-custom .accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 14px !important;
    margin-bottom: .75rem;
    overflow: hidden
}

.accordion-custom .accordion-button {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    color: var(--text-dark);
    background: #fff;
    padding: 1rem 1.25rem;
    box-shadow: none;
    border: none
}

.accordion-custom .accordion-button:not(.collapsed) {
    background: rgba(45, 106, 79, .04);
    color: var(--primary-green)
}

.accordion-custom .accordion-button::after {
    background-image: none;
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: .75rem;
    color: var(--text-muted);
    transition: transform .3s
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
    color: var(--primary-green)
}

.accordion-custom .accordion-body {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
    padding: 0 1.25rem 1.25rem
}

.modal-content {
    border: none;
    border-radius: 20px;
    overflow: hidden
}

.modal-header {
    border-bottom: 1px solid #f0f0f0;
    padding: 1.5rem 2rem
}

.modal-body {
    padding: 2rem
}

.modal-footer {
    border-top: 1px solid #f0f0f0;
    padding: 1.25rem 2rem
}

.booking-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(45, 106, 79, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-green);
    margin: 0 auto 1rem
}

.booking-form .form-control,
.booking-form .form-select {
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    padding: .7rem 1rem;
    font-size: .9rem;
    transition: border-color .3s, box-shadow .3s;
    background: var(--bg-cream)
}

.booking-form .form-control:focus,
.booking-form .form-select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, .1);
    background: #fff
}

.booking-form .form-label {
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: .35rem
}

.btn-submit-booking {
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: .8rem 2rem;
    font-weight: 600;
    font-size: .95rem;
    transition: all .3s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.btn-submit-booking:hover {
    background: var(--dark-green);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 106, 79, .3)
}

.page-view {
    display: none
}

.page-view.active {
    display: block
}

.toast-custom {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--dark-green);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 14px;
    font-size: .9rem;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(120%);
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1)
}

.toast-custom.show {
    transform: translateY(0)
}

.toast-custom i {
    color: var(--accent-gold)
}

.divider-leaf {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: .5rem 0
}

.divider-leaf::before,
.divider-leaf::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--light-green)
}

.divider-leaf i {
    color: var(--primary-green);
    font-size: .7rem
}

@media(max-width:767.98px) {
    .filter-section {
        margin-top: -2rem;
        padding: 1rem
    }

    .cta-section {
        padding: 2.5rem 1.5rem
    }

    .detail-hero {
        height: 50vh;
        min-height: 350px
    }

    .detail-hero-content {
        padding: 1.5rem
    }

    .section-padding {
        padding: 3rem 0
    }

    .stat-item {
        padding: .75rem .5rem
    }

    .stat-number {
        font-size: 1.35rem
    }

    .contact-form {
        padding: 1.5rem
    }

    .page-banner {
        height: 35vh;
        min-height: 260px
    }
}