/*
 * China Travel Specialist - Shortcodes & Templates Styles
 * Styles for all shortcode components, single CPT templates, membership & forms
 */

/* ========================
   Section Layout
   ======================== */
.cts-section {
    padding: 64px 0;
}

.cts-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.cts-section-header-center {
    text-align: center;
}

.cts-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 12px;
}

.cts-section-title-center {
    text-align: center;
}

.cts-section-subtitle {
    font-size: 1.05rem;
    color: var(--cts-text-light);
    line-height: 1.7;
}

.cts-container {
    max-width: var(--cts-container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================
   Buttons
   ======================== */
.cts-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--cts-radius);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--cts-transition);
    line-height: 1.4;
}

.cts-btn-primary,
.cts-btn:not(.cts-btn-outline):not(.cts-btn-outline-light):not(.cts-btn-accent) {
    background: var(--cts-primary);
    color: #fff;
}

.cts-btn-primary:hover,
.cts-btn:not(.cts-btn-outline):not(.cts-btn-outline-light):not(.cts-btn-accent):hover {
    background: var(--cts-primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--cts-shadow);
}

.cts-btn-accent {
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
}

.cts-btn-accent:hover {
    background: var(--cts-accent-hover);
    color: var(--cts-primary-dark);
    transform: translateY(-1px);
}

.cts-btn-outline {
    background: transparent;
    border: 2px solid var(--cts-primary);
    color: var(--cts-primary);
}

.cts-btn-outline:hover {
    background: var(--cts-primary);
    color: #fff;
}

.cts-btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
}

.cts-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    color: #fff;
}

.cts-btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.cts-btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.cts-btn-block {
    display: flex;
    width: 100%;
}

/* ========================
   Hero Section
   ======================== */
.cts-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    text-align: left;
    overflow: hidden;
    background-color: #f8faf9;
    background-size: cover;
    background-position: center;
}

.cts-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.85) 42%, rgba(255,255,255,0.4) 70%, rgba(255,255,255,0.1) 100%);
    z-index: 1;
}

.cts-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cts-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 100px 24px;
    color: var(--cts-text);
}

.cts-hero-tag {
    display: inline-block;
    background: rgba(244, 182, 60, 0.15);
    border: 1px solid rgba(244, 182, 60, 0.5);
    color: var(--cts-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cts-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--cts-primary);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cts-hero-subtitle {
    font-size: 1.15rem;
    color: var(--cts-text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cts-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cts-hero-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.cts-hero-tags .cts-badge,
.cts-hero-tag-item {
    background: var(--cts-white);
    border: 1px solid var(--cts-border);
    color: var(--cts-text);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--cts-shadow-sm);
}

.cts-hero-tags .cts-badge:hover,
.cts-hero-tag-item:hover {
    border-color: var(--cts-primary);
    color: var(--cts-primary);
}

/* ========================
   Why Us Section
   ======================== */
.cts-why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.cts-why-us-item {
    text-align: center;
    padding: 32px 24px;
}

.cts-why-us-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cts-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.cts-why-us-icon svg,
.cts-why-us-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.cts-why-us-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin-bottom: 10px;
}

.cts-why-us-desc {
    font-size: 0.95rem;
    color: var(--cts-text-light);
    line-height: 1.7;
}

/* ========================
   Services Section
   ======================== */
.cts-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cts-service-card {
    position: relative;
    border-radius: var(--cts-radius-lg);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    transition: var(--cts-transition);
    min-height: 360px;
    display: flex;
    align-items: flex-end;
}

.cts-service-card:hover {
    box-shadow: var(--cts-shadow-hover);
    transform: translateY(-4px);
}

.cts-service-card-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cts-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--cts-transition);
}

.cts-service-card:hover .cts-service-card-image img {
    transform: scale(1.05);
}

.cts-service-card-body {
    position: relative;
    z-index: 2;
    padding: 28px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
    color: #fff;
}

.cts-service-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cts-service-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cts-service-card-body .cts-btn {
    background: var(--cts-primary);
    color: #fff;
    border-color: var(--cts-primary);
}

.cts-service-card-body .cts-btn:hover {
    background: var(--cts-primary-dark);
    border-color: var(--cts-primary-dark);
}

/* ========================
   Tour Card
   ======================== */
.cts-tours-grid,
.cts-destinations-grid,
.cts-guides-grid,
.cts-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.cts-destinations-grid-4,
.cts-tours-grid-4,
.cts-guides-grid-4,
.cts-tips-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.cts-destinations-grid-3,
.cts-tours-grid-3,
.cts-guides-grid-3,
.cts-tips-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .cts-destinations-grid-4,
    .cts-tours-grid-4,
    .cts-guides-grid-4,
    .cts-tips-grid-4,
    .cts-destinations-grid-3,
    .cts-tours-grid-3,
    .cts-guides-grid-3,
    .cts-tips-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .cts-destinations-grid-4,
    .cts-tours-grid-4,
    .cts-guides-grid-4,
    .cts-tips-grid-4,
    .cts-destinations-grid-3,
    .cts-tours-grid-3,
    .cts-guides-grid-3,
    .cts-tips-grid-3 {
        grid-template-columns: 1fr;
    }
}

.cts-tour-card {
    background: #fff;
    border-radius: var(--cts-radius-lg);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    transition: var(--cts-transition);
    display: flex;
    flex-direction: column;
}

.cts-tour-card:hover {
    box-shadow: var(--cts-shadow-hover);
    transform: translateY(-4px);
}

.cts-tour-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.cts-tour-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--cts-transition);
}

.cts-tour-card:hover .cts-tour-card-image img {
    transform: scale(1.05);
}

.cts-tour-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.cts-tour-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cts-tour-type {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cts-link);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.cts-tour-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin-bottom: 8px;
}

.cts-tour-title a {
    color: inherit;
}

.cts-tour-excerpt {
    font-size: 0.9rem;
    color: var(--cts-text-light);
    line-height: 1.6;
    margin-bottom: 14px;
    flex: 1;
}

.cts-tour-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 0.82rem;
    color: var(--cts-text-light);
}

.cts-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.cts-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cts-rating-stars {
    color: var(--cts-accent);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.cts-rating-count {
    font-size: 0.8rem;
    color: var(--cts-text-light);
}

.cts-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--cts-border);
}

.cts-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cts-primary);
}

.cts-price-original {
    font-size: 0.85rem;
    color: var(--cts-text-light);
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

.cts-price-unit {
    font-size: 0.75rem;
    color: var(--cts-text-light);
    font-weight: 400;
}

/* ========================
   Destination Card
   ======================== */
.cts-destinations-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.cts-destination-card {
    position: relative;
    border-radius: var(--cts-radius-lg);
    overflow: hidden;
    height: 320px;
    box-shadow: var(--cts-shadow-sm);
    transition: var(--cts-transition);
}

.cts-destination-card:hover {
    box-shadow: var(--cts-shadow-hover);
    transform: translateY(-4px);
}

.cts-destination-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cts-destination-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--cts-transition);
}

.cts-destination-card:hover .cts-destination-card-image img {
    transform: scale(1.08);
}

.cts-destination-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.cts-destination-card-link {
    color: #fff;
    text-decoration: none;
}

.cts-destination-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.cts-destination-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

/* ========================
   Guide Card
   ======================== */
.cts-guide-card {
    background: #fff;
    border-radius: var(--cts-radius-lg);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    transition: var(--cts-transition);
    display: flex;
    flex-direction: column;
}

.cts-guide-card:hover {
    box-shadow: var(--cts-shadow-hover);
    transform: translateY(-4px);
}

.cts-guide-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.cts-guide-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-guide-cat {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(26, 60, 52, 0.85);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.cts-guide-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cts-guide-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin-bottom: 8px;
}

.cts-guide-card-body h3 a {
    color: inherit;
}

.cts-guide-card-body p {
    font-size: 0.88rem;
    color: var(--cts-text-light);
    line-height: 1.6;
    flex: 1;
}

.cts-guide-price-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--cts-border);
    margin-top: auto;
}

.cts-guide-helped {
    font-size: 0.82rem;
    color: var(--cts-text-light);
}

/* ========================
   Tip Card (Blog)
   ======================== */
.cts-tip-card {
    background: #fff;
    border-radius: var(--cts-radius-lg);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    transition: var(--cts-transition);
    display: flex;
    flex-direction: column;
}

.cts-tip-card:hover {
    box-shadow: var(--cts-shadow-hover);
    transform: translateY(-4px);
}

.cts-tip-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.cts-tip-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--cts-transition);
}

.cts-tip-card:hover .cts-tip-card-image img {
    transform: scale(1.05);
}

.cts-tip-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.cts-tip-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cts-tip-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin-bottom: 8px;
}

.cts-tip-title a {
    color: inherit;
}

.cts-tip-excerpt {
    font-size: 0.88rem;
    color: var(--cts-text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 14px;
}

.cts-tip-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--cts-text-light);
    padding-top: 12px;
    border-top: 1px solid var(--cts-border);
}

.cts-tip-date,
.cts-tip-reading {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ========================
   Testimonials Slider
   ======================== */
.cts-testimonials-slider {
    position: relative;
    overflow: hidden;
}

.cts-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.cts-testimonial-card {
    background: #fff;
    border-radius: var(--cts-radius-lg);
    padding: 32px;
    box-shadow: var(--cts-shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cts-testimonial-rating {
    color: var(--cts-accent);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.cts-testimonial-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cts-text);
    flex: 1;
    font-style: italic;
}

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

.cts-testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.cts-testimonial-name {
    font-weight: 600;
    color: var(--cts-primary);
    font-size: 0.95rem;
}

.cts-testimonial-country {
    font-size: 0.82rem;
    color: var(--cts-text-light);
}

/* ========================
   Team Grid
   ======================== */
.cts-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 28px;
}

.cts-team-card {
    background: #fff;
    border-radius: var(--cts-radius-lg);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    text-align: center;
    transition: var(--cts-transition);
}

.cts-team-card:hover {
    box-shadow: var(--cts-shadow-hover);
    transform: translateY(-4px);
}

.cts-team-avatar {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.cts-team-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin-bottom: 4px;
    padding: 20px 16px 0;
}

.cts-team-position {
    font-size: 0.88rem;
    color: var(--cts-link);
    margin-bottom: 8px;
}

.cts-team-bio {
    font-size: 0.85rem;
    color: var(--cts-text-light);
    line-height: 1.6;
    padding: 0 16px 16px;
}

.cts-team-contact {
    display: flex;
    gap: 8px;
    justify-content: center;
    padding-bottom: 20px;
}

.cts-team-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--cts-border);
    color: var(--cts-primary);
    transition: var(--cts-transition);
}

.cts-team-contact-btn:hover {
    background: var(--cts-primary);
    color: #fff;
    border-color: var(--cts-primary);
}

/* ========================
   FAQ Accordion
   ======================== */
.cts-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.cts-faq-item {
    border: 1px solid var(--cts-border);
    border-radius: var(--cts-radius);
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff;
}

.cts-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cts-primary);
    text-align: left;
    transition: var(--cts-transition);
}

.cts-faq-question:hover {
    background: var(--cts-bg-light);
}

.cts-faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cts-bg-light);
    color: var(--cts-primary);
    font-size: 1.2rem;
    transition: var(--cts-transition);
}

.cts-faq-item.is-open .cts-faq-toggle {
    transform: rotate(180deg);
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
}

.cts-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--cts-text-light);
}

.cts-faq-item.is-open .cts-faq-answer {
    max-height: 500px;
    padding: 0 24px 18px;
}

/* ========================
   CTA Banner
   ======================== */
.cts-cta-banner {
    position: relative;
    border-radius: var(--cts-radius-lg);
    overflow: hidden;
    background: var(--cts-bg-light);
    padding: 0;
    text-align: left;
}

.cts-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(248,250,249,0.95) 0%, rgba(248,250,249,0.85) 50%, rgba(248,250,249,0.4) 100%);
    z-index: 1;
}

.cts-cta-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.cts-cta-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    padding: 56px 48px;
}

.cts-cta-content h2 {
    font-size: 1.75rem;
    color: var(--cts-primary);
    margin-bottom: 10px;
}

.cts-cta-content p {
    font-size: 1rem;
    color: var(--cts-text-light);
    margin-bottom: 24px;
}

.cts-cta-banner .cts-btn-primary {
    background: var(--cts-primary);
    color: #fff;
}

.cts-cta-banner .cts-btn-accent {
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
}

/* ========================
   Page Banner
   ======================== */
.cts-page-banner {
    background: var(--cts-primary);
    color: #fff;
    padding: 48px 0 32px;
    margin-bottom: 40px;
}

.cts-page-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.cts-page-banner-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.cts-page-banner-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    max-width: 560px;
    margin: 0;
}

.cts-page-banner-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cts-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-chip:hover {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* ========================
   Tours List with Filters
   ======================== */
.cts-tours-list-layout {
    display: grid;
    grid-template-columns: 220px 1fr 260px;
    gap: 28px;
    align-items: start;
}

.cts-tours-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .cts-tours-list-layout {
        grid-template-columns: 220px 1fr;
    }
    .cts-tours-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    .cts-tours-list-layout {
        grid-template-columns: 1fr;
    }
    .cts-tours-filters {
        position: static;
    }
    .cts-tours-list-grid {
        grid-template-columns: 1fr;
    }
}

.cts-tours-filters {
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 24px;
    box-shadow: var(--cts-shadow-sm);
    position: sticky;
    top: 100px;
}

.cts-filter-group {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--cts-border);
}

.cts-filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cts-filter-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cts-filter-option {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--cts-text);
    cursor: pointer;
}

.cts-filter-option input {
    accent-color: var(--cts-primary);
}

.cts-tours-list-results {
    display: flex;
    flex-direction: column;
}

.cts-tours-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.cts-tours-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cts-tours-count {
    font-size: 0.9rem;
    color: var(--cts-text-light);
}

.cts-tours-sort {
    padding: 8px 14px;
    border: 1px solid var(--cts-border);
    border-radius: var(--cts-radius-sm);
    font-size: 0.85rem;
    background: #fff;
    color: var(--cts-text);
}

.cts-cat-btn {
    display: inline-block;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--cts-border);
    color: var(--cts-text);
    transition: var(--cts-transition);
    margin-bottom: 6px;
}

.cts-cat-btn:hover,
.cts-cat-btn.is-active {
    background: var(--cts-primary);
    color: #fff;
    border-color: var(--cts-primary);
}

.cts-tours-sidebar .cts-sidebar-widget {
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 24px;
    box-shadow: var(--cts-shadow-sm);
    margin-bottom: 24px;
}

.cts-tours-sidebar .cts-widget-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 16px;
}

.cts-tours-promo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cts-tours-promo-list li {
    margin-bottom: 16px;
}

.cts-tours-promo-list li strong {
    display: block;
    font-size: 0.95rem;
    color: var(--cts-text);
    margin-bottom: 4px;
}

.cts-tours-promo-list li span {
    display: block;
    font-size: 0.85rem;
    color: var(--cts-text-light);
    line-height: 1.5;
}

.cts-tours-help p {
    font-size: 0.9rem;
    color: var(--cts-text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cts-tours-features {
    background: var(--cts-bg-light);
    padding: 48px 0;
    margin-top: 48px;
}

.cts-features-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cts-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cts-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cts-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.cts-feature-item strong {
    display: block;
    font-size: 1rem;
    color: var(--cts-primary);
    margin-bottom: 4px;
}

.cts-feature-item span {
    display: block;
    font-size: 0.9rem;
    color: var(--cts-text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .cts-features-bar {
        grid-template-columns: 1fr;
    }
}

/* ========================
   Help Center
   ======================== */
.cts-help-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-bottom: 48px;
}

.cts-help-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 50%, rgba(255,255,255,0.4) 100%);
    z-index: 1;
}

.cts-help-hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 24px;
}

.cts-help-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--cts-primary);
    margin-bottom: 12px;
}

.cts-help-hero-subtitle {
    font-size: 1.1rem;
    color: var(--cts-text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.cts-help-search {
    display: flex;
    gap: 12px;
    max-width: 560px;
}

.cts-help-search input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--cts-border);
    border-radius: var(--cts-radius);
    font-size: 1rem;
    background: #fff;
}

.cts-help-search .cts-btn {
    padding: 14px 28px;
}

.cts-help-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.cts-help-card {
    display: block;
    background: #fff;
    border-radius: var(--cts-radius-lg);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-help-card:hover {
    box-shadow: var(--cts-shadow-hover);
    transform: translateY(-4px);
}

.cts-help-card-image {
    height: 200px;
    overflow: hidden;
}

.cts-help-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--cts-transition);
}

.cts-help-card:hover .cts-help-card-image img {
    transform: scale(1.05);
}

.cts-help-card-body {
    padding: 24px;
}

.cts-help-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 8px;
}

.cts-help-card-desc {
    font-size: 0.9rem;
    color: var(--cts-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cts-help-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cts-link);
}

.cts-help-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.cts-help-topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.cts-help-topic-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: var(--cts-radius);
    box-shadow: var(--cts-shadow-sm);
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-help-topic-card:hover {
    box-shadow: var(--cts-shadow-hover);
}

.cts-help-topic-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 60, 52, 0.08);
    color: var(--cts-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cts-help-topic-body {
    flex: 1;
}

.cts-help-topic-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 4px;
}

