
.sv-breadcrumb-wrap {
    background-color: #f6f2ee;
    border-bottom: 1px solid rgba(144, 113, 85, 0.15);
    padding: 14px 0;
    font-size: 0.88rem;
}
.sv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    color: var(--color-text-muted);
}
.sv-breadcrumb a {
    color: var(--color-text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.sv-breadcrumb a:hover {
    color: var(--color-primary);
}
.sv-breadcrumb .sep {
    color: rgba(144, 113, 85, 0.35);
    font-size: 0.72rem;
}
.sv-breadcrumb .sep i {
    transition: transform 0.2s ease;
}
html[dir="rtl"] .sv-breadcrumb .sep i {
    transform: scaleX(-1);
}
.sv-breadcrumb .current {
    color: var(--color-primary);
    font-weight: 700;
}

/* ── Hero Section ── */
.sv-hero-section {
    position: relative;
    background: linear-gradient(135deg, #112012 0%, #1c321e 50%, #0d1a0e 100%);
    color: #ffffff;
    padding: 64px 0 76px;
    overflow: hidden;
}
.sv-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

/* Hero Info */
.sv-hero-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(186, 128, 92, 0.14);
    border: 1px solid rgba(186, 128, 92, 0.35);
    border-radius: 9999px;
    color: #e9b395;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}
.sv-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}
.sv-hero-title span.accent {
    color: #e9b395;
    font-style: normal;
}
.sv-hero-lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 28px;
    max-width: 620px;
}

/* Hero Badges / Chips */
.sv-meta-chips {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}
.sv-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    font-size: 0.86rem;
    color: #ffffff;
    backdrop-filter: blur(8px);
}
.sv-chip i {
    color: #e9b395;
    font-size: 1rem;
}
.sv-chip-price {
    background: linear-gradient(135deg, rgba(186, 128, 92, 0.22), rgba(186, 128, 92, 0.18));
    border-color: rgba(186, 128, 92, 0.45);
    font-weight: 700;
}
.sv-chip-price .current-price {
    color: #ffdcc6;
    font-size: 1.05rem;
}
.sv-chip-price .old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.84rem;
    margin-left: 6px;
}
.sv-chip-price .discount-badge {
    background: #ba805c;
    color: #ffffff;
    padding: 2px 7px;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    margin-left: 6px;
}

/* Hero CTAs */
.sv-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-sv-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #ba805c 0%, #a96a45 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.96rem;
    box-shadow: 0 8px 24px rgba(186, 128, 92, 0.35);
    transition: all 0.25s ease;
}
.btn-sv-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(186, 128, 92, 0.45);
    background: linear-gradient(135deg, #c98a60 0%, #a96a45 100%);
    color: #ffffff;
}
.btn-sv-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 9999px;
    background: rgba(37, 211, 102, 0.16);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.94rem;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}
.btn-sv-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
}
.btn-sv-whatsapp i {
    font-size: 1.15rem;
}

/* Hero Media Card */
.sv-hero-media-wrap {
    position: relative;
}
.sv-hero-media-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(186, 128, 92, 0.28);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.04);
}
.sv-hero-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}
.sv-hero-media-card:hover .sv-hero-main-img {
    transform: scale(1.03);
}
.sv-hero-media-badge {
    position: absolute;
    bottom: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(13, 26, 14, 0.85);
    border: 1px solid rgba(186, 128, 92, 0.35);
    backdrop-filter: blur(12px);
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #ffffff;
}
.sv-hero-media-badge i {
    color: #e9b395;
}

/* Gallery Thumbnails */
.sv-gallery-row {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
}
.sv-gallery-thumb {
    width: 76px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.22s ease;
    background: rgba(255, 255, 255, 0.06);
}
.sv-gallery-thumb.active,
.sv-gallery-thumb:hover {
    border-color: #ba805c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(186, 128, 92, 0.35);
}
.sv-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Value Pillars Bar ── */
.sv-pillars-bar {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(144, 113, 85, 0.15);
    padding: 24px 0;
    box-shadow: 0 4px 16px rgba(42, 32, 25, 0.04);
}
.sv-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.sv-pillar-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 12px;
}
.sv-pillar-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(69, 95, 58, 0.08);
    border: 1px solid rgba(69, 95, 58, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.15rem;
    flex-shrink: 0;
}
.sv-pillar-text strong {
    display: block;
    font-size: 0.92rem;
    color: var(--color-text-title);
    line-height: 1.25;
}
.sv-pillar-text span {
    font-size: 0.78rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

/* ── Main Layout: Content + Sticky Sidebar ── */
.sv-main-layout-section {
    padding: 60px 0 90px;
    background-color: var(--color-bg-body);
}
.sv-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: flex-start;
}

