/* Savanna Circuit - Theme-Reconciled Design System
   Inherits theme tokens (--svc-c3, --svc-c1, --svc-c5, --svc-c7, --svc-c6) with safe fallbacks */

:root,
body,
.svc-single-tour-container,
.svc-taxonomy-page-v2 {
    /* Brand Colors - sourced from theme (svc-atelier), fallbacks for admin/embeds */
    --svc-primary: var(--svc-c1, #E62243);
    --svc-primary-hover: var(--svc-c4, #12314F);

    --svc-secondary: var(--svc-c1, #E62243);
    --svc-secondary-hover: var(--svc-c4, #12314F);
    --svc-secondary-light: var(--svc-c2, #1E4974);

    --svc-accent: var(--svc-c2, #1E4974);
    --svc-accent-hover: var(--svc-c1, #E62243);

    --svc-dark: var(--svc-c3, #1C1C1E);
    --svc-text-main: var(--svc-c3, #1C1C1E);
    --svc-text-muted: var(--svc-c5, #56606C);

    --svc-bg-light: var(--svc-c6, #F5F6F7);
    --svc-bg-white: var(--svc-c8, #FFFFFF);
    --svc-border-color: var(--svc-c7, #F0F0F1);
    --svc-glass-bg: rgba(244, 247, 251, 0.92);

    /* Mappings for legacy classes */
    --svc-primary-light: var(--svc-c2, #1E4974);
    --svc-primary-dark: var(--svc-c4, #12314F);

    /* System */
    --svc-success: #5a9a4a;
    --svc-danger: var(--svc-c1, #E62243);
    --svc-warning: var(--svc-c2, #1E4974);

    /* Title/Heading Color */
    --svc-title-color: var(--svc-c3, #1C1C1E);

    /* UI Properties */
    --svc-radius-sm: 8px;
    --svc-radius-md: 12px;
    --svc-radius-lg: 16px;
    --svc-radius-xl: 20px;
    --svc-radius-full: 999px;

    /* Smooth Shadows (cooler-toned to match theme palette) */
    --svc-shadow-sm: 0 2px 4px rgba(10, 24, 48, 0.05);
    --svc-shadow-md: 0 12px 24px rgba(10, 24, 48, 0.08);
    --svc-shadow-lg: 0 24px 48px rgba(10, 24, 48, 0.12);
    --svc-shadow-hover: 0 32px 64px rgba(10, 24, 48, 0.16);
    --svc-shadow-xl: 0 36px 72px rgba(10, 24, 48, 0.20);

    --svc-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography - matches theme (Sorts Mill Goudy for headings, Outfit for body, Kumbh Sans for small-caps labels) */
    --svc-font-heading: 'Nunito Sans', Georgia, 'Times New Roman', serif;
    --svc-font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;
    --svc-font-label: 'Nunito Sans', 'Nunito Sans', system-ui, sans-serif;

    /* Grid Defaults */
    --svc-grid-columns: 3;
    --svc-grid-gap: 32px;
}

/* Global Reset & Base */
.svc-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    font-family: var(--svc-font-body);
    color: #1C1C1E;
    line-height: 1.6;
}

.svc-container * {
    box-sizing: border-box;
}

/* Grids */
.svc-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(calc((100% / var(--svc-grid-columns)) - var(--svc-grid-gap)), 1fr));
    gap: var(--svc-grid-gap);
}

.svc-grid-2,
.svc-tours-grid.svc-grid-2,
.svc-operators-grid.svc-grid-2,
.svc-taxonomy-grid.svc-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--svc-grid-gap);
}

@media (max-width: 768px) {
    .svc-grid-2,
    .svc-tours-grid.svc-grid-2,
    .svc-operators-grid.svc-grid-2,
    .svc-taxonomy-grid.svc-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
.svc-font-heading {
    font-family: var(--svc-font-heading);
    color: #1C1C1E;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

/* Modern Buttons */
.svc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--svc-radius-md);
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--svc-transition);
    border: none;
    cursor: pointer;
    font-size: 15px;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.svc-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: var(--svc-transition);
    z-index: -1;
}

.svc-button:hover::before {
    transform: translateX(0);
}

.svc-button:hover {
    transform: translateY(-3px);
    text-decoration: none !important;
}

.svc-button-primary {
    background: #E62243 !important;
    color: white !important;
    text-decoration: none !important;
}

.svc-button-primary:hover {
    background: #d96c1a !important;
    box-shadow: var(--svc-shadow-md);
    text-decoration: none !important;
}

.svc-button-outline {
    background: transparent;
    border: 2px solid #E62243;
    color: #E62243;
}

.svc-button-outline:hover {
    background: #E62243;
    color: white;
}

.svc-button-block {
    display: inline-flex;
    width: auto;
    min-width: 240px;
    margin: 0 auto;
}

/* --- Premium Tour Card (2026 Modern) --- */
.svc-tour-card {
    background: #ffffff;
    border-radius: var(--svc-radius-lg);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid #F0F0F1;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.svc-tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(70, 63, 57, 0.1), 0 1px 3px rgba(0, 0, 0, 0.04);
    border-color: #e8a49e;
}

.svc-featured-ribbon {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #E62243 !important;
    color: white !important;
    padding: 5px 14px;
    transform: none;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    border-radius: var(--svc-radius-sm);
    right: auto;
}

.svc-tour-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: #f0eeeb;
}

.svc-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.svc-tour-card:hover .svc-tour-image img {
    transform: scale(1.04);
}

/* Card Overlays */
.svc-tour-badges {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 2;
}

.svc-badge {
    background: rgba(255, 255, 255, 0.92);
    color: #E62243;
    padding: 5px 12px;
    border-radius: var(--svc-radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.svc-gallery-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(70, 63, 57, 0.85);
    color: white;
    padding: 5px 10px;
    border-radius: var(--svc-radius-full);
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Card Content */
.svc-tour-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Operator Branding */
.svc-tour-operator-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.svc-brand-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    background: white;
}

.svc-brand-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svc-brand-name {
    font-size: 12px;
    font-weight: 600;
    color: #56606C;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Card Title */
.svc-tour-title {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #1C1C1E;
    font-weight: 700;
}

/* Title & Stats */
.svc-tour-header {
    margin: 0 0 16px;
    font-size: 16px;
    line-height: 1.3;
}

.svc-tour-title a {
    color: #1C1C1E;
    text-decoration: none !important;
    transition: var(--svc-transition);
}

.svc-tour-title a:hover {
    color: #E62243;
}

.svc-tour-meta {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #F0F0F1;
}

.svc-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #56606C;
    font-weight: 500;
}

.svc-meta-item .dashicons {
    color: #E62243;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Card Footer */
.svc-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.svc-tour-price {
    display: flex;
    flex-direction: column;
}

.svc-tour-price .amount-prefix {
    font-size: 11px;
    text-transform: uppercase;
    color: #56606C;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 2px;
}

.svc-tour-price .amount {
    font-size: 20px;
    font-weight: 800;
    color: #E62243;
    font-family: var(--svc-font-heading);
}

/* --- Operator Card --- */
.svc-operator-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: var(--svc-radius-lg);
    border: 1px solid #F0F0F1;
    text-align: center;
    transition: var(--svc-transition);
    position: relative;
}

.svc-operator-card:hover {
    box-shadow: 0 16px 32px rgba(70, 63, 57, 0.08);
    border-color: #e8a49e;
    transform: translateY(-4px);
}

.svc-operator-logo {
    width: 110px;
    height: 110px;
    margin: 0 auto 24px;
    background: white;
    border-radius: 50%;
    padding: 8px;
    box-shadow: var(--svc-shadow-md);
    border: 1px solid #F0F0F1;
}

.svc-operator-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.svc-badge-verified {
    background: #E62243;
    color: white;
    padding: 4px 12px;
    font-size: 10px;
    font-weight: 700;
    border-radius: var(--svc-radius-sm);
    text-transform: uppercase;
}

/* --- Single Tour Page --- */
.svc-single-tour-container {
    background: #F5F6F7;
    padding: 60px 0;
}

.svc-tour-header {
    margin-bottom: 40px;
}

.svc-single-tour-container .svc-tour-header .svc-tour-title,
.svc-single-tour-container > .svc-tour-content > .svc-tour-title,
.svc-single-tour-container > .svc-tour-title {
    font-family: var(--svc-font-heading);
    font-size: clamp(34px, 5vw, 56px);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 400;
    color: #1C1C1E;
}

/* Section subheadings on the single tour page (Itinerary, Highlights, etc.) */
.svc-single-tour-container .svc-section-title,
.svc-single-tour-container h2,
.svc-single-tour-container .svc-tour-section h2 {
    font-family: var(--svc-font-heading);
    font-size: clamp(26px, 3vw, 34px);
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 400;
    color: #1C1C1E;
}

.svc-single-tour-container h3,
.svc-single-tour-container .svc-itinerary-day-title {
    font-family: var(--svc-font-heading);
    font-size: clamp(20px, 2vw, 24px);
    line-height: 1.25;
    font-weight: 400;
    color: #1C1C1E;
}

/* Body copy bump on single tour page */
.svc-single-tour-container,
.svc-single-tour-container p,
.svc-single-tour-container .svc-tour-description,
.svc-single-tour-container li {
    font-family: var(--svc-font-body);
    font-size: 17px;
    line-height: 1.7;
    color: #1C1C1E;
}

/* Overview / description vertical rhythm
   Theme + Elementor zero out p/h/ul margins, so we re-establish breathing
   room within the tour-description block specifically. */
.svc-single-tour-container .svc-tour-description > p,
.svc-single-tour-container .svc-tour-description > ul,
.svc-single-tour-container .svc-tour-description > ol,
.svc-single-tour-container .svc-tour-description > blockquote {
    margin: 0 0 1.1em 0;
}

.svc-single-tour-container .svc-tour-description > h2,
.svc-single-tour-container .svc-tour-description > h3,
.svc-single-tour-container .svc-tour-description > h4 {
    margin: 1.8em 0 0.6em 0;
}

.svc-single-tour-container .svc-tour-description > h2:first-child,
.svc-single-tour-container .svc-tour-description > h3:first-child,
.svc-single-tour-container .svc-tour-description > h4:first-child,
.svc-single-tour-container .svc-tour-description > p:first-child {
    margin-top: 0;
}

.svc-single-tour-container .svc-tour-description ul,
.svc-single-tour-container .svc-tour-description ol {
    padding-left: 1.4em;
    list-style: disc;
}

.svc-single-tour-container .svc-tour-description ol {
    list-style: decimal;
}

.svc-single-tour-container .svc-tour-description li {
    margin: 0.35em 0;
}

.svc-single-tour-container .svc-tour-description li::marker {
    color: #E62243;
}

/* Stacks of bold sub-headings separated only by <br> get spaced out so they
   read like distinct lines rather than a wall of bold text */
.svc-single-tour-container .svc-tour-description p > br {
    display: block;
    content: "";
    margin-top: 0.4em;
}

.svc-single-tour-container .svc-tour-description p b,
.svc-single-tour-container .svc-tour-description p strong {
    display: inline-block;
}

/* Related tour cards inside single tour - keep card-sized titles */
.svc-single-tour-container .svc-related-tours .svc-tour-title,
.svc-single-tour-container .svc-tour-card .svc-tour-title {
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.svc-tour-header-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.svc-meta-pill {
    background: #ffffff;
    padding: 10px 20px;
    border-radius: var(--svc-radius-full);
    font-size: 13px;
    font-weight: 600;
    color: #E62243;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #F0F0F1;
    transition: var(--svc-transition);
}

.svc-meta-pill .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #E62243;
}

a.svc-meta-pill,
a.svc-meta-pill-link {
    text-decoration: none !important;
    color: #E62243;
}

a.svc-meta-pill:hover,
a.svc-meta-pill-link:hover {
    border-color: #E62243;
    color: #1E4974;
    box-shadow: var(--svc-shadow-sm);
}

.svc-price-pill {
    background: #E62243 !important;
    color: white !important;
    border-color: #E62243 !important;
    font-weight: 700;
}

.svc-tour-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* Gallery Refinement */
.svc-tour-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 8px;
    margin-bottom: 40px;
    border-radius: var(--svc-radius-xl);
    overflow: hidden;
    max-height: 420px;
}

.svc-gallery-main {
    aspect-ratio: 4 / 3;
    max-height: 420px;
    overflow: hidden;
}

.svc-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.svc-gallery-main:hover img {
    transform: scale(1.02);
}

.svc-gallery-thumbs {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
    max-height: 420px;
}

.svc-gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: 0;
}

.svc-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.svc-gallery-thumb:hover img {
    transform: scale(1.04);
}

/* Sticky Booking Card */
.svc-book-card {
    background: #ffffff;
    padding: 32px;
    border-radius: var(--svc-radius-lg);
    box-shadow: var(--svc-shadow-lg);
    border: 1px solid #F0F0F1;
    position: sticky;
    top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.svc-price-amount {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #E62243;
    margin: 8px 0 24px;
    font-family: var(--svc-font-heading);
}

/* Timeline/Itinerary */
.svc-itinerary-timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 15px;
    padding: 10px 15px;
    border-radius: var(--svc-radius-md);
    font-size: 0.95rem;
}

.svc-message.svc-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.svc-message.svc-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


.svc-message.svc-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.svc-message.svc-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.svc-itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #F0F0F1;
}

.svc-timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.svc-timeline-marker {
    position: absolute;
    left: -40px;
    width: 32px;
    height: 32px;
    background: #E62243;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    border: 4px solid #F5F6F7;
    box-shadow: 0 0 0 1px #F0F0F1;
}

.svc-timeline-content {
    background: #ffffff;
    padding: 32px;
    border-radius: var(--svc-radius-md);
    border: 1px solid #F0F0F1;
    box-shadow: var(--svc-shadow-sm);
}

/* Filters Sidebar Styling */
.svc-sidebar-filters {
    background: #ffffff;
    border-radius: var(--svc-radius-lg);
    border: 1px solid #F0F0F1;
    overflow: hidden;
    box-shadow: var(--svc-shadow-sm);
}

.svc-filters-header {
    background: #fcfaf7;
    padding: 24px;
    border-bottom: 1px solid #F0F0F1;
}

.svc-filter-section {
    border-bottom: 1px solid #F0F0F1;
}

.svc-filter-title {
    padding: 20px 24px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.svc-filter-content {
    padding: 0 24px 24px;
}

/* =========================================
   Taxonomy Pages & Grids (Premium Redesign)
   ========================================= */

/* Hero Section */
.svc-taxonomy-page-v2 .svc-operator-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
}

.svc-taxonomy-page-v2 .svc-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.center-breadcrumbs {
    justify-content: center;
    margin-bottom: 20px;
}

.center-breadcrumbs,
.center-breadcrumbs a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.svc-taxonomy-page-v2 .svc-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.svc-taxonomy-page-v2 .svc-hero-desc {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Centered Stats in Hero */
.svc-hero-stats-integrated.centered-stats {
    display: inline-flex;
    justify-content: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.svc-hero-stats-integrated.centered-stats .svc-hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.svc-hero-stats-integrated.centered-stats .svc-stat-val {
    font-size: 1.5rem;
    color: #fff;
}

.svc-hero-stats-integrated.centered-stats .svc-stat-lbl {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Content Area */
.svc-taxonomy-main {
    padding: 60px 0;
    background: #F5F6F7;
}

.svc-taxonomy-main .svc-section-header {
    margin-bottom: 40px;
    text-align: center;
}

.svc-subtitle {
    font-size: 1.1rem;
    color: #56606C;
    margin-top: 10px;
}

/* Taxonomy Grid System */
.svc-taxonomy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.svc-taxonomy-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 380px;
    display: block;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
}

.svc-taxonomy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.svc-taxonomy-image {
    width: 100%;
    height: 100%;
}

.svc-taxonomy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.svc-taxonomy-card:hover .svc-taxonomy-image img {
    transform: scale(1.1);
}

/* Card Overlay */
.svc-taxonomy-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 60%;
}

.svc-taxonomy-overlay h3 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.svc-taxonomy-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.9;
}

.svc-taxonomy-meta .svc-count {
    font-size: 0.95rem;
    font-weight: 500;
}

.svc-taxonomy-meta .svc-arrow {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.svc-taxonomy-card:hover .svc-taxonomy-meta .svc-arrow {
    background: #fff;
    color: #E62243;
}

/* Responsive */
@media (max-width: 768px) {
    .svc-taxonomy-page-v2 .svc-hero-title {
        font-size: 2.5rem;
    }

    .svc-hero-stats-integrated.centered-stats {
        width: 100%;
        gap: 20px;
        padding: 15px;
    }

    .svc-taxonomy-grid {
        grid-template-columns: 1fr;
    }
}

.svc-taxonomy-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--svc-shadow-xl);
}

.svc-taxonomy-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.svc-taxonomy-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.4, 1);
}

.svc-taxonomy-card:hover .svc-taxonomy-image img {
    transform: scale(1.1);
}

.svc-taxonomy-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
}

.svc-taxonomy-overlay h3 {
    color: white;
    font-size: 20px;
    margin: 0 0 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.svc-taxonomy-overlay .svc-count {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sidebar Layout Logic */
.svc-tours-page-wrapper.with-sidebar,
.svc-operators-page-wrapper.with-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Full-width breakout: escape the manyara theme's 820px reading column.
   The directory is embedded in a normal post whose content is capped at
   820px by .mny-article__inner, which squeezes the filters + horizontal
   cards. Let it fill the page's usable width (.mny-wrap inner = ~1208px)
   on desktop, where the two-column layout is active. Below 1024px the
   plugin collapses to a single column, so the breakout is not applied. */
@media (min-width: 1025px) {
    .mny-article__inner .svc-tours-page-wrapper.with-sidebar,
    .mny-article__inner .svc-operators-page-wrapper.with-sidebar {
        width: min(1208px, calc(100vw - 72px));
        margin-left: calc((820px - min(1208px, 100vw - 72px)) / 2);
        margin-right: 0;
    }
}

/* Mid-band collapse (tablet / small laptop). The intended single-column
   rule further down is mis-nested inside a max-width:768px block, so it
   never fires between 769-1024px, leaving a cramped two-column layout in
   the 820px reading column. Collapse to a single column here instead. */
@media (min-width: 769px) and (max-width: 1024px) {
    .svc-tours-page-wrapper.with-sidebar,
    .svc-operators-page-wrapper.with-sidebar {
        grid-template-columns: 1fr;
    }

    .svc-sticky-sidebar {
        position: static;
    }
}

.svc-sidebar-area {
    width: 100%;
}

.svc-sticky-sidebar {
    position: sticky;
    top: 30px;
    max-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.svc-sticky-sidebar > .svc-sidebar-filters {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1 1 auto;
    overflow: hidden;
}

.svc-sticky-sidebar > .svc-sidebar-filters > .svc-filters-header {
    flex: 0 0 auto;
}

.svc-sticky-sidebar #svc-filters-form {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1 1 auto;
}

.svc-sticky-sidebar #svc-filters-form > .svc-filter-section,
.svc-sticky-sidebar #svc-filters-form > input[type="hidden"] {
    flex: 0 0 auto;
}

.svc-sticky-sidebar #svc-filters-form .svc-filters-footer {
    flex: 0 0 auto;
    margin-top: auto;
}

/* Scroll all filter sections (everything between header and footer)
   inside the form, so the Apply button stays pinned at the bottom. */
.svc-sticky-sidebar #svc-filters-form {
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #cfd6e0 transparent;
}

.svc-sticky-sidebar #svc-filters-form::-webkit-scrollbar {
    width: 8px;
}

.svc-sticky-sidebar #svc-filters-form::-webkit-scrollbar-track {
    background: transparent;
}

.svc-sticky-sidebar #svc-filters-form::-webkit-scrollbar-thumb {
    background: #cfd6e0;
    border-radius: 4px;
    border: 2px solid #fff;
    background-clip: padding-box;
}

.svc-sticky-sidebar #svc-filters-form .svc-filters-footer {
    position: sticky;
    bottom: 0;
    background: #f9f9f9;
    z-index: 2;
}