.cts-help-topic-desc {
    font-size: 0.8rem;
    color: var(--cts-text-light);
    line-height: 1.5;
}

.cts-help-topic-arrow {
    color: var(--cts-text-light);
    font-size: 1.1rem;
}

.cts-help-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cts-help-faq-header .cts-section-title {
    margin-bottom: 0;
}

.cts-help-faq-list {
    background: #fff;
    border-radius: var(--cts-radius);
    box-shadow: var(--cts-shadow-sm);
    overflow: hidden;
}

.cts-help-faq-item {
    border-bottom: 1px solid var(--cts-border);
}

.cts-help-faq-item:last-child {
    border-bottom: none;
}

.cts-help-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cts-text);
    text-align: left;
    cursor: pointer;
}

.cts-help-faq-question span {
    font-size: 1.2rem;
    color: var(--cts-text-light);
}

.cts-help-faq-answer {
    padding: 0 24px 18px;
    font-size: 0.9rem;
    color: var(--cts-text-light);
    line-height: 1.6;
    display: none;
}

.cts-help-faq-item.is-open .cts-help-faq-answer {
    display: block;
}

.cts-help-contact {
    background: var(--cts-bg-light);
    padding: 48px 0;
}

.cts-help-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
}

.cts-help-contact-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 8px;
}

.cts-help-contact-text p {
    font-size: 0.95rem;
    color: var(--cts-text-light);
}

.cts-help-contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.cts-contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border-radius: var(--cts-radius);
    text-decoration: none;
    box-shadow: var(--cts-shadow-sm);
    transition: var(--cts-transition);
}

.cts-contact-method:hover {
    box-shadow: var(--cts-shadow-hover);
}

.cts-contact-icon {
    font-size: 1.5rem;
}

.cts-contact-method strong {
    display: block;
    font-size: 0.95rem;
    color: var(--cts-primary);
}

.cts-contact-method small {
    font-size: 0.8rem;
    color: var(--cts-text-light);
}

.cts-help-steps-section {
    background: var(--cts-bg-light);
}

.cts-help-steps-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}

.cts-help-steps-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    position: relative;
}

.cts-help-step {
    text-align: center;
    position: relative;
}

.cts-help-step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cts-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0 auto 12px;
}

.cts-help-step-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--cts-border);
    color: var(--cts-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.cts-help-step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 6px;
}

.cts-help-step-desc {
    font-size: 0.8rem;
    color: var(--cts-text-light);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .cts-help-cards-grid,
    .cts-help-layout,
    .cts-help-contact-content {
        grid-template-columns: 1fr;
    }
    .cts-help-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cts-help-contact-methods {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .cts-help-topics-grid,
    .cts-help-steps-grid,
    .cts-help-contact-methods {
        grid-template-columns: 1fr;
    }
    .cts-help-search {
        flex-direction: column;
    }
}

/* ========================
   Custom Trip Form
   ======================== */
.cts-custom-trip-form-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.cts-custom-trip-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.cts-custom-trip-section {
    margin-bottom: 36px;
}

.cts-form-step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cts-form-step-desc {
    font-size: 0.9rem;
    color: var(--cts-text-light);
    margin-bottom: 20px;
}

.cts-form-group {
    margin-bottom: 18px;
}

.cts-form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cts-text);
    margin-bottom: 6px;
}

.cts-form-group input[type="text"],
.cts-form-group input[type="email"],
.cts-form-group input[type="date"],
.cts-form-group input[type="number"],
.cts-form-group select,
.cts-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--cts-border);
    border-radius: var(--cts-radius-sm);
    font-size: 0.95rem;
    font-family: var(--cts-font);
    color: var(--cts-text);
    background: #fff;
    transition: var(--cts-transition);
}

.cts-form-group input:focus,
.cts-form-group select:focus,
.cts-form-group textarea:focus {
    outline: none;
    border-color: var(--cts-link);
    box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.cts-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.cts-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cts-form-group-inline {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cts-radio-group,
.cts-checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
}

.cts-radio-card,
.cts-checkbox-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: 2px solid var(--cts-border);
    border-radius: var(--cts-radius-sm);
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--cts-transition);
}

.cts-radio-card:hover,
.cts-checkbox-card:hover {
    border-color: var(--cts-link);
    background: var(--cts-bg-light);
}

.cts-radio-card input,
.cts-checkbox-card input {
    accent-color: var(--cts-primary);
}

.cts-radio-card input:checked + span,
.cts-checkbox-card input:checked + span {
    font-weight: 600;
    color: var(--cts-primary);
}

.cts-custom-trip-sidebar {
    position: sticky;
    top: 100px;
}

.cts-sidebar-widget {
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 24px;
    box-shadow: var(--cts-shadow-sm);
    margin-bottom: 20px;
}

.cts-sidebar-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 14px;
}

.cts-sidebar-info-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: var(--cts-text-light);
    line-height: 1.6;
}

.cts-sidebar-info-icon {
    flex-shrink: 0;
    color: var(--cts-accent);
}

.cts-popular-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cts-popular-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--cts-border);
    font-size: 0.88rem;
}

.cts-popular-list li:last-child {
    border-bottom: none;
}

.cts-popular-date {
    font-weight: 600;
    color: var(--cts-primary);
}

.cts-counter-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cts-counter-item {
    text-align: center;
}

.cts-counter-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cts-primary);
}

.cts-counter-label {
    font-size: 0.82rem;
    color: var(--cts-text-light);
}

.cts-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.cts-process-step {
    text-align: center;
}

.cts-process-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 14px;
}

.cts-process-step-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin-bottom: 6px;
}

.cts-process-step-desc {
    font-size: 0.85rem;
    color: var(--cts-text-light);
    line-height: 1.6;
}

.cts-form-message {
    padding: 14px 18px;
    border-radius: var(--cts-radius-sm);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.cts-form-message.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.cts-form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* ========================
   Help Center
   ======================== */
.cts-help-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.cts-help-card {
    background: #fff;
    border-radius: var(--cts-radius-lg);
    padding: 28px;
    box-shadow: var(--cts-shadow-sm);
    transition: var(--cts-transition);
    text-decoration: none;
    color: inherit;
}

.cts-help-card:hover {
    box-shadow: var(--cts-shadow-hover);
    transform: translateY(-4px);
}

.cts-help-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--cts-radius);
    background: var(--cts-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.cts-help-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin-bottom: 8px;
}

.cts-help-card-desc {
    font-size: 0.9rem;
    color: var(--cts-text-light);
    line-height: 1.6;
}

.cts-help-card-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cts-link);
}

.cts-help-steps-section {
    background: var(--cts-bg-light);
    border-radius: var(--cts-radius-lg);
    padding: 48px 40px;
}

/* ========================
   Dashboard / My Trips
   ======================== */
.cts-dashboard {
    max-width: 1000px;
    margin: 0 auto;
}

.cts-dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--cts-border);
}

.cts-dashboard-header h2 {
    font-size: 1.8rem;
    color: var(--cts-primary);
}

.cts-dashboard-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin-bottom: 16px;
}

.cts-empty-state {
    text-align: center;
    padding: 48px 24px;
    background: var(--cts-bg-light);
    border-radius: var(--cts-radius);
    color: var(--cts-text-light);
}

.cts-empty-state h3 {
    font-size: 1.1rem;
    color: var(--cts-text);
    margin-bottom: 8px;
}

/* ========================
   Login Form
   ======================== */
.cts-login-form-wrap {
    max-width: 440px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--cts-radius-lg);
    padding: 40px;
    box-shadow: var(--cts-shadow);
}

.cts-login-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 28px;
    background: var(--cts-bg-light);
    border-radius: var(--cts-radius);
    padding: 4px;
}

.cts-login-tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cts-text-light);
    border-radius: var(--cts-radius-sm);
    transition: var(--cts-transition);
}

.cts-login-tab.is-active {
    background: #fff;
    color: var(--cts-primary);
    box-shadow: var(--cts-shadow-sm);
}

.cts-login-required {
    text-align: center;
    padding: 32px;
    background: var(--cts-bg-light);
    border-radius: var(--cts-radius);
}

/* ========================
   Guide Purchase / Membership
   ======================== */
.cts-guide-locked {
    background: var(--cts-bg-light);
    border-radius: var(--cts-radius);
    padding: 32px;
    text-align: center;
    margin-top: 24px;
}

.cts-guide-preview {
    position: relative;
    margin-bottom: 24px;
}

.cts-guide-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}

.cts-guide-purchased {
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: var(--cts-radius);
    padding: 14px 18px;
    text-align: center;
    color: #2e7d32;
    font-weight: 600;
    margin-top: 16px;
}

.cts-purchase-card {
    background: #fff;
    border-radius: var(--cts-radius-lg);
    padding: 28px;
    box-shadow: var(--cts-shadow);
    border: 2px solid var(--cts-accent);
}

.cts-purchase-price {
    text-align: center;
    margin-bottom: 20px;
}

.cts-purchase-price .cts-price {
    font-size: 2.5rem;
}

.cts-purchase-trust {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--cts-border);
    font-size: 0.82rem;
    color: var(--cts-text-light);
}

.cts-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.cts-benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.92rem;
    color: var(--cts-text);
    line-height: 1.6;
}

.cts-benefits-list li:last-child {
    margin-bottom: 0;
}

.cts-benefit-check {
    color: var(--cts-accent);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    line-height: 1.4;
}

/* ========================
   Single Tour Detail
   ======================== */
.cts-tour-detail {
    padding-top: 0;
}

.cts-gallery-main {
    width: 100%;
    height: 480px;
    border-radius: var(--cts-radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
}

.cts-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
}

.cts-gallery-thumb {
    height: 72px;
    border-radius: var(--cts-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--cts-transition);
}

.cts-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-gallery-thumb.is-active,
.cts-gallery-thumb:hover {
    border-color: var(--cts-accent);
}

.cts-tour-detail-layout,
.cts-tour-content-wrap {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    margin-top: 32px;
}

.cts-tour-main {
    min-width: 0;
}

.cts-tour-sidebar {
    min-width: 0;
}

.cts-tour-includes-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.cts-tour-header h1 {
    font-size: 2rem;
    color: var(--cts-primary);
    margin-bottom: 12px;
}

.cts-tour-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.cts-tour-tags .cts-badge {
    background: var(--cts-bg-light);
    color: var(--cts-primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cts-tour-tags .cts-badge-accent {
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
}

.cts-tour-quick-info {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 20px;
    background: var(--cts-bg-light);
    border-radius: var(--cts-radius);
    margin-bottom: 32px;
}

.cts-tour-quick-info .cts-meta-item,
.cts-tour-quick-info > span {
    font-size: 0.9rem;
    color: var(--cts-text);
    font-weight: 500;
}

.cts-tour-quick-info > span strong {
    color: var(--cts-primary);
    font-weight: 600;
}

.cts-tour-section {
    margin-bottom: 40px;
}

.cts-tour-section h2 {
    font-size: 1.5rem;
    color: var(--cts-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cts-bg-light);
}

.cts-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.cts-highlight-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border-radius: var(--cts-radius);
    box-shadow: var(--cts-shadow-sm);
}

.cts-highlight-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cts-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.cts-highlight-icon-default {
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
}

.cts-highlight-item h3,
.cts-highlight-item h4 {
    font-size: 0.98rem;
    color: var(--cts-primary);
    margin-bottom: 4px;
}

.cts-highlight-item p {
    font-size: 0.85rem;
    color: var(--cts-text-light);
    margin: 0;
}

.cts-itinerary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cts-itinerary-day {
    background: #fff;
    border-radius: var(--cts-radius);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    border-left: 4px solid var(--cts-accent);
}

.cts-itinerary-day-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 24px;
    background: var(--cts-bg-light);
}

.cts-itinerary-day-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cts-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.cts-itinerary-day-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin: 0;
}

.cts-itinerary-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin: 0;
    padding: 0 24px 18px;
    font-size: 0.82rem;
    color: var(--cts-text-light);
}

.cts-itinerary-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--cts-bg-light);
    border-radius: 999px;
    padding: 5px 12px;
}

.cts-itinerary-meta strong {
    color: var(--cts-primary);
    font-weight: 600;
}

.cts-itinerary-image {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
}

.cts-itinerary-desc {
    padding: 18px 24px;
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--cts-text-light);
}

.cts-itinerary-time {
    font-weight: 600;
    color: var(--cts-primary);
}

.cts-includes-content,
.cts-excludes-content,
.cts-notes-content {
    padding: 20px 24px;
    font-size: 0.92rem;
    line-height: 1.8;
}

.cts-includes-content ul,
.cts-excludes-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cts-includes-content li,
.cts-excludes-content li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
}

.cts-includes-content li::before {
    content: '\2713';
    color: #4caf50;
    font-weight: 700;
    position: absolute;
    left: 0;
}

.cts-excludes-content li::before {
    content: '\2717';
    color: #f44336;
    font-weight: 700;
    position: absolute;
    left: 0;
}

/* Booking Card (sidebar) */
.cts-booking-card {
    background: #fff;
    border-radius: var(--cts-radius-lg);
    padding: 28px;
    box-shadow: var(--cts-shadow);
    position: sticky;
    top: 100px;
}

.cts-booking-price {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cts-border);
}

.cts-booking-price .cts-price {
    font-size: 2.2rem;
}

.cts-booking-price .cts-price-original {
    display: block;
    font-size: 1rem;
}

.cts-booking-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.88rem;
    color: var(--cts-text-light);
}

.cts-booking-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.cts-booking-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.cts-booking-info-row span:first-child {
    color: var(--cts-text-light);
}

.cts-booking-info-row span:last-child {
    font-weight: 600;
    color: var(--cts-text);
}

.cts-booking-note {
    font-size: 0.8rem;
    color: var(--cts-text-light);
    text-align: center;
    margin-top: 14px;
}

/* ========================
   Single Guide Detail
   ======================== */
.cts-guide-detail {
    padding-top: 0;
}

.cts-guide-cover {
    position: relative;
    height: 400px;
    border-radius: 0 0 var(--cts-radius-lg) var(--cts-radius-lg);
    overflow: hidden;
}

.cts-guide-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-guide-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 60, 52, 0.3), rgba(26, 60, 52, 0.8));
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.cts-guide-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    max-width: var(--cts-container);
    margin: -60px auto 0;
    padding: 0 24px;
    position: relative;
}

.cts-guide-main {
    background: #fff;
    border-radius: var(--cts-radius-lg);
    padding: 40px;
    box-shadow: var(--cts-shadow);
}

.cts-guide-header h1 {
    font-size: 1.8rem;
    color: var(--cts-primary);
    margin-bottom: 10px;
}

.cts-guide-helped {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}

.cts-guide-helped-text {
    font-size: 0.9rem;
    color: var(--cts-text-light);
}

.cts-toc-list {
    background: var(--cts-bg-light);
    border-radius: var(--cts-radius);
    padding: 24px;
    margin-bottom: 32px;
    list-style: none;
}

.cts-toc-item {
    padding: 8px 0;
    font-size: 0.92rem;
}

.cts-toc-item a {
    color: var(--cts-link);
    text-decoration: none;
}

.cts-guide-details-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cts-text);
}

.cts-guide-details-content h2,
.cts-guide-details-content h3 {
    color: var(--cts-primary);
    margin-top: 28px;
}

.cts-guide-sidebar {
    position: sticky;
    top: 100px;
}

.cts-guide-section {
    margin-bottom: 32px;
}

.cts-guide-section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin-bottom: 16px;
}

/* ========================
   Single Destination Detail
   ======================== */
.cts-destination-detail {
    padding-top: 0;
}

.cts-destination-cover {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.cts-destination-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-destination-cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26, 60, 52, 0.2), rgba(26, 60, 52, 0.75));
    display: flex;
    align-items: flex-end;
    padding: 48px;
}

.cts-destination-cover-content {
    color: #fff;
}

.cts-destination-cover-content h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 8px;
}

.cts-destination-cover-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cts-destination-info-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    padding: 28px;
    background: #fff;
    border-radius: var(--cts-radius-lg);
    box-shadow: var(--cts-shadow);
    margin: -40px auto 0;
    max-width: var(--cts-container);
    position: relative;
    z-index: 2;
}

.cts-dest-info-item {
    text-align: center;
}

.cts-dest-info-label {
    font-size: 0.78rem;
    color: var(--cts-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.cts-dest-info-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--cts-primary);
}

.cts-destination-section {
    max-width: var(--cts-container);
    margin: 0 auto;
    padding: 48px 24px;
}

.cts-destination-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--cts-text);
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.cts-dest-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.cts-dest-highlight-card {
    background: #fff;
    border-radius: var(--cts-radius-lg);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    transition: var(--cts-transition);
}

.cts-dest-highlight-card:hover {
    box-shadow: var(--cts-shadow-hover);
    transform: translateY(-4px);
}

.cts-dest-highlight-img {
    height: 200px;
    overflow: hidden;
}

.cts-dest-highlight-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-dest-highlight-body {
    padding: 20px;
}

.cts-dest-highlight-body h4 {
    font-size: 1.1rem;
    color: var(--cts-primary);
    margin-bottom: 8px;
}

.cts-dest-highlight-body p {
    font-size: 0.88rem;
    color: var(--cts-text-light);
    line-height: 1.6;
    margin: 0;
}

.cts-destination-full-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--cts-text);
    max-width: 800px;
    margin: 0 auto;
}

/* ========================
   Tips List Layout
   ======================== */
