/********** VARIABLES GLOBALES **********/
:root {
    /* Variables del Template (style.css) */
    --tpl-primary: #5B8C51;
    --tpl-secondary: #F9CA50;
    --tpl-light: #F7F7F7;
    --tpl-dark: #15241A;

    /* Variables del Programa/Tours (program.css) */
    --primary: #2d6a4f;
    --primary-light: #40916c;
    --primary-dark: #1b4332;
    --secondary: #d8f3dc;
    --accent: #f4a261;
    --cream: #fefae0;
    --white: #ffffff;
    --text-dark: #2b2d42;
    --text-light: #6c757d;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 8px;
}

/********** TEMPLATE CSS (style.css) **********/
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-bold { font-weight: 700 !important; }
.fw-medium { font-weight: 600 !important; }
.fw-semi-bold { font-weight: 500 !important; }

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}
.btn-primary, .btn-outline-primary:hover {
    color: var(--tpl-light);
}
.btn-secondary, .btn-outline-secondary:hover {
    color: var(--tpl-dark);
}
.btn-square { width: 38px; height: 38px; }
.btn-sm-square { width: 32px; height: 32px; }
.btn-lg-square { width: 48px; height: 48px; }
.btn-square, .btn-sm-square, .btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-whatsapp {
        display:block;
        width:70px;
        height:70px;
        color#fff;
        position: fixed;
        right:20px;
        bottom:100px;
        border-radius:50%;
        line-height:80px;
        text-align:center;
        z-index:999;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}
.navbar .navbar-nav .nav-link {
    margin-right: 15px;
    padding: 25px 0;
    color: var(--tpl-dark);
    font-size: 17px;
    font-weight: 600;
    outline: none;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--tpl-primary);
}
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header ***/
.carousel-caption {
    top: 0; left: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}
.carousel-control-prev, .carousel-control-next { width: 15%; }
.carousel-control-prev-icon, .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--tpl-primary);
    border: 10px solid var(--tpl-primary);
}
@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
.page-header {
    background: url(../img/fondo-about.jpg) center center no-repeat;
    background-size: cover;
	min-height: 500px;  
}
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tpl-light);
}
.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--tpl-light);
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
}
.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 5px;
    left: -40px;
    background: var(--tpl-primary);
    z-index: -1;
}
.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 6px;
    left: -60px;
    background: var(--tpl-primary);
    z-index: -1;
}
.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}
.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/*** About ***/
.about-experience {
    position: absolute;
    width: 100%;
    height: 100%;
    right: -45px;
    bottom: -45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*** Service ***/
.service-item {
    position: relative;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}
.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    border-radius: 8px;
    overflow: hidden;
    z-index: -1;
}
.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}
.service-item .service-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background: rgba(0, 0, 0, .5);
    border-radius: 10px;
    z-index: 1;
}
.service-item .service-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    background: #FFFFFF;
    transition: .5s ease-out;
    z-index: 2;
}
.service-item:hover .service-img::after {
    width: 0;
    left: auto;
    right: 0;
}
.service-item .service-text .service-icon {
    width: 140px;
    height: 140px;
    padding: 15px;
    margin-top: -70px;
    margin-bottom: 40px;
    background: #FFFFFF;
    border-radius: 140px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 0, 0, .1);
}
.service-item .service-text h5,
.service-item .service-text p {
    transition: .5s;
}
.service-item:hover .service-text h5,
.service-item:hover .service-text p {
    color: #FFFFFF;
}
.service-item .service-text .btn {
    color: var(--tpl-secondary);
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .25);
}
.service-item .service-text .btn:hover {
    color: var(--tpl-dark);
    background: var(--tpl-secondary);
}

/*** Product ***/
.product-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}
.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}
.product-item:hover .product-overlay {
    opacity: 1;
    padding-top: 0;
}

/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}
.team-item .btn {
    border-color: transparent;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
}