/* ---- Operator filter form: same flex/scroll wiring as the tours form ----
   The operator form uses a different id (#svc-operator-filter-form) and a
   different footer class (.svc-filter-actions), so none of the wiring above
   applied to it. Inside the height-capped, overflow:hidden sticky sidebar
   the taller operator form overflowed and its "Apply Filters" footer was
   clipped out of view. Mirror the tours wiring so the middle scrolls and the
   Apply button stays pinned at the bottom. */
.svc-sticky-sidebar #svc-operator-filter-form {
    display: flex;
    flex-direction: column;
    min-height: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    scrollbar-width: thin;
    scrollbar-color: #cfd6e0 transparent;
}

.svc-sticky-sidebar #svc-operator-filter-form > .svc-filter-group,
.svc-sticky-sidebar #svc-operator-filter-form > input[type="hidden"] {
    flex: 0 0 auto;
}

.svc-sticky-sidebar #svc-operator-filter-form::-webkit-scrollbar {
    width: 8px;
}

.svc-sticky-sidebar #svc-operator-filter-form::-webkit-scrollbar-track {
    background: transparent;
}

.svc-sticky-sidebar #svc-operator-filter-form::-webkit-scrollbar-thumb {
    background: #cfd6e0;
    border-radius: 4px;
    border: 2px solid #fff;
    background-clip: padding-box;
}

.svc-sticky-sidebar #svc-operator-filter-form .svc-filter-actions {
    flex: 0 0 auto;
    margin-top: auto;
    position: sticky;
    bottom: 0;
    background: #ffffff;
    padding-top: 14px;
    z-index: 2;
}

/* Keep count badges from sitting under the scrollbar, and ensure
   the first section's title isn't crowded against the dark header. */
.svc-sticky-sidebar #svc-filters-form > .svc-filter-section:first-of-type > .svc-filter-title {
    border-top: 0;
}

.svc-sticky-sidebar .svc-filter-list .count {
    margin-left: auto;
    flex-shrink: 0;
}

.svc-sticky-sidebar .svc-filter-list .label-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.svc-main-content {
    width: 100%;
    min-width: 0;
    /* Prevents grid blowout */
}

/* Premium Filter Styling (Enhanced) */
.svc-sidebar-filters {
    background: #ffffff;
    border-radius: var(--svc-radius-lg);
    border: 1px solid #F0F0F1;
    overflow: hidden;
    box-shadow: var(--svc-shadow-md);
    /* Increased shadow */
}

.svc-filters-header {
    background: #F5F6F7;
    /* Softer header bg */
    padding: 24px;
    border-bottom: 1px solid #F0F0F1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.svc-filters-header h3 {
    font-size: 18px;
    margin: 0;
    color: #1C1C1E;
}

.svc-reset-link {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    cursor: pointer;
    text-decoration: none;
    transition: var(--svc-transition);
    padding: 4px 12px;
    border-radius: var(--svc-radius-sm);
    font-weight: 600;
}

.svc-reset-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.svc-filter-group {
    padding: 24px;
    border-bottom: 1px solid #F0F0F1;
}

.svc-filter-group:last-child {
    border-bottom: none;
}

.svc-filter-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin: 0 0 16px;
    color: #E62243;
}

.svc-form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #F0F0F1;
    border-radius: var(--svc-radius-sm);
    font-family: var(--svc-font-body);
    font-size: 14px;
    transition: var(--svc-transition);
}

.svc-form-control:focus {
    border-color: #E62243;
    outline: none;
    box-shadow: 0 0 0 3px rgba(70, 63, 57, 0.1);
}

/* Checkbox/Radio Styling */
.svc-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1C1C1E;
    cursor: pointer;
    transition: var(--svc-transition);
}

.svc-checkbox-label:hover {
    color: #E62243;
}

.svc-checkbox-label input {
    accent-color: #E62243;
    width: 16px;
    height: 16px;
}

.svc-stars .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #f0ad4e;
}

.svc-price-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.svc-price-separator {
    color: #56606C;
    font-weight: 600;
}

.svc-checkbox {
    padding: 10px 0;
    transition: var(--svc-transition);
}

.svc-checkbox:hover {
    padding-left: 8px;
    color: #E62243;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .svc-tours-page-wrapper.with-sidebar {
        grid-template-columns: 1fr;
    }

    .svc-sidebar-area {
        margin-bottom: 32px;
    }

    .svc-tour-layout {
        grid-template-columns: 1fr;
    }

    .svc-book-card {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .svc-tour-title {
        font-size: 32px;
    }

    .svc-gallery-grid {
        grid-template-columns: 1fr;
    }

    .svc-gallery-main {
        aspect-ratio: 16 / 10;
        max-height: 280px;
    }

    .svc-tour-gallery-grid {
        max-height: none;
    }

    .svc-gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: none;
    }
}

/* --- Operator Profile V2 --- */
.svc-operator-profile-v2 {
    background: #F5F6F7;
}

.svc-operator-hero {
    position: relative;
    padding: 100px 0 160px;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
}

.svc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.svc-hero-logo {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 50%;
    padding: 15px;
    margin-bottom: 32px;
    border: 8px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: var(--svc-transition);
}

.svc-hero-logo:hover {
    transform: scale(1.05) rotate(5deg);
    border-color: rgba(255, 255, 255, 0.3);
}

.svc-hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svc-breadcrumbs {
    font-size: 13px;
    margin-bottom: 24px;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.svc-breadcrumbs a {
    color: white;
    text-decoration: none;
    transition: var(--svc-transition);
}

.svc-breadcrumbs a:hover {
    opacity: 1;
    text-decoration: underline;
}

.svc-hero-title {
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 40px;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: #ffffff !important;

}

.svc-hero-meta-integrated {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.svc-hero-badges {
    display: flex;
    gap: 12px;
}

.svc-hero-stats-integrated {
    display: flex;
    gap: 48px;
    padding: 24px 32px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--svc-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.svc-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: var(--svc-radius-sm);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
}

.svc-stat-val {
    font-size: 24px;
    font-weight: 800;
    font-family: var(--svc-font-heading);
    color: white;
    /* Fixed black text issue, was gold */
}

.svc-stat-lbl {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    font-weight: 700;
    color: white;
    /* Ensure white text */
}

.svc-hero-stars {
    color: #ffd700;
}

/* Enquiry Card */
.svc-hero-side {
    position: relative;
    z-index: 10;
}

.svc-enquiry-card {
    background: white;
    padding: 48px;
    border-radius: var(--svc-radius-xl);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    color: #1C1C1E;
    text-align: center;
    border: 1px solid #F0F0F1;
}

.svc-enquiry-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #E62243;
}

.svc-enquiry-card p {
    font-size: 15px;
    color: #56606C;
    margin-bottom: 32px;
}

.svc-button-modern {
    background: #E62243 !important;
    color: white !important;
    padding: 20px 32px;
    font-size: 16px;
    font-weight: 800;
    width: 100%;
    border-radius: var(--svc-radius-lg);
    box-shadow: 0 10px 20px rgba(236, 123, 35, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: var(--svc-transition);
    text-decoration: none !important;
}

.svc-button-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(236, 123, 35, 0.5);
    background: #a83327;
}

.svc-button-modern .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Profile Tabs */
.svc-profile-tabs-wrapper {
    background: #ffffff;
    border-bottom: 1px solid #F0F0F1;
    /* position: sticky; - Disabled per user request */
    /* top: 0; */
    /* z-index: 99; */
}

.svc-profile-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 40px;
}

.svc-profile-tabs li {
    padding: 24px 0;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    color: #56606C;
    position: relative;
    transition: var(--svc-transition);
}

.svc-profile-tabs li:hover {
    color: #E62243;
}

.svc-profile-tabs li.active {
    color: #E62243;
}

.svc-profile-tabs li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #E62243;
    /* Standardized Teal -> Secondary */
}

/* Tab Content */
.svc-tab-content-wrapper {
    padding: 60px 0 100px;
}

.svc-tab-content {
    display: none;
}

.svc-tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.svc-section-header {
    margin-bottom: 40px;
}

.svc-section-header h3 {
    font-size: 32px;
    letter-spacing: -0.02em;
}

/* Responsive */
@media (max-width: 992px) {
    .svc-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .svc-hero-side {
        order: -1;
        /* Move enquiry card up on tablets */
    }

    .svc-hero-title {
        font-size: 48px;
    }

    .svc-hero-stats-integrated {
        flex-wrap: wrap;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .svc-operator-hero {
        padding: 60px 0 80px;
        text-align: center;
    }

    .svc-hero-logo {
        margin: 0 auto 24px;
        width: 120px;
        height: 120px;
    }

    .svc-hero-badges,
    .svc-hero-stats-integrated {
        justify-content: center;
        margin: 0 auto;
    }

    .svc-hero-title {
        font-size: 36px;
    }

    .svc-profile-tabs {
        overflow-x: auto;
        gap: 24px;
    }

    .svc-profile-tabs li {
        white-space: nowrap;
    }
}

/* Bottom Inquiry Section */
.svc-bottom-inquiry-section {
    padding: 100px 0;
    background: #F5F6F7;
    border-top: 1px solid #F0F0F1;
}

.svc-bottom-inquiry-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 80px 60px;
    border-radius: var(--svc-radius-xl);
    box-shadow: var(--svc-shadow-lg);
    border: 1px solid #F0F0F1;
}

.svc-bottom-inquiry-card h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #E62243;
}

.svc-bottom-inquiry-card p {
    font-size: 18px;
    color: #56606C;
    margin-bottom: 40px;
}

.svc-button-large {
    padding: 24px 60px;
    font-size: 18px;
}

.text-center {
    text-align: center;
}

/* Tour Footer CTA */
.svc-tour-footer-cta {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #F0F0F1;
}