.cts-tips-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.cts-tips-main {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.cts-tips-sidebar {
    position: sticky;
    top: 100px;
}

.cts-tips-categories,
.cts-guides-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.cts-start-here-widget {
    background: var(--cts-primary);
    color: #fff;
    border-radius: var(--cts-radius-lg);
    padding: 28px;
}

.cts-start-here-widget h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.cts-start-here-widget p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
}

.cts-newsletter-widget {
    background: var(--cts-bg-light);
    border-radius: var(--cts-radius-lg);
    padding: 28px;
}

.cts-newsletter-widget h4 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.cts-newsletter-widget p {
    font-size: 0.85rem;
    color: var(--cts-text-light);
    margin-bottom: 14px;
}

.cts-newsletter-form {
    display: flex;
    gap: 8px;
}

.cts-newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--cts-border);
    border-radius: var(--cts-radius-sm);
    font-size: 0.88rem;
}

.cts-link-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 32px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cts-link);
}

/* ========================
   Pagination / Load More
   ======================== */
.cts-load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.cts-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.cts-pagination a,
.cts-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--cts-border);
    border-radius: var(--cts-radius-sm);
    font-size: 0.9rem;
    color: var(--cts-text);
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-pagination a:hover,
.cts-pagination .current {
    background: var(--cts-primary);
    color: #fff;
    border-color: var(--cts-primary);
}

/* ========================
   Badge
   ======================== */
.cts-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--cts-bg-light);
    color: var(--cts-primary);
}

.cts-badge-accent {
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
}

/* ========================
   Responsive
   ======================== */
@media (max-width: 1024px) {
    .cts-tours-list-layout,
    .cts-custom-trip-layout,
    .cts-tips-layout,
    .cts-tour-detail-layout,
    .cts-tour-content-wrap,
    .cts-tour-includes-wrap,
    .cts-guide-detail-layout {
        grid-template-columns: 1fr;
    }

    .cts-tours-filters,
    .cts-custom-trip-sidebar,
    .cts-tips-sidebar,
    .cts-booking-card,
    .cts-tour-sidebar,
    .cts-guide-sidebar {
        position: static;
    }

    .cts-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .cts-section {
        padding: 40px 0;
    }

    .cts-hero {
        min-height: 480px;
    }

    .cts-hero-title {
        font-size: 1.8rem;
    }

    .cts-hero-subtitle {
        font-size: 1rem;
    }

    .cts-hero-buttons {
        flex-direction: column;
    }

    .cts-hero-buttons .cts-btn {
        width: 100%;
    }

    .cts-section-title {
        font-size: 1.5rem;
    }

    .cts-form-row {
        grid-template-columns: 1fr;
    }

    .cts-radio-group,
    .cts-checkbox-group {
        grid-template-columns: 1fr;
    }

    .cts-destination-info-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .cts-guide-detail-layout {
        margin-top: -40px;
    }

    .cts-guide-main {
        padding: 24px;
    }

    .cts-gallery-main {
        height: 280px;
    }

    .cts-tour-quick-info {
        flex-direction: column;
        gap: 12px;
    }

    .cts-dashboard-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .cts-cta-banner {
        padding: 40px 24px;
    }

    .cts-cta-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cts-tours-list-results,
    .cts-tips-main {
        grid-template-columns: 1fr;
    }

    .cts-login-form-wrap {
        padding: 24px;
    }

    .cts-destination-info-bar {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CUSTOM TRIP PAGE - Full rebuild matching UI design
   ============================================================ */

/* Hero */
.cts-ct-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cts-ct-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/unsplash/photo-1476514525535-07fb3b4ae5f1.jpg') center/cover no-repeat;
}
.cts-ct-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,60,52,0.75) 0%, rgba(26,60,52,0.45) 100%);
}
.cts-ct-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 24px;
}
.cts-ct-hero-content h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1.2;
}
.cts-ct-hero-content p {
    font-size: 1.25rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Process Steps */
.cts-ct-process-section {
    background: var(--cts-bg-light);
}
.cts-ct-process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.cts-ct-process-step {
    text-align: center;
    position: relative;
}
.cts-ct-process-step::after {
    content: '\2192';
    position: absolute;
    right: -24px;
    top: 28px;
    font-size: 24px;
    color: var(--cts-accent);
    font-weight: 700;
}
.cts-ct-process-step:last-child::after {
    display: none;
}
.cts-ct-step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--cts-accent);
    color: var(--cts-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 16px;
}
.cts-ct-step-icon {
    font-size: 28px;
    margin-bottom: 8px;
}
.cts-ct-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 8px;
}
.cts-ct-step-desc {
    font-size: 0.875rem;
    color: var(--cts-text-secondary);
}

/* Form Layout */
.cts-ct-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}
.cts-ct-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.cts-ct-form-wrapper h2 {
    margin-bottom: 8px;
    color: var(--cts-primary);
}
.cts-ct-form-intro {
    color: var(--cts-text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
}
.cts-ct-form-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 16px;
    margin-top: 28px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--cts-bg-light);
    display: flex;
    align-items: center;
    gap: 8px;
}
.cts-ct-form-section-title:first-of-type {
    margin-top: 0;
}
.cts-ct-form-section-title .section-icon {
    font-size: 1.1rem;
}

/* Destinations checkboxes */
.cts-ct-dest-checkboxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.cts-ct-dest-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: var(--cts-bg-alt);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    font-size: 0.875rem;
    font-weight: 500;
}
.cts-ct-dest-item:hover {
    border-color: var(--cts-primary);
    background: var(--cts-bg-light);
}
.cts-ct-dest-item .dest-emoji {
    font-size: 1.3rem;
}
.cts-ct-dest-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--cts-primary);
    cursor: pointer;
}
.cts-ct-dest-unsure {
    grid-column: span 3;
    background: var(--cts-bg-light);
}

/* Inline checkbox */
.cts-ct-check-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.875rem;
    cursor: pointer;
}
.cts-ct-check-inline input {
    width: 18px;
    height: 18px;
    accent-color: var(--cts-primary);
}

/* Radio group */
.cts-ct-radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.cts-ct-radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--cts-bg-alt);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
    font-size: 0.875rem;
}
.cts-ct-radio-item:hover, .cts-ct-radio-item.is-checked {
    border-color: var(--cts-primary);
    background: var(--cts-bg-light);
}
.cts-ct-radio-item input {
    accent-color: var(--cts-primary);
    cursor: pointer;
}

/* Checkbox grid */
.cts-ct-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.cts-ct-checkbox-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.cts-ct-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    font-size: 0.875rem;
    cursor: pointer;
}
.cts-ct-check-item input {
    width: 18px;
    height: 18px;
    accent-color: var(--cts-primary);
    cursor: pointer;
}

/* Interest tags */
.cts-ct-interest-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cts-ct-tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--cts-bg-alt);
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 2px solid transparent;
}
.cts-ct-tag-pill:hover {
    border-color: var(--cts-primary);
    background: var(--cts-bg-light);
}
.cts-ct-tag-pill input {
    display: none;
}
.cts-ct-tag-pill input:checked + span {
    color: var(--cts-primary);
    font-weight: 700;
}
.cts-ct-tag-pill:has(input:checked) {
    background: var(--cts-bg-light);
    border-color: var(--cts-primary);
}

/* Privacy note */
.cts-ct-privacy-note {
    margin-top: 24px;
    padding: 16px 24px;
    background: var(--cts-bg-alt);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--cts-text-muted);
    line-height: 1.6;
}

/* Side Panel */
.cts-ct-side-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.cts-ct-benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.cts-ct-benefit-card h3 {
    margin-bottom: 20px;
    color: var(--cts-primary);
}
.cts-ct-benefit-item {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}
.cts-ct-benefit-item:last-child {
    margin-bottom: 0;
}
.cts-ct-benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cts-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.cts-ct-benefit-text {
    font-size: 0.875rem;
    color: var(--cts-text-secondary);
}
.cts-ct-benefit-text strong {
    color: var(--cts-primary);
    display: block;
    margin-bottom: 2px;
}

/* Testimonials */
.cts-ct-testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    position: relative;
}
.cts-ct-quote-mark {
    font-size: 3rem;
    color: var(--cts-accent);
    line-height: 1;
    margin-bottom: 8px;
    font-family: Georgia, serif;
}
.cts-ct-testimonial-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--cts-text);
}
.cts-ct-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.cts-ct-author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.cts-ct-author-info {
    display: flex;
    flex-direction: column;
}
.cts-ct-author-name {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--cts-primary);
}
.cts-ct-author-meta {
    font-size: 0.8125rem;
    color: var(--cts-text-muted);
}

/* Stats card */
.cts-ct-stats-card {
    background: var(--cts-bg-light);
    border-radius: 12px;
    padding: 28px;
    text-align: center;
}
.cts-ct-stat {
    margin-bottom: 20px;
}
.cts-ct-stat:last-child {
    margin-bottom: 0;
}
.cts-ct-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cts-primary);
}
.cts-ct-stat-label {
    font-size: 0.8125rem;
    color: var(--cts-text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .cts-ct-layout {
        grid-template-columns: 1fr;
    }
    .cts-ct-side-panel {
        order: -1;
    }
    .cts-ct-process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .cts-ct-process-step::after {
        display: none;
    }
    .cts-ct-dest-checkboxes {
        grid-template-columns: repeat(2, 1fr);
    }
    .cts-ct-checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .cts-ct-hero {
        height: 340px;
    }
    .cts-ct-hero-content h1 {
        font-size: 2rem;
    }
    .cts-ct-process-steps {
        grid-template-columns: 1fr;
    }
    .cts-ct-dest-checkboxes {
        grid-template-columns: 1fr;
    }
    .cts-ct-checkbox-grid {
        grid-template-columns: 1fr;
    }
    .cts-ct-radio-group {
        flex-direction: column;
    }
    .cts-ct-form-wrapper {
        padding: 24px;
    }
}


/* ============================================================
   GUIDES PAGE - Full rebuild matching UI design
   ============================================================ */

/* Guides Hero */
.cts-guides-hero {
    background: linear-gradient(135deg, var(--cts-primary) 0%, var(--cts-primary-light, #2d6a4f) 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
}
.cts-guides-hero .cts-eyebrow-light {
    color: #f4b63c;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}
.cts-guides-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 16px;
}
.cts-guides-hero p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 640px;
    margin: 0 auto 28px;
}
.cts-guides-hero-features {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    flex-wrap: wrap;
}

/* Guides How It Works */
.cts-guides-how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.cts-guides-how-item {
    text-align: center;
    padding: 32px;
}
.cts-guides-how-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--cts-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
}
.cts-guides-how-item h4 {
    margin-bottom: 8px;
    color: var(--cts-primary);
}
.cts-guides-how-item p {
    color: var(--cts-text-secondary);
    font-size: 0.875rem;
}

/* Newsletter Box (shared) */
.cts-newsletter-box {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    max-width: 600px;
    margin: 0 auto;
}
.cts-newsletter-box h3 {
    color: var(--cts-primary);
    margin-bottom: 12px;
}
.cts-newsletter-box p {
    color: var(--cts-text-secondary);
    margin-bottom: 20px;
    font-size: 0.9375rem;
}
.cts-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
}
.cts-newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9375rem;
}
.cts-newsletter-form input:focus {
    outline: none;
    border-color: var(--cts-primary);
}

/* Guides grid 3 col */
.cts-guides-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .cts-guides-how-grid {
        grid-template-columns: 1fr;
    }
    .cts-guides-hero {
        padding: 60px 0 40px;
    }
    .cts-guides-hero h1 {
        font-size: 2rem;
    }
    .cts-newsletter-form {
        flex-direction: column;
    }
}


/* ============================================================
   TRAVEL TIPS PAGE - Full rebuild matching UI design
   ============================================================ */

/* Featured Article */
.cts-tips-featured {
    padding: 40px 0;
    background: var(--cts-bg-alt);
}
.cts-tips-featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s;
    text-decoration: none;
    color: inherit;
}
.cts-tips-featured-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.cts-tips-featured-image {
    overflow: hidden;
    min-height: 320px;
}
.cts-tips-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cts-tips-featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cts-tips-featured-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cts-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.cts-tips-featured-content h2 {
    font-size: 1.875rem;
    margin-bottom: 16px;
    color: var(--cts-primary);
    line-height: 1.3;
}
.cts-tips-featured-content p {
    color: var(--cts-text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}
.cts-tips-featured-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--cts-text-muted);
}

/* Toolbar */
.cts-tips-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.cts-tag-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cts-tag-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: var(--cts-bg-alt);
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    color: var(--cts-text);
}
.cts-tag-pill.is-active,
.cts-tag-pill:hover {
    background: var(--cts-primary);
    color: #fff;
}
.cts-tips-search {
    position: relative;
    min-width: 240px;
}
.cts-tips-search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cts-text-muted);
    pointer-events: none;
}
.cts-tips-search input {
    width: 100%;
    padding: 10px 16px 10px 40px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9375rem;
}
.cts-tips-search input:focus {
    outline: none;
    border-color: var(--cts-primary);
}

/* Tips grid 3 col */
.cts-tips-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Pagination */
.cts-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.cts-pagination span {
    padding: 8px 14px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
}
.cts-pagination span.is-active {
    background: var(--cts-primary);
    color: #fff;
    border-color: var(--cts-primary);
}
.cts-pagination span:hover:not(.is-active) {
    border-color: var(--cts-primary);
    color: var(--cts-primary);
}

@media (max-width: 1024px) {
    .cts-tips-featured-card {
        grid-template-columns: 1fr;
    }
    .cts-tips-featured-image {
        min-height: 240px;
    }
}
@media (max-width: 768px) {
    .cts-tips-toolbar {
        flex-direction: column;
        align-items: stretch;
    }
    .cts-tips-search {
        min-width: auto;
    }
    .cts-tips-featured-content {
        padding: 24px;
    }
    .cts-tips-featured-content h2 {
        font-size: 1.5rem;
    }
}


/* ============================================================
   DESTINATIONS PAGE - City detail page matching UI design
   ============================================================ */

/* Destination Hero */
.cts-dest-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}
.cts-dest-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../img/unsplash/photo-1508804185872-d7badad00f7d.jpg') center/cover no-repeat;
}
.cts-dest-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,60,52,0.85) 0%, rgba(26,60,52,0.4) 60%, rgba(26,60,52,0.25) 100%);
}
.cts-dest-hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 48px 24px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.cts-dest-hero-content h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 8px;
    line-height: 1.15;
}
.cts-dest-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    font-weight: 400;
    margin-bottom: 20px;
}
.cts-dest-stats-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 12px 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.cts-dest-stats-bar .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #fff;
}
.cts-dest-stats-bar .stat-icon {
    color: var(--cts-accent);
    font-size: 18px;
}
.cts-dest-stats-bar .stat-label {
    color: rgba(255,255,255,0.6);
}
.cts-dest-stats-bar .stat-divider {
    width: 1px;
    height: 20px;
    background: rgba(255,255,255,0.3);
}

/* Destination Intro */
.cts-dest-intro {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 32px;
}
.cts-dest-intro h2 {
    margin-bottom: 20px;
    color: var(--cts-primary);
}
.cts-dest-intro p {
    color: var(--cts-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.cts-dest-intro p:last-child {
    margin-bottom: 0;
}

/* Destination Tags */
.cts-dest-tags {
    margin-bottom: 40px;
}
.cts-dest-tags h4 {
    margin-bottom: 12px;
    color: var(--cts-primary);
}

/* Feature Cards */
.cts-dest-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cts-dest-feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: all 0.2s;
    text-align: center;
}
.cts-dest-feature-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.cts-dest-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--cts-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
}
.cts-dest-feature-title {
    font-size: 1.1rem;
    color: var(--cts-primary);
    margin-bottom: 8px;
}
.cts-dest-feature-desc {
    font-size: 0.875rem;
    color: var(--cts-text-secondary);
}