/* Content Container Card */
.sv-content-card {
    background: #ffffff;
    border: 1px solid rgba(144, 113, 85, 0.15);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 6px 24px rgba(42, 32, 25, 0.04);
}

/* Mobile Table of Contents Dropdown */
.sv-mobile-toc-box {
    display: none;
    background: #faf7f4;
    border: 1px solid rgba(186, 128, 92, 0.35);
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 30px;
}
.sv-mobile-toc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-text-title);
}
.sv-mobile-toc-header i.fa-list-ol {
    color: #ba805c;
    margin-inline-end: 8px;
}
.sv-mobile-toc-list {
    display: none;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(144, 113, 85, 0.15);
}

/* Editorial Content Styling */
.sv-article-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #3b3028;
}
.sv-article-body h2.content-anchor-heading {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a2818;
    margin: 38px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(186, 128, 92, 0.3);
    position: relative;
    scroll-margin-top: 110px;
}
.sv-article-body h2.content-anchor-heading::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 48px;
    height: 2px;
    background: #ba805c;
}
html[dir="ltr"] .sv-article-body h2.content-anchor-heading::before {
    right: auto;
    left: 0;
}
.sv-article-body h3.content-anchor-heading {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 28px 0 12px;
    scroll-margin-top: 110px;
}
.sv-article-body p {
    margin-bottom: 20px;
}
.sv-article-body ul,
.sv-article-body ol {
    margin: 16px 0 24px;
    padding-right: 24px;
}
html[dir="ltr"] .sv-article-body ul,
html[dir="ltr"] .sv-article-body ol {
    padding-right: 0;
    padding-left: 24px;
}
.sv-article-body ul li {
    position: relative;
    margin-bottom: 10px;
    list-style: disc;
}
.sv-article-body ol li {
    margin-bottom: 10px;
    list-style: decimal;
}
.sv-article-body blockquote {
    margin: 28px 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(69, 95, 58, 0.06), rgba(186, 128, 92, 0.08));
    border-right: 4px solid #ba805c;
    border-radius: 12px;
    font-style: normal;
    color: #243522;
}
html[dir="ltr"] .sv-article-body blockquote {
    border-right: none;
    border-left: 4px solid #ba805c;
}
.sv-article-body img {
    border-radius: 16px;
    margin: 24px 0;
    max-width: 100%;
    height: auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.sv-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
}
.sv-article-body th,
.sv-article-body td {
    padding: 12px 16px;
    border: 1px solid rgba(144, 113, 85, 0.18);
}
.sv-article-body th {
    background: #f4eee8;
    font-weight: 700;
    color: var(--color-primary);
}

/* ── Service FAQs Section ── */
.sv-faqs-section {
    margin-top: 50px;
    padding-top: 36px;
    border-top: 1px solid rgba(144, 113, 85, 0.15);
}
.sv-section-header {
    margin-bottom: 24px;
}
.sv-section-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2818;
    margin-bottom: 6px;
}
.sv-section-subtitle {
    font-size: 0.92rem;
    color: var(--color-text-muted);
}
.sv-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.sv-faq-card {
    background: #faf7f4;
    border: 1px solid rgba(144, 113, 85, 0.18);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.sv-faq-card.active {
    border-color: #ba805c;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(69, 95, 58, 0.06);
}
.sv-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    color: #1a2818;
}
.sv-faq-toggle-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(69, 95, 58, 0.08);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.sv-faq-card.active .sv-faq-toggle-icon {
    transform: rotate(180deg);
    background: #ba805c;
    color: #ffffff;
}
.sv-faq-answer {
    padding: 0 22px 20px;
    color: #55483f;
    font-size: 0.95rem;
    line-height: 1.7;
    display: none;
}
.sv-faq-card.active .sv-faq-answer {
    display: block;
}