.svc-premium-cta-card {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #F5F6F7 !important;
    padding: 40px 48px;
    border-radius: var(--svc-radius-xl);
    border: 2px solid #F0F0F1;
    text-align: left;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
    transition: border-color 0.3s ease;
}

.svc-premium-cta-card:hover {
    border-color: #E62243;
}

.svc-premium-cta-card::before {
    display: none;
}

.svc-cta-visual {
    width: 64px;
    height: 64px;
    background: #E62243;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.svc-cta-visual .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #ffffff;
}

.svc-cta-content {
    flex-grow: 1;
}

.svc-cta-content h3 {
    font-size: 22px !important;
    font-weight: 700 !important;
    margin: 0 0 6px 0 !important;
    color: #1C1C1E !important;
    font-family: var(--svc-font-heading);
}

.svc-cta-content p {
    font-size: 15px;
    color: #56606C;
    margin: 0;
    max-width: 460px;
    line-height: 1.5;
    opacity: 1;
}

.svc-cta-action {
    flex-shrink: 0;
}

.svc-cta-action .svc-button-modern {
    background: #E62243 !important;
    color: #ffffff !important;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    width: auto;
    white-space: nowrap;
    border-radius: var(--svc-radius-md);
    box-shadow: 0 4px 16px rgba(236, 123, 35, 0.3);
}

.svc-cta-action .svc-button-modern:hover {
    background: #d96c1a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 123, 35, 0.4);
}

.svc-cta-action .svc-button-modern .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

@media (max-width: 992px) {
    .svc-premium-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 32px;
        gap: 20px;
    }

    .svc-cta-content p {
        margin: 0 auto;
    }

    .svc-cta-action .svc-button-modern {
        width: 100%;
    }
}

/* Tour Includes / Excludes */
.svc-includes-excludes-section {
    margin-top: 40px;
}

.svc-ie-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.svc-ie-box {
    padding: 28px 32px;
    border-radius: var(--svc-radius-md);
    border: 1px solid #F0F0F1;
}

.svc-includes-box,
.svc-excludes-box {
    background: #F5F6F7;
}

.svc-ie-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    color: #1C1C1E;
}

.svc-ie-title .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.svc-ie-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svc-ie-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1C1C1E;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.svc-ie-list li:last-child {
    border-bottom: none;
}

.svc-ie-list li .dashicons {
    flex-shrink: 0;
    font-size: 16px;
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.svc-includes-list li .dashicons,
.svc-excludes-list li .dashicons {
    color: #56606C;
}

/* Tour Additional Notes */
.svc-tour-notes-section {
    margin-top: 24px;
}

.svc-notes-box {
    padding: 28px 32px;
    background: #F5F6F7;
    border: 1px solid #F0F0F1;
    border-radius: var(--svc-radius-md);
}

.svc-notes-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 14px 0;
    color: #1C1C1E;
}

.svc-notes-title .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.svc-notes-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #1C1C1E;
}

.svc-notes-content p:last-child {
    margin-bottom: 0;
}

/* Tour Form: Includes/Excludes Section */
.svc-includes-excludes-section .svc-form-group {
    margin-top: 24px;
}

.svc-includes-excludes-section .svc-form-group:first-child {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #F0F0F1;
}

.svc-includes-excludes-section label .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
}

@media (max-width: 768px) {
    .svc-ie-grid {
        grid-template-columns: 1fr;
    }

    .svc-ie-box,
    .svc-notes-box {
        padding: 20px;
    }
}

/* Tour Disclaimer */
.svc-tour-disclaimer {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    padding: 28px 32px;
    background: #F5F6F7;
    border: 1px solid #F0F0F1;
    border-left: 4px solid #E62243;
    border-radius: var(--svc-radius-md);
}

.svc-disclaimer-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(236, 123, 35, 0.12);
    border-radius: 50%;
}

.svc-disclaimer-icon .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #E62243;
}

.svc-disclaimer-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1C1C1E;
    margin: 0 0 12px 0;
    font-family: var(--svc-font-heading);
}

.svc-disclaimer-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svc-disclaimer-content ul li {
    position: relative;
    padding-left: 20px;
    font-size: 13.5px;
    line-height: 1.7;
    color: #56606C;
    margin-bottom: 6px;
}

.svc-disclaimer-content ul li:last-child {
    margin-bottom: 0;
}

.svc-disclaimer-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    background: #E62243;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .svc-tour-disclaimer {
        flex-direction: column;
        gap: 12px;
        padding: 20px 24px;
    }
}

/* Booking Sidebar Branded */
.svc-book-operator {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #F0F0F1;
}

.svc-book-operator .svc-op-prefix {
    font-size: 13px;
    color: #56606C;
    font-style: italic;
    margin-right: 4px;
}

.svc-book-operator .svc-op-name {
    font-weight: 700;
    font-size: 16px;
    color: #1C1C1E;
    text-decoration: none !important;
    transition: var(--svc-transition);
}

.svc-book-operator .svc-op-name:hover {
    color: #E62243;
    text-decoration: none !important;
}

.svc-op-rating-mini {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

.svc-op-rating-mini .dashicons {
    color: #1E4974;
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.svc-op-rating-mini .rating-val {
    font-weight: 700;
    font-size: 14px;
}

.svc-op-rating-mini .review-count {
    color: #56606C;
    font-size: 13px;
}

/* CTA Inquiry Button (Booking Card) */
.svc-book-card .svc-request-quote {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100% !important;
    padding: 16px 32px !important;
    background: #E62243 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: var(--svc-radius-md) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-family: var(--svc-font-heading);
    letter-spacing: 0.3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(236, 123, 35, 0.35);
    text-decoration: none !important;
    margin-top: 8px;
}

.svc-book-card .svc-request-quote:hover {
    background: #d96c1a !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(236, 123, 35, 0.45);
    text-decoration: none !important;
}

.svc-book-card .svc-request-quote:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(236, 123, 35, 0.3);
}

.svc-book-note {
    font-size: 13px;
    color: #56606C;
    margin-top: 12px;
    margin-bottom: 0;
    font-style: italic;
}

/* ==========================================================================
   Add Tour Form Redesign (Wizard Style)
   ========================================================================== */
.svc-tour-form-wizard {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

/* 1. Progress Stepper */
.svc-wizard-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    padding: 0 40px;
}

.svc-wizard-stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 80px;
    right: 80px;
    height: 2px;
    background: #F0F0F1;
    z-index: 1;
}

/* -----------------------------------------------------------------------------
 * PREMIUM WIZARD & FORM STYLES
 * -------------------------------------------------------------------------- */

/* 1. Progress Stepper */
.svc-wizard-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    padding: 0 20px;
}

.svc-wizard-stepper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.svc-stepper-item {
    position: relative;
    z-index: 2;
    text-align: center;
    cursor: default;
    flex: 1;
}

.svc-step-number {
    width: 44px;
    height: 44px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 700;
    color: #56606C;
    font-family: var(--svc-font-heading);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.svc-step-label {
    font-size: 13px;
    font-weight: 700;
    color: #56606C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Stepper States */
.svc-stepper-item.active .svc-step-number {
    background: #E62243;
    border-color: #E62243;
    color: white;
    box-shadow: 0 0 0 5px rgba(196, 60, 46, 0.15);
    /* Brand Red Glow */
    transform: scale(1.1);
}

.svc-stepper-item.active .svc-step-label {
    color: #E62243;
}

.svc-stepper-item.completed .svc-step-number {
    background: #E62243;
    border-color: #E62243;
    color: white;
}

.svc-stepper-item.completed .svc-step-label {
    color: #E62243;
}

/* 2. Step Cards (Wizard Body) */
.svc-wizard-steps {
    position: relative;
}

.svc-step {
    display: none;
    background: white;
    border-radius: var(--svc-radius-xl);
    box-shadow: var(--svc-shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    padding: 50px;
    animation: atoSlideUp 0.4s ease-out;
}

.svc-step.active {
    display: block;
}

@keyframes atoSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.svc-step-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid #F0F0F1;
    text-align: center;
}

.svc-step-header h3 {
    margin: 0 0 10px 0;
    font-size: 28px;
    color: #E62243;
}

.svc-step-header p {
    margin: 0;
    color: #56606C;
    font-size: 16px;
}

/* 3. Modern Form Controls */
.svc-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.svc-form-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.svc-form-group.full-width {
    grid-column: span 2;
}

.svc-form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #E62243;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.svc-form-group input[type="text"],
.svc-form-group input[type="number"],
.svc-form-group input[type="email"],
.svc-form-group input[type="url"],
.svc-form-group select,
.svc-form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #f0f0f0;
    border-radius: var(--svc-radius-md);
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fdfdfd;
    color: #1C1C1E;
    font-family: var(--svc-font-body);
}

.svc-form-group input:focus,
.svc-form-group select:focus,
.svc-form-group textarea:focus {
    outline: none;
    border-color: #E62243;
    background: white;
    box-shadow: 0 4px 12px rgba(196, 60, 46, 0.08);
    /* Red shadow */
}

/* 4. Itinerary Builder (Premium Repeater) */
.svc-modern-repeater {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.svc-itinerary-day {
    display: flex;
    gap: 30px;
    background: white;
    border-radius: var(--svc-radius-lg);
    padding: 30px;
    border: 1px solid #F0F0F1;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--svc-shadow-sm);
}

.svc-itinerary-day:hover {
    border-color: #1E4974;
    transform: translateX(5px);
    box-shadow: var(--svc-shadow-md);
}

.svc-day-side {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding-top: 5px;
}

.svc-day-badge {
    background: #E62243;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 90px;
    text-align: center;
}

.svc-remove-day {
    background: transparent;
    color: #cbd5e1;
    border: 2px solid #e2e8f0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.svc-remove-day:hover {
    background: #ffeeee;
    color: #E62243;
    border-color: #ffeeee;
}

.svc-day-content {
    flex-grow: 1;
    display: grid;
    gap: 20px;
}

.svc-repeater-actions {
    text-align: center;
    padding-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {

    .svc-form-grid,
    .svc-form-grid.three-col {
        grid-template-columns: 1fr;
    }

    .svc-form-group.full-width {
        grid-column: span 1;
    }

    .svc-wizard-stepper::before {
        display: none;
    }

    .svc-stepper-item {
        flex: 0 0 100%;
        margin-bottom: 10px;
        display: none;
    }

    .svc-stepper-item.active {
        display: block;
    }

    .svc-itinerary-day {
        flex-direction: column;
    }

    .svc-day-side {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding-bottom: 15px;
    }
}


/* 5. Media Section */
.svc-image-upload-hero {
    background: #f8faf9;
    padding: 30px;
    border-radius: var(--svc-radius-xl);
    border: 2px dashed #F0F0F1;
    text-align: center;
}

.svc-large-preview {
    width: 100%;
    height: 200px;
    background: #eee;
    border-radius: var(--svc-radius-lg);
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-large-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-upload-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #56606C;
}

.svc-upload-placeholder .dashicons {
    font-size: 48px;
    height: 48px;
    width: 48px;
}

.svc-modern-gallery-upload {
    background: white;
    border: 1px solid #F0F0F1;
    border-radius: var(--svc-radius-lg);
    padding: 20px;
}

.svc-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.svc-gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--svc-radius-md);
    overflow: hidden;
    border: 1px solid #F0F0F1;
}

.svc-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-remove-image {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.svc-remove-image:hover {
    background: #E62243;
}

/* 6. Footer & Actions */
.svc-step-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #F0F0F1;
}

.svc-step-footer:only-child {
    justify-content: flex-end;
}

/* Error States */
.svc-error {
    border-color: #E62243 !important;
    background: #fffafa !important;
}

/* Responsive */
@media (max-width: 768px) {

    .svc-form-grid,
    .svc-form-grid.three-col {
        grid-template-columns: 1fr;
    }

    .svc-form-group.full-width {
        grid-column: span 1;
    }

    .svc-wizard-stepper {
        padding: 0;
    }

    .svc-step-label {
        display: none;
    }

    .svc-wizard-stepper::before {
        left: 40px;
        right: 40px;
    }

    .svc-itinerary-day {
        flex-direction: column;
        gap: 15px;
    }

    .svc-day-side {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }

    .svc-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   7. Premium Dashboard Polish (Glassmorphism)
   ========================================= */

.svc-dashboard {
    background: #F5F6F7;
    border-radius: var(--svc-radius-xl);
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.svc-dashboard-header {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.svc-dashboard-header h1 {
    font-size: 32px;
    color: #E62243;
    margin-bottom: 10px;
}

/* Glassy Stats Cards */
.svc-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.svc-stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--svc-radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.svc-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #e8a49e;
}

.svc-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: #E62243;
    font-family: var(--svc-font-heading);
    line-height: 1;
}

.svc-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #56606C;
    font-weight: 600;
}

.svc-stat-card .svc-stat-value small {
    font-size: 14px;
    font-weight: 500;
    color: #56606C;
}

.svc-stat-card .svc-stat-value .dashicons {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.svc-stat-verified .svc-stat-value .dashicons {
    color: #5a9a4a;
}

.svc-stat-unverified .svc-stat-value .dashicons {
    color: #e6a817;
}

/* Profile Completeness Bar */
.svc-profile-completeness {
    background: white;
    border: 1px solid #F0F0F1;
    border-radius: var(--svc-radius-lg);
    padding: 20px 24px;
    margin-top: 24px;
    box-shadow: var(--svc-shadow-sm);
}

.svc-completeness-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
}

.svc-completeness-header .dashicons {
    color: #E62243;
}

.svc-completeness-pct {
    margin-left: auto;
    font-weight: 700;
    color: #E62243;
    font-size: 16px;
}

.svc-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.svc-progress-fill {
    height: 100%;
    background: #E62243;
    border-radius: 10px;
    transition: width 0.6s ease;
}

.svc-completeness-tips {
    margin-top: 12px;
    font-size: 13px;
    color: #56606C;
}

.svc-completeness-tips p {
    margin: 0 0 6px;
}

.svc-completeness-tips ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.svc-completeness-tips li {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 0;
}

.svc-completeness-tips li .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: #E62243;
}

/* Tab Count Badge */
.svc-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    background: #E62243;
    color: white;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    padding: 0 6px;
    margin-left: 6px;
}