/* Destination CTA */
.cts-dest-cta {
    background: linear-gradient(135deg, var(--cts-primary) 0%, var(--cts-primary-light, #2d6a4f) 100%);
    border-radius: 16px;
    padding: 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cts-dest-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(244,182,60,0.1);
    border-radius: 50%;
}
.cts-dest-cta h2 {
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.cts-dest-cta p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .cts-dest-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cts-dest-stats-bar {
        gap: 16px;
    }
    .cts-dest-stats-bar .stat-divider {
        display: none;
    }
}
@media (max-width: 768px) {
    .cts-dest-hero {
        height: 400px;
    }
    .cts-dest-hero-content h1 {
        font-size: 2rem;
    }
    .cts-dest-stats-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .cts-dest-feature-grid {
        grid-template-columns: 1fr;
    }
    .cts-dest-intro {
        padding: 24px;
    }
    .cts-dest-cta {
        padding: 40px 24px;
    }
}


/* ============================================================
   SECTION TITLE BLOCK (shared by new pages)
   ============================================================ */
.cts-section-title-block {
    text-align: center;
    margin-bottom: 40px;
}
.cts-section-title-block .cts-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cts-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.cts-section-title-block h2 {
    color: var(--cts-primary);
    margin-bottom: 8px;
}
.cts-section-title-block p {
    color: var(--cts-text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   Custom Trips Page - UI Match v2
   ============================================================ */

/* Hero */
.cts-ct-hero-v2 {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 120px 0 80px;
}
.cts-ct-hero-v2-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.cts-ct-hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,60,52,0.45) 0%, rgba(26,60,52,0.65) 100%);
    z-index: 1;
}
.cts-ct-hero-v2 .container {
    position: relative;
    z-index: 2;
}
.cts-ct-hero-v2-content {
    max-width: 780px;
    margin: 0 auto;
}
.cts-ct-hero-v2-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.cts-ct-hero-v2-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    color: #fff;
}
.cts-ct-hero-v2-actions {
    margin-bottom: 28px;
}
.cts-ct-hero-v2-actions .cts-btn-accent {
    background: var(--cts-accent, #f4b63c);
    color: #1a3c34;
    border-color: var(--cts-accent, #f4b63c);
    padding: 14px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
}
.cts-ct-hero-v2-trust {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    padding: 12px 28px;
    border-radius: 999px;
}
.cts-ct-hero-v2-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Form Section */
.cts-ct-form-section-v2 {
    padding: 72px 0;
    background: #fff;
}
.cts-ct-section-header-v2 {
    text-align: center;
    margin-bottom: 44px;
}
.cts-ct-section-header-v2 h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 10px;
}
.cts-ct-section-header-v2 p {
    color: var(--cts-text-secondary, #5a6b66);
    font-size: 1.05rem;
}
.cts-ct-layout-v2 {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}
.cts-ct-form-v2 {
    background: #fff;
    border: 1px solid #e8eceb;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.cts-ct-form-row-v2 {
    display: grid;
    gap: 18px;
    margin-bottom: 22px;
}
.cts-ct-form-row-2 {
    grid-template-columns: 1fr 1fr;
}
.cts-ct-form-row-3 {
    grid-template-columns: repeat(3, 1fr);
}
.cts-ct-form-group-v2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cts-ct-form-group-v2 label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cts-primary, #1a3c34);
}
.cts-ct-form-group-v2 .cts-form-control {
    border: 1px solid #d5ddd9;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 0.95rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.cts-ct-form-group-v2 .cts-form-control:focus {
    border-color: var(--cts-accent, #f4b63c);
    box-shadow: 0 0 0 3px rgba(244,182,60,0.12);
    outline: none;
}

/* Contact types */
.cts-ct-contact-types {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.cts-ct-contact-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 8px;
    border: 1px solid #d5ddd9;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cts-text, #3d4f4a);
    transition: all 0.2s;
}
.cts-ct-contact-type:hover,
.cts-ct-contact-type.is-checked,
.cts-ct-contact-type:has(input:checked) {
    border-color: var(--cts-accent, #f4b63c);
    background: rgba(244,182,60,0.08);
    color: var(--cts-primary, #1a3c34);
}
.cts-ct-contact-type input {
    display: none;
}

/* Counter */
.cts-ct-counter {
    display: inline-flex;
    align-items: center;
    border: 1px solid #d5ddd9;
    border-radius: 8px;
    overflow: hidden;
    width: fit-content;
}
.cts-ct-counter button {
    width: 36px;
    height: 42px;
    border: none;
    background: #f4f6f5;
    color: var(--cts-primary, #1a3c34);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.cts-ct-counter button:hover {
    background: #e8eceb;
}
.cts-ct-counter input {
    width: 50px;
    height: 42px;
    border: none;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cts-primary, #1a3c34);
    -moz-appearance: textfield;
}
.cts-ct-counter input::-webkit-outer-spin-button,
.cts-ct-counter input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Form mini hint */
.cts-ct-form-mini-hint {
    font-size: 0.82rem;
    color: #6c7a73;
    margin: -8px 0 4px;
    padding: 8px 12px;
    background: #f4f8f5;
    border-left: 3px solid var(--cts-primary, #1a3c34);
    border-radius: 4px;
}

/* Step 2 divider */
.cts-ct-step2-divider-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 36px 0 20px;
}
.cts-ct-step2-divider-line-v2 {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, #d5ddd9 30%, #d5ddd9 70%, transparent);
}
.cts-ct-step2-divider-label-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    font-size: 1.05rem;
    white-space: nowrap;
}
.cts-ct-step2-num-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cts-primary, #1a3c34);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}
.cts-ct-form-step2-intro-v2 {
    font-size: 0.92rem;
    color: #4a5a52;
    margin: 0 0 20px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #f4f8f5 0%, #e9f0e8 100%);
    border-radius: 8px;
    border-left: 3px solid #e9b949;
}

/* Radio pill row */
.cts-ct-radio-row-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cts-ct-radio-pill-v2 {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #d5ddd9;
    border-radius: 999px;
    background: #fff;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.cts-ct-radio-pill-v2:hover {
    border-color: var(--cts-primary, #1a3c34);
    background: #f4f8f5;
}
.cts-ct-radio-pill-v2 input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.cts-ct-radio-pill-v2 span {
    color: #4a5a52;
    font-weight: 500;
}
.cts-ct-radio-pill-v2.is-checked,
.cts-ct-radio-pill-v2:has(input:checked) {
    background: var(--cts-primary, #1a3c34);
    border-color: var(--cts-primary, #1a3c34);
}
.cts-ct-radio-pill-v2.is-checked span,
.cts-ct-radio-pill-v2:has(input:checked) span {
    color: #fff;
}

/* Check pill row */
.cts-ct-check-row-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cts-ct-check-pill-v2 {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border: 1px solid #d5ddd9;
    border-radius: 999px;
    background: #fff;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.cts-ct-check-pill-v2:hover {
    border-color: var(--cts-primary, #1a3c34);
    background: #f4f8f5;
}
.cts-ct-check-pill-v2 input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.cts-ct-check-pill-v2 span {
    color: #4a5a52;
    font-weight: 500;
}
.cts-ct-check-pill-v2.is-checked,
.cts-ct-check-pill-v2:has(input:checked) {
    background: #e9f0e8;
    border-color: var(--cts-primary, #1a3c34);
}
.cts-ct-check-pill-v2.is-checked span,
.cts-ct-check-pill-v2:has(input:checked) span {
    color: var(--cts-primary, #1a3c34);
}

/* Form help text */
.cts-ct-form-help-v2 {
    display: block;
    margin-top: 6px;
    font-size: 0.78rem;
    color: #6c7a73;
}

/* Privacy consent */
.cts-ct-form-consent-v2 {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: #4a5a52;
    line-height: 1.5;
    cursor: pointer;
    padding: 12px 14px;
    background: #f9faf9;
    border-radius: 8px;
    border: 1px solid #e8eceb;
}
.cts-ct-form-consent-v2 input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: var(--cts-primary, #1a3c34);
    cursor: pointer;
}
.cts-ct-form-consent-v2 a {
    color: var(--cts-primary, #1a3c34);
    text-decoration: underline;
}

/* Pace options */
.cts-ct-pace-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.cts-ct-pace-option {
    padding: 10px 20px;
    border: 1px solid #d5ddd9;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cts-text, #3d4f4a);
    transition: all 0.2s;
}
.cts-ct-pace-option:hover,
.cts-ct-pace-option.is-checked,
.cts-ct-pace-option:has(input:checked) {
    border-color: var(--cts-primary, #1a3c34);
    background: var(--cts-primary, #1a3c34);
    color: #fff;
}
.cts-ct-pace-option input {
    display: none;
}

/* Interest tags */
.cts-ct-interest-tags-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cts-ct-tag-pill-v2 {
    cursor: pointer;
}
.cts-ct-tag-pill-v2 input {
    display: none;
}
.cts-ct-tag-pill-v2 span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border: 1px solid #d5ddd9;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--cts-text, #3d4f4a);
    transition: all 0.2s;
}
.cts-ct-tag-pill-v2 span::before {
    content: '+';
    font-size: 1rem;
    line-height: 1;
}
.cts-ct-tag-pill-v2:hover span,
.cts-ct-tag-pill-v2 input:checked + span {
    border-color: var(--cts-primary, #1a3c34);
    background: var(--cts-primary, #1a3c34);
    color: #fff;
}

/* Form hint */
.cts-ct-form-hint {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--cts-text-secondary, #5a6b66);
    line-height: 1.6;
}

/* Sidebar */
.cts-ct-side-v2 {
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.cts-ct-side-card-v2 {
    background: #fff;
    border: 1px solid #e8eceb;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* ==============================
 * Submission Success Banner
 * ============================== */
.cts-submission-success-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1a3c34;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cts-submission-success-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}
.cts-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f4b63c;
    color: #1a3c34;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.cts-success-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.cts-success-close:hover {
    opacity: 1;
}

/* ==============================
 * Heart button favorited state
 * ============================== */
.cts-tour-card-heart-v2.is-favorited,
.cts-home-tour-heart-v2.is-favorited,
.cts-dest-related-heart-v2.is-favorited {
    opacity: 1;
}
.cts-tour-card-heart-v2.is-favorited svg path,
.cts-home-tour-heart-v2.is-favorited svg path,
.cts-dest-related-heart-v2.is-favorited svg path {
    fill: #e74c3c !important;
    stroke: #e74c3c !important;
}

/* ==============================
 * Tours v2 no results
 * ============================== */
.cts-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #5a6b66;
    font-size: 1rem;
}
.cts-ct-side-card-v2 h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 18px;
}
.cts-ct-side-item-v2 {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
}
.cts-ct-side-item-v2:last-child {
    margin-bottom: 0;
}
.cts-ct-side-icon-v2 {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f4f6f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.15rem;
}
.cts-ct-side-icon-accent {
    background: rgba(244,182,60,0.15);
}
.cts-ct-side-text-v2 {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cts-ct-side-text-v2 strong {
    font-size: 0.95rem;
    color: var(--cts-primary, #1a3c34);
}
.cts-ct-side-text-v2 span {
    font-size: 0.86rem;
    color: var(--cts-text-secondary, #5a6b66);
    line-height: 1.5;
}

/* Story card */
.cts-ct-story-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--cts-text, #3d4f4a);
    margin-bottom: 16px;
}
.cts-ct-story-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.cts-ct-story-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}
.cts-ct-story-author div {
    display: flex;
    flex-direction: column;
}
.cts-ct-story-author strong {
    font-size: 0.9rem;
    color: var(--cts-primary, #1a3c34);
}
.cts-ct-story-author span {
    font-size: 0.8rem;
    color: var(--cts-text-secondary, #5a6b66);
}
.cts-ct-story-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cts-link, #2d6a4f);
    text-decoration: none;
}
.cts-ct-story-link:hover {
    text-decoration: underline;
}

/* Quick contact */
.cts-ct-quick-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.cts-ct-quick-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 8px;
    border: 1px solid #d5ddd9;
    border-radius: 8px;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--cts-primary, #1a3c34);
    text-decoration: none;
    transition: all 0.2s;
}
.cts-ct-quick-contact-btn:hover {
    border-color: var(--cts-accent, #f4b63c);
    background: rgba(244,182,60,0.08);
}

/* Process Steps */
.cts-ct-process-v2 {
    padding: 72px 0;
    background: #f8faf9;
}
.cts-ct-process-steps-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}
.cts-ct-process-step-v2 {
    display: flex;
    gap: 18px;
    position: relative;
    padding: 28px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.cts-ct-process-steps-v2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 16%;
    right: 16%;
    height: 2px;
    background: linear-gradient(to right, var(--cts-accent, #f4b63c) 0%, var(--cts-accent, #f4b63c) 100%);
    opacity: 0.3;
    z-index: 0;
}
.cts-ct-step-emoji-v2 {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(244,182,60,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.cts-ct-step-body-v2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: relative;
    z-index: 1;
}
.cts-ct-step-number-v2 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cts-accent, #d49a2a);
}
.cts-ct-step-body-v2 h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin: 0;
}
.cts-ct-step-body-v2 p {
    font-size: 0.88rem;
    color: var(--cts-text-secondary, #5a6b66);
    line-height: 1.6;
    margin: 0;
}

/* FAQ */
.cts-ct-faq-v2 {
    padding: 72px 0;
    background: #fff;
}
.cts-ct-faq-list-v2 {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.cts-ct-faq-item-v2 {
    border: 1px solid #e8eceb;
    border-radius: 12px;
    overflow: hidden;
}
.cts-ct-faq-question-v2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--cts-primary, #1a3c34);
    cursor: pointer;
    text-align: left;
}
.cts-ct-faq-icon {
    width: 22px;
    height: 22px;
    position: relative;
    flex-shrink: 0;
}
.cts-ct-faq-icon::before,
.cts-ct-faq-icon::after {
    content: '';
    position: absolute;
    background: var(--cts-primary, #1a3c34);
    transition: transform 0.2s;
}
.cts-ct-faq-icon::before {
    width: 12px;
    height: 2px;
    top: 10px;
    left: 5px;
}
.cts-ct-faq-icon::after {
    width: 2px;
    height: 12px;
    top: 5px;
    left: 10px;
}
.cts-ct-faq-item-v2.is-open .cts-ct-faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}
.cts-ct-faq-answer-v2 {
    display: none;
    padding: 0 22px 18px;
}
.cts-ct-faq-answer-v2 p {
    font-size: 0.95rem;
    color: var(--cts-text-secondary, #5a6b66);
    line-height: 1.7;
    margin: 0;
}

/* Inspiration */
.cts-ct-inspiration-v2 {
    padding: 72px 0;
    background: #f8faf9;
}
.cts-ct-inspiration-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cts-ct-inspiration-card-v2 {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}
.cts-ct-inspiration-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
.cts-ct-inspiration-image-v2 {
    height: 180px;
    background-size: cover;
    background-position: center;
}
.cts-ct-inspiration-body-v2 {
    padding: 22px;
}
.cts-ct-inspiration-body-v2 h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 8px;
}
.cts-ct-inspiration-body-v2 p {
    font-size: 0.88rem;
    color: var(--cts-text-secondary, #5a6b66);
    line-height: 1.6;
    margin-bottom: 14px;
}
.cts-ct-inspiration-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cts-link, #2d6a4f);
    text-decoration: none;
}
.cts-ct-inspiration-link:hover {
    text-decoration: underline;
}

/* Bottom CTA */
.cts-ct-cta-v2 {
    padding: 72px 0;
    background: linear-gradient(135deg, #1a3c34 0%, #2d6a4f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cts-ct-cta-v2::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(244,182,60,0.1);
}
.cts-ct-cta-inner-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.cts-ct-cta-text-v2 h2 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}
.cts-ct-cta-trust-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
}
.cts-ct-cta-trust-v2 span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cts-ct-cta-actions-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    flex-shrink: 0;
}
.cts-ct-cta-actions-v2 .cts-btn-accent {
    background: var(--cts-accent, #f4b63c);
    color: #1a3c34;
    border-color: var(--cts-accent, #f4b63c);
    padding: 14px 28px;
    font-weight: 600;
}
.cts-ct-cta-actions-v2 .cts-btn-outline-light {
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
    padding: 14px 24px;
    font-weight: 500;
}
.cts-ct-cta-actions-v2 .cts-btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .cts-ct-layout-v2 {
        grid-template-columns: 1fr;
    }
    .cts-ct-side-v2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .cts-ct-inspiration-grid-v2,
    .cts-ct-process-steps-v2 {
        grid-template-columns: 1fr;
    }
    .cts-ct-process-steps-v2::before {
        display: none;
    }
    .cts-ct-cta-inner-v2 {
        flex-direction: column;
        text-align: center;
    }
    .cts-ct-cta-trust-v2 {
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .cts-ct-hero-v2-content h1 {
        font-size: 2rem;
    }
    .cts-ct-hero-v2-subtitle {
        font-size: 1rem;
    }
    .cts-ct-form-v2 {
        padding: 24px;
    }
    .cts-ct-form-row-2,
    .cts-ct-form-row-3,
    .cts-ct-side-v2 {
        grid-template-columns: 1fr;
    }
    .cts-ct-contact-types {
        grid-template-columns: repeat(2, 1fr);
    }
    .cts-ct-pace-options {
        flex-direction: column;
    }
    .cts-ct-pace-option {
        text-align: center;
    }
    .cts-ct-inspiration-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   China Guides Hub Page - UI Match v2
   ============================================================ */

/* Hero */
.cts-guides-hero-hub-v2 {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    padding: 120px 0 80px;
}
.cts-guides-hero-hub-v2-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.cts-guides-hero-hub-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(26,60,52,0.45) 0%, rgba(26,60,52,0.7) 100%);
    z-index: 1;
}
.cts-guides-hero-hub-v2 .container {
    position: relative;
    z-index: 2;
}
.cts-guides-hero-hub-v2-content {
    max-width: 720px;
    margin: 0 auto;
}
.cts-guides-hero-hub-v2-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.cts-guides-hero-hub-v2-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    color: #fff;
}
.cts-guides-hero-hub-v2-search {
    max-width: 620px;
    margin: 0 auto 28px;
}
.cts-guides-hero-hub-v2-search form {
    display: flex;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.cts-guides-hero-hub-v2-search input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    font-size: 0.95rem;
    color: var(--cts-text, #3d4f4a);
}
.cts-guides-hero-hub-v2-search input::placeholder {
    color: #9aa9a4;
}
.cts-guides-hero-hub-v2-search input:focus {
    outline: none;
}
.cts-guides-hero-hub-v2-search button {
    width: 56px;
    border: none;
    background: var(--cts-accent, #f4b63c);
    color: #1a3c34;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s;
}
.cts-guides-hero-hub-v2-search button:hover {
    background: #e0a532;
}
.cts-guides-hero-hub-v2-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cts-guides-hero-hub-v2-actions .cts-btn-accent {
    background: var(--cts-accent, #f4b63c);
    color: #1a3c34;
    border-color: var(--cts-accent, #f4b63c);
    padding: 12px 28px;
    font-weight: 600;
}
.cts-guides-hero-hub-v2-actions .cts-btn-outline-light {
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    background: transparent;
    padding: 12px 28px;
    font-weight: 500;
}
.cts-guides-hero-hub-v2-actions .cts-btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
}

/* Category icons */
.cts-guides-cats-hub-v2 {
    padding: 24px 0;
    background: #fff;
    border-bottom: 1px solid #e8eceb;
}
.cts-guides-cats-list-hub-v2 {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.cts-guides-cats-list-hub-v2::-webkit-scrollbar {
    display: none;
}
.cts-guides-cat-item-hub-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid #e8eceb;
    border-radius: 999px;
    text-decoration: none;
    color: var(--cts-text, #3d4f4a);
    font-size: 0.88rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s;
}
.cts-guides-cat-item-hub-v2:hover {
    border-color: var(--cts-accent, #f4b63c);
    background: rgba(244,182,60,0.08);
    color: var(--cts-primary, #1a3c34);
}
.cts-guides-cat-icon-hub-v2 {
    font-size: 1.15rem;
}

/* Featured layout */
.cts-guides-featured-hub-v2 {
    padding: 56px 0;
    background: #f8faf9;
}
.cts-guides-featured-layout-hub-v2 {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}
.cts-guides-section-header-hub-v2 {
    margin-bottom: 24px;
}
.cts-guides-section-header-hub-v2 h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
}

/* Featured guide card */
.cts-guide-featured-card-hub-v2 {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 22px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
    margin-bottom: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cts-guide-featured-card-hub-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.cts-guide-featured-image-hub-v2 {
    display: block;
    height: 100%;
    min-height: 170px;
}
.cts-guide-featured-image-hub-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cts-guide-featured-body-hub-v2 {
    padding: 22px 22px 22px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cts-guide-featured-cat-hub-v2 {
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    background: rgba(244,182,60,0.12);
    color: var(--cts-primary, #1a3c34);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.cts-guide-featured-body-hub-v2 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}
.cts-guide-featured-body-hub-v2 h3 a {
    color: var(--cts-primary, #1a3c34);
    text-decoration: none;
}
.cts-guide-featured-body-hub-v2 h3 a:hover {
    color: var(--cts-link, #2d6a4f);
}
.cts-guide-featured-body-hub-v2 p {
    font-size: 0.9rem;
    color: var(--cts-text-secondary, #5a6b66);
    line-height: 1.6;
    margin: 0;
}
.cts-guide-featured-meta-hub-v2 {
    font-size: 0.82rem;
    color: var(--cts-text-secondary, #5a6b66);
    margin-top: auto;
    padding-top: 8px;
}
.cts-guides-view-all-hub-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--cts-link, #2d6a4f);
    text-decoration: none;
    margin-top: 8px;
}
.cts-guides-view-all-hub-v2:hover {
    text-decoration: underline;
}

/* Sidebar */
.cts-guides-popular-hub-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cts-guides-popular-card-hub-v2,
.cts-guides-community-card-hub-v2,
.cts-guides-cta-card-hub-v2 {
    background: #fff;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}
.cts-guides-popular-card-hub-v2 h3,
.cts-guides-community-card-hub-v2 h3,
.cts-guides-cta-card-hub-v2 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 16px;
}
.cts-guide-popular-item-hub-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f1;
    text-decoration: none;
}
.cts-guide-popular-item-hub-v2:last-child {
    border-bottom: none;
}
.cts-guide-popular-item-hub-v2 img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.cts-guide-popular-info-hub-v2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cts-guide-popular-info-hub-v2 strong {
    font-size: 0.88rem;
    color: var(--cts-primary, #1a3c34);
    line-height: 1.4;
}
.cts-guide-popular-info-hub-v2 span {
    font-size: 0.78rem;
    color: var(--cts-text-secondary, #5a6b66);
}

/* Community card */
.cts-guides-community-card-hub-v2 p,
.cts-guides-cta-card-hub-v2 p {
    font-size: 0.88rem;
    color: var(--cts-text-secondary, #5a6b66);
    line-height: 1.6;
    margin-bottom: 14px;
}
.cts-guides-community-card-hub-v2 .cts-newsletter-form {
    display: flex;
    gap: 8px;
}
.cts-guides-community-card-hub-v2 .cts-newsletter-form input {
    flex: 1;
    border: 1px solid #d5ddd9;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.85rem;
}
.cts-guides-community-card-hub-v2 .cts-newsletter-form button {
    padding: 10px 14px;
    font-size: 0.85rem;
}
.cts-guides-community-note-hub-v2 {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--cts-text-secondary, #5a6b66);
}

/* CTA card */
.cts-guides-cta-card-hub-v2 {
    background: linear-gradient(135deg, #1a3c34 0%, #2d6a4f 100%);
    color: #fff;
}
.cts-guides-cta-card-hub-v2 h3,
.cts-guides-cta-card-hub-v2 p {
    color: #fff;
}
.cts-guides-cta-card-hub-v2 .cts-btn-accent {
    background: var(--cts-accent, #f4b63c);
    color: #1a3c34;
    border-color: var(--cts-accent, #f4b63c);
}

/* Toolbox */
.cts-guides-toolbox-hub-v2 {
    padding: 64px 0;
    background: #fff;
}
.cts-guides-toolbox-grid-hub-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cts-guides-toolbox-card-hub-v2 {
    background: #f8faf9;
    border: 1px solid #e8eceb;
    border-radius: 14px;
    padding: 24px;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cts-guides-toolbox-card-hub-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.cts-guides-toolbox-icon-hub-v2 {
    font-size: 2rem;
    margin-bottom: 14px;
}
.cts-guides-toolbox-card-hub-v2 h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 8px;
}
.cts-guides-toolbox-card-hub-v2 p {
    font-size: 0.85rem;
    color: var(--cts-text-secondary, #5a6b66);
    line-height: 1.6;
    margin-bottom: 14px;
}
.cts-guides-toolbox-card-hub-v2 a {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--cts-link, #2d6a4f);
    text-decoration: none;
}
.cts-guides-toolbox-card-hub-v2 a:hover {
    text-decoration: underline;
}

/* Cities */
.cts-guides-cities-hub-v2 {
    padding: 64px 0;
    background: #f8faf9;
}
.cts-guides-cities-grid-hub-v2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.cts-guides-city-card-hub-v2 {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cts-guides-city-card-hub-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.cts-guides-city-image-hub-v2 {
    height: 130px;
    background-size: cover;
    background-position: center;
}
.cts-guides-city-body-hub-v2 {
    padding: 16px;
}
.cts-guides-city-body-hub-v2 h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 4px;
}
.cts-guides-city-body-hub-v2 p {
    font-size: 0.8rem;
    color: var(--cts-text-secondary, #5a6b66);
    margin-bottom: 10px;
    line-height: 1.5;
}
.cts-guides-city-link-hub-v2 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cts-link, #2d6a4f);
}

/* Inspiration */
.cts-guides-inspiration-hub-v2 {
    padding: 64px 0;
    background: #fff;
}
.cts-guides-inspiration-grid-hub-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cts-guides-inspiration-card-hub-v2 {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}
.cts-guides-inspiration-card-hub-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.1);
}
.cts-guides-inspiration-image-hub-v2 {
    height: 190px;
    background-size: cover;
    background-position: center;
}
.cts-guides-inspiration-body-hub-v2 {
    padding: 22px;
}
.cts-guides-inspiration-body-hub-v2 h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 8px;
}
.cts-guides-inspiration-body-hub-v2 p {
    font-size: 0.88rem;
    color: var(--cts-text-secondary, #5a6b66);
    line-height: 1.6;
    margin-bottom: 14px;
}
.cts-guides-inspiration-body-hub-v2 a {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--cts-link, #2d6a4f);
    text-decoration: none;
}
.cts-guides-inspiration-body-hub-v2 a:hover {
    text-decoration: underline;
}

/* Newsletter */
.cts-guides-newsletter-hub-v2 {
    padding: 64px 0;
    background: linear-gradient(135deg, #f0f7f4 0%, #e8f5e9 100%);
}
.cts-guides-newsletter-inner-hub-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}
.cts-guides-newsletter-text-hub-v2 h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 8px;
}
.cts-guides-newsletter-text-hub-v2 p {
    font-size: 0.95rem;
    color: var(--cts-text-secondary, #5a6b66);
}
.cts-guides-newsletter-form-hub-v2 {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cts-guides-newsletter-form-hub-v2 input {
    width: 280px;
    border: 1px solid #d5ddd9;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
}
.cts-guides-newsletter-form-hub-v2 button {
    padding: 12px 22px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .cts-guides-featured-layout-hub-v2 {
        grid-template-columns: 1fr;
    }
    .cts-guides-toolbox-grid-hub-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cts-guides-cities-grid-hub-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
    .cts-guides-inspiration-grid-hub-v2 {
        grid-template-columns: 1fr;
    }
    .cts-guides-newsletter-inner-hub-v2 {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .cts-guides-hero-hub-v2-content h1 {
        font-size: 2rem;
    }
    .cts-guides-hero-hub-v2-search form {
        border-radius: 12px;
        flex-direction: column;
    }
    .cts-guides-hero-hub-v2-search button {
        width: 100%;
        padding: 12px;
    }
    .cts-guide-featured-card-hub-v2 {
        grid-template-columns: 1fr;
    }
    .cts-guide-featured-image-hub-v2 {
        min-height: 180px;
    }
    .cts-guide-featured-body-hub-v2 {
        padding: 20px;
    }
    .cts-guides-toolbox-grid-hub-v2,
    .cts-guides-cities-grid-hub-v2 {
        grid-template-columns: 1fr;
    }
    .cts-guides-newsletter-form-hub-v2 {
        flex-direction: column;
        width: 100%;
    }
    .cts-guides-newsletter-form-hub-v2 input {
        width: 100%;
    }
}

/* ============================================================
   Travel Tips Page - UI Match v2
   ============================================================ */

/* Hero */
.cts-tips-hero-hub-v2 {
    padding: 80px 0 50px;
    background: linear-gradient(135deg, #f8faf9 0%, #eef5f2 100%);
}
.cts-tips-hero-layout-hub-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.cts-tips-hero-content-hub-v2 h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 16px;
}
.cts-tips-hero-content-hub-v2 p {
    font-size: 1.1rem;
    color: var(--cts-text-secondary, #5a6b66);
    line-height: 1.7;
    margin-bottom: 28px;
}
.cts-tips-hero-search-hub-v2 form {
    display: flex;
    background: #fff;
    border: 1px solid #d5ddd9;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.cts-tips-hero-search-hub-v2 input {
    flex: 1;
    border: none;
    padding: 14px 22px;
    font-size: 0.95rem;
    color: var(--cts-text, #3d4f4a);
}
.cts-tips-hero-search-hub-v2 input::placeholder {
    color: #9aa9a4;
}
.cts-tips-hero-search-hub-v2 input:focus {
    outline: none;
}
.cts-tips-hero-search-hub-v2 button {
    width: 52px;
    border: none;
    background: transparent;
    color: var(--cts-text-secondary, #5a6b66);
    font-size: 1.1rem;
    cursor: pointer;
}
.cts-tips-hero-collage-hub-v2 {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 320px;
}
.cts-tips-collage-item {
    border-radius: 14px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.cts-tips-collage-main {
    grid-row: span 2;
}

/* Content */
.cts-tips-content-hub-v2 {
    padding: 40px 0 64px;
    background: #fff;
}
.cts-tips-toolbar-hub-v2 {
    margin-bottom: 24px;
}
.cts-tips-cat-pills-hub-v2 {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.cts-tips-cat-pills-hub-v2::-webkit-scrollbar {
    display: none;
}
.cts-tips-cat-pill-hub-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 16px;
    border: 1px solid #e8eceb;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--cts-text, #3d4f4a);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
}
.cts-tips-cat-pill-hub-v2:hover,
.cts-tips-cat-pill-hub-v2.is-active {
    border-color: var(--cts-primary, #1a3c34);
    background: var(--cts-primary, #1a3c34);
    color: #fff;
}
.cts-tips-cat-pill-hub-v2 small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: rgba(26, 60, 52, 0.08);
    color: inherit;
    font-size: 0.7rem;
    font-weight: 700;
}
.cts-tips-cat-pill-hub-v2:hover small,
.cts-tips-cat-pill-hub-v2.is-active small {
    background: rgba(255, 255, 255, 0.18);
}

/* Header row */
.cts-tips-header-row-hub-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.cts-tips-count-hub-v2 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cts-primary, #1a3c34);
}
.cts-tips-sort-hub-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--cts-text-secondary, #5a6b66);
}
.cts-tips-sort-hub-v2 select {
    border: 1px solid #d5ddd9;
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.85rem;
    color: var(--cts-text, #3d4f4a);
    background: #fff;
}

/* Layout */
.cts-tips-layout-hub-v2 {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: start;
}

/* Article list card */
.cts-tips-list-card-hub-v2 {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid #f0f2f1;
}
.cts-tips-list-card-hub-v2[hidden],
.cts-tips-load-more-hub-v2[hidden],
.cts-tips-empty-hub-v2[hidden] {
    display: none !important;
}
.cts-tips-empty-hub-v2 {
    margin: 24px 0;
    padding: 28px;
    border: 1px dashed #d9e0dd;
    border-radius: 12px;
    background: #f8faf9;
    color: #64716c;
    text-align: center;
}
.cts-tips-list-card-hub-v2:first-child {
    padding-top: 0;
}
.cts-tips-list-image-hub-v2 {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    height: 160px;
}
.cts-tips-list-image-hub-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cts-tips-list-body-hub-v2 {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.cts-tips-list-cat-hub-v2 {
    display: inline-flex;
    width: fit-content;
    padding: 4px 10px;
    background: #f4f6f5;
    color: var(--cts-text-secondary, #5a6b66);
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}
.cts-tips-list-body-hub-v2 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0;
}
.cts-tips-list-body-hub-v2 h3 a {
    color: var(--cts-primary, #1a3c34);
    text-decoration: none;
}
.cts-tips-list-body-hub-v2 h3 a:hover {
    color: var(--cts-link, #2d6a4f);
}
.cts-tips-list-body-hub-v2 p {
    font-size: 0.9rem;
    color: var(--cts-text-secondary, #5a6b66);
    line-height: 1.6;
    margin: 0;
}
.cts-tips-list-meta-hub-v2 {
    font-size: 0.82rem;
    color: var(--cts-text-secondary, #5a6b66);
    margin-top: auto;
    padding-top: 8px;
}
.cts-tips-load-more-hub-v2 {
    display: block;
    margin: 32px auto 0;
    padding: 12px 28px;
    border: 1px solid #d5ddd9;
    border-radius: 999px;
    background: #fff;
    color: var(--cts-primary, #1a3c34);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.cts-tips-load-more-hub-v2:hover {
    border-color: var(--cts-primary, #1a3c34);
    background: var(--cts-primary, #1a3c34);
    color: #fff;
}

/* Sidebar */
.cts-tips-sidebar-hub-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cts-tips-side-card-hub-v2 {
    background: #fff;
    border: 1px solid #e8eceb;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.cts-tips-side-card-hub-v2 h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 16px;
}

/* Popular */
.cts-tips-popular-item-hub-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f2f1;
    text-decoration: none;
}
.cts-tips-popular-item-hub-v2:last-child {
    border-bottom: none;
}
.cts-tips-popular-item-hub-v2 img {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
}
.cts-tips-popular-info-hub-v2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.cts-tips-popular-info-hub-v2 strong {
    font-size: 0.86rem;
    color: var(--cts-primary, #1a3c34);
    line-height: 1.4;
}
.cts-tips-popular-info-hub-v2 span {
    font-size: 0.76rem;
    color: var(--cts-text-secondary, #5a6b66);
}

/* Start Here */
.cts-tips-start-item-hub-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f2f1;
    text-decoration: none;
}
.cts-tips-start-item-hub-v2:last-child {
    border-bottom: none;
}
.cts-tips-start-icon-hub-v2 {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #f4f6f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.cts-tips-start-info-hub-v2 {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.cts-tips-start-info-hub-v2 strong {
    font-size: 0.9rem;
    color: var(--cts-primary, #1a3c34);
}
.cts-tips-start-info-hub-v2 span {
    font-size: 0.78rem;
    color: var(--cts-text-secondary, #5a6b66);
}
.cts-tips-start-arrow-hub-v2 {
    font-size: 1.3rem;
    color: var(--cts-text-secondary, #5a6b66);
}

/* Plan CTA */
.cts-tips-plan-cta-hub-v2 {
    background: linear-gradient(135deg, #1a3c34 0%, #2d6a4f 100%);
    color: #fff;
}
.cts-tips-plan-cta-hub-v2 h3,
.cts-tips-plan-cta-hub-v2 p {
    color: #fff;
}
.cts-tips-plan-cta-hub-v2 p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 16px;
}
.cts-tips-plan-cta-hub-v2 .cts-btn-accent {
    background: var(--cts-accent, #f4b63c);
    color: #1a3c34;
    border-color: var(--cts-accent, #f4b63c);
}

/* Explore More */
.cts-tips-explore-hub-v2 {
    padding: 64px 0;
    background: #f8faf9;
}
.cts-tips-explore-grid-hub-v2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.cts-tips-explore-card-hub-v2 {
    position: relative;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.cts-tips-explore-card-hub-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.cts-tips-explore-image-hub-v2 {
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cts-tips-explore-icon-hub-v2 {
    position: absolute;
    bottom: -16px;
    left: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.cts-tips-explore-body-hub-v2 {
    padding: 24px 14px 14px;
}
.cts-tips-explore-body-hub-v2 h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 2px;
}
.cts-tips-explore-body-hub-v2 p {
    font-size: 0.75rem;
    color: var(--cts-text-secondary, #5a6b66);
}
.cts-tips-explore-arrow-hub-v2 {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--cts-primary, #1a3c34);
}

/* Newsletter */
.cts-tips-newsletter-hub-v2 {
    padding: 64px 0;
    background: linear-gradient(135deg, #eef5f2 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}
.cts-tips-newsletter-inner-hub-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.cts-tips-newsletter-content-hub-v2 {
    display: flex;
    align-items: center;
    gap: 18px;
}
.cts-tips-newsletter-icon-hub-v2 {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--cts-primary, #1a3c34);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}
.cts-tips-newsletter-content-hub-v2 h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cts-primary, #1a3c34);
    margin-bottom: 4px;
}
.cts-tips-newsletter-content-hub-v2 p {
    font-size: 0.9rem;
    color: var(--cts-text-secondary, #5a6b66);
}
.cts-tips-newsletter-form-hub-v2 {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cts-tips-newsletter-form-hub-v2 input {
    width: 260px;
    border: 1px solid #d5ddd9;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
}
.cts-tips-newsletter-form-hub-v2 button {
    padding: 12px 22px;
    font-size: 0.9rem;
}
.cts-tips-newsletter-panda-hub-v2 {
    position: absolute;
    right: 5%;
    bottom: -30px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .cts-tips-hero-layout-hub-v2 {
        grid-template-columns: 1fr;
    }
    .cts-tips-hero-collage-hub-v2 {
        height: 260px;
    }
    .cts-tips-layout-hub-v2 {
        grid-template-columns: 1fr;
    }
    .cts-tips-explore-grid-hub-v2 {
        grid-template-columns: repeat(3, 1fr);
    }
    .cts-tips-newsletter-inner-hub-v2 {
        flex-direction: column;
        text-align: center;
    }
    .cts-tips-newsletter-content-hub-v2 {
        flex-direction: column;
    }
    .cts-tips-newsletter-panda-hub-v2 {
        display: none;
    }
}
@media (max-width: 768px) {
    .cts-tips-hero-content-hub-v2 h1 {
        font-size: 2rem;
    }
    .cts-tips-list-card-hub-v2 {
        grid-template-columns: 1fr;
    }
    .cts-tips-list-image-hub-v2 {
        height: 180px;
    }
    .cts-tips-explore-grid-hub-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cts-tips-newsletter-form-hub-v2 {
        flex-direction: column;
        width: 100%;
    }
    .cts-tips-newsletter-form-hub-v2 input {
        width: 100%;
    }
}
/* ========================
   Destination Detail v2
   ======================== */

/* Hero */
.cts-dest-hero-v2 {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 120px 0 64px;
    overflow: hidden;
}

.cts-dest-hero-bg-v2 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.cts-dest-hero-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 60, 52, 0.25) 0%, rgba(26, 60, 52, 0.65) 100%);
    z-index: 1;
}

.cts-dest-hero-content-v2 {
    position: relative;
    z-index: 2;
    max-width: var(--cts-container);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    color: #fff;
}

.cts-dest-hero-content-v2 h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    max-width: 720px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cts-dest-hero-subtitle-v2 {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 640px;
    opacity: 0.95;
}

.cts-dest-hero-actions-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cts-dest-hero-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--cts-transition);
    border: 2px solid transparent;
}

.cts-dest-hero-btn-primary-v2 {
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    border-color: var(--cts-accent);
}

.cts-dest-hero-btn-primary-v2:hover {
    background: var(--cts-accent-hover);
    border-color: var(--cts-accent-hover);
}

.cts-dest-hero-btn-outline-v2 {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

.cts-dest-hero-btn-outline-v2:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
}

/* Section titles */
.cts-dest-section-title-v2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 0;
}

.cts-dest-section-title-center-v2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cts-primary);
    text-align: center;
    margin-bottom: 36px;
}

.cts-dest-section-header-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}

.cts-dest-section-link-v2 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cts-primary-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cts-dest-section-link-v2:hover {
    color: var(--cts-primary);
}

/* Quick overview stats */
.cts-dest-stats-grid-v2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.cts-dest-stat-card-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 16px 10px;
    box-shadow: var(--cts-shadow-sm);
    text-align: center;
    border: 1px solid rgba(26, 60, 52, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
}

.cts-dest-stat-icon-v2 {
    width: 38px;
    height: 38px;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cts-primary-light);
    flex-shrink: 0;
}

.cts-dest-stat-icon-v2 svg {
    width: 22px;
    height: 22px;
}

.cts-dest-stat-label-v2 {
    font-size: 0.75rem;
    color: var(--cts-text-light);
    margin-bottom: 4px;
}

.cts-dest-stat-value-v2 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cts-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.cts-dest-stat-stars-v2 {
    display: inline-flex;
    gap: 2px;
    margin-left: 6px;
}

.cts-dest-star-v2 {
    color: #e5e7eb;
    font-size: 0.85rem;
}

.cts-dest-star-v2.is-filled {
    color: var(--cts-accent);
}

.cts-dest-stat-tags-v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.cts-dest-stat-tag-v2 {
    display: inline-block;
    padding: 2px 7px;
    background: rgba(26, 60, 52, 0.06);
    color: var(--cts-text);
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 500;
}

/* Why visit feature cards */
.cts-dest-feature-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cts-dest-feature-card-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    transition: var(--cts-transition);
    border: 1px solid rgba(26, 60, 52, 0.06);
}

.cts-dest-feature-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--cts-shadow-hover);
}

.cts-dest-feature-image-v2 {
    height: 170px;
    overflow: hidden;
}

.cts-dest-feature-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cts-dest-feature-card-v2:hover .cts-dest-feature-image-v2 img {
    transform: scale(1.05);
}

.cts-dest-feature-body-v2 {
    padding: 18px;
}

.cts-dest-feature-body-v2 h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 8px;
}

.cts-dest-feature-body-v2 p {
    font-size: 0.88rem;
    color: var(--cts-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Itinerary cards */
.cts-dest-itinerary-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cts-dest-itinerary-card-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid rgba(26, 60, 52, 0.06);
    transition: var(--cts-transition);
}

.cts-dest-itinerary-card-v2:hover {
    box-shadow: var(--cts-shadow-hover);
}

.cts-dest-itinerary-image-v2 {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.cts-dest-itinerary-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-dest-itinerary-badge-v2 {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--cts-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
}

/* Itinerary group-type badge (top-right) */
.cts-dest-itinerary-type-v2 {
    position: absolute;
    top: 14px;
    right: 14px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.cts-dest-itinerary-type-v2.cts-dest-type-private-tour {
    background: linear-gradient(135deg, #155f35 0%, #2F6B4F 100%);
}
.cts-dest-itinerary-type-v2.cts-dest-type-group-tour {
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
}
.cts-dest-itinerary-type-v2.cts-dest-type-day-tour {
    background: linear-gradient(135deg, #fb8c00 0%, #ef6c00 100%);
}
.cts-dest-itinerary-type-v2.cts-dest-type-custom-tour {
    background: linear-gradient(135deg, #efb323 0%, #E7B94C 100%);
    color: #1a1a1a;
}

.cts-dest-itinerary-body-v2 {
    padding: 18px;
}

.cts-dest-itinerary-body-v2 h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 6px;
}

.cts-dest-itinerary-body-v2 > p {
    font-size: 0.88rem;
    color: var(--cts-text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.cts-dest-itinerary-points-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.cts-dest-itinerary-points-v2 li {
    font-size: 0.8rem;
    color: var(--cts-text);
    background: rgba(26, 60, 52, 0.06);
    padding: 4px 10px;
    border-radius: 20px;
}

.cts-dest-itinerary-footer-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.cts-dest-itinerary-price-v2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cts-primary);
}

.cts-dest-itinerary-price-v2 small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--cts-text-light);
}

.cts-dest-itinerary-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-dest-itinerary-btn-v2:hover {
    background: var(--cts-accent-hover);
}

/* Related tours */
.cts-dest-related-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.cts-dest-related-card-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid rgba(26, 60, 52, 0.06);
    transition: var(--cts-transition);
}

.cts-dest-related-card-v2:hover {
    box-shadow: var(--cts-shadow-hover);
}

.cts-dest-related-image-v2 {
    position: relative;
    height: 170px;
    overflow: hidden;
}

.cts-dest-related-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-dest-related-heart-v2 {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cts-text-light);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--cts-transition);
}

.cts-dest-related-heart-v2:hover,
.cts-dest-related-heart-v2.is-active {
    color: #e74c3c;
}

.cts-dest-related-duration-v2 {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(26, 60, 52, 0.85);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

/* Related tour group-type badge (top-right) */
.cts-dest-related-type-v2 {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 2;
}
.cts-dest-related-type-v2.cts-dest-type-private-tour {
    background: linear-gradient(135deg, #155f35 0%, #2F6B4F 100%);
}
.cts-dest-related-type-v2.cts-dest-type-group-tour {
    background: linear-gradient(135deg, #1e88e5 0%, #1976d2 100%);
}
.cts-dest-related-type-v2.cts-dest-type-day-tour {
    background: linear-gradient(135deg, #fb8c00 0%, #ef6c00 100%);
}
.cts-dest-related-type-v2.cts-dest-type-custom-tour {
    background: linear-gradient(135deg, #efb323 0%, #E7B94C 100%);
    color: #1a1a1a;
}

.cts-dest-related-body-v2 {
    padding: 14px;
}

.cts-dest-related-body-v2 h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 8px;
    line-height: 1.35;
}

.cts-dest-related-tags-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.cts-dest-related-tags-v2 span {
    font-size: 0.72rem;
    color: var(--cts-text-light);
    background: rgba(26, 60, 52, 0.05);
    padding: 3px 7px;
    border-radius: 4px;
}

.cts-dest-related-footer-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.cts-dest-related-price-v2 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cts-primary);
}

.cts-dest-related-price-v2 small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--cts-text-light);
}

.cts-dest-related-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-dest-related-btn-v2:hover {
    background: var(--cts-accent-hover);
}

/* Related tips */
.cts-dest-tips-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cts-dest-tip-card-v2 {
    display: block;
    background: #fff;
    border-radius: var(--cts-radius);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid rgba(26, 60, 52, 0.06);
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-dest-tip-card-v2:hover {
    box-shadow: var(--cts-shadow-hover);
}

.cts-dest-tip-image-v2 {
    height: 190px;
    overflow: hidden;
}

.cts-dest-tip-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cts-dest-tip-card-v2:hover .cts-dest-tip-image-v2 img {
    transform: scale(1.05);
}

.cts-dest-tip-body-v2 {
    padding: 18px;
}

.cts-dest-tip-cat-v2 {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cts-primary-light);
    margin-bottom: 6px;
}

.cts-dest-tip-body-v2 h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 6px;
    line-height: 1.4;
}

.cts-dest-tip-summary-v2 {
    font-size: 0.85rem;
    color: var(--cts-text-light);
    line-height: 1.55;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cts-dest-tip-time-v2 {
    font-size: 0.8rem;
    color: var(--cts-text-light);
}

/* CTA */
.cts-dest-cta-v2 {
    background: linear-gradient(135deg, #f4f9f5 0%, #f8fbf3 100%);
    border-radius: var(--cts-radius-lg);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    border: 1px solid rgba(26, 60, 52, 0.08);
    position: relative;
    overflow: hidden;
}

.cts-dest-cta-v2::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(244, 182, 60, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cts-dest-cta-content-v2 h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 8px;
}

.cts-dest-cta-content-v2 p {
    font-size: 1rem;
    color: var(--cts-text-light);
    margin-bottom: 18px;
}

.cts-dest-cta-badges-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cts-dest-cta-badge-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--cts-text);
    background: #fff;
    padding: 7px 13px;
    border-radius: 50px;
    box-shadow: var(--cts-shadow-sm);
}

.cts-dest-cta-actions-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.cts-dest-cta-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--cts-transition);
    box-shadow: 0 4px 14px rgba(244, 182, 60, 0.35);
}

.cts-dest-cta-btn-v2:hover {
    background: var(--cts-accent-hover);
    transform: translateY(-2px);
}

.cts-dest-cta-contacts-v2 {
    display: flex;
    gap: 12px;
}

.cts-dest-cta-contact-v2 {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--cts-transition);
}

.cts-dest-cta-contact-v2.cts-whatsapp { background: #25d366; }
.cts-dest-cta-contact-v2.cts-line { background: #06c755; }
.cts-dest-cta-contact-v2.cts-wechat { background: #07c160; }

.cts-dest-cta-contact-v2:hover {
    transform: translateY(-2px);
    box-shadow: var(--cts-shadow);
}

/* Reviews */
.cts-dest-reviews-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cts-dest-review-card-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 24px;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid rgba(26, 60, 52, 0.06);
}

.cts-dest-review-header-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cts-dest-review-avatar-v2 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.cts-dest-review-meta-v2 {
    display: flex;
    flex-direction: column;
}

.cts-dest-review-meta-v2 strong {
    font-size: 0.98rem;
    color: var(--cts-primary);
}

.cts-dest-review-meta-v2 span {
    font-size: 0.8rem;
    color: var(--cts-text-light);
}

.cts-dest-review-stars-v2 {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.cts-dest-review-stars-v2 span {
    color: #e5e7eb;
    font-size: 1rem;
}

.cts-dest-review-stars-v2 span.is-filled {
    color: var(--cts-accent);
}

.cts-dest-review-card-v2 p {
    font-size: 0.92rem;
    color: var(--cts-text);
    line-height: 1.65;
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .cts-dest-stats-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }

    .cts-dest-feature-grid-v2,
    .cts-dest-itinerary-grid-v2,
    .cts-dest-related-grid-v2,
    .cts-dest-tips-grid-v2,
    .cts-dest-reviews-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cts-dest-hero-v2 {
        min-height: 420px;
        padding: 100px 0 40px;
    }

    .cts-dest-hero-content-v2 h1 {
        font-size: 1.9rem;
    }

    .cts-dest-hero-subtitle-v2 {
        font-size: 0.95rem;
    }

    .cts-dest-hero-actions-v2 {
        flex-direction: column;
        align-items: stretch;
    }

    .cts-dest-hero-btn-v2 {
        width: 100%;
    }

    .cts-dest-stats-grid-v2,
    .cts-dest-feature-grid-v2,
    .cts-dest-itinerary-grid-v2,
    .cts-dest-related-grid-v2,
    .cts-dest-tips-grid-v2,
    .cts-dest-reviews-grid-v2 {
        grid-template-columns: 1fr;
    }

    .cts-dest-section-header-v2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .cts-dest-cta-v2 {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }

    .cts-dest-cta-actions-v2 {
        align-items: center;
    }
}
/* ========================
   Home Page v2
   ======================== */

/* Hero */
.cts-home-hero-v2 {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.cts-home-hero-bg-v2 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.cts-home-hero-overlay-v2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 60, 52, 0.75) 0%, rgba(26, 60, 52, 0.35) 60%, rgba(26, 60, 52, 0.15) 100%);
    z-index: 1;
}

.cts-home-hero-content-v2 {
    position: relative;
    z-index: 2;
    max-width: var(--cts-container);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    color: #fff;
}

.cts-home-hero-content-v2 h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 14px;
    max-width: 620px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cts-home-hero-content-v2 > p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 540px;
    opacity: 0.95;
}

.cts-home-hero-actions-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.cts-home-hero-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--cts-transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.cts-home-hero-btn-primary-v2 {
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    border-color: var(--cts-accent);
}

.cts-home-hero-btn-primary-v2:hover {
    background: var(--cts-accent-hover);
    border-color: var(--cts-accent-hover);
}

.cts-home-hero-btn-dark-v2 {
    background: var(--cts-primary);
    color: #fff;
    border-color: var(--cts-primary);
}

.cts-home-hero-btn-dark-v2:hover {
    background: var(--cts-primary-dark);
    border-color: var(--cts-primary-dark);
}

.cts-home-hero-btn-outline-v2 {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.7);
}

.cts-home-hero-btn-outline-v2:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.cts-home-hero-tags-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cts-home-hero-tag-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

/* Section titles */
.cts-home-section-title-v2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 0;
}

.cts-home-section-title-center-v2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--cts-primary);
    text-align: center;
    margin-bottom: 36px;
}

.cts-home-section-header-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}

.cts-home-section-link-v2 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cts-primary-light);
    text-decoration: none;
}

.cts-home-section-link-v2:hover {
    color: var(--cts-primary);
}

/* Why choose us */
.cts-home-why-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cts-home-why-card-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 24px;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid rgba(26, 60, 52, 0.06);
    text-align: center;
}

.cts-home-why-icon-v2 {
    width: 54px;
    height: 54px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 60, 52, 0.06);
    color: var(--cts-primary);
    border-radius: 50%;
}

.cts-home-why-card-v2 h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 8px;
}

.cts-home-why-card-v2 p {
    font-size: 0.88rem;
    color: var(--cts-text-light);
    line-height: 1.6;
    margin: 0;
}

/* Three main lines */
.cts-home-lines-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cts-home-line-card-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid rgba(26, 60, 52, 0.06);
    transition: var(--cts-transition);
}

.cts-home-line-card-v2:hover {
    box-shadow: var(--cts-shadow-hover);
    transform: translateY(-4px);
}

.cts-home-line-image-v2 {
    height: 200px;
    overflow: hidden;
}

.cts-home-line-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cts-home-line-card-v2:hover .cts-home-line-image-v2 img {
    transform: scale(1.05);
}

.cts-home-line-body-v2 {
    padding: 20px;
    position: relative;
}

.cts-home-line-icon-v2 {
    position: absolute;
    top: -22px;
    left: 20px;
    width: 44px;
    height: 44px;
    background: var(--cts-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(26, 60, 52, 0.2);
}

.cts-home-line-body-v2 h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin: 22px 0 8px;
}

.cts-home-line-body-v2 p {
    font-size: 0.9rem;
    color: var(--cts-text-light);
    line-height: 1.6;
    margin-bottom: 14px;
}

.cts-home-line-link-v2 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cts-primary-light);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.cts-home-line-link-v2:hover {
    color: var(--cts-primary);
}

/* Popular destinations */
.cts-home-destinations-grid-v2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.cts-home-destination-card-v2 {
    display: block;
    background: #fff;
    border-radius: var(--cts-radius);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid rgba(26, 60, 52, 0.06);
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-home-destination-card-v2:hover {
    box-shadow: var(--cts-shadow-hover);
    transform: translateY(-4px);
}

.cts-home-destination-image-v2 {
    height: 160px;
    overflow: hidden;
}

.cts-home-destination-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cts-home-destination-card-v2:hover .cts-home-destination-image-v2 img {
    transform: scale(1.05);
}

.cts-home-destination-body-v2 {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cts-home-destination-body-v2 h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin: 0;
}

.cts-home-destination-desc-v2 {
    font-size: 0.78rem;
    color: var(--cts-text-light);
}

.cts-home-destination-stay-v2 {
    font-size: 0.75rem;
    color: var(--cts-text-light);
    margin-top: 4px;
}

.cts-home-destination-explore-v2 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cts-primary-light);
    margin-top: 8px;
}

/* Destination audience tags */
.cts-home-destination-audience-v2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px dashed rgba(26, 60, 52, 0.12);
    font-size: 0.7rem;
    color: var(--cts-text-light);
}

.cts-home-destination-audience-v2 > svg {
    flex-shrink: 0;
    color: var(--cts-primary-light);
}

.cts-home-destination-audience-label-v2 {
    font-weight: 600;
    margin-right: 2px;
}

.cts-home-destination-audience-tag-v2 {
    background: rgba(46, 125, 96, 0.1);
    color: var(--cts-primary);
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Featured tours */
.cts-home-tours-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.cts-home-tour-card-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid rgba(26, 60, 52, 0.06);
    transition: var(--cts-transition);
}

.cts-home-tour-card-v2:hover {
    box-shadow: var(--cts-shadow-hover);
}

.cts-home-tour-image-v2 {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.cts-home-tour-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-home-tour-heart-v2 {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cts-text-light);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: var(--cts-transition);
}

.cts-home-tour-heart-v2:hover {
    color: #e74c3c;
}

.cts-home-tour-duration-v2 {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(26, 60, 52, 0.85);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.cts-home-tour-body-v2 {
    padding: 14px;
}

.cts-home-tour-body-v2 h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 8px;
    line-height: 1.35;
}

.cts-home-tour-tags-v2,
.cts-home-tour-features-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.cts-home-tour-tags-v2 span,
.cts-home-tour-features-v2 span {
    font-size: 0.72rem;
    padding: 3px 7px;
    border-radius: 4px;
}

.cts-home-tour-tags-v2 span {
    color: var(--cts-primary-light);
    background: rgba(26, 60, 52, 0.05);
}

.cts-home-tour-features-v2 span {
    color: var(--cts-text);
    background: rgba(244, 182, 60, 0.12);
}

/* Tour card audience (Best for) tags */
.cts-home-tour-audience-v2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
    padding: 6px 8px;
    background: linear-gradient(90deg, rgba(46, 125, 96, 0.07), rgba(46, 125, 96, 0.02));
    border-left: 3px solid var(--cts-primary-light);
    border-radius: 4px;
    font-size: 0.72rem;
}

.cts-home-tour-audience-v2 > svg {
    flex-shrink: 0;
    color: var(--cts-primary-light);
}

.cts-home-tour-audience-label-v2 {
    font-weight: 700;
    color: var(--cts-primary);
    margin-right: 2px;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cts-home-tour-audience-tag-v2 {
    background: #fff;
    color: var(--cts-primary);
    padding: 2px 7px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    border: 1px solid rgba(46, 125, 96, 0.2);
}

.cts-home-tour-footer-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 10px;
}

.cts-home-tour-price-v2 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cts-primary);
}

.cts-home-tour-price-v2 small {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--cts-text-light);
}

.cts-home-tour-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-home-tour-btn-v2:hover {
    background: var(--cts-accent-hover);
}

/* FAQ / Useful content */
.cts-home-faq-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.cts-home-faq-card-v2 {
    display: block;
    background: #fff;
    border-radius: var(--cts-radius);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid rgba(26, 60, 52, 0.06);
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-home-faq-card-v2:hover {
    box-shadow: var(--cts-shadow-hover);
}

.cts-home-faq-image-v2 {
    height: 150px;
    overflow: hidden;
}

.cts-home-faq-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cts-home-faq-card-v2:hover .cts-home-faq-image-v2 img {
    transform: scale(1.05);
}

.cts-home-faq-body-v2 {
    padding: 16px;
}

.cts-home-faq-cat-v2 {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--cts-primary-light);
    margin-bottom: 6px;
}

.cts-home-faq-body-v2 h4 {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.cts-home-faq-time-v2 {
    font-size: 0.8rem;
    color: var(--cts-text-light);
}

/* CTA */
.cts-home-cta-v2 {
    background: linear-gradient(135deg, #f4f9f5 0%, #f8fbf3 100%);
    border-radius: var(--cts-radius-lg);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid rgba(26, 60, 52, 0.08);
    position: relative;
    overflow: hidden;
}

.cts-home-cta-v2::after {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(244, 182, 60, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cts-home-cta-content-v2 {
    position: relative;
    z-index: 1;
}

.cts-home-cta-content-v2 h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 14px;
}

.cts-home-cta-badges-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cts-home-cta-badges-v2 span {
    font-size: 0.9rem;
    color: var(--cts-text);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* CTA multi-channel social media */
.cts-home-cta-channels-v2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
}

.cts-home-cta-channels-label-v2 {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cts-text-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-right: 4px;
}

.cts-home-cta-channel-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px 6px 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(26, 60, 52, 0.12);
    text-decoration: none;
    color: var(--cts-primary);
    font-size: 0.78rem;
    font-weight: 600;
    transition: var(--cts-transition);
    cursor: pointer;
}

.cts-home-cta-channel-v2:hover {
    border-color: var(--cts-primary-light);
    box-shadow: 0 4px 10px rgba(26, 60, 52, 0.08);
    transform: translateY(-1px);
}

.cts-home-cta-channel-whatsapp-v2 .cts-home-cta-channel-icon-v2 {
    color: #25d366;
}

.cts-home-cta-channel-wechat-v2 .cts-home-cta-channel-icon-v2 {
    color: #07c160;
}

.cts-home-cta-channel-line-v2 .cts-home-cta-channel-icon-v2 {
    color: #06c755;
}

.cts-home-cta-channel-email-v2 .cts-home-cta-channel-icon-v2 {
    color: var(--cts-primary-light);
}

.cts-home-cta-channel-icon-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
}

.cts-home-cta-channel-handle-v2 {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--cts-text-light);
    margin-left: 2px;
}

/* WeChat / contact modal */
.cts-contact-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.cts-contact-modal.is-open {
    display: flex;
}

.cts-contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 30, 25, 0.55);
    backdrop-filter: blur(2px);
}

.cts-contact-modal-panel {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 36px 32px 28px;
    max-width: 380px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    text-align: center;
    z-index: 1;
    animation: ctsModalIn 0.25s ease-out;
}

@keyframes ctsModalIn {
    from { transform: translateY(12px) scale(0.97); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.cts-contact-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 28px;
    height: 28px;
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    color: var(--cts-text-light);
    cursor: pointer;
    border-radius: 50%;
}

.cts-contact-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.cts-contact-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 14px;
}

.cts-contact-modal-handle {
    display: inline-block;
    font-family: 'SF Mono', Menlo, Consolas, monospace;
    font-size: 1.05rem;
    font-weight: 700;
    color: #07c160;
    background: rgba(7, 193, 96, 0.08);
    padding: 10px 18px;
    border-radius: 8px;
    margin-bottom: 14px;
    user-select: all;
    cursor: text;
}

.cts-contact-modal-hint {
    font-size: 0.82rem;
    color: var(--cts-text-light);
    line-height: 1.5;
}

.cts-home-cta-actions-v2 {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.cts-home-cta-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--cts-transition);
    box-shadow: 0 4px 14px rgba(244, 182, 60, 0.35);
}

.cts-home-cta-btn-v2:hover {
    background: var(--cts-accent-hover);
    transform: translateY(-2px);
}

.cts-home-cta-whatsapp-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #fff;
    color: var(--cts-text);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--cts-shadow-sm);
    transition: var(--cts-transition);
}

.cts-home-cta-whatsapp-v2 svg {
    color: #25d366;
}

.cts-home-cta-whatsapp-v2:hover {
    box-shadow: var(--cts-shadow);
    transform: translateY(-2px);
}

/* Reviews */
.cts-home-reviews-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cts-home-review-card-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 24px;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid rgba(26, 60, 52, 0.06);
}

.cts-home-review-header-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cts-home-review-avatar-v2 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.cts-home-review-meta-v2 {
    display: flex;
    flex-direction: column;
}

.cts-home-review-meta-v2 strong {
    font-size: 0.98rem;
    color: var(--cts-primary);
}

.cts-home-review-meta-v2 span {
    font-size: 0.8rem;
    color: var(--cts-text-light);
}

.cts-home-review-stars-v2 {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.cts-home-review-stars-v2 span {
    color: #e5e7eb;
    font-size: 1rem;
}

.cts-home-review-stars-v2 span.is-filled {
    color: var(--cts-accent);
}

.cts-home-review-card-v2 p {
    font-size: 0.92rem;
    color: var(--cts-text);
    line-height: 1.65;
    margin: 0;
}

/* Reviews Slider v2 */
.cts-home-reviews-slider-v2 {
    position: relative;
    padding: 0 56px;
}

.cts-home-reviews-track-v2 {
    overflow: hidden;
    position: relative;
}

.cts-home-reviews-page-v2 {
    display: none;
    animation: ctsFadeInReviews 0.5s ease;
}

.cts-home-reviews-page-v2.is-active {
    display: block;
}

@keyframes ctsFadeInReviews {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.cts-home-reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(26, 60, 52, 0.1);
    color: var(--cts-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: var(--cts-shadow-sm);
    z-index: 2;
}

.cts-home-reviews-arrow:hover {
    background: var(--cts-primary);
    color: #fff;
    border-color: var(--cts-primary);
}

.cts-home-reviews-arrow:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cts-home-reviews-prev-v2 {
    left: 0;
}

.cts-home-reviews-next-v2 {
    right: 0;
}

.cts-home-reviews-dots-v2 {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.cts-home-reviews-dot-v2 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(26, 60, 52, 0.18);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cts-home-reviews-dot-v2:hover {
    background: rgba(26, 60, 52, 0.35);
}

.cts-home-reviews-dot-v2.is-active {
    background: var(--cts-primary);
    width: 28px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .cts-home-reviews-slider-v2 {
        padding: 0;
    }
    .cts-home-reviews-arrow {
        width: 32px;
        height: 32px;
        top: auto;
        bottom: -50px;
        transform: none;
    }
    .cts-home-reviews-prev-v2 {
        left: calc(50% - 50px);
    }
    .cts-home-reviews-next-v2 {
        right: calc(50% - 50px);
    }
    .cts-home-reviews-dots-v2 {
        margin-top: 60px;
    }
}

/* FAQ Summary + Category tag (help page) */
.cts-help-faq-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--cts-primary);
    background: rgba(47, 107, 79, 0.08);
    padding: 3px 10px;
    border-radius: 999px;
    margin: 0 24px 6px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cts-help-faq-question .cts-help-faq-question-text {
    flex: 1;
}

.cts-help-faq-question .cts-help-faq-toggle {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--cts-primary);
    transition: transform 0.25s ease;
}

.cts-help-faq-item.is-open .cts-help-faq-question .cts-help-faq-toggle {
    transform: rotate(45deg);
}

.cts-help-faq-summary {
    font-size: 0.88rem;
    color: var(--cts-text-light);
    padding: 0 24px 12px;
    line-height: 1.55;
}

/* Responsive */
@media (max-width: 1100px) {
    .cts-home-why-grid-v2,
    .cts-home-lines-grid-v2,
    .cts-home-faq-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cts-home-destinations-grid-v2 {
        grid-template-columns: repeat(3, 1fr);
    }

    .cts-home-tours-grid-v2,
    .cts-home-reviews-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cts-home-cta-v2 {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cts-home-cta-actions-v2 {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cts-home-hero-v2 {
        min-height: 480px;
        padding: 100px 0 50px;
    }

    .cts-home-hero-content-v2 h1 {
        font-size: 2rem;
    }

    .cts-home-hero-actions-v2 {
        flex-direction: column;
        align-items: stretch;
    }

    .cts-home-hero-btn-v2 {
        width: 100%;
    }

    .cts-home-why-grid-v2,
    .cts-home-lines-grid-v2,
    .cts-home-destinations-grid-v2,
    .cts-home-tours-grid-v2,
    .cts-home-faq-grid-v2,
    .cts-home-reviews-grid-v2 {
        grid-template-columns: 1fr;
    }

    .cts-home-section-header-v2 {
        flex-direction: column;
        align-items: flex-start;
    }

    .cts-home-cta-v2 {
        padding: 32px 24px;
    }
}
/* ========================
   Tours List Page v2
   ======================== */

/* Top bar */
.cts-tours-topbar-v2 {
    background: var(--cts-primary);
    color: #fff;
    padding: 12px 0;
    font-size: 0.9rem;
}

.cts-tours-topbar-content-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cts-tours-topbar-actions-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cts-tours-topbar-btn-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-tours-topbar-btn-v2:hover {
    background: var(--cts-accent-hover);
    transform: translateY(-1px);
}

.cts-tours-topbar-whatsapp-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    transition: var(--cts-transition);
}

.cts-tours-topbar-whatsapp-v2:hover {
    transform: scale(1.08);
    background: #1fad52;
}

/* Hero */
.cts-tours-hero-v2 {
    background: linear-gradient(135deg, #f4f9f5 0%, #e8f5e9 100%);
    padding: 48px 0 40px;
    text-align: center;
}

.cts-tours-hero-v2 h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 12px;
}

.cts-tours-hero-v2 p {
    max-width: 700px;
    margin: 0 auto 28px;
    color: var(--cts-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.cts-tours-hero-pills-v2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.cts-tours-hero-pill-v2 {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #fff;
    color: var(--cts-primary);
    border: 1px solid #d0e6d4;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-tours-hero-pill-v2:hover,
.cts-tours-hero-pill-v2.is-active {
    background: var(--cts-primary);
    color: #fff;
    border-color: var(--cts-primary);
}

/* Main layout */
.cts-tours-layout-v2 {
    display: grid;
    grid-template-columns: 240px 1fr 280px;
    gap: 24px;
    align-items: start;
}

/* Left filters */
.cts-tours-filters-v2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cts-tours-filter-group-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 18px;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid #eef4ef;
}

.cts-tours-filter-group-v2 h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef4ef;
}

.cts-tours-filter-option-v2 {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--cts-text);
    transition: var(--cts-transition);
}

.cts-tours-filter-option-v2:hover {
    color: var(--cts-primary);
}

.cts-tours-filter-option-v2 input[type="checkbox"],
.cts-tours-filter-option-v2 input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--cts-primary);
    flex-shrink: 0;
    margin: 0;
}

.cts-tours-filter-option-v2 span {
    flex: 1;
    line-height: 1.4;
}

.cts-tours-filter-option-v2 small {
    color: var(--cts-text-light);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.cts-tours-filter-stars-v2 {
    display: inline-flex;
    gap: 1px;
    color: #ddd;
    font-size: 0.75rem;
}

.cts-tours-filter-stars-v2 .is-filled {
    color: var(--cts-accent);
}

.cts-tours-filter-price-inputs-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.cts-tours-filter-price-inputs-v2 input {
    flex: 1;
    padding: 8px 10px;
    border: 1px solid #d0e6d4;
    border-radius: 8px;
    font-size: 0.8rem;
    color: var(--cts-text);
}

.cts-tours-filter-price-inputs-v2 input::placeholder {
    color: #aaa;
}

.cts-tours-filter-select-v2 {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d0e6d4;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--cts-text);
    background: #fff;
}

.cts-tours-filter-buttons-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.cts-tours-filter-clear-v2 {
    padding: 10px;
    background: transparent;
    border: 1px solid #d0e6d4;
    border-radius: var(--cts-radius);
    color: var(--cts-text-light);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--cts-transition);
}

.cts-tours-filter-clear-v2:hover {
    border-color: var(--cts-primary);
    color: var(--cts-primary);
}

.cts-tours-filter-apply-v2 {
    padding: 12px;
    background: var(--cts-primary);
    border: none;
    border-radius: var(--cts-radius);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--cts-transition);
}

.cts-tours-filter-apply-v2:hover {
    background: var(--cts-primary-dark);
    transform: translateY(-1px);
}

/* Filter header */
.cts-tours-filter-header-v2 {
    display: none;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cts-border);
}

.cts-tours-filter-header-v2 h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin: 0;
}

.cts-tours-filter-close-mobile-v2 {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--cts-text-light);
    cursor: pointer;
    padding: 4px 8px;
}

/* Active filter chips */
.cts-tours-active-filters-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.cts-tours-active-chip-v2 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #e8f5ed;
    border: 1px solid #c8e6d0;
    border-radius: 20px;
    font-size: 0.78rem;
    color: var(--cts-primary-dark);
    font-weight: 500;
    white-space: nowrap;
}

.cts-tours-active-chip-remove-v2 {
    background: none;
    border: none;
    color: var(--cts-text-light);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    padding: 0;
    margin-left: 2px;
    transition: color 0.2s;
}

.cts-tours-active-chip-remove-v2:hover {
    color: #e53935;
}

/* Loading overlay */
.cts-tours-loading-overlay-v2 {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--cts-radius);
}

.cts-tours-spinner-v2 {
    width: 40px;
    height: 40px;
    border: 3px solid #e0e0e0;
    border-top-color: var(--cts-primary);
    border-radius: 50%;
    animation: cts-spin 0.8s linear infinite;
}

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

/* Mobile filter toggle */
.cts-tours-filter-mobile-toggle-v2 {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--cts-primary);
    color: #fff;
    border: none;
    border-radius: var(--cts-radius);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 16px;
    width: 100%;
    justify-content: center;
}

.cts-tours-filter-count-badge-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: #e53935;
    color: #fff;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Center results */
.cts-tours-results-v2 {
    min-width: 0;
}

.cts-tours-results-header-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 0.9rem;
    color: var(--cts-text-light);
}

.cts-tours-results-header-v2 strong {
    color: var(--cts-primary);
    font-weight: 700;
}

.cts-tours-sort-v2 {
    padding: 8px 12px;
    border: 1px solid #d0e6d4;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--cts-text);
    background: #fff;
}

.cts-tours-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

/* Tour card */
.cts-tour-card-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    overflow: hidden;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid #eef4ef;
    transition: var(--cts-transition);
    display: flex;
    flex-direction: column;
}

.cts-tour-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: var(--cts-shadow-hover);
}

.cts-tour-card-image-v2 {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.cts-tour-card-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cts-tour-card-v2:hover .cts-tour-card-image-v2 img {
    transform: scale(1.05);
}

.cts-tour-card-badge-v2 {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background: var(--cts-accent);
    color: var(--cts-primary-dark);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 2;
}

.cts-tour-card-heart-v2 {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    color: var(--cts-primary);
    cursor: pointer;
    transition: var(--cts-transition);
    z-index: 2;
}

.cts-tour-card-heart-v2:hover {
    background: #fff;
    color: #e74c3c;
}

.cts-tour-card-body-v2 {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.cts-tour-card-tags-overlay-v2 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
    max-width: calc(100% - 70px);
}

.cts-tour-card-tags-overlay-v2 span {
    padding: 3px 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--cts-primary);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.cts-tour-card-tags-v2 {
    /* legacy class — no longer rendered but kept for back-compat */
    display: none;
}

.cts-tour-card-body-v2 h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.cts-tour-card-meta-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 12px;
    font-size: 0.78rem;
    color: var(--cts-text-light);
    margin-bottom: 10px;
}

.cts-tour-card-pace-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--cts-text-light);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f4f1;
}