/* ── Content Booking Callout ── */
.sv-content-booking-banner {
    margin-top: 48px;
    padding: 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, #112012 0%, #1e3620 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 16px 36px rgba(17, 32, 18, 0.25);
    border: 1px solid rgba(186, 128, 92, 0.3);
}
.sv-cbb-text h4 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}
.sv-cbb-text p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ── Sticky Sidebar ── */
.sv-sidebar-col {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Sidebar Widget Cards */
.sv-sidebar-widget {
    background: #ffffff;
    border: 1px solid rgba(144, 113, 85, 0.16);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 4px 18px rgba(42, 32, 25, 0.04);
}
.sv-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(144, 113, 85, 0.14);
    margin-bottom: 18px;
}
.sv-widget-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(186, 128, 92, 0.14);
    color: #8c5b3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}
.sv-widget-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2818;
}

/* Table of Contents Widget */
.sv-toc-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sv-toc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.88rem;
    color: #55483f;
    line-height: 1.4;
    transition: all 0.2s ease;
    text-decoration: none;
    position: relative;
}
.sv-toc-link.level-3 {
    padding-right: 24px;
    font-size: 0.82rem;
    opacity: 0.88;
}
html[dir="ltr"] .sv-toc-link.level-3 {
    padding-right: 12px;
    padding-left: 24px;
}
.sv-toc-link .toc-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(144, 113, 85, 0.4);
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.sv-toc-link:hover {
    color: var(--color-primary);
    background: rgba(69, 95, 58, 0.05);
}
.sv-toc-link:hover .toc-bullet {
    background: var(--color-primary);
    transform: scale(1.3);
}
.sv-toc-link.active {
    color: var(--color-primary);
    font-weight: 700;
    background: rgba(69, 95, 58, 0.08);
}
.sv-toc-link.active .toc-bullet {
    background: #ba805c;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 8px rgba(186, 128, 92, 0.6);
}

/* Quick Summary & Booking Widget */
.sv-booking-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}
.sv-price-huge {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-primary);
}
.sv-price-old {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--color-text-muted);
}
.sv-price-duration {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sv-includes-list {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sv-includes-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #4a3e37;
}
.sv-includes-item i {
    color: #455f3a;
    font-size: 0.9rem;
}

.btn-sidebar-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 9999px;
    background: linear-gradient(135deg, #ba805c, #a96a45);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.94rem;
    box-shadow: 0 6px 18px rgba(186, 128, 92, 0.3);
    margin-bottom: 10px;
    transition: all 0.25s ease;
}
.btn-sidebar-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(186, 128, 92, 0.4);
    color: #ffffff;
}
.btn-sidebar-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    border-radius: 9999px;
    background: #faf7f4;
    border: 1px solid rgba(144, 113, 85, 0.22);
    color: var(--color-text-title);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.22s ease;
}
.btn-sidebar-call:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: #ffffff;
}

/* Working Hours Summary in Widget */
.sv-hours-box {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px dashed rgba(144, 113, 85, 0.18);
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.sv-hours-box i {
    color: #ba805c;
}
.btn-sidebar-call.btn-sidebar-wa {
    background: #25d366;
    color: #ffffff;
    border-color: #25d366;
    margin-bottom: 8px;
}
.sv-category-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sv-category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: #faf7f4;
    border-radius: 10px;
    font-size: 0.86rem;
    color: #4a3e37;
    border: 1px solid rgba(144, 113, 85, 0.1);
    transition: all 0.2s ease;
    text-decoration: none;
}
.sv-category-link:hover {
    border-color: rgba(186, 128, 92, 0.4);
    color: var(--color-primary);
}
.sv-category-link span {
    font-weight: 600;
}
.sv-category-link i {
    font-size: 0.75rem;
    color: #ba805c;
}
html[dir="rtl"] .sv-hours-box {
    direction: rtl;
    text-align: right;
}