/* Reviews Dashboard */
.svc-reviews-summary-bar {
    display: flex;
    align-items: center;
    background: white;
    border: 1px solid #F0F0F1;
    border-radius: var(--svc-radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.svc-review-avg {
    display: flex;
    align-items: center;
    gap: 16px;
}

.svc-avg-number {
    font-size: 48px;
    font-weight: 800;
    color: #E62243;
    font-family: var(--svc-font-heading);
    line-height: 1;
}

.svc-avg-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.svc-review-total {
    font-size: 13px;
    color: #56606C;
}

.svc-reviews-list-dashboard {
    display: grid;
    gap: 16px;
}

.svc-review-item-dash {
    background: white;
    border: 1px solid #F0F0F1;
    border-radius: var(--svc-radius-md);
    padding: 20px;
    transition: border-color 0.2s;
}

.svc-review-item-dash:hover {
    border-color: #E62243;
}

.svc-review-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.svc-reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.svc-reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E62243;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.svc-review-tour-ref {
    display: block;
    font-size: 12px;
    color: #56606C;
    margin-top: 2px;
}

.svc-review-item-meta {
    text-align: right;
}

.svc-review-date {
    font-size: 12px;
    color: #56606C;
    display: block;
    margin-top: 2px;
}

.svc-stars-small .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
}

.svc-review-item-body {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.svc-reviews-more-note {
    text-align: center;
    font-size: 13px;
    color: #56606C;
    margin-top: 16px;
}

/* Modern Segemented Tabs */
.svc-dashboard-tabs {
    margin-top: 40px;
}

.svc-tabs-nav {
    display: inline-flex;
    background: rgba(0, 0, 0, 0.05);
    padding: 6px;
    border-radius: 50px;
    /* Pill shape */
    list-style: none;
    margin: 0 0 32px 0;
    position: relative;
}

.svc-tabs-nav li {
    padding: 10px 32px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    color: #56606C;
    transition: all 0.3s ease;
}

.svc-tabs-nav li:hover {
    color: #E62243;
}

.svc-tabs-nav li.active {
    background: white;
    color: #E62243;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Polished Tour List Item */
.svc-tours-list {
    display: grid;
    gap: 20px;
}

.svc-list-item {
    display: flex;
    background: white;
    border-radius: var(--svc-radius-md);
    overflow: hidden;
    border: 1px solid #F0F0F1;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: var(--svc-shadow-sm);
}

.svc-list-item:hover {
    transform: translateX(5px);
    box-shadow: var(--svc-shadow-md);
    border-color: #E62243;
}

.svc-item-image {
    width: 160px;
    height: 120px;
    flex-shrink: 0;
}

.svc-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.svc-item-content {
    flex-grow: 1;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.svc-item-content h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.svc-item-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: #56606C;
    align-items: center;
}

.svc-status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.svc-status-badge.publish {
    background: #d1fae5;
    color: #065f46;
}

.svc-status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.svc-item-actions {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fcfcfc;
    border-left: 1px solid #F0F0F1;
}

.svc-button-small {
    padding: 10px 20px;
    font-size: 13px;
    min-width: auto;
    border-radius: var(--svc-radius-sm);
    text-decoration: none !important;
}

.svc-button-danger {
    background: #fee2e2;
    color: #E62243;
}

.svc-button-danger:hover {
    background: #fecaca;
    color: #E62243;
}

/* Empty State Polish */
.svc-empty-state {
    text-align: center;
    padding: 60px;
    background: white;
    border-radius: var(--svc-radius-lg);
    border: 2px dashed #F0F0F1;
}

/* -------------------------------------------------------------------------
   8. Premium Inquiry Modal
   ------------------------------------------------------------------------- */
.svc-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(69, 62, 56, 0.6);
    /* Dark Brown tint */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: atoFadeIn 0.3s ease;
}

.svc-modal-content {
    background: #ffffff;
    margin: 5% auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 600px;
    border-radius: var(--svc-radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: atoSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.svc-modal-md {
    max-width: 650px;
}

.svc-modal-xl {
    max-width: 1000px;
    width: 95%;
}

@media (max-width: 768px) {
    .svc-modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .svc-form-grid,
    .svc-form-grid.three-col {
        grid-template-columns: 1fr;
    }

    .svc-wizard-stepper {
        padding: 0 10px;
    }

    .svc-wizard-stepper::before {
        left: 20px;
        right: 20px;
    }
}

.svc-close-modal {
    color: #56606C;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--svc-transition);
    z-index: 10;
    line-height: 1;
}

.svc-close-modal:hover {
    color: #E62243;
    transform: rotate(90deg);
}

.svc-inquiry-header {
    background: #F5F6F7;
    padding: 30px 40px;
    border-bottom: 1px solid #F0F0F1;
    text-align: center;
}

.svc-inquiry-header h3 {
    margin: 0 0 5px 0;
    color: #E62243;
    font-family: var(--svc-font-heading);
    font-size: 24px;
    font-weight: 700;
}

.svc-inquiry-subtitle {
    margin: 0;
    color: #56606C;
    font-size: 15px;
}

#svc-inquiry-form {
    padding: 30px 40px;
}

.svc-form-grid {
    display: grid;
    gap: 20px;
}

.svc-form-group {
    margin-bottom: 20px;
}

.svc-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #E62243;
}

.svc-form-group input,
.svc-form-group textarea,
.svc-form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #F0F0F1;
    border-radius: var(--svc-radius-sm);
    font-family: var(--svc-font-body);
    font-size: 15px;
    color: #1C1C1E;
    background: #fff;
    transition: var(--svc-transition);
}

.svc-form-group input:focus,
.svc-form-group textarea:focus {
    outline: none;
    border-color: #E62243;
    box-shadow: 0 0 0 4px rgba(196, 60, 46, 0.1);
    /* Primary color fade */
}

.svc-form-note {
    font-size: 13px;
    color: #56606C;
    text-align: center;
    margin-top: 15px;
}

/* Photo Ownership Disclaimer */
.svc-photo-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff8e1;
    border: 1px solid #f0d060;
    border-left: 4px solid #e6a817;
    border-radius: var(--svc-radius-md, 8px);
    padding: 16px 18px;
    margin: 15px 0 20px;
    font-size: 13px;
    line-height: 1.6;
}

.svc-photo-disclaimer .svc-disclaimer-icon {
    flex-shrink: 0;
    color: #b8860b;
    margin-top: 1px;
}

.svc-photo-disclaimer .svc-disclaimer-icon .dashicons {
    font-size: 22px;
    width: 22px;
    height: 22px;
}

.svc-photo-disclaimer .svc-disclaimer-text strong {
    display: block;
    font-size: 14px;
    color: #7a5a00;
    margin-bottom: 4px;
}

.svc-photo-disclaimer .svc-disclaimer-text p {
    margin: 0;
    color: #5d4e00;
}

/* Animations */
@keyframes atoFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes atoSlideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Success Message Styling */
.svc-message-box.success {
    background-color: rgba(56, 102, 65, 0.1);
    color: #5a9a4a;
    border: 1px solid rgba(56, 102, 65, 0.2);
    text-align: center;
}

/* -------------------------------------------------------------------------
   9. Premium Reviews Section
   ------------------------------------------------------------------------- */
.svc-reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.svc-review-card {
    background: white;
    border-radius: var(--svc-radius-lg);
    box-shadow: var(--svc-shadow-sm);
    padding: 30px;
    border: 1px solid #F0F0F1;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.svc-review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--svc-shadow-md);
    border-color: #e8a49e;
}

.svc-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.svc-review-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.svc-review-meta {
    flex-grow: 1;
}

.svc-reviewer-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1C1C1E;
}

.svc-review-date {
    font-size: 12px;
    color: #56606C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-review-rating-badge {
    background: #fffbf0;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #fae69e;
}

.svc-review-rating-badge .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #f59e0b;
}

.svc-review-body {
    color: #1C1C1E;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.svc-review-body p {
    margin: 0;
}

.svc-review-footer {
    padding-top: 15px;
    border-top: 1px dashed #eee;
    font-size: 13px;
    color: #5a9a4a;
    font-weight: 600;
}

.svc-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Empty State */
.svc-no-reviews {
    text-align: center;
    padding: 60px;
    background: #f8fafc;
    border-radius: var(--svc-radius-lg);
    border: 2px dashed #cbd5e1;
}

.svc-no-reviews p {
    font-size: 18px;
    color: #56606C;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .svc-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- New Operator Filter Toolbar --- */
.svc-operator-toolbar {
    background: #ffffff;
    padding: 20px;
    border-radius: var(--svc-radius-lg);
    border: 1px solid #F0F0F1;
    box-shadow: var(--svc-shadow-sm);
    margin-bottom: 40px;
}

.svc-toolbar-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.svc-toolbar-search {
    flex: 2;
    min-width: 250px;
    position: relative;
}

.svc-toolbar-search input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border-radius: var(--svc-radius-full);
    border: 1px solid #e2e8f0;
    font-size: 15px;
    transition: var(--svc-transition);
    background: #f8fafc;
}

.svc-toolbar-search input:focus {
    background: white;
    border-color: #E62243;
    box-shadow: 0 0 0 3px rgba(236, 123, 35, 0.15);
    outline: none;
}

.svc-toolbar-search .dashicons {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #56606C;
    font-size: 20px;
}

.svc-toolbar-filters {
    display: flex;
    gap: 16px;
    flex: 3;
    flex-wrap: wrap;
}

.svc-toolbar-select {
    flex: 1;
    min-width: 180px;
    position: relative;
}

.svc-toolbar-select select {
    width: 100%;
    padding: 14px 14px 14px 40px;
    border-radius: var(--svc-radius-full);
    border: 1px solid #e2e8f0;
    font-size: 14px;
    background-color: #f8fafc;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2364748b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
}

.svc-toolbar-select select:focus {
    border-color: #E62243;
    background-color: white;
    outline: none;
}

.svc-select-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #56606C;
    z-index: 1;
}

/* --- Modern Operator Card --- */
.svc-operator-card-modern {
    background: #ffffff;
    border-radius: var(--svc-radius-lg);
    overflow: hidden;
    border: 1px solid #F0F0F1;
    box-shadow: var(--svc-shadow-sm);
    transition: var(--svc-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.svc-operator-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--svc-shadow-lg);
    border-color: #e8a49e;
}

.svc-card-cover {
    height: 160px;
    background-size: cover;
    background-position: center;
    position: relative;
    background-color: #f0f0f0;
}

.svc-card-cover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.svc-cover-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.svc-verified-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    color: #5a9a4a;
    padding: 6px 12px;
    border-radius: var(--svc-radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.svc-card-body {
    padding: 24px;
    padding-top: 0;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.svc-card-avatar {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-top: -40px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.svc-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.svc-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #E62243;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--svc-font-heading);
}

.svc-card-main {
    flex-grow: 1;
}

.svc-card-title {
    margin: 0 0 8px;
    font-size: 18px;
    /* Reduced from 20px */
    line-height: 1.3;
}

.svc-card-title a {
    color: #1C1C1E;
    text-decoration: none;
    transition: color 0.2s;
}

.svc-card-title a:hover {
    color: #E62243;
}

.svc-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.svc-review-count {
    font-size: 13px;
    color: #56606C;
}

.svc-card-location {
    font-size: 14px;
    color: #56606C;
    display: flex;
    gap: 6px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.svc-card-location .dashicons {
    color: #E62243;
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.svc-card-footer {
    padding-top: 16px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.svc-card-stat {
    display: flex;
    flex-direction: column;
}

.svc-card-stat .count {
    font-size: 18px;
    font-weight: 800;
    color: #E62243;
    line-height: 1;
}

.svc-card-stat .label {
    font-size: 11px;
    text-transform: uppercase;
    color: #56606C;
    font-weight: 600;
}

.svc-button-sm {
    padding: 8px 20px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    .svc-operators-grid {
        grid-template-columns: 1fr;
    }

    .svc-toolbar-form {
        flex-direction: column;
        align-items: stretch;
    }

    /* --- Tours & Operators Page Sidebar Layout --- */
    .svc-tours-page-wrapper.with-sidebar,
    .svc-operators-page-wrapper.with-sidebar {
        display: block;
        /* Stack sidebar and content vertically */
        gap: 30px;
        margin-bottom: 40px;
    }

    .svc-sidebar-area {
        width: 100%;
    }

    .svc-sticky-sidebar {
        position: sticky;
        top: 30px;
        transition: top 0.3s;
    }

    .svc-main-content {
        min-width: 0;
        /* Prevent grid blowout */
    }

    /* Sidebar Filters Refinement */
    .svc-sidebar-filters {
        background: #ffffff;
        border-radius: var(--svc-radius-lg);
        border: 1px solid #F0F0F1;
        box-shadow: var(--svc-shadow-sm);
        overflow: hidden;
    }

    .svc-filters-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid #F0F0F1;
        background: #fafafa;
    }

    .svc-filters-header h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
    }

    .svc-reset-link {
        background: none;
        border: 1px solid #F0F0F1;
        color: #E62243;
        font-size: 12px;
        cursor: pointer;
        padding: 4px 12px;
        font-weight: 600;
        border-radius: var(--svc-radius-sm);
        text-decoration: none;
    }

    .svc-reset-link:hover {
        background: #F5F6F7;
        border-color: #E62243;
        text-decoration: none;
    }

    /* Range Inputs */
    .svc-range-inputs.dual {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .svc-range-inputs input {
        width: 100%;
        padding: 10px;
        border: 1px solid #e2e8f0;
        border-radius: var(--svc-radius-sm);
        font-size: 14px;
        text-align: center;
    }

    .svc-range-inputs .sep {
        color: #56606C;
    }

    /* Empty State */
    .svc-no-results-box {
        text-align: center;
        padding: 80px 40px;
        background: #ffffff;
        border-radius: var(--svc-radius-lg);
        border: 1px dashed #F0F0F1;
        margin-top: 20px;
    }

    .svc-no-results-box .dashicons {
        font-size: 48px;
        width: 48px;
        height: 48px;
        color: #E62243;
        margin-bottom: 24px;
    }

    .svc-no-results-box h3 {
        margin: 0 0 12px;
        font-size: 24px;
    }

    .svc-no-results-box p {
        color: #56606C;
        margin-bottom: 32px;
    }

    /* Pagination */
    .svc-pagination {
        margin-top: 60px;
        display: flex;
        justify-content: center;
    }

    .svc-pagination ul,
    .svc-pagination div {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .svc-pagination li {
        margin: 0;
    }

    .svc-pagination a,
    .svc-pagination span {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        /* Circle pagination */
        background: #ffffff;
        color: #1C1C1E;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;
        transition: var(--svc-transition);
        border: 1px solid #F0F0F1;
        box-shadow: var(--svc-shadow-sm);
    }

    .svc-pagination a:hover,
    .svc-pagination span.current {
        background: #E62243;
        color: white;
        border-color: #E62243;
        transform: translateY(-3px);
        box-shadow: var(--svc-shadow-md);
    }

    .svc-pagination .prev,
    .svc-pagination .next {
        width: auto;
        padding: 0 20px;
        border-radius: 20px;
        /* Pill for prev/next */
    }

    /* Responsive Layout */
    @media (max-width: 1024px) {

        .svc-tours-page-wrapper.with-sidebar,
        .svc-operators-page-wrapper.with-sidebar {
            grid-template-columns: 1fr;
        }

        .svc-sidebar-area {
            margin-bottom: 32px;
        }

        .svc-sticky-sidebar {
            position: static;
        }

    }

    /* --- Comment Form Styling --- */
    #respond {
        background: #fff;
        padding: 20px;
        border-radius: var(--svc-radius-lg);
    }

    .comment-reply-title {
        font-size: 20px;
        margin-bottom: 20px;
        display: block;
        color: #E62243;
    }

    .comment-notes,
    .logged-in-as {
        font-size: 13px;
        color: #56606C;
        margin-bottom: 20px;
    }

    .comment-form p {
        margin-bottom: 20px;
    }

    .comment-form label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #1C1C1E;
        text-transform: uppercase;
    }

    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea,
    .comment-form select {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid #F0F0F1;
        border-radius: var(--svc-radius-sm);
        font-size: 15px;
        color: #1C1C1E;
        transition: all 0.2s;
        background: #fdfdfd;
    }

    .comment-form input:focus,
    .comment-form textarea:focus,
    .comment-form select:focus {
        outline: none;
        border-color: #E62243;
        box-shadow: 0 0 0 4px rgba(196, 60, 46, 0.1);
        background: #fff;
    }

    .comment-form-cookies-consent {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .comment-form-cookies-consent input {
        width: auto;
    }

    .comment-form-cookies-consent label {
        margin: 0;
        text-transform: none;
        font-weight: 400;
    }

    .form-submit {
        margin-top: 30px;
    }
}

/* Pagination Styling */
.svc-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.svc-pagination ul.page-numbers {
    display: flex;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.svc-pagination .page-numbers li {
    margin: 0;
}

.svc-pagination .page-numbers a,
.svc-pagination .page-numbers span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    min-width: 44px;
    padding: 0 16px;
    background: white;
    border: 1px solid #F0F0F1;
    border-radius: var(--svc-radius-sm);
    color: #1C1C1E;
    font-weight: 700;
    text-decoration: none;
    transition: var(--svc-transition);
}

.svc-pagination .page-numbers a:hover,
.svc-pagination .page-numbers span.current {
    background: #E62243;
    color: white;
    border-color: #E62243;
}

/* --- Operators Grid (1-column for horizontal cards) --- */
.svc-operators-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--svc-grid-gap);
}

/* --- New Operator Horizontal Card --- */
.svc-operator-card-horizontal {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: var(--svc-radius-lg);
    border: 1px solid #F0F0F1;
    margin-bottom: 24px;
    /* Space between cards */
    overflow: hidden;
    transition: var(--svc-transition);
    box-shadow: var(--svc-shadow-sm);
}

.svc-operator-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: var(--svc-shadow-lg);
    border-color: #e8a49e;
}

/* Premium Styling */
.svc-operator-card-horizontal.svc-card-premium {
    border-left: 4px solid #E62243;
    background: #fffdf9;
}

.svc-card-top {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px;
}

/* 1. Image Section */
.svc-card-image {
    width: 260px;
    min-width: 260px;
    height: 190px;
    background-size: cover;
    background-position: center;
    border-radius: var(--svc-radius-md);
    position: relative;
    overflow: hidden;
}

.svc-card-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
}