.cts-tour-card-stars-v2 {
    display: inline-flex;
    gap: 1px;
    color: #ddd;
    font-size: 0.75rem;
}

.cts-tour-card-stars-v2 .is-filled {
    color: var(--cts-accent);
}

.cts-tour-card-footer-v2 {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 10px;
}

.cts-tour-card-price-v2 {
    display: flex;
    align-items: baseline;
    gap: 4px;
    flex-wrap: wrap;
}

.cts-tour-card-price-v2 span {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--cts-primary);
}

.cts-tour-card-price-v2 small {
    font-size: 0.75rem;
    color: var(--cts-text-light);
}

.cts-tour-card-btn-v2 {
    display: block;
    text-align: center;
    padding: 10px 16px;
    background: var(--cts-primary);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-tour-card-btn-v2:hover {
    background: var(--cts-primary-dark);
}

.cts-tour-card-rating-v2 {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--cts-text-light);
}

.cts-tour-card-rating-v2 > span:nth-child(2) {
    color: var(--cts-primary);
    font-weight: 700;
}

.cts-tours-loadmore-v2 {
    text-align: center;
}

.cts-tours-loadmore-btn-v2 {
    padding: 12px 32px;
    background: #fff;
    border: 1px solid #d0e6d4;
    border-radius: var(--cts-radius);
    color: var(--cts-primary);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--cts-transition);
}