/*** Testimonial ***/
.testimonial-img {
    position: relative;
    min-height: 400px;
}
.testimonial-img::after {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 200px;
    color: #EEEEEE;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}
.testimonial-img img {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 100px;
}
.testimonial-img img:nth-child(1) { top: 0; left: 0; }
.testimonial-img img:nth-child(2) { top: 60%; left: 20%; }
.testimonial-img img:nth-child(3) { top: 20%; left: 60%; }
.testimonial-img img:nth-child(4) { bottom: 0; right: 0; }
.testimonial-img img .animated.pulse {
    animation-duration: 2s;
}
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
}
.testimonial-carousel .owl-item img2 {
    border-radius: 100px;
}
.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}
.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tpl-secondary);
    border-radius: 45px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    font-size: 22px;
    transition: .5s;
}
.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--tpl-secondary);
    color: var(--tpl-dark);
}

/*** Footer ***/
.footer {
    color: #B0B9AE;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}
.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.footer .btn.btn-link:hover {
    color: var(--tpl-light);
    letter-spacing: 1px;
    box-shadow: none;
}

/*** CTA ***/
.cta-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--tpl-primary, #5B8C51) 0%, var(--tpl-dark, #15241A) 100%);
    z-index: 1;
}
.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/banner.jpg') center center / cover no-repeat;
    opacity: 0.15;
    z-index: 2;
}
.cta-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.cta-content h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-cta-primary {
    padding: 1rem 2.5rem;
    background: var(--tpl-secondary, #F9CA50);
    color: var(--tpl-dark, #15241A);
    font-weight: 700;
    font-size: 1.05rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-cta-primary:hover {
    background: #fff;
    color: var(--tpl-primary, #5B8C51);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.btn-cta-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-3px);
}
.cta-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}
.cta-feature i {
    color: var(--tpl-secondary, #F9CA50);
    font-size: 1.1rem;
}
@media (max-width: 768px) {
    .cta-section { padding: 3.5rem 0; }
    .cta-content h2 { font-size: 1.8rem; }
    .cta-content p { font-size: 1rem; }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-cta-primary, .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/********** PROGRAM CSS (program.css) **********/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Poppins', sans-serif; 
    background: linear-gradient(135deg, #f8f9fa 0%, #E2E2E2 100%);*/
    color: var(--text-dark);
    line-height: 1.7;
}

/* Grid Layout */
.tour-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 106, 79, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--secondary);
}
.card-title i {
    color: var(--primary);
    font-size: 1.5rem;
}

.day-block h3 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.day-block p {
    color: var(--text-dark);
    text-align: justify;
}

.highlight-box {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 1.2rem;
    margin-top: 1rem;
    border: 2px dashed var(--primary-light);
}
.highlight-box strong {
    color: var(--primary-dark);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.info-item {
    background: var(--cream);
    padding: 1rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.info-item i {
    color: var(--primary);
    font-size: 1.2rem;
    width: 24px;
}
.info-item span {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Lists */
.include-list, .exclude-list, .recommend-list {
    list-style: none;
}
.include-list li, .exclude-list li, .recommend-list li {
    padding: 0.4rem 0;
    padding-left: 2rem;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.include-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}
.exclude-list li::before {
    content: '\f00d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #e63946;
}
.recommend-list li::before {
    content: '\f0eb';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* ===== GALERÍA ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.4s;
}
.gallery-overlay span {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    transform: translateY(10px);
    transition: transform 0.4s 0.05s;
}
.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}
.gallery-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow-lg);
}
.gallery-item:hover .gallery-zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.lightbox.active {
    display: flex;
    opacity: 1;
}
.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.active .lightbox-img {
    transform: scale(1);
}
.lightbox-caption {
    color: var(--white);
    margin-top: 1rem;
    font-size: 1.1rem;
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s 0.2s;
}
.lightbox.active .lightbox-caption {
    opacity: 1;
    transform: translateY(0);
}
.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.1);
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}
.lightbox-nav:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }
.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* Sidebar */
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(45, 106, 79, 0.08);
    position: sticky;
    top: 140px;
}
.sidebar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}
.price-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    text-align: center;
    margin-bottom: 1.5rem;
}
.price-box .from {
    font-size: 0.9rem;
    opacity: 0.9;
}
.price-box .price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}
.price-box .per {
    font-size: 0.9rem;
    opacity: 0.9;
}
.btn-book {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    margin-bottom: 1rem;
}
.btn-book:hover {
    background: #e76f51;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}
/*.btn-whatsapp {
    display: block;
    width: 100%;
    padding: 1rem;
    background: #25d366;
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: all 0.3s;
}
.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
}*/
.quick-info {
    margin-top: 1.5rem;
}
.quick-info-item {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.quick-info-item span:first-child {
    color: var(--text-light);
}
.quick-info-item span:last-child {
    font-weight: 600;
    color: var(--primary-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.card {
    animation: fadeInUp 0.6s ease-out;
}
.card:nth-child(2) { animation-delay: 0.1s; }
.card:nth-child(3) { animation-delay: 0.2s; }
.card:nth-child(4) { animation-delay: 0.3s; }

/* FAQ */
.faq-card {
    margin-top: 2rem;
}
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.faq-item {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
}
.faq-item.active {
    border-color: var(--primary-light, #8bc34a);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.faq-question {
    width: 100%;
    padding: 1.1rem 1.5rem;
    background: #f8f9fa;
    border: none;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-dark, #2e7d32);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
    gap: 1rem;
}
.faq-question:hover {
    background: #e9ecef;
}
.faq-question i.faq-icon {
    transition: transform 0.3s ease;
    color: var(--primary, #4caf50);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.faq-item.active .faq-question i.faq-icon {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #fff;
}
.faq-item.active .faq-answer {
    max-height: 550px;
    padding: 0 1.5rem 1.25rem 1.5rem;
}
.faq-answer p {
    margin: 0;
    color: var(--text-light, #666);
    line-height: 1.7;
    text-align: justify;
}

/* Related Tours */
.related-tours-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.related-tours-section .card-title {
    justify-content: center;
    border-bottom: none;
    font-size: 2rem;
}
.related-tours-section .card-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent, #f4a261);
    border-radius: 2px;
    margin: 0.8rem auto 0;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.related-card {
    background: var(--white, #fff);
    border-radius: var(--radius, 16px);
    overflow: hidden;
    box-shadow: var(--shadow, 0 4px 20px rgba(0,0,0,0.08));
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(45, 106, 79, 0.08);
    display: flex;
    flex-direction: column;
}
.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg, 0 10px 40px rgba(0,0,0,0.12));
}
.related-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.related-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.related-card:hover .related-card-img img {
    transform: scale(1.08);
}
.related-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary, #2d6a4f);
    color: #fff;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.related-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.related-card-body h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-dark, #1b4332);
    margin-bottom: 0.6rem;
}
.related-card-body p {
    color: var(--text-light, #6c757d);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.related-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
}
.related-price {
    font-weight: 700;
    color: var(--primary-dark, #1b4332);
    font-size: 1.1rem;
}
.related-price small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light, #6c757d);
    font-weight: 500;
}
.btn-view {
    padding: 0.5rem 1.2rem;
    background: var(--accent, #f4a261);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-sm, 8px);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-view:hover {
    background: #e76f51;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials-section {
    margin-bottom: 3rem;
}
.testimonials-section .card-title {
    justify-content: center;
    border-bottom: none;
    font-size: 2rem;
}
.testimonials-section .card-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent, #f4a261);
    border-radius: 2px;
    margin: 0.8rem auto 0;
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.testimonial-card {
    background: var(--white, #fff);
    border-radius: var(--radius, 16px);
    padding: 2rem;
    box-shadow: var(--shadow, 0 4px 20px rgba(0,0,0,0.08));
    border: 1px solid rgba(45, 106, 79, 0.08);
    transition: transform 0.3s;
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
}
.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--secondary, #d8f3dc);
    opacity: 0.6;
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary, #d8f3dc);
}
.testimonial-meta h5 {
    font-size: 1.05rem;
    color: var(--primary-dark, #1b4332);
    margin-bottom: 0.2rem;
}
.testimonial-stars {
    color: #ffc107;
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.testimonial-text {
    color: var(--text-light, #6c757d);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.testimonial-tour {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--primary, #2d6a4f);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Responsive */
@media (max-width: 968px) {
    .tour-grid {
        grid-template-columns: 1fr;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .nav-links {
        display: none;
    }
    .related-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .card {
        padding: 1.5rem;
    }
    .related-card-img {
        height: 180px;
    }
    .testimonial-card {
        padding: 1.5rem;
    }
}