.svc-badge-verified-corner {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #E62243;
    color: white;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
}

/* Featured Operator Card */
.svc-operator-card-horizontal.svc-card-featured {
    border: 2px solid #E62243;
    box-shadow: 0 4px 20px rgba(212, 169, 90, 0.15);
}

.svc-operator-card-horizontal.svc-card-featured .svc-card-image .svc-featured-ribbon {
    top: 15px;
    right: -30px;
}

/* Featured Tour Card */
.svc-tour-card.svc-featured {
    border: 2px solid #E62243;
    box-shadow: 0 4px 20px rgba(212, 169, 90, 0.15);
}

/* Disabled button */
.svc-button.svc-button-disabled {
    background: #ccc;
    color: #777;
    cursor: not-allowed;
    pointer-events: none;
    padding: 10px 20px;
    border-radius: var(--svc-radius-md);
    font-size: 14px;
    font-weight: 600;
}

/* 2. Details Section */
.svc-card-details {
    flex: 1 1 200px;
    min-width: 0;
    /* min-width:0 lets this column shrink so the branding column (logo +
       View Profile) never gets pushed past the card's right edge and
       clipped by the card's overflow:hidden. */
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.svc-card-title {
    font-size: 18px;
    /* Reduced from 22px */
    margin: 0 0 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-card-title a {
    text-decoration: none;
    color: #1C1C1E;
    transition: color 0.2s;
}

.svc-card-title a:hover {
    color: #E62243;
}

.svc-badge-premium-star {
    color: #E62243;
    font-size: 18px;
}

.svc-card-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #1C1C1E;
}

.svc-rating-row {
    margin-bottom: 8px;
}

.svc-review-text {
    font-size: 13px;
    color: #56606C;
}

.svc-meta-label {
    font-weight: 600;
    color: #56606C;
}

.svc-meta-value {
    font-weight: 500;
}

.svc-destinations-text {
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* 3. Branding Section */
.svc-card-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 180px;
    padding-left: 24px;
    border-left: 1px dashed #F0F0F1;
}

.svc-operator-logo-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid #F0F0F1;
    padding: 6px;
    background: white;
    box-shadow: var(--svc-shadow-sm);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-card-branding .svc-operator-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    margin: 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: none;
}

/* 4. Tours Preview Section (Bottom) */
.svc-card-tours-preview {
    background: #fcfbf9;
    border-top: 1px solid #F0F0F1;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.svc-preview-tours-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.svc-preview-tours-list li {
    margin: 0;
    font-size: 13px;
    line-height: 1.35;
    position: relative;
    padding-left: 14px;
}

.svc-preview-tours-list li::before {
    content: "•";
    color: #E62243;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.svc-preview-tours-list a {
    text-decoration: none !important;
    color: #1C1C1E !important;
    transition: color 0.2s;
}

.svc-preview-tours-list a:hover {
    color: #E62243 !important;
    text-decoration: none !important;
}

.svc-preview-tours-list .tour-meta {
    color: #56606C;
    font-size: 12px;
    margin-left: 4px;
}

.svc-preview-footer {
    flex-shrink: 0;
    margin-left: 16px;
}

.svc-view-all-link {
    font-size: 14px;
    font-weight: 700;
    color: #1C1C1E !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    padding: 10px 20px;
    background: #1E4974 !important;
    border: none;
    border-radius: var(--svc-radius-md);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(245, 187, 60, 0.3);
}

.svc-view-all-link:hover {
    background: #e5a82c !important;
    color: #1C1C1E !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 187, 60, 0.4);
}

.svc-view-all-link .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #1C1C1E !important;
    transition: transform 0.2s ease;
}

.svc-view-all-link:hover .dashicons {
    transform: translateX(3px);
    color: #ffffff !important;
}

/* --- Responsive Card --- */
@media (max-width: 768px) {
    .svc-card-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .svc-card-image {
        width: 100%;
        height: 200px;
    }

    .svc-card-branding {
        flex-direction: row;
        width: 100%;
        border-left: none;
        border-top: 1px dashed #F0F0F1;
        padding-top: 16px;
        padding-left: 0;
        justify-content: space-between;
    }

    .svc-operator-logo-wrapper {
        width: 60px;
        height: 60px;
    }

    .svc-card-tours-preview {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .svc-preview-tours-list {
        flex-direction: column;
        gap: 8px;
    }

    .svc-preview-tours-list li:nth-child(n+2) {
        display: none;
    }
}


/* --- Advanced Filters (Sidebar) CSS - Compact Design --- */

/* Compact Filter Container */
.svc-sidebar-filters.svc-filters-compact {
    font-size: 13px;
}

.svc-sidebar-filters.svc-filters-compact .svc-filters-header {
    padding: 14px 16px;
    background: #1C1C1E !important;
    border-bottom: none;
}

.svc-sidebar-filters.svc-filters-compact .svc-filters-header h3 {
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.svc-sidebar-filters.svc-filters-compact .svc-filters-header h3 .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.svc-sidebar-filters.svc-filters-compact .svc-reset-link {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 3px 10px;
    border-radius: var(--svc-radius-sm);
    text-decoration: none;
}

.svc-sidebar-filters.svc-filters-compact .svc-reset-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

/* Compact Filter Sections */
.svc-sidebar-filters.svc-filters-compact .svc-filter-section {
    border-bottom: 1px solid #F0F0F1;
}

.svc-sidebar-filters.svc-filters-compact .svc-filter-section:last-of-type {
    border-bottom: none;
}

.svc-sidebar-filters.svc-filters-compact .svc-filter-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #56606C;
    margin: 0;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    background: #fafafa;
}

.svc-sidebar-filters.svc-filters-compact .svc-filter-title:hover {
    background: #f5f5f5;
    color: #E62243;
}

.svc-sidebar-filters.svc-filters-compact .svc-filter-title .dashicons {
    font-size: 14px;
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.svc-sidebar-filters.svc-filters-compact .svc-filter-section.expanded .svc-filter-title .dashicons {
    transform: rotate(180deg);
}

/* Compact Filter Content */
.svc-sidebar-filters.svc-filters-compact .svc-filter-content {
    padding: 10px 16px 14px;
}

/* Compact Range Inputs */
.svc-sidebar-filters.svc-filters-compact .svc-range-inputs.dual {
    display: flex;
    align-items: center;
    gap: 6px;
}

.svc-sidebar-filters.svc-filters-compact .svc-range-inputs input {
    flex: 1 1 0;
    min-width: 0;
    width: 100%;
    padding: 8px 10px;
    font-size: 12px;
    border: 1px solid #F0F0F1;
    border-radius: 4px;
    text-align: center;
    transition: all 0.2s;
    box-sizing: border-box;
}

.svc-sidebar-filters.svc-filters-compact .svc-range-inputs input:focus {
    border-color: #E62243;
    outline: none;
    box-shadow: 0 0 0 2px rgba(196, 60, 46, 0.1);
}

.svc-sidebar-filters.svc-filters-compact .svc-range-inputs .sep {
    color: #56606C;
    font-size: 12px;
}

/* Compact Checkbox List */
.svc-sidebar-filters.svc-filters-compact .svc-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 180px;
    overflow-y: auto;
}

.svc-sidebar-filters.svc-filters-compact .svc-filter-list.default-show-5 {
    max-height: 145px;
}

.svc-sidebar-filters.svc-filters-compact .svc-filter-list li {
    margin: 0;
}

.svc-sidebar-filters.svc-filters-compact .svc-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 12px;
    color: #1C1C1E;
    transition: all 0.15s;
}

.svc-sidebar-filters.svc-filters-compact .svc-checkbox:hover {
    color: #E62243;
    padding-left: 4px;
}

.svc-sidebar-filters.svc-filters-compact .svc-checkbox input[type="checkbox"] {
    width: 14px;
    height: 14px;
    accent-color: #E62243;
    margin: 0;
    flex-shrink: 0;
}

.svc-sidebar-filters.svc-filters-compact .svc-checkbox .checkmark {
    display: none;
}

.svc-sidebar-filters.svc-filters-compact .svc-checkbox .label-text {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.svc-sidebar-filters.svc-filters-compact .svc-checkbox .count {
    font-size: 10px;
    color: #56606C;
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Show More Button */
.svc-sidebar-filters.svc-filters-compact .svc-show-more {
    background: none;
    border: none;
    color: #E62243;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 0;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.2s;
}

.svc-sidebar-filters.svc-filters-compact .svc-show-more:hover {
    color: #1E4974;
}

/* Compact Footer */
.svc-sidebar-filters.svc-filters-compact .svc-filters-footer {
    padding: 14px 16px;
    background: #f9f9f9;
    border-top: 1px solid #F0F0F1;
}

.svc-sidebar-filters.svc-filters-compact .svc-filters-footer .svc-button {
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
}

/* Custom Scrollbar for Filter List */
.svc-sidebar-filters.svc-filters-compact .svc-filter-list::-webkit-scrollbar {
    width: 4px;
}

.svc-sidebar-filters.svc-filters-compact .svc-filter-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.svc-sidebar-filters.svc-filters-compact .svc-filter-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.svc-sidebar-filters.svc-filters-compact .svc-filter-list::-webkit-scrollbar-thumb:hover {
    background: #E62243;
}

/* Legacy Filter Styles (fallback) */
.svc-sidebar-filters .svc-filter-group {
    padding: 20px 24px;
    border-bottom: 1px solid #F0F0F1;
}

.svc-sidebar-filters .svc-filter-group:last-child {
    border-bottom: none;
}

.svc-filter-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #E62243;
    margin-top: 0;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.svc-search-input-wrapper {
    position: relative;
}

.svc-search-input-wrapper .dashicons {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #56606C;
}

.svc-form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #F0F0F1;
    border-radius: var(--svc-radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: #1C1C1E;
    background: #fdfdfd;
    transition: all 0.2s;
}

.svc-search-input-wrapper .svc-form-control {
    padding-left: 36px;
    /* Space for icon */
}

.svc-form-control:focus {
    outline: none;
    border-color: #E62243;
    box-shadow: 0 0 0 3px rgba(196, 60, 46, 0.1);
    background: white;
}

/* Price Inputs */
.svc-price-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.svc-price-separator {
    color: #56606C;
    font-weight: bold;
}

.svc-price-input {
    width: 100%;
    text-align: center;
}

/* Checkbox/Radio List */
.svc-checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.svc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    /* Reduced from 14px */
    color: #1C1C1E;
    cursor: pointer;
    transition: color 0.2s;
}

.svc-checkbox-label:hover {
    color: #E62243;
}

.svc-checkbox-label input[type="radio"],
.svc-checkbox-label input[type="checkbox"] {
    accent-color: #E62243;
    /* Modern browsers */
    width: 16px;
    height: 16px;
    margin: 0;
}

.svc-stars {
    color: #FBC02D;
    display: inline-flex;
    align-items: center;
}

.svc-stars .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* Horizontal Star Rating Input */
.svc-star-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 5px;
}

.svc-star-input input {
    display: none;
}

.svc-star-input label {
    cursor: pointer;
    font-size: 24px;
    color: #ddd;
    transition: color 0.2s;
    margin: 0;
    line-height: 1;
}

.svc-star-input label .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Hover and Checked States */
.svc-star-input label:hover,
.svc-star-input label:hover~label,
.svc-star-input input:checked~label {
    color: #FBC02D;
}

/* Selected state specific (if needed) */
.svc-star-input input:checked+label:hover,
.svc-star-input input:checked~label:hover,
.svc-star-input label:hover~input:checked~label,
.svc-star-input input:checked~label:hover~label {
    color: #e0ac25;
}

/* Actions */
.svc-filter-actions {
    padding: 24px;
    background: #f9f7f5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#svc-reset-filters {
    color: #56606C;
    font-size: 13px;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #F0F0F1;
    border-radius: var(--svc-radius-sm);
    background: #ffffff;
    transition: var(--svc-transition);
    cursor: pointer;
}

#svc-reset-filters:hover {
    color: #E62243;
    border-color: #E62243;
    background: #F5F6F7;
}

/* Tour Details Grid Overhaul */
.svc-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 35px;
    padding: 35px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-top: 25px;
}

@media (min-width: 900px) {
    .svc-details-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .svc-details-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.svc-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 5px;
    transition: transform 0.2s ease;
}