.cts-tours-loadmore-btn-v2:hover {
    background: var(--cts-primary);
    color: #fff;
    border-color: var(--cts-primary);
}

/* Right sidebar */
.cts-tours-sidebar-v2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cts-tours-sidebar-box-v2,
.cts-tours-sidebar-help-v2 {
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 20px;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid #eef4ef;
}

.cts-tours-sidebar-box-v2 h4,
.cts-tours-sidebar-help-v2 h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 16px;
}

.cts-tours-why-list-v2 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cts-tours-why-list-v2 li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cts-tours-why-icon-v2 {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7f1;
    border-radius: 50%;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.cts-tours-why-list-v2 li div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cts-tours-why-list-v2 li strong {
    font-size: 0.9rem;
    color: var(--cts-primary);
}

.cts-tours-why-list-v2 li span {
    font-size: 0.8rem;
    color: var(--cts-text-light);
    line-height: 1.4;
}

.cts-tours-sidebar-help-v2 p {
    font-size: 0.85rem;
    color: var(--cts-text-light);
    margin-bottom: 14px;
}

.cts-tours-help-avatars-v2 {
    display: flex;
    margin-bottom: 16px;
}

.cts-tours-help-avatars-v2 img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    margin-left: -10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.cts-tours-help-avatars-v2 img:first-child {
    margin-left: 0;
}

/* Sidebar channel buttons (WhatsApp / WeChat / LINE / Email) */
.cts-tours-sidebar-channels-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 14px;
}