/* ── Related Services Section ── */
.sv-related-section {
    padding: 80px 0 100px;
    background-color: #ffffff;
    border-top: 1px solid rgba(144, 113, 85, 0.15);
}
.sv-related-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}
.sv-related-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 14px;
    background: rgba(69, 95, 58, 0.08);
    border: 1px solid rgba(69, 95, 58, 0.2);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 14px;
}
.sv-related-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.2vw, 2.7rem);
    font-weight: 700;
    color: #1a2818;
    margin-bottom: 10px;
}
.sv-related-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}
.sv-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.sv-related-section .services-cards-grid {
    margin-bottom: 0;
}
.sv-card-link {
    text-decoration: none;
    color: inherit;
}
.sv-card-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Related Card */
.sv-related-card {
    background: #faf7f4;
    border: 1px solid rgba(144, 113, 85, 0.16);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.sv-related-card:hover {
    transform: translateY(-6px);
    border-color: rgba(69, 95, 58, 0.35);
    box-shadow: 0 16px 36px rgba(42, 32, 25, 0.08);
}
.sv-rc-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #e9e3dc;
}
.sv-rc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.sv-related-card:hover .sv-rc-img {
    transform: scale(1.06);
}
.sv-rc-category {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 9999px;
    background: rgba(13, 26, 14, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.74rem;
    font-weight: 700;
    backdrop-filter: blur(8px);
}
html[dir="ltr"] .sv-rc-category {
    right: auto;
    left: 12px;
}
.sv-rc-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.sv-rc-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a2818;
    margin-bottom: 8px;
    line-height: 1.35;
}
.sv-rc-excerpt {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.sv-rc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid rgba(144, 113, 85, 0.12);
}
.sv-rc-price {
    font-weight: 800;
    color: var(--color-primary);
    font-size: 1.05rem;
}
.sv-rc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ba805c;
    font-weight: 700;
    font-size: 0.86rem;
    transition: gap 0.2s ease, color 0.2s ease;
}
.sv-rc-link:hover {
    color: #8c5b3c;
    gap: 10px;
}

/* ── Responsive Queries ── */
@media (max-width: 1080px) {
    .sv-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .sv-hero-media-card {
        max-width: 580px;
        margin: 0 auto;
    }
    .sv-layout-grid {
        grid-template-columns: 1fr;
    }
    .sv-sidebar-col {
        position: static;
        order: 2;
    }
    .sv-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .sv-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sv-hero-section {
        padding: 40px 0 54px;
    }
    .sv-content-card {
        padding: 24px 18px;
    }
    .sv-mobile-toc-box {
        display: block;
    }
    .sv-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sv-pillar-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .sv-content-booking-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .sv-content-booking-banner .btn-sv-primary {
        width: 100%;
    }
    .sv-related-grid {
        grid-template-columns: 1fr;
    }
}

/* Rtl */
html:lang(ar){
    .sv-hero-title,
.sv-hero-lead {
    text-align: right;
}

.sv-pillar-text strong,
.sv-pillar-text span {
    text-align: right;
}

.sv-mobile-toc-header {
    text-align: right;
}

.sv-article-body {
    text-align: right;
}

.sv-article-body p,
.sv-article-body li {
    text-align: right;
}

.sv-section-title,
.sv-section-subtitle {
    text-align: right;
}

.sv-faq-question,
.sv-faq-answer {
    text-align: right;
}

.sv-cbb-text h4,
.sv-cbb-text p {
    text-align: right;
}

.sv-widget-title {
    text-align: right;
}

.sv-toc-link {
    text-align: right;
}

.sv-price-duration {
    text-align: right;
}

.sv-includes-item {
    text-align: right;
}

.sv-related-header {
    text-align: center;
}

.sv-related-title,
.sv-related-desc {
    text-align: center;
}

.sv-rc-title,
.sv-rc-excerpt {
    text-align: right;
}

.sv-cbb-text {
    text-align: right;
}

html[dir="ltr"] {
    .sv-hero-title,
    .sv-hero-lead,
    .sv-pillar-text strong,
    .sv-pillar-text span,
    .sv-mobile-toc-header,
    .sv-article-body,
    .sv-article-body p,
    .sv-article-body li,
    .sv-section-title,
    .sv-section-subtitle,
    .sv-faq-question,
    .sv-faq-answer,
    .sv-cbb-text,
    .sv-cbb-text h4,
    .sv-cbb-text p,
    .sv-widget-title,
    .sv-toc-link,
    .sv-price-duration,
    .sv-includes-item,
    .sv-related-title,
    .sv-related-desc,
    .sv-rc-title,
    .sv-rc-excerpt {
        text-align: left;
    }

    .sv-hero-glow-1 {
        left: auto;
        right: -80px;
    }

    .sv-hero-glow-2 {
        right: auto;
        left: 5%;
    }

    .sv-hero-media-badge {
        right: auto;
        left: 18px;
    }

    .sv-chip-price .old-price {
        margin-left: 0;
        margin-right: 6px;
    }

    .sv-chip-price .discount-badge {
        margin-left: 0;
        margin-right: 6px;
    }
}
}
.sv-hero-section {
    text-align: right;
}

html[dir="ltr"] .sv-hero-section {
    text-align: left;
}