.svc-detail-item:hover {
    transform: translateY(-2px);
}

.svc-detail-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #F5F6F7;
    /* Use light beige from palette */
    color: #1E4974;
    /* Use Rust Red for icons */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.03);
}

.svc-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2px;
}

.svc-detail-content label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #56606C;
    font-weight: 700;
    margin-bottom: 6px;
    opacity: 0.8;
}

.svc-detail-content span {
    font-size: 15px;
    color: #E62243;
    /* Dark Brown */
    font-weight: 700;
    line-height: 1.3;
}

/* Reviews Overhaul */
#svc-review-form-wrapper {
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.svc-reviews-header-actions .svc-button span {
    margin-right: 5px;
}

.svc-review-title {
    color: #E62243;
    font-family: var(--svc-font-heading);
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

/* =========================================
   Mobile Filter Toggle & Sidebar Improvements
   ========================================= */

/* Mobile Filter Toggle Button */
.svc-mobile-filter-toggle {
    display: none;
    width: auto;
    padding: 12px 24px;
    background: #ffffff !important;
    color: #E62243 !important;
    border: 2px solid #E62243 !important;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.svc-mobile-filter-toggle:hover {
    background: #E62243 !important;
    color: #ffffff !important;
    border-color: #E62243 !important;
}

.svc-mobile-filter-toggle .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Mobile Sidebar Styles */
@media (max-width: 768px) {

    /* Show mobile toggle button */
    .svc-mobile-filter-toggle {
        display: flex;
    }

    /* Collapsible sidebar on mobile */
    .svc-sidebar-area {
        margin-bottom: 24px;
    }

    .svc-sidebar-filters {
        display: none;
        margin-top: 0;
    }

    .svc-sidebar-filters.is-open {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    /* Mobile container padding */
    .svc-container {
        padding: 0 16px;
    }

    /* Mobile hero adjustments */
    .svc-operator-hero {
        padding: 40px 0 60px;
    }

    .svc-hero-title {
        font-size: 28px !important;
        margin-bottom: 20px;
    }

    .svc-hero-stats-integrated {
        gap: 16px;
        padding: 16px 20px;
        flex-wrap: wrap;
        width: 100%;
    }

    .svc-hero-stat {
        min-width: auto;
        padding: 8px 12px;
    }

    .svc-stat-val {
        font-size: 18px;
    }

    /* Enquiry card mobile */
    .svc-enquiry-card {
        padding: 24px;
        margin: 0 16px;
    }

    .svc-enquiry-card h3 {
        font-size: 20px;
    }

    /* Bottom inquiry section mobile */
    .svc-bottom-inquiry-section {
        padding: 50px 0;
    }

    .svc-bottom-inquiry-card {
        padding: 40px 24px;
    }

    .svc-bottom-inquiry-card h2 {
        font-size: 28px;
    }

    /* Modal adjustments for mobile */
    .svc-modal-content {
        margin: 20px !important;
        max-height: 90vh;
        overflow-y: auto;
    }

    /* Form adjustments */
    .svc-form-grid {
        gap: 16px;
    }

    /* Section headers mobile */
    .svc-section-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .svc-section-header h3 {
        font-size: 22px;
    }

    /* Reviews grid mobile */
    .svc-reviews-container {
        padding: 0;
    }

    .svc-review-card {
        padding: 20px;
    }
}

/* Animation for filter dropdown */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dashboard responsive */
@media (max-width: 768px) {
    .svc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .svc-stat-value {
        font-size: 24px;
    }

    .svc-tabs-nav {
        flex-wrap: wrap;
        border-radius: var(--svc-radius-lg);
    }

    .svc-tabs-nav li {
        padding: 8px 16px;
        font-size: 13px;
    }

    .svc-review-item-header {
        flex-direction: column;
        gap: 8px;
    }

    .svc-review-item-meta {
        text-align: left;
    }

    .svc-review-avg {
        flex-direction: column;
        text-align: center;
    }
}

/* Extra small devices (phones, less than 480px) */
@media (max-width: 480px) {
    .svc-hero-title {
        font-size: 24px !important;
    }

    .svc-tour-card {
        margin: 0 8px;
    }

    .svc-tour-title {
        font-size: 16px;
    }

    .svc-card-details {
        padding: 16px;
    }

    .svc-button {
        padding: 12px 16px;
        font-size: 13px;
    }

    .svc-hero-stat {
        flex: 1;
        text-align: center;
    }
}

/* =========================================================
   Tour Card v2 - Editorial / Luxury (2026 redesign)
   Matches new design system: clean image, content-area
   destination + duration header row, serif title, star
   rating, operator with verified check + years,
   dashed divider, "View ->" text link footer.
   ========================================================= */

.svc-tour-card.svc-tour-card-v2 {
    background: #ffffff;
    border: 1px solid #F0F0F1;
    border-radius: 14px;
    box-shadow: 0 1px 3px rgba(20, 18, 16, 0.04);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.35s cubic-bezier(0.22, 0.61, 0.36, 1),
                border-color 0.35s ease;
}

.svc-tour-card.svc-tour-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(20, 18, 16, 0.08), 0 2px 6px rgba(20, 18, 16, 0.04);
    border-color: #F0F0F1;
}

/* Image: clean, no overlay badges */
.svc-tour-card.svc-tour-card-v2 .svc-tour-image {
    height: 240px;
    background: #f4f1ec;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

/* Hide destination badge overlay - destination now lives in content header */
.svc-tour-card.svc-tour-card-v2 .svc-tour-badges {
    display: none;
}

/* Gallery badge: keep but restyle subtly */
.svc-tour-card.svc-tour-card-v2 .svc-gallery-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(20, 18, 16, 0.78);
    color: #fff;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.svc-tour-card.svc-tour-card-v2 .svc-gallery-badge .svc-gallery-icon {
    width: 13px;
    height: 13px;
    display: block;
    color: #fff;
}

.svc-tour-card.svc-tour-card-v2 .svc-gallery-badge .svc-gallery-count {
    display: inline-block;
}

/* Featured ribbon: keep, restyle to match */
.svc-tour-card.svc-tour-card-v2 .svc-featured-ribbon {
    top: 14px;
    left: 14px;
    background: #E62243 !important;
    color: #fff !important;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    letter-spacing: 1.2px;
}

/* Content area */
.svc-tour-card.svc-tour-card-v2 .svc-tour-content {
    padding: 22px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Header row: destination | duration */
.svc-tour-card.svc-tour-card-v2 .svc-tour-meta-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 0;
    border: none;
    gap: 12px;
}

.svc-tour-card.svc-tour-card-v2 .svc-meta-destination,
.svc-tour-card.svc-tour-card-v2 .svc-meta-duration {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #56606C;
    line-height: 1;
}

.svc-tour-card.svc-tour-card-v2 .svc-meta-duration {
    color: #56606C;
}

/* Suppress the dashicons that the old meta rule may inject */
.svc-tour-card.svc-tour-card-v2 .svc-tour-meta-header .dashicons {
    display: none;
}

/* Title */
.svc-tour-card.svc-tour-card-v2 .svc-tour-title {
    font-family: var(--svc-font-heading, Georgia, 'Times New Roman', serif);
    font-size: 22px;
    line-height: 1.25;
    font-weight: 700;
    color: #1C1C1E;
    margin: 0;
    padding: 0;
    border: none;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-title a:hover {
    color: #E62243;
}

/* Rating row */
.svc-tour-card.svc-tour-card-v2 .svc-tour-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #1C1C1E;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-rating .svc-star-rating {
    display: inline-flex;
    align-items: center;
    gap: 1px;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-rating .svc-star-rating .dashicons {
    color: #F5A623;
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-rating .svc-rating-value {
    font-weight: 700;
    color: #1C1C1E;
    margin-left: 4px;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-rating .svc-rating-reviews {
    color: #56606C;
    font-size: 13px;
    font-weight: 400;
}

/* Operator brand line - verified check + name + years */
.svc-tour-card.svc-tour-card-v2 .svc-tour-operator-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-operator-brand {
    align-items: center;
}

.svc-tour-card.svc-tour-card-v2 .svc-brand-logo {
    position: relative;
    width: 52px;
    height: 36px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #F0F0F1;
    box-shadow: 0 1px 3px rgba(20, 18, 16, 0.06);
    overflow: visible;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-tour-card.svc-tour-card-v2 .svc-brand-logo img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    padding: 4px;
    box-sizing: border-box;
}

/* Verified check badge tucked into the bottom-right corner of the logo chip */
.svc-tour-card.svc-tour-card-v2 .svc-tour-operator-brand.is-verified .svc-brand-logo::after {
    content: "";
    position: absolute;
    right: -3px;
    bottom: -3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #E62243;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(20, 18, 16, 0.15);
    z-index: 2;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-operator-brand.is-verified .svc-brand-logo::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 2px;
    width: 5px;
    height: 2.5px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg);
    z-index: 3;
}

.svc-tour-card.svc-tour-card-v2 .svc-brand-name {
    font-size: 13px;
    color: #1C1C1E;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    display: inline;
}

.svc-tour-card.svc-tour-card-v2 .svc-brand-by {
    color: #1C1C1E;
}

.svc-tour-card.svc-tour-card-v2 .svc-brand-operator {
    color: #1C1C1E;
    font-weight: 600;
    margin-left: 2px;
}

.svc-tour-card.svc-tour-card-v2 .svc-brand-years {
    display: none;
}

/* Footer: dashed divider above, From price + View link */
.svc-tour-card.svc-tour-card-v2 .svc-tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    margin-top: 4px;
    border-top: 1px dashed #F0F0F1;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-price .amount-prefix {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: #56606C;
    margin: 0;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-price .amount,
.svc-tour-card.svc-tour-card-v2 .svc-tour-price {
    font-family: var(--svc-font-heading, Georgia, 'Times New Roman', serif);
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-price .amount {
    font-size: 22px;
    font-weight: 700;
    color: #E62243;
    font-family: var(--svc-font-heading, Georgia, 'Times New Roman', serif);
    line-height: 1.1;
}

/* "View ->" text link */
.svc-tour-card.svc-tour-card-v2 .svc-tour-view-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--svc-font-heading, Georgia, 'Times New Roman', serif);
    font-size: 17px;
    font-weight: 500;
    color: #1C1C1E;
    text-decoration: none;
    background: transparent;
    padding: 6px 0;
    border: none;
    border-radius: 0;
    transition: color 0.2s ease, gap 0.25s ease;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-view-link:hover {
    color: #E62243;
    gap: 10px;
}

/* =========================================================
   Tour Card — homepage design (.at-tour) overrides
   When the plugin card uses .at-tour classes, defer all
   visual styling to the theme and only layer in the
   plugin-specific overlays (ribbon, gallery badge).
   ========================================================= */

/* Reset plugin card base styles — let .at-tour theme rules take over */
a.at-tour.svc-tour-card {
    box-shadow: none;
    text-decoration: none;
    color: inherit;
    transition: background .5s cubic-bezier(.22,1,.36,1),
                transform .5s cubic-bezier(.22,1,.36,1),
                box-shadow .5s cubic-bezier(.22,1,.36,1);
}

/* Image container: relative for badge overlays, line-height:0
   removes the default inline-element baseline gap under the img */
a.at-tour.svc-tour-card .at-tour-img {
    position: relative;
    line-height: 0;
}

/* Force block so no inline baseline gap pushes space below the image */
a.at-tour.svc-tour-card .at-tour-img img {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tighter body: reduce top padding and item gap */
a.at-tour.svc-tour-card .at-tour-body {
    padding: 1rem 1.2rem 0.75rem;
    gap: 0.3rem;
}

/* Featured ribbon */
a.at-tour.svc-tour-card .svc-featured-ribbon {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #E62243;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}

/* Title: smaller, clamped to 2 lines so all cards align uniformly */
a.at-tour.svc-tour-card .at-tour-body h3 {
    font-size: 0.95rem;
    line-height: 1.3;
    min-height: 2.6em;       /* reserves space for exactly 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Operator line: single line with ellipsis so it never wraps */
a.at-tour.svc-tour-card .at-tour-op {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Pin rating + operator to the bottom of the body so they
   sit at the same vertical position across all cards */
a.at-tour.svc-tour-card .at-tour-rate {
    margin-top: auto;
}
a.at-tour.svc-tour-card .at-tour-body:not(:has(.at-tour-rate)) .at-tour-op {
    margin-top: auto;
}

/* Footer: tighter font sizes so price and View → fit on one line */
a.at-tour.svc-tour-card .at-tour-foot {
    padding: 0.75rem 1.2rem 1rem;
}
a.at-tour.svc-tour-card .at-tour-px {
    font-size: 1rem;
    line-height: 1.1;
}
a.at-tour.svc-tour-card .at-tour-px small {
    font-size: 0.48rem;
    letter-spacing: .28em;
    margin-bottom: .2rem;
}
a.at-tour.svc-tour-card .arr {
    font-size: 1rem;
    white-space: nowrap;
}

/* Gallery badge */
a.at-tour.svc-tour-card .svc-gallery-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    background: rgba(20, 18, 16, 0.72);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    line-height: 1;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-view-link .svc-tour-view-arrow {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.svc-tour-card.svc-tour-card-v2 .svc-tour-view-link:hover .svc-tour-view-arrow {
    transform: translateX(2px);
}

/* Featured variant: subtle accent only, no garish ring */
.svc-tour-card.svc-tour-card-v2.svc-featured {
    border-color: #F2D9C5;
}

/* Responsive */
@media (max-width: 600px) {
    .svc-tour-card.svc-tour-card-v2 .svc-tour-image {
        height: 200px;
    }
    .svc-tour-card.svc-tour-card-v2 .svc-tour-content {
        padding: 18px 18px;
        gap: 12px;
    }
    .svc-tour-card.svc-tour-card-v2 .svc-tour-title {
        font-size: 19px;
    }
    .svc-tour-card.svc-tour-card-v2 .svc-tour-price .amount {
        font-size: 19px;
    }
    .svc-tour-card.svc-tour-card-v2 .svc-tour-view-link {
        font-size: 15px;
    }
}

/* =========================================================
   Dashicons hardened glyph rendering
   Forces font-family + content with !important so cached/
   optimized pages cannot strip the icon glyph.
   ========================================================= */

.dashicons,
.dashicons-before {
    font-family: 'dashicons' !important;
    display: inline-block;
    line-height: 1;
    font-weight: 400;
    font-style: normal;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    speak: never;
    width: 20px;
    height: 20px;
    font-size: 20px;
    vertical-align: middle;
    text-align: center;
}

.dashicons::before,
.dashicons-before::before {
    font-family: 'dashicons' !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    font-style: normal !important;
    text-transform: none !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dashicons.dashicons-clock::before              { content: "\f469" !important; }
.dashicons.dashicons-calendar-alt::before       { content: "\f508" !important; }
.dashicons.dashicons-calendar::before           { content: "\f145" !important; }
.dashicons.dashicons-location-alt::before       { content: "\f231" !important; }
.dashicons.dashicons-location::before           { content: "\f230" !important; }
.dashicons.dashicons-flag::before               { content: "\f227" !important; }
.dashicons.dashicons-businessperson::before     { content: "\f12e" !important; }
.dashicons.dashicons-admin-users::before        { content: "\f110" !important; }
.dashicons.dashicons-star-filled::before        { content: "\f155" !important; }
.dashicons.dashicons-star-half::before          { content: "\f459" !important; }
.dashicons.dashicons-star-empty::before         { content: "\f154" !important; }
.dashicons.dashicons-images-alt2::before        { content: "\f233" !important; }
.dashicons.dashicons-format-gallery::before     { content: "\f161" !important; }
.dashicons.dashicons-yes-alt::before            { content: "\f12a" !important; }
.dashicons.dashicons-yes::before                { content: "\f147" !important; }
.dashicons.dashicons-money-alt::before          { content: "\f18e" !important; }
.dashicons.dashicons-money::before              { content: "\f526" !important; }
.dashicons.dashicons-arrow-right-alt2::before   { content: "\f345" !important; }
.dashicons.dashicons-arrow-left-alt2::before    { content: "\f341" !important; }
.dashicons.dashicons-arrow-up-alt2::before      { content: "\f343" !important; }
.dashicons.dashicons-arrow-down-alt2::before    { content: "\f347" !important; }
.dashicons.dashicons-search::before             { content: "\f179" !important; }
.dashicons.dashicons-filter::before             { content: "\f536" !important; }
.dashicons.dashicons-email-alt::before          { content: "\f466" !important; }
.dashicons.dashicons-email::before              { content: "\f465" !important; }
.dashicons.dashicons-phone::before              { content: "\f525" !important; }
.dashicons.dashicons-admin-links::before        { content: "\f103" !important; }
.dashicons.dashicons-admin-site::before         { content: "\f319" !important; }
.dashicons.dashicons-info-outline::before       { content: "\f14c" !important; }
.dashicons.dashicons-info::before               { content: "\f348" !important; }
.dashicons.dashicons-warning::before            { content: "\f534" !important; }
.dashicons.dashicons-dismiss::before            { content: "\f153" !important; }
.dashicons.dashicons-plus-alt::before           { content: "\f502" !important; }
.dashicons.dashicons-plus::before               { content: "\f132" !important; }
.dashicons.dashicons-chart-bar::before          { content: "\f185" !important; }
.dashicons.dashicons-shield::before             { content: "\f332" !important; }
.dashicons.dashicons-share1::before             { content: "\f237" !important; }
.dashicons.dashicons-megaphone::before          { content: "\f488" !important; }
.dashicons.dashicons-camera::before             { content: "\f306" !important; }
.dashicons.dashicons-sos::before                { content: "\f468" !important; }
.dashicons.dashicons-portfolio::before          { content: "\f322" !important; }
.dashicons.dashicons-tickets-alt::before        { content: "\f524" !important; }
.dashicons.dashicons-tickets::before            { content: "\f486" !important; }
.dashicons.dashicons-cart::before               { content: "\f174" !important; }
.dashicons.dashicons-visibility::before         { content: "\f177" !important; }
.dashicons.dashicons-admin-customizer::before   { content: "\f540" !important; }
.dashicons.dashicons-admin-appearance::before   { content: "\f100" !important; }
/* ============================================================
   THEME MATCH: Lake Manyara (.mny-card design language)
   Nunito Sans · red #E62243 · navy #1E4974 · ink #1C1C1E
   ============================================================ */
:root, body, .svc-single-tour-container, .svc-taxonomy-page-v2 {
    --svc-font-heading: 'Nunito Sans', system-ui, -apple-system, sans-serif;
    --svc-font-body: 'Nunito Sans', system-ui, -apple-system, sans-serif;
    --svc-font-label: 'Nunito Sans', system-ui, sans-serif;
    --svc-grid-gap: 28px;
    --mnyf: 'Nunito Sans', system-ui, -apple-system, sans-serif;
}
.svc-container, .svc-container *,
.svc-operator-card-horizontal, .svc-operator-card-horizontal *,
.at-tour, .at-tour *,
.svc-single-tour-container, .svc-single-tour-container *,
.svc-operator-profile-v2, .svc-operator-profile-v2 *,
.svc-taxonomy-page-v2, .svc-taxonomy-page-v2 *,
.svc-sidebar-filters, .svc-sidebar-filters * {
    font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif !important;
    letter-spacing: normal;
}
.svc-container { color: #1C1C1E; }
.svc-container h1, .svc-container h2, .svc-container h3, .svc-container h4,
.svc-font-heading, .at-tour h3, .svc-card-title, .svc-hero-title, .svc-tour-title {
    font-weight: 800 !important;
    color: #1C1C1E;
    letter-spacing: normal !important;
}

/* ---- Buttons: pill, Nunito 800 ---- */
.svc-button, .svc-button-primary, .svc-button-outline, .svc-button-small,
.svc-button-modern, .svc-button-block, .svc-request-quote {
    border-radius: 999px !important;
    font-weight: 800 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    padding: 13px 27px !important;
    transition: transform .18s ease, background .18s ease, color .18s ease !important;
}
.svc-button::before { display: none !important; }
.svc-button-primary, .svc-button-modern, .svc-request-quote {
    background: #E62243 !important;
    color: #fff !important;
    border: 1.6px solid #E62243 !important;
    box-shadow: 0 10px 22px -12px rgba(230,34,67,.7) !important;
}
.svc-button-primary:hover, .svc-button-modern:hover, .svc-request-quote:hover {
    background: #12314F !important;
    border-color: #12314F !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}
.svc-button-outline {
    background: #fff !important;
    color: #1E4974 !important;
    border: 1.6px solid #E0E4E9 !important;
}
.svc-button-outline:hover {
    background: #1E4974 !important;
    color: #fff !important;
    border-color: #1E4974 !important;
    transform: translateY(-2px) !important;
}
.svc-button-small { padding: 9px 18px !important; font-size: 13px !important; }

/* ---- Eyebrow + section headers ---- */
.svc-section-eyebrow {
    display: block;
    text-transform: uppercase;
    color: #E62243;
    font-weight: 900;
    font-size: 11.5px;
    letter-spacing: 1.85px;
    margin-bottom: 10px;
}
.svc-section-header h3, .svc-section-header h2 {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #1C1C1E !important;
}

/* ---- Cards: the .mny-card look ---- */
.svc-operator-card-horizontal,
.at-tour.svc-tour-card, .at-tour {
    background: #fff !important;
    border: 1px solid #F0F0F1 !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 34px -22px rgba(0,0,0,.4) !important;
    overflow: hidden !important;
    transition: transform .22s ease, box-shadow .22s ease !important;
}
.svc-operator-card-horizontal:hover,
.at-tour:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 26px 46px -24px rgba(0,0,0,.45) !important;
    border-color: #E7E9EC !important;
}
.at-tour-img img, .svc-card-image { border-radius: 0 !important; }

/* Destination badge over the image */
.svc-cat-badge {
    position: absolute;
    left: 14px; bottom: 14px;
    background: #E62243;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 10.5px;
    letter-spacing: 1.2px;
    padding: 5px 11px;
    border-radius: 999px;
    z-index: 3;
    box-shadow: 0 6px 14px -6px rgba(0,0,0,.5);
}
.at-tour-img { position: relative; }

/* Card body typography */
.at-tour-body h3, .svc-card-title { font-size: 20px !important; font-weight: 800 !important; color: #1C1C1E !important; }
.at-tour-meta-row, .svc-card-meta-row, .svc-meta-value, .at-tour-op { color: #56606C !important; font-weight: 600 !important; }
.svc-meta-label { color: #9098A2 !important; font-weight: 800 !important; text-transform: uppercase; letter-spacing: .6px; font-size: 10.5px !important; }

/* Foot "view" link -> solid red pill (matches the card's "View Profile" CTA) */
.at-tour-foot, .svc-preview-footer { border-top: 1px solid #F0F0F1 !important; }
.at-tour-foot .arr {
    color: #E62243 !important;
    font-weight: 800 !important;
    text-decoration: none !important;
}
.svc-view-all-link {
    background: #E62243 !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    box-shadow: 0 2px 8px rgba(230, 34, 67, 0.28) !important;
}
.svc-view-all-link:hover {
    background: #c81c39 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(230, 34, 67, 0.4) !important;
}
.svc-view-all-link .dashicons,
.svc-view-all-link:hover .dashicons { color: #ffffff !important; }
.at-tour-px { color: #1C1C1E !important; font-weight: 800 !important; }
.at-tour-px small { color: #9098A2 !important; font-weight: 700 !important; }
.svc-featured-ribbon, .at-tour .svc-featured-ribbon {
    background: #12314F !important; color: #fff !important;
    text-transform: uppercase; letter-spacing: 1px; font-weight: 800 !important;
}

/* ---- Single tour / operator ---- */
.svc-tour-title, .svc-hero-title { letter-spacing: normal !important; }
.svc-meta-pill {
    background: #F5F6F7 !important; color: #1C1C1E !important;
    border: 1px solid #F0F0F1 !important; border-radius: 999px !important; font-weight: 700 !important;
}
.svc-meta-pill.svc-price-pill { background: #FDECEF !important; color: #E62243 !important; border-color: #F7CBD4 !important; }
.svc-book-card, .svc-enquiry-card {
    border: 1px solid #F0F0F1 !important; border-radius: 18px !important;
    box-shadow: 0 18px 40px -26px rgba(0,0,0,.4) !important;
}
.svc-price-amount, .svc-price-value { color: #E62243 !important; font-weight: 800 !important; }
.svc-operator-hero { }
.svc-hero-stat .svc-stat-val { color: #E62243 !important; font-weight: 800 !important; }

/* ---- Filters sidebar ---- */
.svc-sidebar-filters {
    border: 1px solid #F0F0F1 !important; border-radius: 16px !important;
    box-shadow: 0 12px 34px -24px rgba(0,0,0,.35) !important;
}
.svc-filter-title { font-weight: 800 !important; color: #1C1C1E !important; text-transform: uppercase; letter-spacing: .6px; font-size: 12px !important; }
.svc-form-control, .svc-form-control:focus { border-radius: 10px !important; }
.svc-form-control:focus { border-color: #E62243 !important; box-shadow: 0 0 0 3px rgba(230,34,67,.12) !important; }

/* ============================================================
   THEME MATCH: Lake Manyara — SINGLE TOUR redesign
   ============================================================ */
.svc-tour-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background-color: #12314F;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 118px 0 54px;
    margin-bottom: 42px;
}
.svc-tour-hero .svc-container { max-width: 1120px; }
.svc-hero-crumbs { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.8); margin-bottom: 18px; }
.svc-hero-crumbs a { color: rgba(255,255,255,.8); text-decoration: none; }
.svc-hero-crumbs a:hover { color: #fff; }
.svc-hero-crumbs span { margin: 0 8px; opacity: .6; }
.svc-hero-crumbs em { font-style: normal; color: #fff; }
.svc-hero-eyebrow { color: #FF8494 !important; }
.svc-tour-hero .svc-tour-title {
    color: #fff !important;
    font-size: clamp(32px, 4.6vw, 54px) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    max-width: 900px;
    margin: 0 0 22px;
}
.svc-tour-hero .svc-tour-header-meta { display: flex; flex-wrap: wrap; gap: 12px; }
.svc-hero-chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.28);
    color: #fff; text-decoration: none;
    padding: 9px 18px; border-radius: 999px;
    font-weight: 700; font-size: 14px; backdrop-filter: blur(4px);
}
.svc-hero-chip .dashicons { font-size: 17px; width: 17px; height: 17px; }
.svc-hero-chip-link:hover { background: rgba(255,255,255,.26); }
.svc-hero-chip-price { background: #E62243; border-color: #E62243; font-weight: 800; }

/* Section titles inside single tour get an editorial treatment */
.svc-single-tour-container .svc-section-title,
.svc-single-tour-container h2,
.svc-single-tour-container .svc-tour-section h2 {
    font-size: 27px !important; font-weight: 800 !important; color: #1C1C1E !important;
    position: relative; padding-left: 16px;
}
.svc-single-tour-container .svc-section-title::before,
.svc-single-tour-container .svc-tour-section h2::before,
.svc-itinerary-section .svc-section-title::before {
    content: ""; position: absolute; left: 0; top: .18em; bottom: .18em; width: 5px; border-radius: 5px; background: #E62243;
}

/* Gallery */
.svc-tour-gallery-grid img, .svc-tour-featured-image img { border-radius: 14px !important; }
.svc-tour-gallery-grid { gap: 14px !important; }

/* Tabs -> clean underline nav */
.svc-tour-tabs .svc-tabs-nav { border-bottom: 2px solid #F0F0F1 !important; gap: 6px !important; }
.svc-tour-tabs .svc-tabs-nav li {
    border: none !important; background: none !important; border-radius: 0 !important;
    padding: 12px 6px !important; margin-bottom: -2px !important;
    font-weight: 800 !important; color: #9098A2 !important; border-bottom: 3px solid transparent !important;
}
.svc-tour-tabs .svc-tabs-nav li.active { color: #E62243 !important; border-bottom-color: #E62243 !important; }

/* Detail items -> hairline cards with red icon chips */
.svc-details-grid { gap: 14px !important; }
.svc-detail-item {
    background: #fff !important; border: 1px solid #F0F0F1 !important; border-radius: 14px !important;
    box-shadow: none !important; padding: 16px 18px !important;
}
.svc-detail-icon, .svc-detail-item .svc-detail-icon {
    background: #FDECEF !important; color: #E62243 !important; border-radius: 12px !important;
}
.svc-detail-content label { color: #9098A2 !important; text-transform: uppercase; letter-spacing: .6px; font-weight: 800 !important; font-size: 10.5px !important; }
.svc-detail-content span { color: #1C1C1E !important; font-weight: 700 !important; }

/* Itinerary timeline */
.svc-itinerary-timeline { border-left: 2px solid #F0F0F1 !important; }
.svc-timeline-marker {
    background: #E62243 !important; color: #fff !important; font-weight: 800 !important;
    box-shadow: 0 0 0 5px #FDECEF !important;
}
.svc-timeline-content {
    background: #fff !important; border: 1px solid #F0F0F1 !important; border-radius: 14px !important; box-shadow: none !important;
}
.svc-timeline-title { font-weight: 800 !important; color: #1C1C1E !important; }

/* Includes / excludes */
.svc-ie-box, .svc-notes-box {
    background: #fff !important; border: 1px solid #F0F0F1 !important; border-radius: 16px !important;
}
.svc-includes-box .svc-ie-title { color: #1E7A4B !important; }
.svc-excludes-box .svc-ie-title { color: #E62243 !important; }
.svc-ie-list li .dashicons-yes { color: #1E7A4B !important; }
.svc-ie-list li .dashicons-no-alt { color: #E62243 !important; }

/* Premium CTA + disclaimer */
.svc-premium-cta-card {
    background: #12314F !important; color: #fff !important; border-radius: 20px !important; border: none !important;
}
.svc-premium-cta-card h3 { color: #fff !important; }
.svc-cta-visual .dashicons { color: #FF8494 !important; }
.svc-tour-disclaimer { background: #F5F6F7 !important; border: 1px solid #F0F0F1 !important; border-radius: 16px !important; }

/* Sticky booking card */
.svc-tour-sidebar { }
.svc-book-card { position: sticky; top: 96px; border: 1px solid #F0F0F1 !important; border-radius: 18px !important; }
.svc-price-label { color: #9098A2 !important; text-transform: uppercase; letter-spacing: .6px; font-weight: 800 !important; font-size: 10.5px !important; }
.svc-price-amount { color: #E62243 !important; font-weight: 800 !important; }
.svc-book-note { color: #9098A2 !important; }

/* Related tours heading */
.svc-related-tours h3 { font-weight: 800 !important; color: #1C1C1E !important; }

/* ============================================================
   THEME MATCH: Lake Manyara — CTA components (bespoke)
   ============================================================ */

/* ---- Tour sidebar: enquiry panel ---- */
.svc-enquire-panel {
    position: sticky; top: 96px;
    background: #fff; border: 1px solid #EDECEE; border-radius: 18px; overflow: hidden;
    box-shadow: 0 22px 48px -30px rgba(0,0,0,.5);
}
.svc-enquire-top { background: #FDECEF; padding: 22px 24px 20px; border-bottom: 1px solid #F6D8DE; }
.svc-enquire-eyebrow { display:block; text-transform: uppercase; letter-spacing: 1.2px; font-size: 10.5px; font-weight: 800; color: #C23; margin-bottom: 4px; }
.svc-enquire-price { display:block; font-size: 30px; font-weight: 800; color: #E62243; line-height: 1.05; }
.svc-enquire-dur { display:block; margin-top: 4px; font-size: 13px; font-weight: 700; color: #56606C; }
.svc-enquire-op { display:flex; align-items:center; gap: 12px; padding: 16px 24px; border-bottom: 1px solid #F0F0F1; }
.svc-enquire-op-logo { max-height: 40px; max-width: 84px; object-fit: contain; }
.svc-enquire-op-txt { display:flex; flex-direction: column; line-height: 1.2; }
.svc-enquire-op .svc-op-prefix { font-size: 11px; text-transform: uppercase; letter-spacing: .6px; font-weight: 800; color: #9098A2; }
.svc-enquire-op .svc-op-name { font-weight: 800; color: #1C1C1E; text-decoration: none; }
.svc-enquire-op .svc-op-name:hover { color: #E62243; }
.svc-enquire-perks { list-style: none; margin: 0; padding: 16px 24px 6px; }
.svc-enquire-perks li { display:flex; align-items:center; gap: 9px; font-size: 14px; font-weight: 600; color: #3B4149; margin-bottom: 10px; }
.svc-enquire-perks .dashicons { color: #1E7A4B; font-size: 18px; width:18px; height:18px; }
.svc-enquire-panel .svc-button-block { margin: 6px 24px 12px; width: calc(100% - 48px); }
.svc-enquire-note { padding: 0 24px 22px; margin: 0; font-size: 12.5px; color: #9098A2; text-align: center; }

/* ---- Below-tour CTA: navy panel ---- */
.svc-premium-cta-card {
    display: flex; align-items: center; gap: 30px; flex-wrap: wrap;
    background: #12314F !important; color: #fff !important;
    border-radius: 20px !important; border: none !important; padding: 34px 38px !important;
    background-image: radial-gradient(120% 140% at 100% 0%, rgba(230,34,67,.28) 0%, rgba(230,34,67,0) 55%) !important;
}
.svc-premium-cta-card .svc-cta-content { flex: 1 1 320px; }
.svc-cta-kicker { display:block; text-transform: uppercase; letter-spacing: 1.6px; font-size: 11px; font-weight: 900; color: #FF8494; margin-bottom: 8px; }
.svc-premium-cta-card h3 { color: #fff !important; font-size: 25px !important; margin: 0 0 8px; }
.svc-premium-cta-card p { color: rgba(255,255,255,.82) !important; margin: 0; font-weight: 500; }
.svc-premium-cta-card .svc-cta-action { flex: 0 0 auto; }

/* ---- Operator hero: enquiry card ---- */
.svc-operator-hero { padding: 108px 0 66px !important; }
.svc-hero-grid { display: grid; grid-template-columns: 1fr 360px; gap: 40px; align-items: end; }
.svc-enquiry-card {
    background: #fff !important; border-radius: 18px !important; padding: 26px 26px 24px !important;
    box-shadow: 0 30px 60px -30px rgba(0,0,0,.7) !important; color: #1C1C1E !important; text-align: left !important;
}
.svc-enquiry-kicker { display:block; text-transform: uppercase; letter-spacing: 1.4px; font-size: 10.5px; font-weight: 900; color: #E62243; margin-bottom: 8px; }
.svc-enquiry-card h3 { color: #1C1C1E !important; font-size: 21px !important; font-weight: 800 !important; margin: 0 0 8px !important; }
.svc-enquiry-card p { color: #56606C !important; font-size: 14px !important; font-weight: 500 !important; margin: 0 0 16px !important; }
.svc-enquiry-card .svc-button-block { width: 100%; }
.svc-enquiry-note { margin: 12px 0 0 !important; font-size: 12px !important; color: #9098A2 !important; text-align: center; }
@media (max-width: 900px){ .svc-hero-grid { grid-template-columns: 1fr; } }

/* ---- Operator bottom CTA: navy band ---- */
.svc-bottom-inquiry-section { background: #12314F; padding: 68px 0; }
.svc-bottom-inquiry-card {
    max-width: 720px; margin: 0 auto; text-align: center;
    background: none !important; box-shadow: none !important; border: none !important;
}
.svc-bottom-inquiry-card .svc-cta-kicker { color: #FF8494; }
.svc-bottom-inquiry-card h2 { color: #fff !important; font-size: 34px !important; font-weight: 800 !important; margin: 0 0 12px; }
.svc-bottom-inquiry-card p { color: rgba(255,255,255,.82) !important; font-size: 16px; margin: 0 0 26px; }
.svc-button-large { padding: 16px 34px !important; font-size: 16px !important; }

/* ============================================================
   THEME MATCH: Lake Manyara — OPERATOR HERO rebuild
   ============================================================ */
.svc-operator-hero { padding: 116px 0 62px !important; }
.svc-operator-hero .svc-hero-main { max-width: 760px; }

/* Breadcrumb: neutralise theme flex/uppercase, keep it a clean single line */
.svc-operator-hero .svc-breadcrumbs {
    display: block !important; position: static !important;
    text-transform: none !important; letter-spacing: normal !important;
    font-size: 13px !important; font-weight: 700 !important;
    color: rgba(255,255,255,.72) !important; margin: 0 0 18px !important;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.svc-operator-hero .svc-breadcrumbs a,
.svc-operator-hero .svc-breadcrumbs span {
    display: inline !important; position: static !important; float: none !important;
    text-transform: none !important; letter-spacing: normal !important; font-size: 13px !important;
    color: rgba(255,255,255,.72) !important; text-decoration: none; vertical-align: baseline;
}
.svc-operator-hero .svc-breadcrumbs a:hover { color: #fff !important; }
.svc-operator-hero .svc-breadcrumbs span { color: #fff !important; }

.svc-operator-hero .svc-hero-logo img { max-height: 46px; width: auto; margin-bottom: 6px; filter: drop-shadow(0 6px 14px rgba(0,0,0,.4)); }
.svc-operator-hero .svc-hero-title {
    color: #fff !important; font-weight: 800 !important;
    font-size: clamp(36px, 5vw, 62px) !important; line-height: 1.03 !important; margin: 8px 0 20px !important;
}
.svc-hero-eyebrow { color: #FF8494 !important; }

/* Chip row replaces the dark stat box */
.svc-hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-operator-hero .svc-hero-chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.26);
    color: #fff; padding: 9px 16px; border-radius: 999px;
    font-weight: 700; font-size: 13.5px; backdrop-filter: blur(4px);
}
.svc-operator-hero .svc-hero-chip .dashicons { font-size: 16px; width: 16px; height: 16px; }
.svc-operator-hero .svc-hero-chip-verified { background: rgba(46,148,90,.28); border-color: rgba(120,220,160,.5); }
.svc-operator-hero .svc-hero-chip-verified .dashicons { color: #8FF0BC; }
.svc-operator-hero .svc-hero-chip-premium { background: rgba(230,34,67,.26); border-color: rgba(255,140,158,.55); }
.svc-operator-hero .svc-hero-chip-premium .dashicons { color: #FFB3BE; }

/* Retire the old stock stat box if it ever renders */
.svc-operator-hero .svc-hero-stats-integrated,
.svc-operator-hero .svc-hero-stat { background: none !important; border: none !important; padding: 0 !important; }

/* ============================================================
   THEME MATCH: Lake Manyara — enquiry card RESHAPE (red-header)
   ============================================================ */
.svc-enquiry-card {
    background: #fff !important;
    border-radius: 14px !important;
    padding: 0 !important;
    overflow: hidden;
    box-shadow: 0 34px 66px -30px rgba(0,0,0,.72) !important;
    text-align: left !important;
}
.svc-enquiry-head {
    display: flex; align-items: center; gap: 9px;
    background: #E62243; color: #fff; padding: 14px 22px;
}
.svc-enquiry-head > .dashicons { font-size: 18px; width: 18px; height: 18px; }
.svc-enquiry-head-label { text-transform: uppercase; letter-spacing: 1.6px; font-weight: 900; font-size: 12px; }
.svc-enquiry-head-open {
    margin-left: auto; display: inline-flex; align-items: center; gap: 6px;
    font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
    background: rgba(255,255,255,.18); padding: 4px 10px; border-radius: 999px;
}
.svc-enquiry-head-open::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #7CF0AE; box-shadow: 0 0 0 3px rgba(124,240,174,.3); }
.svc-enquiry-body { padding: 24px 26px; }
.svc-enquiry-body h3 { color: #1C1C1E !important; font-size: 21px !important; font-weight: 800 !important; margin: 0 0 8px !important; }
.svc-enquiry-body p { color: #56606C !important; font-size: 14px !important; font-weight: 500 !important; margin: 0 0 18px !important; }
.svc-enquiry-body .svc-button-block { width: 100%; }
.svc-enquiry-note { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 14px 0 0 !important; font-size: 12px !important; color: #9098A2 !important; text-align: center; }
.svc-enquiry-note .dashicons { font-size: 14px; width: 14px; height: 14px; }

/* ============================================================
   THEME MATCH: Lake Manyara — OPERATOR HERO OVERHAUL
   Bottom-anchored title + overlapping horizontal action bar
   ============================================================ */
.svc-operator-hero {
    padding: 0 !important;
    min-height: 62vh;
    display: flex;
}
.svc-operator-hero .svc-container {
    width: 100%;
    display: flex; flex-direction: column;
    padding-top: 120px; padding-bottom: 92px;   /* clear theme nav + leave room for the bar */
}
.svc-operator-hero .svc-breadcrumbs { margin: 0 0 0 !important; }
.svc-hero-bottom { margin-top: auto; max-width: 860px; }
.svc-hero-bottom .svc-hero-eyebrow { margin-bottom: 12px; }
.svc-operator-hero .svc-hero-title { margin: 0 0 20px !important; }
.svc-hero-bottom .svc-hero-chips { margin-top: 4px; }

/* Overlapping operator action bar */
.svc-opbar-wrap { position: relative; z-index: 6; margin-top: -56px; margin-bottom: 30px; }
.svc-opbar {
    display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
    background: #fff; border: 1px solid #EDECEE; border-radius: 16px;
    box-shadow: 0 32px 62px -34px rgba(0,0,0,.5);
    padding: 18px 24px;
}
.svc-opbar-id { display: flex; align-items: center; gap: 16px; }
.svc-opbar-logo {
    display: inline-flex; align-items: center; justify-content: center;
    width: 56px; height: 56px; border-radius: 14px; background: #F5F6F7; overflow: hidden; flex: 0 0 auto;
    border: 1px solid #F0F0F1;
}
.svc-opbar-logo img { max-width: 46px; max-height: 46px; object-fit: contain; }
.svc-opbar-logo--mono { background: #12314F; color: #fff; font-weight: 800; font-size: 24px; border: none; }
.svc-opbar-idtext { display: flex; flex-direction: column; line-height: 1.3; }
.svc-opbar-idtext strong { font-size: 16px; font-weight: 800; color: #1C1C1E; }
.svc-opbar-idtext span { font-size: 13px; font-weight: 600; color: #56606C; }
.svc-opbar-cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.svc-opbar-note { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: #9098A2; }
.svc-opbar-note .dashicons { font-size: 15px; width: 15px; height: 15px; color: #E62243; }
.svc-opbar-cta .svc-button { white-space: nowrap; }
@media (max-width: 720px) {
    .svc-opbar { flex-direction: column; align-items: stretch; }
    .svc-opbar-cta { justify-content: space-between; }
    .svc-opbar-cta .svc-button { flex: 1 1 auto; text-align: center; }
}

/* ===== Manyara tour card: title overlaid on image ===== */
.svc-card-overlay { display:flex; flex-direction:column; }
.svc-card-overlay .at-tour-img { position:relative; height:360px; }
.svc-card-overlay .at-tour-img img { width:100%; height:100%; object-fit:cover; }
.svc-card-overlaytext { position:absolute; left:0; right:0; bottom:0; padding:20px 18px 16px; background:linear-gradient(180deg, rgba(18,49,79,0) 0%, rgba(18,49,79,.92) 82%); color:#fff; z-index:2; }
.svc-card-overlay .svc-cat-badge { position:static; display:inline-block; margin-bottom:10px; }
.svc-ov-dur { display:block; font-size:11.5px; font-weight:800; text-transform:uppercase; letter-spacing:1.2px; color:#FFC7CF; margin-bottom:4px; }
.svc-card-overlaytext h3 { color:#fff !important; font-size:20px !important; margin:0; line-height:1.18; }
.svc-ov-op { display:block; margin-top:8px; font-size:12.5px; color:rgba(255,255,255,.82); font-weight:600; }
.svc-card-overlay .at-tour-foot { margin-top:auto; }

/* ===== Manyara operator filter: red top-bar card ===== */
.svc-sidebar-filters:not(.svc-filters-compact) { border-top: 5px solid #E62243 !important; border-radius: 14px !important; }
.svc-sidebar-filters:not(.svc-filters-compact) .svc-filter-title { color: #E62243 !important; }


/* ===== Operator card: monogram fallback when no logo is set ===== */
.svc-card-branding .svc-operator-logo--mono {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #12314F;
    color: #fff;
    font-weight: 800;
    font-size: 34px;
    letter-spacing: .02em;
    line-height: 1;
    user-select: none;
}