.cts-tours-sidebar-channel-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid rgba(26, 60, 52, 0.12);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--cts-primary);
    text-decoration: none;
    cursor: pointer;
    transition: var(--cts-transition);
}

.cts-tours-sidebar-channel-v2:hover {
    border-color: var(--cts-primary-light);
    box-shadow: 0 4px 8px rgba(26, 60, 52, 0.08);
    transform: translateY(-1px);
}

.cts-tours-sidebar-channel-icon-v2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
}

.cts-tours-sidebar-channel-whatsapp-v2 .cts-tours-sidebar-channel-icon-v2 {
    background: #25d366;
}

.cts-tours-sidebar-channel-wechat-v2 .cts-tours-sidebar-channel-icon-v2 {
    background: #07c160;
}

.cts-tours-sidebar-channel-line-v2 .cts-tours-sidebar-channel-icon-v2 {
    background: #06c755;
}

.cts-tours-sidebar-channel-email-v2 .cts-tours-sidebar-channel-icon-v2 {
    background: var(--cts-primary-light);
}

.cts-tours-sidebar-channel-label-v2 {
    flex: 1;
}

.cts-tours-help-btn-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 11px;
    background: var(--cts-primary);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--cts-radius);
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-tours-help-btn-v2:hover {
    background: var(--cts-primary-dark);
}

/* Recently viewed */
.cts-tours-section-title-v2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 20px;
}

.cts-tours-recent-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.cts-tours-recent-card-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 10px;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid #eef4ef;
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-tours-recent-card-v2:hover {
    transform: translateY(-2px);
    box-shadow: var(--cts-shadow);
}

.cts-tours-recent-image-v2 {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cts-tours-recent-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cts-tours-recent-body-v2 {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cts-tours-recent-body-v2 h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--cts-primary);
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cts-tours-recent-body-v2 > span:not(.cts-tours-recent-rating-v2) {
    font-size: 0.75rem;
    color: var(--cts-text-light);
}

.cts-tours-recent-rating-v2 {
    font-size: 0.8rem;
    color: var(--cts-accent);
    font-weight: 600;
}

/* Trust bar */
.cts-tours-trust-bar-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 24px;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid #eef4ef;
}

.cts-tours-trust-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.cts-tours-trust-icon-v2 {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f7f1;
    border-radius: 50%;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.cts-tours-trust-item-v2 div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cts-tours-trust-item-v2 strong {
    font-size: 0.95rem;
    color: var(--cts-primary);
}

.cts-tours-trust-item-v2 span {
    font-size: 0.8rem;
    color: var(--cts-text-light);
    line-height: 1.4;
}

/* Newsletter */
.cts-tours-newsletter-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: #fff;
    border-radius: var(--cts-radius);
    padding: 32px 40px;
    box-shadow: var(--cts-shadow-sm);
    border: 1px solid #eef4ef;
}

.cts-tours-newsletter-content-v2 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin-bottom: 6px;
}

.cts-tours-newsletter-content-v2 p {
    font-size: 0.9rem;
    color: var(--cts-text-light);
    margin: 0;
}

.cts-tours-newsletter-form-v2 {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cts-tours-newsletter-form-v2 input {
    width: 260px;
    padding: 12px 16px;
    border: 1px solid #d0e6d4;
    border-radius: var(--cts-radius);
    font-size: 0.9rem;
    color: var(--cts-text);
}

.cts-tours-newsletter-form-v2 input::placeholder {
    color: #aaa;
}

.cts-tours-newsletter-form-v2 button {
    padding: 12px 24px;
    background: var(--cts-primary);
    border: none;
    border-radius: var(--cts-radius);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--cts-transition);
}

.cts-tours-newsletter-form-v2 button:hover {
    background: var(--cts-primary-dark);
}

.cts-tours-newsletter-status-v2 {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
}

.cts-tours-newsletter-status-v2.is-success {
    background: #e6f4ea;
    color: #1b6e3a;
    border: 1px solid #b6dfc1;
}

.cts-tours-newsletter-status-v2.is-error {
    background: #fdecea;
    color: #b3261e;
    border: 1px solid #f5c2bf;
}

/* More Destinations button + expandable list */
.cts-tours-filter-more-v2 {
    width: 100%;
    margin-top: 6px;
    padding: 6px 4px;
    background: transparent;
    border: none;
    color: var(--cts-primary);
    font-size: 0.82rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: var(--cts-transition);
}

.cts-tours-filter-more-v2:hover {
    color: var(--cts-primary-dark);
}

.cts-tours-filter-more-chevron {
    transition: transform 0.25s ease;
}

.cts-tours-filter-more-v2[aria-expanded="true"] .cts-tours-filter-more-chevron {
    transform: rotate(180deg);
}

.cts-tours-filter-extra-v2 {
    margin-top: 4px;
    padding-top: 6px;
    border-top: 1px dashed #eef4ef;
}

/* Price range slider */
.cts-tours-filter-price-slider-v2 {
    margin-top: 8px;
}

.cts-tours-filter-price-track-v2 {
    position: relative;
    height: 32px;
    display: flex;
    align-items: center;
}

.cts-tours-filter-price-track-v2::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: #eef4ef;
    border-radius: 2px;
}

.cts-tours-filter-price-range-v2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: var(--cts-primary);
    border-radius: 2px;
    z-index: 1;
}

.cts-tours-filter-price-thumb-v2 {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    height: 32px;
    margin: 0;
}

.cts-tours-filter-price-thumb-v2::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cts-primary);
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(47, 107, 79, 0.35);
    cursor: grab;
    pointer-events: auto;
    margin-top: 0;
}

.cts-tours-filter-price-thumb-v2::-webkit-slider-thumb:active {
    cursor: grabbing;
}

.cts-tours-filter-price-thumb-v2::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cts-primary);
    border: 3px solid #fff;
    box-shadow: 0 1px 4px rgba(47, 107, 79, 0.35);
    cursor: grab;
    pointer-events: auto;
}

.cts-tours-filter-price-thumb-v2::-moz-range-track {
    background: transparent;
    height: 4px;
}

.cts-tours-filter-price-thumb-v2:focus {
    outline: none;
}

.cts-tours-filter-price-values-v2 {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cts-primary);
}

.cts-tours-filter-price-quick-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}

.cts-tours-filter-price-quick-btn-v2 {
    padding: 4px 10px;
    background: #f0f7f1;
    border: 1px solid transparent;
    border-radius: 14px;
    color: var(--cts-primary-light);
    font-size: 0.72rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--cts-transition);
}

.cts-tours-filter-price-quick-btn-v2:hover {
    background: #e6f0e8;
}

.cts-tours-filter-price-quick-btn-v2.is-active {
    background: var(--cts-primary);
    color: #fff;
    border-color: var(--cts-primary);
}

/* Active filter chip (applied condition visible above results) */
.cts-tours-active-filters-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 0 0 12px 0;
}

.cts-tours-active-chip-v2 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: #eef6ef;
    color: var(--cts-primary);
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 14px;
    border: 1px solid #d0e6d4;
}

.cts-tours-active-chip-remove-v2 {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(47, 107, 79, 0.2);
    color: var(--cts-primary);
    cursor: pointer;
    font-size: 11px;
    line-height: 1;
}

.cts-tours-active-chip-remove-v2:hover {
    background: var(--cts-primary);
    color: #fff;
}

/* Social media contact section (right sidebar) */
.cts-tours-social-v2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.cts-tours-social-link-v2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #eef4ef;
    border-radius: 10px;
    color: var(--cts-text);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--cts-transition);
}

.cts-tours-social-link-v2:hover {
    background: #f8faf9;
    border-color: var(--cts-primary);
    color: var(--cts-primary);
}

.cts-tours-social-link-v2 svg {
    flex-shrink: 0;
}

.cts-tours-social-link-v2--whatsapp {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.25);
}

.cts-tours-social-link-v2--line {
    color: #06c755;
    border-color: rgba(6, 199, 85, 0.25);
}

.cts-tours-social-link-v2--wechat {
    color: #1aad19;
    border-color: rgba(26, 173, 25, 0.25);
}

/* Responsive */
@media (max-width: 1280px) {
    .cts-tours-layout-v2 {
        grid-template-columns: 220px 1fr 240px;
        gap: 18px;
    }

    .cts-tours-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .cts-tours-layout-v2 {
        grid-template-columns: 1fr;
    }

    .cts-tours-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cts-tours-filters-v2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cts-tours-filter-buttons-v2 {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .cts-tours-sidebar-v2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .cts-tours-newsletter-v2 {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cts-tours-newsletter-form-v2 {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cts-tours-hero-v2 h1 {
        font-size: 1.8rem;
    }

    .cts-tours-hero-pills-v2 {
        gap: 8px;
    }

    .cts-tours-hero-pill-v2 {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .cts-tours-grid-v2 {
        grid-template-columns: 1fr;
    }

    /* Mobile filter drawer */
    .cts-tours-filter-mobile-toggle-v2 {
        display: flex;
    }

    .cts-tours-filters-v2 {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        padding: 20px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.15);
    }

    .cts-tours-filters-v2.is-mobile-open {
        transform: translateX(0);
    }

    .cts-tours-filter-header-v2 {
        display: flex;
    }

    .cts-tours-filter-close-mobile-v2 {
        display: block;
    }

    .cts-tours-filter-buttons-v2 {
        flex-direction: column;
        margin-top: 12px;
    }

    .cts-tours-sidebar-v2 {
        grid-template-columns: 1fr;
    }

    .cts-tours-recent-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .cts-tours-trust-bar-v2 {
        grid-template-columns: 1fr;
    }

    .cts-tours-newsletter-form-v2 {
        flex-direction: column;
    }

    .cts-tours-newsletter-form-v2 input {
        width: 100%;
    }

    .cts-tours-topbar-content-v2 {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .cts-tours-recent-grid-v2 {
        grid-template-columns: 1fr;
    }

    .cts-tour-card-meta-v2 {
        grid-template-columns: 1fr;
    }
}

/* ========================
   Missing Guide Detail v2 Styles
   ======================== */

.cts-guide-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cts-primary);
    margin: 0 0 12px;
    line-height: 1.3;
}

.cts-guide-title a {
    color: inherit;
    text-decoration: none;
}

.cts-guide-title a:hover {
    color: var(--cts-link);
}

.cts-price-large {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--cts-primary);
}

.cts-guide-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    padding-top: 16px;
}

/* Hide duplicate locked purchase card when sidebar purchase card exists */
.cts-guide-detail-layout .cts-guide-locked {
    display: none;
}

@media (max-width: 1024px) {
    .cts-guide-detail-layout .cts-guide-locked {
        display: block;
    }
}
