/**
 * Restorative Health Solutions — Custom Styles
 * Full-width sections, healthcare branding, responsive layout
 */

:root {
    --rhs-primary: #1a3d32;
    --rhs-accent: #5a7d6a;
    --rhs-gold: #c9a96e;
    --rhs-light: #f7f9f6;
    --rhs-dark: #0f2820;
    --primary-color: #1a3d32;
    --accent-color: #5a7d6a;
    --bg-color: #fafbf9;
}

/* Layout — single scroll, no footer white gap / overscroll bounce */
html {
    max-width: 100%;
    height: auto;
    overflow-x: hidden;
    overscroll-behavior-y: none;
}

body {
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-height: 0;
}

/* Magic cursor must not affect document height */
.cb-cursor {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 150;
}

/* Swiper loop clones must stay clipped inside their section */
.rhs-services-home-slider,
.rhs-testimonial-slider,
.rhs-gallery-slider,
.rhs-mission-slider {
    overflow: hidden;
}

.rhs-about-slider-wrap,
.rhs-testimonial-slider-wrap,
.rhs-gallery-slider-wrap {
    overflow: hidden;
}

/* Full-width container */
.rhs-container {
    max-width: 1400px;
    padding-left: clamp(20px, 4vw, 60px);
    padding-right: clamp(20px, 4vw, 60px);
    margin: 0 auto;
}

/* Header — full width edge-to-edge (override template pill header) */
header.main-header.rhs-header {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    position: fixed !important;
    margin: 0 !important;
    padding: 0 !important;
}

header.main-header.rhs-header .header-sticky {
    max-width: 100% !important;
    width: 100% !important;
    border-radius: 0 !important;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(15, 40, 32, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin: 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
}

header.main-header.rhs-header .header-sticky.hide {
    transform: translateY(-100%);
}

header.main-header.rhs-header .header-sticky.active {
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    background: rgba(15, 40, 32, 0.98);
}

header.main-header.rhs-header .navbar {
    padding: 12px 0;
    width: 100%;
}

header.main-header.rhs-header .container-fluid.rhs-container,
header.main-header.rhs-header .rhs-header-inner {
    max-width: 100%;
    width: 100%;
}


.rhs-header .navbar-brand img {
    max-height: 90px;
    width: auto;
    filter: none;
    display: block;
}

.rhs-header .header-sticky.active .navbar-brand img,
.rhs-header .main-header .navbar-brand img {
    max-height: 48px;
}

.rhs-header .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.rhs-header .nav-link:hover,
.rhs-header .nav-link.active {
    color: var(--rhs-gold) !important;
}

/* Services nav dropdown */
.rhs-header .rhs-nav-dropdown {
    position: relative;
}

.rhs-header .rhs-nav-dropdown > a {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
}

.rhs-header .main-menu ul li.rhs-nav-dropdown.submenu > a::after {
    content: '\f078' !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 11px !important;
    margin-left: 6px !important;
    color: var(--rhs-gold);
    transition: transform 0.3s ease;
}

.rhs-header .main-menu ul li.rhs-nav-dropdown.submenu:hover > a::after {
    transform: rotate(180deg);
}

/* Invisible hover bridge so cursor can reach dropdown */
.rhs-header .main-menu ul li.rhs-nav-dropdown::after {
    content: '';
    position: absolute;
    left: -20px;
    right: -20px;
    top: 100%;
    height: 22px;
    background: transparent;
    z-index: 100;
    display: none;
}

.rhs-header .main-menu ul li.rhs-nav-dropdown:hover::after {
    display: block;
}

.rhs-header .main-menu ul li.rhs-nav-dropdown > ul {
    width: 280px !important;
    padding: 10px !important;
    margin-top: 0 !important;
    top: calc(100% + 6px) !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(6px) !important;
    transform-origin: top center !important;
    background: #0f2820 !important;
    border: 1px solid rgba(201, 169, 110, 0.28) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 200;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
}

.rhs-header .main-menu ul li.rhs-nav-dropdown > ul::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #0f2820;
    border-left: 1px solid rgba(201, 169, 110, 0.28);
    border-top: 1px solid rgba(201, 169, 110, 0.28);
    transform: translateX(-50%) rotate(45deg);
}

.rhs-header .main-menu ul li.rhs-nav-dropdown:hover > ul,
.rhs-header .main-menu ul li.rhs-nav-dropdown > ul:hover {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

.rhs-header .main-menu ul li.rhs-nav-dropdown > ul li {
    margin: 0 !important;
    padding: 0 !important;
}

.rhs-header .main-menu ul li.rhs-nav-dropdown > ul li a {
    display: block !important;
    position: relative;
    padding: 12px 14px 12px 28px !important;
    margin: 0 !important;
    border-radius: 12px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    background: transparent !important;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease !important;
}

.rhs-header .main-menu ul li.rhs-nav-dropdown > ul li a::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rhs-gold);
    transform: translateY(-50%);
    transition: background 0.25s ease;
}

.rhs-header .main-menu ul li.rhs-nav-dropdown > ul li a:hover {
    background: rgba(201, 169, 110, 0.12) !important;
    color: var(--rhs-gold) !important;
    transform: translateX(3px);
}

.rhs-header .main-menu ul li.rhs-nav-dropdown > ul li a:hover::before {
    background: #fff;
}

.rhs-header .navbar-toggle .slicknav_btn {
    background: var(--rhs-gold);
}

header.main-header.rhs-header .responsive-menu,
header.main-header.rhs-header .slicknav_menu {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
}

header.main-header.rhs-header .slicknav_nav {
    width: 100%;
}

/* Mobile menu — services submenu bullet points */
header.main-header.rhs-header .slicknav_menu ul ul li a {
    position: relative;
    padding-left: 34px !important;
}

header.main-header.rhs-header .slicknav_menu ul ul li a::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rhs-gold);
    transform: translateY(-50%);
}

/* Mobile menu — keep text white on click / open / hover */
header.main-header.rhs-header .slicknav_nav a,
header.main-header.rhs-header .slicknav_nav .slicknav_row {
    color: #fff !important;
}

header.main-header.rhs-header .slicknav_nav a:hover,
header.main-header.rhs-header .slicknav_nav a:focus,
header.main-header.rhs-header .slicknav_nav a:active,
header.main-header.rhs-header .slicknav_nav .slicknav_row:hover,
header.main-header.rhs-header .slicknav_nav .slicknav_row:focus,
header.main-header.rhs-header .slicknav_nav .slicknav_row:active,
header.main-header.rhs-header .slicknav_nav li.slicknav_open > a,
header.main-header.rhs-header .slicknav_nav li.slicknav_open > .slicknav_row {
    color: #fff !important;
    background-color: transparent !important;
}

header.main-header.rhs-header .slicknav_arrow:after {
    color: var(--rhs-gold) !important;
}

header.main-header.rhs-header .slicknav_open > a .slicknav_arrow:after {
    color: var(--rhs-gold) !important;
}

/* Hero — full width edge-to-edge */
.rhs-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f2820;
    padding: 160px 0 100px;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    left: 0;
    right: 0;
}

.rhs-hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.rhs-hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
}

.rhs-hero .container-fluid.rhs-container,
.rhs-hero .rhs-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
}

.rhs-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(15, 40, 32, 0.88) 0%, rgba(26, 61, 50, 0.75) 50%, rgba(15, 40, 32, 0.6) 100%);
}

.rhs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 880px;
    width: 100%;
}

.rhs-hero-content .section-sub-title {
    color: var(--rhs-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
    line-height: 1.5;
}

.rhs-hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
    max-width: 100%;
}

.rhs-hero-content p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 680px;
}

.rhs-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.rhs-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.rhs-hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.rhs-hero-feature i {
    color: var(--rhs-gold);
    font-size: 18px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    flex-shrink: 0;
}

/* Section spacing — full width */
.rhs-section {
    padding: clamp(60px, 8vw, 100px) 0;
    width: 100%;
}

.rhs-section-light {
    background: var(--rhs-light);
}

.rhs-section-dark {
    background: var(--rhs-dark);
    color: #fff;
}

.rhs-section-accent {
    background: var(--rhs-primary);
    color: #fff;
}

/* Section titles */
.rhs-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.rhs-section-header .section-sub-title {
    color: var(--rhs-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
}

.rhs-section-dark .rhs-section-header .section-sub-title,
.rhs-section-accent .rhs-section-header .section-sub-title {
    color: var(--rhs-gold);
}

.rhs-section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--rhs-primary);
    margin-bottom: 16px;
}

.rhs-section-dark .rhs-section-header h2,
.rhs-section-accent .rhs-section-header h2 {
    color: #fff;
}

.rhs-section-header p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-color);
}

.rhs-section-dark .rhs-section-header p,
.rhs-section-accent .rhs-section-header p {
    color: rgba(255, 255, 255, 0.8);
}

/* About — Mission section (full width) */
.rhs-mission-section {
    padding: 40px 0 !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background:
        radial-gradient(ellipse at top right, rgba(201, 169, 110, 0.12) 0%, transparent 45%),
        radial-gradient(ellipse at bottom left, rgba(90, 125, 106, 0.1) 0%, transparent 40%),
        linear-gradient(180deg, #f7f9f6 0%, #eef3ef 100%);
    position: relative;
    overflow: hidden;
}

.rhs-mission-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
}

.rhs-mission-section .rhs-section-header {
    max-width: 760px;
}

.rhs-mission-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    align-items: stretch;
    width: 100%;
}

.rhs-mission-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: clamp(24px, 2.5vw, 32px);
    background: #fff;
    border: 1px solid rgba(26, 61, 50, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 32px rgba(26, 61, 50, 0.06);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.rhs-mission-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--rhs-primary), var(--rhs-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.rhs-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(26, 61, 50, 0.12);
    border-color: rgba(201, 169, 110, 0.35);
}

.rhs-mission-card:hover::before {
    transform: scaleX(1);
}

.rhs-mission-num {
    position: absolute;
    top: 16px;
    right: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1;
    color: rgba(26, 61, 50, 0.08);
    pointer-events: none;
}

.rhs-mission-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(26, 61, 50, 0.08);
    color: var(--rhs-primary);
    transition: background 0.35s ease, color 0.35s ease, transform 0.35s ease;
}

.rhs-mission-icon i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
}

.rhs-mission-card:hover .rhs-mission-icon {
    background: var(--rhs-primary);
    color: #fff;
    transform: scale(1.06);
}

.rhs-mission-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    font-weight: 600;
    color: var(--rhs-primary);
    margin: 0 0 12px;
    line-height: 1.25;
}

.rhs-mission-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-color);
}

.rhs-mission-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
}

.rhs-mission-pagination {
    display: none;
}

/* Mission — mobile slider */
@media (max-width: 991px) {
    .rhs-mission-section {
        padding: 32px 0 !important;
    }

    .rhs-mission-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rhs-mission-section .rhs-section-header {
        margin-bottom: 24px;
        text-align: center;
        max-width: 100%;
    }

    .rhs-mission-section .rhs-section-header .section-sub-title {
        font-size: 12px;
    }

    .rhs-mission-section .rhs-section-header h2 {
        font-size: clamp(1.65rem, 6.5vw, 2rem);
        line-height: 1.2;
    }

    .rhs-mission-section .rhs-section-header p {
        font-size: 15px;
        line-height: 1.65;
    }

    .rhs-mission-slider {
        overflow: hidden !important;
        padding-top: 10px;
        padding-bottom: 36px;
    }

    .rhs-mission-slider .rhs-mission-grid.swiper-wrapper {
        display: flex;
        align-items: stretch;
        gap: 0 !important;
        grid-template-columns: none;
        width: 100%;
    }

    .rhs-mission-slider .swiper-slide.rhs-mission-card {
        height: auto;
        flex-shrink: 0;
        box-sizing: border-box;
        width: 100%;
    }

    .rhs-mission-card:hover {
        transform: none;
    }

    .rhs-mission-card:hover .rhs-mission-icon {
        transform: none;
    }

    .rhs-mission-card {
        padding: 22px 20px;
        min-height: 220px;
    }

    .rhs-mission-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .rhs-mission-icon i {
        font-size: 18px;
    }

    .rhs-mission-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .rhs-mission-card p {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .rhs-mission-pagination {
        display: block;
        position: relative;
        bottom: auto !important;
        margin-top: 18px;
        text-align: center;
        line-height: 1;
    }

    .rhs-mission-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: rgba(26, 61, 50, 0.28);
        opacity: 1;
        transition: all 0.3s ease;
    }

    .rhs-mission-pagination .swiper-pagination-bullet-active {
        background: var(--rhs-gold);
        width: 20px;
        border-radius: 6px;
    }
}

@media (max-width: 575px) {
    .rhs-mission-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .rhs-mission-section {
        padding: 28px 0 !important;
    }

    .rhs-mission-section .rhs-section-header h2 {
        font-size: 1.52rem;
    }

    .rhs-mission-section .rhs-section-header p {
        font-size: 14px;
    }

    .rhs-mission-card {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .rhs-mission-num {
        font-size: 1.5rem;
        top: 14px;
        right: 14px;
    }
}

@media (min-width: 992px) {
    .rhs-mission-slider .rhs-mission-grid.swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: clamp(16px, 2vw, 24px);
        transform: none !important;
    }

    .rhs-mission-slider .swiper-slide {
        width: auto !important;
        margin: 0 !important;
    }

    .rhs-mission-pagination {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .rhs-mission-slider .rhs-mission-grid.swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Home — About Intro (full width, large images, 40px vertical padding) */
.rhs-section-about-intro {
    padding: 40px 0 !important;
    width: 100%;
}

.rhs-section-about-intro .rhs-about-intro-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
}

.rhs-about-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
}

/* About image */
.rhs-about-slider-wrap {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 61, 50, 0.15);
    background: var(--rhs-primary);
}

.rhs-about-slider-wrap .rhs-about-image {
    width: 100%;
    height: auto;
    display: block;
}

.rhs-about-intro-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.75rem, 3.2vw, 2.75rem);
    color: var(--rhs-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.rhs-about-intro-content .rhs-about-intro-subhead {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 600;
    color: var(--rhs-primary);
    margin: 22px 0 12px;
    line-height: 1.3;
}

.rhs-about-intro-content p {
    line-height: 1.75;
    margin-bottom: 12px;
}

.rhs-about-intro-content p:last-of-type {
    margin-bottom: 20px;
}

.rhs-about-intro-content .section-sub-title {
    margin-bottom: 10px;
}

.rhs-about-intro-content .btn-default,
.rhs-about-intro-content .rhs-btn-clean {
    width: auto !important;
    max-width: max-content;
    align-self: flex-start;
    flex: 0 0 auto;
}

/* Hero + About Intro — mobile responsive */
@media (max-width: 767px) {
    .rhs-hero {
        min-height: auto;
        padding: 130px 0 20px;
        background-position: center center;
    }

    .rhs-hero .rhs-hero-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rhs-hero-content {
        max-width: 100%;
    }

    .rhs-hero-content .section-sub-title {
        font-size: 11px;
        letter-spacing: 0.1em;
        margin-bottom: 12px;
        line-height: 1.45;
    }

    .rhs-hero-content h1 {
        font-size: clamp(1.85rem, 7.5vw, 2.35rem);
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .rhs-hero-content p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .rhs-hero-btns {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 26px;
        width: 100%;
    }

    .rhs-hero-btns .btn-default {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        min-height: 48px;
        padding: 11px 56px 11px 22px !important;
        font-size: 14px !important;
    }

    .rhs-hero-features {
        display: none !important;
    }

    .rhs-section-about-intro {
        padding: 32px 0 !important;
    }

    .rhs-section-about-intro .rhs-about-intro-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rhs-about-intro-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .rhs-about-slider-wrap {
        border-radius: 12px;
        box-shadow: 0 8px 28px rgba(26, 61, 50, 0.12);
    }

    .rhs-about-intro-content h2 {
        font-size: clamp(1.55rem, 6.5vw, 1.9rem);
        margin-bottom: 12px;
        line-height: 1.22;
    }

    .rhs-about-intro-content .section-sub-title {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .rhs-about-intro-content .rhs-about-intro-subhead {
        font-size: clamp(1.18rem, 5vw, 1.38rem);
        margin: 14px 0 10px;
    }

    .rhs-about-intro-content p {
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 10px;
    }

    .rhs-about-intro-content p:last-of-type {
        margin-bottom: 18px;
    }

    .rhs-about-intro-content .btn-default,
    .rhs-about-intro-content .rhs-btn-clean {
        width: auto !important;
        max-width: 100%;
        min-height: 46px;
        padding: 10px 52px 10px 20px !important;
        font-size: 14px !important;
    }

    .rhs-about-intro-content .btn-default::before,
    .rhs-about-intro-content .rhs-btn-clean::before {
        width: 34px !important;
        height: 34px !important;
        background-size: 11px auto !important;
    }
}

@media (max-width: 575px) {
    .rhs-hero {
        padding: 130px 0 20px;
    }

    .rhs-hero .rhs-hero-inner,
    .rhs-section-about-intro .rhs-about-intro-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .rhs-hero-content .section-sub-title {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .rhs-hero-content h1 {
        font-size: 1.72rem;
    }

    .rhs-hero-content p {
        font-size: 0.9rem;
    }

    .rhs-hero-btns {
        gap: 10px;
        margin-bottom: 22px;
    }

    .rhs-hero-btns .btn-default {
        min-height: 46px;
        padding: 10px 52px 10px 20px !important;
        font-size: 13px !important;
    }

    .rhs-hero-feature {
        font-size: 13px;
    }

    .rhs-section-about-intro {
        padding: 28px 0 !important;
    }

    .rhs-about-intro-grid {
        gap: 22px;
    }

    .rhs-about-slider-wrap {
        border-radius: 10px;
    }

    .rhs-about-intro-content h2 {
        font-size: 1.48rem;
    }

    .rhs-about-intro-content .rhs-about-intro-subhead {
        font-size: 1.15rem;
    }

    .rhs-about-intro-content p {
        font-size: 14px;
    }
}

@media (max-width: 390px) {
    .rhs-hero-content h1 {
        font-size: 1.58rem;
    }

    .rhs-hero-btns .btn-default {
        white-space: normal;
        line-height: 1.35;
    }
}

/* Laptop / mid-desktop: 1280px – 1440px */
@media (min-width: 1280px) and (max-width: 1440px) {
    .rhs-hero {
        min-height: auto;
        padding: 140px 0 72px;
    }

    .rhs-hero .rhs-hero-inner {
        padding-left: clamp(28px, 3.5vw, 48px);
        padding-right: clamp(28px, 3.5vw, 48px);
    }

    .rhs-hero-content {
        max-width: 720px;
    }

    .rhs-hero-content .section-sub-title {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .rhs-hero-content h1 {
        font-size: clamp(2.35rem, 3.2vw, 3.15rem);
        margin-bottom: 14px;
        line-height: 1.18;
    }

    .rhs-hero-content p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 24px;
        max-width: 560px;
    }

    .rhs-hero-btns {
        gap: 12px;
        margin-bottom: 28px;
    }

    .rhs-hero-features {
        gap: 18px 22px;
    }

    .rhs-hero-feature {
        font-size: 14px;
        gap: 10px;
    }

    .rhs-section-about-intro {
        padding: 40px 0 !important;
    }

    .rhs-section-about-intro .rhs-about-intro-inner {
        padding-left: clamp(28px, 3.5vw, 48px);
        padding-right: clamp(28px, 3.5vw, 48px);
    }

    .rhs-about-intro-grid {
        grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
        gap: clamp(32px, 3.5vw, 48px);
        align-items: center;
    }

    .rhs-about-slider-wrap {
        align-self: center;
        width: 100%;
    }

    .rhs-about-intro-content {
        align-self: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding-block: 8px;
    }

    .rhs-about-intro-content .btn-default {
        width: auto !important;
        align-self: flex-start;
        min-height: 46px;
        padding: 10px 54px 10px 20px !important;
        font-size: 14px !important;
    }

    .rhs-about-intro-content .btn-default::before {
        width: 32px !important;
        height: 32px !important;
        background-size: 11px auto !important;
    }

    .rhs-about-intro-content h2 {
        font-size: clamp(1.65rem, 2.2vw, 2.15rem);
        margin-bottom: 10px;
    }

    .rhs-about-intro-content .rhs-about-intro-subhead {
        font-size: clamp(1.2rem, 1.7vw, 1.45rem);
        margin: 14px 0 8px;
    }

    .rhs-about-intro-content p {
        font-size: 14.5px;
        line-height: 1.6;
        margin-bottom: 8px;
    }

    .rhs-about-intro-content p:last-of-type {
        margin-bottom: 4px;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) and (max-height: 850px) {
    .rhs-hero {
        padding: 200px 0 150px;
    }

    .rhs-hero-content h1 {
        font-size: 2.35rem;
    }

    .rhs-hero-content p {
        margin-bottom: 18px;
    }

    .rhs-hero-btns {
        margin-bottom: 20px;
    }
}

/* Home — Services (full width, premium cards) */
.rhs-section-services-home {
    padding: 40px 0 !important;
    width: 100%;
    background: linear-gradient(180deg, #f7f9f6 0%, #eef3ef 100%);
    position: relative;
    overflow: hidden;
}

.rhs-section-services-home::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.08);
    pointer-events: none;
}

.rhs-section-services-home::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(26, 61, 50, 0.05);
    pointer-events: none;
}

.rhs-services-home-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
    position: relative;
    z-index: 1;
}

.rhs-services-home-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: clamp(20px, 3vw, 28px);
    margin-bottom: clamp(28px, 4vw, 40px);
}

.rhs-services-home-head-text {
    max-width: 760px;
    margin: 0 auto;
}

.rhs-services-home-head-text .section-sub-title {
    color: var(--rhs-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.rhs-services-home-head-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--rhs-primary);
    margin-bottom: 12px;
}

.rhs-services-home-head-text p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-color);
    margin: 0;
}

.rhs-services-home-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.rhs-services-home-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 24px);
    width: 100%;
}

.rhs-services-home-pagination {
    display: none;
}

/* Services home — mobile slider */
@media (max-width: 991px) {
    .rhs-section-services-home {
        padding: 32px 0 !important;
    }

    .rhs-services-home-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rhs-services-home-head {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 24px;
        gap: 16px;
    }

    .rhs-services-home-head-text h2 {
        font-size: clamp(1.65rem, 6vw, 2.1rem);
        margin-bottom: 10px;
    }

    .rhs-services-home-head-text p {
        font-size: 15px;
        line-height: 1.65;
    }

    .rhs-services-home-head-btn {
        display: none !important;
    }

    .rhs-services-home-slider {
        overflow: hidden !important;
        padding: 0 0 0px;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .rhs-services-home-slider .rhs-services-home-grid.swiper-wrapper {
        display: flex;
        align-items: stretch;
        gap: 0 !important;
        grid-template-columns: none;
        width: 100%;
        box-sizing: border-box;
    }

    .rhs-services-home-slider .swiper-slide.rhs-service-premium {
        height: auto;
        flex-shrink: 0;
        box-sizing: border-box;
    }

    .rhs-services-home-slider .rhs-service-premium-link {
        height: 100%;
    }

    .rhs-services-home-slider .rhs-service-premium-media {
        height: clamp(200px, 48vw, 260px);
    }

    .rhs-services-home-slider .rhs-service-premium-body {
        padding: 18px 16px 20px;
    }

    .rhs-services-home-slider .rhs-service-premium-body h3 {
        font-size: 1.35rem;
        margin-bottom: 8px;
    }

    .rhs-services-home-slider .rhs-service-premium-body p {
        font-size: 13.5px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .rhs-services-home-pagination {
        display: block;
        bottom: 0 !important;
        position: relative;
        margin-top: 18px;
        text-align: center;
    }

    .rhs-services-home-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: rgba(26, 61, 50, 0.28);
        opacity: 1;
        transition: all 0.3s ease;
    }

    .rhs-services-home-pagination .swiper-pagination-bullet-active {
        background: var(--rhs-gold);
        width: 20px;
        border-radius: 6px;
    }

    .rhs-services-home-foot {
        display: block;
        text-align: center;
        margin-top: 8px;
        padding: 0;
    }

    .rhs-services-home-foot .btn-default {
        width: auto !important;
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .rhs-services-home-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .rhs-services-home-head {
        margin-bottom: 20px;
    }

    .rhs-services-home-head-text .section-sub-title {
        font-size: 12px;
    }

    .rhs-services-home-head-text h2 {
        font-size: 1.55rem;
    }

    .rhs-services-home-head-text p {
        font-size: 14px;
    }

    .rhs-services-home-slider .rhs-service-premium-media {
        height: 210px;
    }

    .rhs-services-home-slider .rhs-service-premium-num {
        top: 12px;
        left: 12px;
        font-size: 12px;
        padding: 5px 10px;
    }

    .rhs-services-home-slider .rhs-service-premium-icon {
        width: 42px;
        height: 42px;
        bottom: 12px;
        right: 12px;
        font-size: 16px;
    }

    .rhs-services-home-foot {
        padding: 0;
    }
}

@media (min-width: 992px) {
    .rhs-services-home-slider .rhs-services-home-grid.swiper-wrapper {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(16px, 2vw, 24px);
        transform: none !important;
    }

    .rhs-services-home-slider .swiper-slide {
        width: auto !important;
        margin: 0 !important;
    }

    .rhs-services-home-pagination {
        display: none !important;
    }
}

.rhs-service-premium {
    height: 100%;
}

.rhs-service-premium-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(26, 61, 50, 0.08);
    box-shadow: 0 8px 32px rgba(26, 61, 50, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.rhs-service-premium-link:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(26, 61, 50, 0.14);
    border-color: rgba(201, 169, 110, 0.45);
}

.rhs-service-premium-media {
    position: relative;
    height: clamp(220px, 22vw, 300px);
    overflow: hidden;
}

.rhs-service-premium-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rhs-service-premium-link:hover .rhs-service-premium-media img {
    transform: scale(1.08);
}

.rhs-service-premium-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 40, 32, 0.75) 0%, rgba(15, 40, 32, 0.15) 45%, transparent 100%);
    transition: opacity 0.35s ease;
}

.rhs-service-premium-num {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--rhs-gold);
    background: rgba(15, 40, 32, 0.85);
    backdrop-filter: blur(6px);
    padding: 6px 12px;
    border-radius: 30px;
    border: 1px solid rgba(201, 169, 110, 0.35);
    z-index: 2;
}

.rhs-service-premium-icon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--rhs-gold);
    color: var(--rhs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 2;
    transition: transform 0.35s ease, background 0.35s ease;
}

.rhs-service-premium-link:hover .rhs-service-premium-icon {
    transform: scale(1.08);
    background: #fff;
}

.rhs-service-premium-body {
    padding: clamp(20px, 2.5vw, 28px) clamp(18px, 2vw, 24px) clamp(22px, 2.5vw, 28px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rhs-service-premium-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    color: var(--rhs-primary);
    margin-bottom: 10px;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.rhs-service-premium-link:hover .rhs-service-premium-body h3 {
    color: var(--rhs-accent);
}

.rhs-service-premium-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 18px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rhs-service-premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    color: var(--rhs-primary);
    transition: gap 0.25s ease, color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.rhs-service-premium-cta i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    transition: transform 0.25s ease;
}

.rhs-service-premium-link:hover .rhs-service-premium-cta {
    color: var(--rhs-primary);
    gap: 12px;
    border-color: rgba(26, 61, 50, 0.28);
    background: rgba(26, 61, 50, 0.04);
}

.rhs-service-premium-link:hover .rhs-service-premium-cta i {
    transform: translateX(3px);
}

.rhs-services-home-foot {
    display: none;
    text-align: center;
    margin-top: 28px;
}

/* About block (inner pages) */
.rhs-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: center;
}

.rhs-about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
}

.rhs-about-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
}

.rhs-about-images img:first-child {
    margin-top: 40px;
}

.rhs-about-images .rhs-about-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--rhs-primary);
    color: #fff;
    padding: 16px 28px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.rhs-about-badge span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--rhs-gold);
}

.rhs-about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--rhs-primary);
    margin-bottom: 4px;
    line-height: 1.2;
}

.rhs-about-content p {
    line-height: 1.8;
    margin-bottom: 0px;
}

.rhs-about-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.rhs-about-list li {
    padding: 10px 0 10px 32px;
    position: relative;
    line-height: 1.6;
}

.rhs-about-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--rhs-accent);
}

.rhs-difference-list li i,
.rhs-testimonial-card .stars i,
.rhs-testimonial-quote-icon i,
.rhs-testimonial-prev i,
.rhs-testimonial-next i,
.rhs-service-card-body a i,
.rhs-read-more i,
.rhs-contact-info-item .icon i,
.rhs-contact-card-icon i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-style: normal;
}

/* Services grid */
.rhs-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.rhs-service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(26, 61, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rhs-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 61, 50, 0.15);
}

.rhs-service-card-image {
    height: 220px;
    overflow: hidden;
}

.rhs-service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rhs-service-card:hover .rhs-service-card-image img {
    transform: scale(1.08);
}

.rhs-service-card-body {
    padding: 28px 24px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rhs-service-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--rhs-primary);
    margin-bottom: 12px;
}

.rhs-service-card-body p {
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
    font-size: 15px;
}

.rhs-service-card-body a {
    color: var(--rhs-accent);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.rhs-service-card-body a:hover {
    gap: 12px;
    color: var(--rhs-primary);
}

/* Difference / Why us — premium full width */
.rhs-difference-section {
    padding: 40px 0 !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background:
        radial-gradient(ellipse at top left, rgba(201, 169, 110, 0.14) 0%, transparent 42%),
        linear-gradient(135deg, #0f2820 0%, #1a3d32 55%, #16352c 100%);
    position: relative;
    overflow: hidden;
}

.rhs-difference-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
}

.rhs-difference-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    width: 100%;
}

.rhs-difference-content .section-sub-title {
    color: var(--rhs-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
}

.rhs-difference-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.rhs-difference-lead {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 0 28px;
    max-width: 540px;
}

.rhs-difference-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin-bottom: 32px;
}

.rhs-difference-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.92);
    font-size: 14px;
    line-height: 1.5;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.rhs-difference-point:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(201, 169, 110, 0.4);
    transform: translateY(-2px);
}

.rhs-difference-point-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 110, 0.18);
    color: var(--rhs-gold);
    margin-top: 1px;
}

.rhs-difference-point-icon i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
}

.rhs-difference-media {
    width: 100%;
}

.rhs-difference-media-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.rhs-difference-media-frame img {
    width: 100%;
    height: clamp(360px, 48vw, 560px);
    object-fit: cover;
    display: block;
}

.rhs-difference-quote {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(15, 40, 32, 0.88);
    border: 1px solid rgba(201, 169, 110, 0.35);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rhs-difference-quote i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--rhs-gold);
    font-size: 18px;
    margin-top: 2px;
}

.rhs-difference-quote p {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.35;
}

.rhs-difference-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.rhs-difference-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-size: 15px;
}

.rhs-difference-list li i {
    color: var(--rhs-gold);
    margin-top: 4px;
    flex-shrink: 0;
}

.rhs-difference-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .rhs-difference-grid {
        grid-template-columns: 1fr;
    }

    .rhs-difference-media {
        order: -1;
    }

    .rhs-difference-media-frame img {
        height: clamp(280px, 55vw, 400px);
    }
}

@media (max-width: 575px) {
    .rhs-difference-points {
        grid-template-columns: 1fr;
    }
}

/* Testimonials — premium slider */
.rhs-testimonials-home {
    padding: 40px 0 !important;
    width: 100%;
}

.rhs-testimonials-home .rhs-testimonials-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
}

.rhs-testimonials {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.rhs-testimonials-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 40, 32, 0.94) 0%, rgba(15, 40, 32, 0.88) 100%);
}

.rhs-testimonials .rhs-container,
.rhs-testimonials-inner {
    position: relative;
    z-index: 2;
}

.rhs-testimonials-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}

.rhs-testimonials-head .section-sub-title {
    color: var(--rhs-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
}

.rhs-testimonials-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.rhs-testimonial-slider-wrap {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: clamp(12px, 2vw, 20px);
    width: 100%;
}

.rhs-testimonial-slider {
    width: 100%;
    overflow: hidden;
    padding-bottom: 44px;
}

.rhs-testimonial-slider .swiper-slide {
    height: auto;
    align-self: stretch;
}

.rhs-testimonial-slider .swiper-wrapper {
    align-items: stretch;
    max-height: none;
}

.rhs-testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: clamp(28px, 3vw, 40px) clamp(24px, 3vw, 36px);
    height: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.35s ease, background 0.35s ease, transform 0.35s ease;
}

.swiper-slide-active .rhs-testimonial-card {
    border-color: rgba(201, 169, 110, 0.45);
    background: rgba(255, 255, 255, 0.1);
}

.rhs-testimonial-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.rhs-testimonial-card .stars {
    color: var(--rhs-gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.rhs-testimonial-quote-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(201, 169, 110, 0.15);
    color: var(--rhs-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.rhs-testimonial-card blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-style: italic;
    color: #fff;
    line-height: 1.65;
    margin-bottom: auto;
    padding-bottom: 24px;
    border: none;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    flex: 1;
}

.rhs-testimonial-card cite {
    font-style: normal;
    display: block;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rhs-testimonial-card cite strong {
    color: var(--rhs-gold);
    font-weight: 600;
    display: block;
    font-size: 15px;
}

.rhs-testimonial-card cite span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    font-size: 13px;
    margin-top: 4px;
}

.rhs-testimonial-prev,
.rhs-testimonial-next {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.rhs-testimonial-prev:hover,
.rhs-testimonial-next:hover {
    background: var(--rhs-gold);
    border-color: var(--rhs-gold);
    color: var(--rhs-dark);
}

.rhs-testimonial-pagination {
    bottom: 0 !important;
}

.rhs-testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition: all 0.3s ease;
}

.rhs-testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--rhs-gold);
    width: 28px;
    border-radius: 6px;
}

/* Testimonials — responsive */
@media (min-width: 1441px) {
    .rhs-testimonial-slider-wrap {
        gap: 20px;
    }
}

@media (min-width: 1280px) and (max-width: 1440px) {
    .rhs-testimonials-home {
        padding: 36px 0 !important;
    }

    .rhs-testimonials-home .rhs-testimonials-inner {
        padding-left: clamp(28px, 3.5vw, 48px);
        padding-right: clamp(28px, 3.5vw, 48px);
    }

    .rhs-testimonials-head {
        max-width: 640px;
        margin-bottom: 28px;
    }

    .rhs-testimonials-head h2 {
        font-size: clamp(1.85rem, 2.6vw, 2.35rem);
    }

    .rhs-testimonial-slider-wrap {
        gap: 12px;
    }

    .rhs-testimonial-prev,
    .rhs-testimonial-next {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .rhs-testimonial-slider {
        padding-bottom: 40px;
    }

    .rhs-testimonial-card {
        min-height: 220px;
        padding: 24px 22px;
    }

    .rhs-testimonial-card blockquote {
        font-size: 1.12rem;
        line-height: 1.6;
        padding-bottom: 18px;
    }

    .rhs-testimonial-quote-icon {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}

@media (max-width: 1279px) and (min-width: 992px) {
    .rhs-testimonials-head {
        margin-bottom: 30px;
    }

    .rhs-testimonial-slider-wrap {
        gap: 14px;
    }

    .rhs-testimonial-prev,
    .rhs-testimonial-next {
        width: 46px;
        height: 46px;
    }

    .rhs-testimonial-card {
        min-height: 240px;
        padding: 26px 24px;
    }

    .rhs-testimonial-card blockquote {
        font-size: 1.15rem;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .rhs-testimonials-home .rhs-testimonials-inner {
        padding-left: clamp(20px, 4vw, 36px);
        padding-right: clamp(20px, 4vw, 36px);
    }

    .rhs-testimonials-head {
        margin-bottom: 26px;
    }

    .rhs-testimonials-head h2 {
        font-size: clamp(1.75rem, 4vw, 2.2rem);
    }

    .rhs-testimonial-slider-wrap {
        gap: 10px;
    }

    .rhs-testimonial-prev,
    .rhs-testimonial-next {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .rhs-testimonial-card {
        min-height: 250px;
        padding: 24px 20px;
    }

    .rhs-testimonial-card blockquote {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .rhs-testimonials-home {
        padding: 36px 0 !important;
    }

    .rhs-testimonials-home .rhs-testimonials-inner {
        padding-left: clamp(16px, 4vw, 24px);
        padding-right: clamp(16px, 4vw, 24px);
    }

    .rhs-testimonials-head {
        margin-bottom: 24px;
    }

    .rhs-testimonials-head .section-sub-title {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .rhs-testimonials-head h2 {
        font-size: clamp(1.65rem, 6vw, 2rem);
    }

    .rhs-testimonial-slider-wrap {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rhs-testimonial-prev,
    .rhs-testimonial-next {
        display: none;
    }

    .rhs-testimonial-slider {
        padding-bottom: 36px;
        width: 100%;
    }

    .rhs-testimonial-card {
        min-height: auto;
        padding: 24px 20px;
    }

    .rhs-testimonial-card blockquote {
        font-size: 1.05rem;
        line-height: 1.6;
        padding-bottom: 18px;
    }

    .rhs-testimonial-card cite {
        padding-top: 14px;
    }

    .rhs-testimonial-card cite strong {
        font-size: 14px;
    }

    .rhs-testimonial-card cite span {
        font-size: 12px;
    }

    .rhs-testimonial-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .rhs-testimonial-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }
}

@media (max-width: 575px) {
    .rhs-testimonial-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .rhs-testimonial-card-top {
        margin-bottom: 14px;
    }

    .rhs-testimonial-card .stars {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .rhs-testimonial-quote-icon {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }

    .rhs-testimonial-card blockquote {
        font-size: 1rem;
    }
}

/* Gallery section — auto scroll slider */
.rhs-gallery-section {
    padding: 40px 0 0 !important;
    width: 100%;
    background: var(--rhs-light);
    overflow: hidden;
    margin-bottom: 0;
}

.rhs-gallery-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
}

.rhs-gallery-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 32px;
}

.rhs-gallery-head .section-sub-title {
    color: var(--rhs-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.rhs-gallery-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--rhs-primary);
    margin-bottom: 12px;
    line-height: 1.15;
}

.rhs-gallery-head p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    margin: 0;
}

.rhs-gallery-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-bottom: 32px;
}

.rhs-gallery-slider {
    width: 100%;
    overflow: hidden;
    padding: 4px 0 8px;
}

.rhs-gallery-slider .swiper-slide {
    height: auto;
}

.rhs-gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: 0 8px 28px rgba(26, 61, 50, 0.1);
    background: #fff;
}

.rhs-gallery-item a.rhs-gallery-lightbox {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: zoom-in;
    text-decoration: none;
}

.rhs-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.rhs-gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 61, 50, 0.45);
    color: #fff;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.rhs-gallery-zoom i {
    font-size: 28px;
    transform: scale(0.85);
    transition: transform 0.35s ease;
}

.rhs-gallery-item:hover img {
    transform: scale(1.06);
}

.rhs-gallery-item:hover .rhs-gallery-zoom {
    opacity: 1;
}

.rhs-gallery-item:hover .rhs-gallery-zoom i {
    transform: scale(1);
}

/* Lightbox popup styling */
.mfp-rhs-gallery.mfp-bg {
    background: rgba(15, 35, 28, 0.92);
}

.mfp-rhs-gallery .mfp-image-holder .mfp-content {
    max-width: min(92vw, 1100px);
}

.mfp-rhs-gallery .mfp-figure figure {
    margin: 0;
}

.mfp-rhs-gallery .mfp-figure:after {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.mfp-rhs-gallery .mfp-title {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    padding-top: 12px;
}

.mfp-rhs-gallery .mfp-arrow {
    opacity: 0.85;
}

.mfp-rhs-gallery .mfp-close {
    color: #fff;
    opacity: 0.85;
}

.mfp-rhs-gallery .mfp-counter {
    display: none !important;
}

.rhs-gallery-pagination {
    display: none;
}

.rhs-gallery-prev,
.rhs-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(26, 61, 50, 0.15);
    background: #fff;
    color: var(--rhs-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(26, 61, 50, 0.12);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.rhs-gallery-prev {
    left: -8px;
}

.rhs-gallery-next {
    right: -8px;
}

.rhs-gallery-prev:hover,
.rhs-gallery-next:hover {
    background: var(--rhs-primary);
    border-color: var(--rhs-primary);
    color: #fff;
}

.rhs-gallery-prev i,
.rhs-gallery-next i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
}

/* CTA section */
.rhs-cta {
    background: linear-gradient(135deg, var(--rhs-primary) 0%, var(--rhs-accent) 100%);
    text-align: center;
    padding: clamp(60px, 8vw, 90px) 0;
}

.rhs-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 16px;
}

.rhs-cta p {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Services page CTA — premium full width */
.rhs-services-cta {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: clamp(70px, 9vw, 110px) clamp(20px, 3vw, 48px);
    overflow: hidden;
    text-align: center;
}

.rhs-services-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/blogcta.png');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.rhs-services-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(10, 28, 22, 0.92) 0%, rgba(15, 40, 32, 0.82) 50%, rgba(26, 61, 50, 0.78) 100%);
}

.rhs-services-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.rhs-services-cta-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.16);
    border: 1px solid rgba(201, 169, 110, 0.4);
    color: var(--rhs-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rhs-services-cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
}

.rhs-services-cta-inner p {
    margin: 0 auto 30px;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.75;
}

.rhs-services-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

@media (max-width: 575px) {
    .rhs-services-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .rhs-services-cta-btns .btn-default {
        width: 100%;
        justify-content: center !important;
    }
}

/* Blog page CTA — premium full width */
.rhs-blogs-cta {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: clamp(70px, 9vw, 110px) clamp(20px, 3vw, 48px);
    overflow: hidden;
    text-align: center;
}

.rhs-blogs-cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/blogcta.png');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.rhs-blogs-cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(10, 28, 22, 0.92) 0%, rgba(15, 40, 32, 0.82) 50%, rgba(26, 61, 50, 0.78) 100%);
}

.rhs-blogs-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: 0 auto;
}

.rhs-blogs-cta-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.16);
    border: 1px solid rgba(201, 169, 110, 0.4);
    color: var(--rhs-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.rhs-blogs-cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.2vw, 3rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 14px;
}

.rhs-blogs-cta-inner p {
    margin: 0 auto 30px;
    max-width: 540px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.75;
}

.rhs-blogs-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

@media (max-width: 575px) {
    .rhs-blogs-cta-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .rhs-blogs-cta-btns .btn-default {
        width: 100%;
        justify-content: center !important;
    }
}

/* Contact section home — full width premium */
.rhs-section-contact-home {
    padding: 40px 0 !important;
    width: 100%;
    background: linear-gradient(180deg, #fff 0%, var(--rhs-light) 100%);
}

.rhs-contact-home-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
}

.rhs-contact-home-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
}

.rhs-contact-home-head .section-sub-title {
    color: var(--rhs-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.rhs-contact-home-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    color: var(--rhs-primary);
    margin-bottom: 14px;
    line-height: 1.15;
}

.rhs-contact-home-head p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-color);
    margin: 0;
}

.rhs-contact-home-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 48px);
    align-items: stretch;
}

.rhs-contact-home-panel {
    background: #fff;
    padding: clamp(28px, 3.5vw, 44px);
    border-radius: 16px;
    border: 1px solid rgba(26, 61, 50, 0.08);
    box-shadow: 0 12px 40px rgba(26, 61, 50, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.rhs-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 16px;
    flex: 1;
}

.rhs-contact-card {
    display: flex;
    gap: 14px;
    align-items: center;
    height: 100%;
    background: var(--rhs-light);
    border: 1px solid rgba(26, 61, 50, 0.08);
    border-radius: 14px;
    padding: 20px 18px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.rhs-contact-card:hover {
    border-color: rgba(201, 169, 110, 0.45);
    box-shadow: 0 8px 28px rgba(26, 61, 50, 0.1);
    transform: translateY(-3px);
}

.rhs-contact-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: #fff;
    color: var(--rhs-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.3s ease, color 0.3s ease;
}

.rhs-contact-card:hover .rhs-contact-card-icon {
    background: var(--rhs-primary);
    color: #fff;
}

.rhs-contact-card-body h4 {
    font-size: 15px;
    color: var(--rhs-primary);
    margin-bottom: 6px;
    font-weight: 600;
}

.rhs-contact-card-body p,
.rhs-contact-card-body a {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
    text-decoration: none;
    word-break: break-word;
}

.rhs-contact-card-body a:hover {
    color: var(--rhs-accent);
}

.rhs-contact-home-btns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
}

.rhs-contact-home-form {
    height: 100%;
}

.rhs-contact-form {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0;
}

.rhs-contact-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 22px;
}

.rhs-field {
    display: flex;
    flex-direction: column;
}

.rhs-field-full {
    grid-column: 1 / -1;
}

.rhs-field label {
    display: block;
    font-weight: 600;
    color: var(--rhs-primary);
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.3;
}

.rhs-field input,
.rhs-field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid #d8e0db;
    border-radius: 10px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
    background: #f7f9f6;
    font-family: inherit;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.rhs-field input::placeholder,
.rhs-field textarea::placeholder {
    color: #8a9690;
}

.rhs-field input:focus,
.rhs-field textarea:focus {
    outline: none;
    border-color: var(--rhs-accent);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(90, 125, 106, 0.12);
}

.rhs-field textarea {
    min-height: 120px;
    resize: vertical;
}

.rhs-contact-form-head {
    margin-bottom: 22px;
    flex-shrink: 0;
}

.rhs-contact-form-head h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 1.85rem);
    color: var(--rhs-primary);
    margin-bottom: 8px;
}

.rhs-contact-form-head p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-color);
    margin: 0;
}

.rhs-contact-submit {
    width: auto;
    align-self: center;
    margin-top: auto;
    min-height: 48px;
    font-family: inherit;
}

/* Contact Home + Gallery — mobile responsive */
@media (max-width: 767px) {
    .rhs-section-contact-home {
        padding: 32px 0 !important;
    }

    .rhs-contact-home-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rhs-contact-home-head {
        margin-bottom: 24px;
    }

    .rhs-contact-home-head .section-sub-title {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .rhs-contact-home-head h2 {
        font-size: clamp(1.65rem, 6.5vw, 2rem);
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .rhs-contact-home-head p {
        font-size: 15px;
        line-height: 1.65;
    }

    .rhs-contact-home-grid {
        gap: 20px;
    }

    .rhs-contact-home-panel {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .rhs-contact-form-head {
        margin-bottom: 18px;
    }

    .rhs-contact-form-head h3 {
        font-size: 1.35rem;
        margin-bottom: 6px;
    }

    .rhs-contact-form-head p {
        font-size: 14px;
        line-height: 1.6;
    }

    .rhs-contact-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .rhs-contact-card {
        padding: 16px 14px;
        gap: 12px;
    }

    .rhs-contact-card-icon {
        width: 42px;
        height: 42px;
        font-size: 16px;
        border-radius: 10px;
    }

    .rhs-contact-card-body h4 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .rhs-contact-card-body p,
    .rhs-contact-card-body a {
        font-size: 13px;
        line-height: 1.55;
    }

    .rhs-contact-home-btns {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 18px;
    }

    .rhs-contact-home-btns .btn-default {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        min-height: 48px;
        padding: 11px 56px 11px 22px !important;
        font-size: 14px !important;
    }

    .rhs-contact-fields {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 18px;
    }

    .rhs-field label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .rhs-field input,
    .rhs-field textarea {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 10px;
    }

    .rhs-field textarea {
        min-height: 110px;
    }

    .rhs-contact-submit {
        width: auto !important;
        align-self: center;
        justify-content: center !important;
        text-align: center !important;
        min-height: 48px;
        padding: 11px 56px 11px 22px !important;
        font-size: 14px !important;
    }

    .rhs-gallery-section {
        padding: 32px 0 0 !important;
    }

    .rhs-gallery-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rhs-gallery-head {
        margin-bottom: 22px;
    }

    .rhs-gallery-head .section-sub-title {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .rhs-gallery-head h2 {
        font-size: clamp(1.65rem, 6.5vw, 2rem);
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .rhs-gallery-head p {
        font-size: 15px;
        line-height: 1.65;
    }

    .rhs-gallery-slider-wrap {
        overflow: hidden;
    }

    .rhs-gallery-slider {
        overflow: hidden;
        padding: 4px 0 0;
    }

    .rhs-gallery-pagination {
        display: block;
        position: relative;
        bottom: auto !important;
        margin-top: 16px;
        text-align: center;
        line-height: 1;
    }

    .rhs-gallery-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        background: rgba(26, 61, 50, 0.28);
        opacity: 1;
        transition: all 0.3s ease;
    }

    .rhs-gallery-pagination .swiper-pagination-bullet-active {
        background: var(--rhs-gold);
        width: 20px;
        border-radius: 6px;
    }

    .rhs-gallery-item {
        aspect-ratio: 4 / 5;
        border-radius: 12px;
    }
}

@media (max-width: 575px) {
    .rhs-contact-home-inner,
    .rhs-gallery-inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .rhs-section-contact-home {
        padding: 28px 0 !important;
    }

    .rhs-gallery-section {
        padding: 28px 0 0 !important;
    }

    .rhs-contact-home-head h2,
    .rhs-gallery-head h2 {
        font-size: 1.52rem;
    }

    .rhs-contact-home-head p,
    .rhs-gallery-head p {
        font-size: 14px;
    }

    .rhs-contact-home-panel {
        padding: 20px 16px;
    }

    .rhs-contact-form-head h3 {
        font-size: 1.25rem;
    }

    .rhs-gallery-item {
        aspect-ratio: 3 / 4;
    }
}

/* Contact section home (legacy grid) */
.rhs-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(30px, 5vw, 60px);
    align-items: start;
}

/* Contact page — 3 info boxes under banner */
.rhs-contact-boxes-section {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    padding: 40px 0 0;
    background: linear-gradient(180deg, #fff 0%, #f7f9f6 100%);
}

.rhs-contact-boxes-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
}

.rhs-contact-boxes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 22px);
}

.rhs-contact-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 24px 22px;
    background: #fff;
    border: 1px solid rgba(26, 61, 50, 0.08);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(26, 61, 50, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.rhs-contact-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(26, 61, 50, 0.14);
    border-color: rgba(201, 169, 110, 0.4);
}

.rhs-contact-box-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 61, 50, 0.08);
    color: var(--rhs-primary);
    transition: background 0.3s ease, color 0.3s ease;
}

.rhs-contact-box:hover .rhs-contact-box-icon {
    background: var(--rhs-primary);
    color: #fff;
}

.rhs-contact-box-icon i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
}

.rhs-contact-box-body h3 {
    margin: 0 0 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rhs-gold);
}

.rhs-contact-box-body p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--rhs-primary);
    font-weight: 600;
}

/* Contact page — map left + form right */
.rhs-contact-main-section {
    padding: 40px 0 !important;
    width: 100%;
    background: linear-gradient(180deg, #fff 0%, #f7f9f6 100%);
}

.rhs-contact-main-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
}

.rhs-contact-main-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(22px, 3vw, 36px);
    align-items: stretch;
}

.rhs-contact-map-wrap,
.rhs-contact-form-card {
    height: 100%;
    min-height: 520px;
}

.rhs-contact-map-frame {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(26, 61, 50, 0.1);
    border: 1px solid rgba(26, 61, 50, 0.08);
}

.rhs-contact-map-frame iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    display: block;
}

.rhs-contact-form-card {
    background: #fff;
    border-radius: 18px;
    padding: clamp(26px, 3vw, 36px);
    border: 1px solid rgba(26, 61, 50, 0.08);
    box-shadow: 0 16px 40px rgba(26, 61, 50, 0.08);
    display: flex;
    flex-direction: column;
}

.rhs-contact-form-card .rhs-contact-form-head {
    margin-bottom: 22px;
}

.rhs-contact-form-card .section-sub-title {
    color: var(--rhs-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.rhs-contact-form-card .rhs-contact-form-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    color: var(--rhs-primary);
    margin: 0 0 10px;
    line-height: 1.2;
}

.rhs-contact-form-card .rhs-contact-form-head p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-color);
}

.rhs-contact-page-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
}

.rhs-contact-page-field {
    display: flex;
    flex-direction: column;
}

.rhs-contact-page-field-full {
    grid-column: 1 / -1;
}

.rhs-contact-page-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--rhs-primary);
    margin-bottom: 7px;
}

.rhs-contact-page-field input,
.rhs-contact-page-field textarea {
    width: 100%;
    border: 1px solid rgba(26, 61, 50, 0.15);
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 15px;
    color: var(--rhs-dark);
    background: #f7f9f6;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.rhs-contact-page-field input:focus,
.rhs-contact-page-field textarea:focus {
    border-color: var(--rhs-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}

.rhs-contact-page-field textarea {
    resize: vertical;
    min-height: 110px;
}

.rhs-contact-page-submit {
    width: auto !important;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    display: inline-flex !important;
    justify-content: center !important;
}

.rhs-contact-page-form {
    display: flex;
    flex-direction: column;
}

@media (max-width: 991px) {
    .rhs-contact-boxes {
        grid-template-columns: 1fr;
    }

    .rhs-contact-boxes-section {
        margin-top: 0;
        padding-top: 28px;
    }

    .rhs-contact-main-grid {
        grid-template-columns: 1fr;
    }

    .rhs-contact-map-wrap,
    .rhs-contact-form-card,
    .rhs-contact-map-frame,
    .rhs-contact-map-frame iframe {
        min-height: 360px;
    }
}

@media (max-width: 575px) {
    .rhs-contact-page-fields {
        grid-template-columns: 1fr;
    }
}

.rhs-contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.rhs-contact-info-item .icon {
    width: 52px;
    height: 52px;
    background: var(--rhs-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rhs-accent);
    font-size: 20px;
    flex-shrink: 0;
}

.rhs-contact-info-item h4 {
    font-size: 16px;
    color: var(--rhs-primary);
    margin-bottom: 6px;
}

.rhs-contact-info-item p,
.rhs-contact-info-item a {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
}

.rhs-contact-info-item a:hover {
    color: var(--rhs-accent);
}

/* Forms */
.rhs-form {
    background: #fff;
    padding: clamp(30px, 4vw, 48px);
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(26, 61, 50, 0.1);
}

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

.rhs-form label {
    display: block;
    font-weight: 600;
    color: var(--rhs-primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.rhs-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e6e2;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
    background: var(--rhs-light);
}

.rhs-form .form-control:focus {
    outline: none;
    border-color: var(--rhs-accent);
    box-shadow: 0 0 0 3px rgba(90, 125, 106, 0.15);
}

.rhs-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* Page banner — premium full-width inner header */
.rhs-page-banner {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: clamp(100px, 18vw, 150px) 0 clamp(70px, 8vw, 100px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.rhs-page-banner-about {
    background-image: url('../images/inner.png');
}

.rhs-page-banner-services {
    background-image: url('../images/inner.png');
}

.rhs-page-banner-blog {
    background-image: url('../images/inner.png');
}

.rhs-page-banner-contact {
    background-image: url('../images/inner.png');
}

.rhs-page-banner .container-fluid.rhs-container {
    max-width: 100%;
    width: 100%;
    position: relative;
    z-index: 2;
}

.rhs-page-banner-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(10, 28, 22, 0.92) 0%, rgba(15, 40, 32, 0.78) 45%, rgba(26, 61, 50, 0.72) 100%),
        linear-gradient(0deg, rgba(10, 28, 22, 0.55) 0%, transparent 55%);
    z-index: 1;
    pointer-events: none;
}

.rhs-page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.rhs-page-banner-tag {
    display: block;
    color: var(--rhs-gold);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.rhs-page-banner-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 5.5vw, 4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.12;
    margin: 0;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Back to Home — left bottom of inner banner */
.rhs-banner-back {
    position: absolute;
    left: clamp(20px, 4vw, 50px);
    bottom: -72px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.rhs-banner-back i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
    color: var(--rhs-gold);
    transition: transform 0.3s ease;
}

.rhs-banner-back:hover {
    background: #fff;
    border-color: #fff;
    color: var(--rhs-primary);
    transform: translateX(-3px);
}

.rhs-banner-back:hover i {
    color: var(--rhs-primary);
    transform: translateX(-2px);
}

@media (max-width: 575px) {
    .rhs-banner-back {
        left: 16px;
        bottom: -62px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Services page detail blocks — full width */
.rhs-services-page {
    padding: 40px 0 !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #fff;
}

.rhs-services-page-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
}

.rhs-service-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    width: 100%;
    padding: clamp(20px, 5vw, 20px) 0;
    border-bottom: none;
}

.rhs-service-detail:last-child {
    padding-bottom: 0;
}

.rhs-service-detail:first-child {
    padding-top: 0;
}

.rhs-service-detail.rhs-reverse {
    direction: rtl;
}

.rhs-service-detail.rhs-reverse > * {
    direction: ltr;
}

.rhs-service-detail-image {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(26, 61, 50, 0.12);
}

.rhs-service-detail-image img {
    width: 100%;
    height: clamp(320px, 42vw, 480px);
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.rhs-service-detail:hover .rhs-service-detail-image img {
    transform: scale(1.03);
}

.rhs-service-detail-content {
    width: 100%;
}

.rhs-service-detail-content .section-sub-title {
    color: var(--rhs-accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.rhs-service-detail-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    color: var(--rhs-primary);
    margin-bottom: 14px;
    line-height: 1.2;
}

.rhs-service-detail-content p {
    line-height: 1.7;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-color);
}

.rhs-service-detail-content p:last-of-type {
    margin-bottom: 16px;
}

.rhs-service-detail-content .rhs-service-detail-list {
    margin: 0 0 12px;
    padding-left: 1.25em;
}

.rhs-service-detail-content .rhs-service-detail-list li {
    line-height: 1.65;
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 4px;
}

.rhs-service-detail-content .rhs-service-detail-list li:last-child {
    margin-bottom: 0;
}

#weight-loss.rhs-service-detail {
    align-items: stretch;
}

#weight-loss .rhs-service-detail-content h2 {
    font-size: clamp(1.65rem, 2.6vw, 2.2rem);
}

#weight-loss .rhs-service-detail-image {
    display: flex;
}

#weight-loss .rhs-service-detail-image img {
    width: 100%;
    height: 100%;
    min-height: clamp(320px, 42vw, 480px);
    flex: 1;
    object-fit: cover;
}

/* Blog section — premium full width */
.rhs-blogs-section {
    padding: 40px 0 !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background:
        radial-gradient(ellipse at top left, rgba(201, 169, 110, 0.1) 0%, transparent 42%),
        linear-gradient(180deg, #f7f9f6 0%, #eef3ef 100%);
}

.rhs-blogs-inner {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
}

.rhs-blogs-section .rhs-section-header {
    max-width: 720px;
}

.rhs-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 28px);
    width: 100%;
}

.rhs-blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(26, 61, 50, 0.08);
    box-shadow: 0 10px 32px rgba(26, 61, 50, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.rhs-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(26, 61, 50, 0.12);
    border-color: rgba(201, 169, 110, 0.35);
}

.rhs-blog-card-image {
    position: relative;
    height: clamp(220px, 28vw, 280px);
    overflow: hidden;
}

.rhs-blog-card-image > a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.rhs-blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease;
}

.rhs-blog-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 40, 32, 0.45) 100%);
    pointer-events: none;
}

.rhs-blog-card:hover .rhs-blog-card-image img {
    transform: scale(1.08);
}

.rhs-blog-card-cat {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 2;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(15, 40, 32, 0.88);
    border: 1px solid rgba(201, 169, 110, 0.4);
    color: var(--rhs-gold);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rhs-blog-card-body {
    padding: 26px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rhs-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--rhs-accent);
}

.rhs-blog-card-meta i {
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    margin-right: 6px;
    color: var(--rhs-gold);
}

.rhs-blog-card-date {
    font-size: 13px;
    color: var(--rhs-accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.rhs-blog-card-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.3rem, 2vw, 1.55rem);
    margin: 0 0 12px;
    line-height: 1.3;
}

.rhs-blog-card-body h3 a {
    color: var(--rhs-primary);
    text-decoration: none;
    transition: color 0.25s ease;
}

.rhs-blog-card-body h3 a:hover {
    color: var(--rhs-accent);
}

.rhs-blog-card-body p {
    line-height: 1.7;
    font-size: 15px;
    margin: 0 0 20px;
    color: var(--text-color);
    flex: 1;
}

.rhs-read-more {
    color: var(--rhs-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: gap 0.25s ease, color 0.25s ease;
}

.rhs-read-more i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 13px;
    color: var(--rhs-gold);
    transition: transform 0.25s ease;
}

.rhs-read-more:hover {
    gap: 12px;
    color: var(--rhs-gold);
}

.rhs-read-more:hover i {
    transform: translateX(2px);
}

@media (max-width: 991px) {
    .rhs-blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .rhs-blog-grid {
        grid-template-columns: 1fr;
    }

    .rhs-blog-card-image {
        height: 240px;
    }
}

/* Advocate CTA — full width bg image */
.rhs-advocate-cta {
    position: relative;
    width: 100%;
    padding: clamp(70px, 10vw, 110px) 0;
    overflow: hidden;
}

.rhs-advocate-cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.rhs-advocate-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 40, 32, 0.88) 0%, rgba(26, 61, 50, 0.78) 50%, rgba(15, 40, 32, 0.85) 100%);
}

.rhs-advocate-cta-inner {
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
}

.rhs-advocate-cta-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.rhs-advocate-cta-content .section-sub-title {
    color: var(--rhs-gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 14px;
    display: block;
}

.rhs-advocate-cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.rhs-advocate-cta-content p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    margin: 0 auto 32px;
}

.rhs-advocate-cta-btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

/* Why Choose / Our Difference — full width, tight spacing (template style kept) */
.why-choose-us-elite.rhs-why-choose-wrap {
    padding: 40px 0 !important;
    width: 100%;
    overflow: hidden;
}

.why-choose-us-elite.rhs-why-choose-wrap > .container-fluid.rhs-container {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(20px, 3vw, 48px);
    padding-right: clamp(20px, 3vw, 48px);
}

.why-choose-us-elite.rhs-why-choose-wrap .why-choose-us-contnet-elite {
    margin-right: 0;
}

.why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-elite {
    margin-bottom: 24px;
    padding-bottom: 24px;
}

.why-choose-us-elite.rhs-why-choose-wrap .why-choose-us-btn-elite {
    margin-top: 28px;
}

.why-choose-us-elite.rhs-why-choose-wrap .section-title {
    margin-bottom: 28px;
}

.why-choose-us-elite.rhs-why-choose-wrap .section-title p {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-quote-elite {
        left: 24px;
        right: 24px;
        max-width: none;
    }
}

/* Advocate CTA + Why Choose — mobile responsive */
@media (max-width: 767px) {
    .rhs-advocate-cta {
        padding: 48px 0;
    }

    .rhs-advocate-cta-bg {
        background-attachment: scroll;
        transform: none;
    }

    .rhs-advocate-cta-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .rhs-advocate-cta-content .section-sub-title {
        font-size: 11px;
        letter-spacing: 0.1em;
        margin-bottom: 10px;
        line-height: 1.45;
    }

    .rhs-advocate-cta-content h2 {
        font-size: clamp(1.65rem, 7vw, 2.1rem);
        line-height: 1.2;
    margin-bottom: 12px;
}

    .rhs-advocate-cta-content p {
        font-size: 0.95rem;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .rhs-advocate-cta-btns {
        width: 100%;
    }

    .rhs-advocate-cta-btns .btn-default {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        min-height: 48px;
        padding: 11px 56px 11px 22px !important;
        font-size: 14px !important;
    }

    .why-choose-us-elite.rhs-why-choose-wrap {
        padding: 32px 0 !important;
    }

    .why-choose-us-elite.rhs-why-choose-wrap > .container-fluid.rhs-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .row {
        --bs-gutter-y: 1.75rem;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .section-title {
        margin-bottom: 22px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .section-title .section-sub-title {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .section-title h2 {
        font-size: clamp(1.55rem, 6.5vw, 1.9rem);
        line-height: 1.22;
        margin-bottom: 12px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .section-title p {
        font-size: 15px;
        line-height: 1.65;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-us-contnet-elite {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-elite {
        flex-direction: row;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-elite .icon-box {
        flex-shrink: 0;
        width: 44px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-elite .icon-box img {
        max-width: 44px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-content-elite {
        width: calc(100% - 58px);
        flex: 1;
        min-width: 0;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-content-elite h3 {
        font-size: 1.05rem;
        line-height: 1.35;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-content-elite p {
        font-size: 14px;
        line-height: 1.6;
        margin-top: 8px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-us-btn-elite {
        margin-top: 22px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-us-btn-elite .btn-default {
        width: 100% !important;
        justify-content: center !important;
        text-align: center !important;
        min-height: 48px;
        padding: 11px 56px 11px 22px !important;
        font-size: 14px !important;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-us-image-box-elite {
        height: auto;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-us-image-elite {
        height: auto;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-us-image-elite figure {
        height: auto;
        border-radius: 14px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-us-image-elite figure img {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        object-fit: cover;
        border-radius: 14px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-quote-elite {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        max-width: none;
        margin-top: 20px;
        padding: 28px 20px 20px 28px;
        border-radius: 14px;
        background: linear-gradient(145deg, var(--rhs-primary) 0%, #1f4a3d 100%);
        border: 1px solid rgba(201, 169, 110, 0.28);
        box-shadow: 0 10px 28px rgba(26, 61, 50, 0.16);
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-quote-elite .icon-box {
        top: -20px;
        left: 16px;
        width: 42px;
        height: 42px;
        background: var(--rhs-gold);
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-quote-elite .icon-box img {
        max-width: 22px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-quote-content-elite h3 {
        font-size: 1.05rem;
        line-height: 1.4;
        color: #fff;
    }
}

@media (max-width: 575px) {
    .rhs-advocate-cta {
        padding: 40px 0;
    }

    .rhs-advocate-cta-inner,
    .why-choose-us-elite.rhs-why-choose-wrap > .container-fluid.rhs-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .rhs-advocate-cta-content h2 {
        font-size: 1.52rem;
    }

    .rhs-advocate-cta-content p {
        font-size: 0.9rem;
    }

    .why-choose-us-elite.rhs-why-choose-wrap {
        padding: 28px 0 !important;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .section-title h2 {
        font-size: 1.45rem;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .section-title p {
        font-size: 14px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-elite {
        gap: 12px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-content-elite h3 {
        font-size: 1rem;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-item-content-elite p {
        font-size: 13.5px;
    }

    .why-choose-us-elite.rhs-why-choose-wrap .why-choose-us-image-elite figure img {
        aspect-ratio: 1 / 1;
    }
}

/* Footer — premium dark layout (full width edge-to-edge) */
.rhs-footer-premium {
    background: #000;
    color: #fff;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 !important;
    left: 0;
    right: 0;
    overflow: hidden;
    padding-bottom: 0;
    flex-shrink: 0;
    z-index: 2;
    clear: both;
}

.rhs-footer-premium .container-fluid.rhs-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: clamp(20px, 4vw, 60px) !important;
    padding-right: clamp(20px, 4vw, 60px) !important;
}

.rhs-footer-main {
    padding: clamp(48px, 6vw, 72px) 0 clamp(36px, 5vw, 56px);
    width: 100%;
}

.rhs-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1.1fr;
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
    width: 100%;
}

.rhs-footer-brand {
    max-width: none;
}



.rhs-footer-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    display: block;
}

.rhs-footer-brand p {
    margin: 0;
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
}

.rhs-footer-col h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--rhs-gold);
    margin: 0 0 12px;
    letter-spacing: 0.01em;
}

.rhs-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rhs-footer-col ul li {
    margin-bottom: 5px;
}

.rhs-footer-col ul li:last-child {
    margin-bottom: 0;
}

.rhs-footer-col ul li a,
.rhs-footer-col ul li span {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.25s ease;
}

.rhs-footer-col ul li a:hover {
    color: var(--rhs-gold);
}

.rhs-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 5px !important;
}

.rhs-footer-icon {
    flex-shrink: 0;
    width: 18px;
    color: var(--rhs-gold);
    font-size: 15px;
    line-height: 1.5;
    margin-top: 2px;
}

.rhs-footer-icon i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.rhs-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.rhs-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #1a1a1a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.rhs-footer-social a:hover {
    background: var(--rhs-gold);
    color: #000;
    transform: translateY(-2px);
}

.rhs-footer-social a i {
    font-size: 15px;
}

.rhs-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px 0 28px;
}

.rhs-footer-bottom p {
    margin: 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
}

.rhs-footer-bottom p a {
    color: var(--rhs-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s ease;
}

.rhs-footer-bottom p a:hover {
    color: #fff;
}

.rhs-back-top {
    position: absolute;
    right: clamp(20px, 3vw, 48px);
    bottom: 22px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--rhs-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
    z-index: 2;
}

.rhs-back-top:hover {
    background: var(--rhs-gold);
    color: #000;
    transform: translateY(-3px);
}

.rhs-back-top i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 15px;
}

@media (max-width: 991px) {
    .rhs-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .rhs-footer-brand {
        max-width: none;
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .rhs-footer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .rhs-footer-bottom {
        padding-bottom: 10px;
    }

    .rhs-back-top {
        right: 20px;
        bottom: 18px;
    }

    .rhs-footer-main {
        padding: clamp(20px, 6vw, 72px) 0 clamp(36px, 5vw, 56px);
    }
}

/* =========================================================
   RHS Animated Buttons — stylish arrow-pill (site-wide)
   ========================================================= */
.btn-default,
.rhs-btn-clean {
    --btn-bg: var(--rhs-primary);
    --btn-border: var(--rhs-primary);
    --btn-color: #fff;
    --btn-circle: #fff;
    --btn-arrow: url('../images/arrow-primary.svg');
    --btn-hover-bg: var(--rhs-dark);
    --btn-hover-border: var(--rhs-dark);
    --btn-hover-color: #fff;
    --btn-hover-circle: var(--rhs-gold);
    --btn-hover-arrow: url('../images/arrow-primary.svg');

    position: relative !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    width: auto !important;
    min-height: 54px;
    padding: 12px 62px 12px 26px !important;
    border-radius: 100px !important;
    border: 2px solid var(--btn-border) !important;
    background: var(--btn-bg) !important;
    color: var(--btn-color) !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    letter-spacing: 0.01em;
    text-transform: none !important;
    text-decoration: none !important;
    text-align: left !important;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden !important;
    box-shadow: 0 8px 24px rgba(26, 61, 50, 0.18) !important;
    outline: none !important;
    transition:
        background 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        color 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        transform 0.35s ease !important;
    z-index: 0;
    isolation: isolate;
}

/* Arrow circle */
.btn-default::before,
.rhs-btn-clean::before {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 50% !important;
    right: 6px !important;
    left: auto !important;
    width: 40px !important;
    height: 40px !important;
    transform: translateY(-50%) rotate(0deg) !important;
    border-radius: 50% !important;
    background-color: var(--btn-circle) !important;
    background-image: var(--btn-arrow) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: 13px auto !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transition:
        transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.45s ease,
        background-image 0.45s ease,
        box-shadow 0.45s ease !important;
    z-index: 2;
}

/* Shine sweep */
.btn-default::after,
.rhs-btn-clean::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    top: 0 !important;
    left: -120% !important;
    right: auto !important;
    bottom: auto !important;
    width: 55% !important;
    height: 100% !important;
    border-radius: 0 !important;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.28) 45%,
        transparent 70%
    ) !important;
    background-image: linear-gradient(
        105deg,
        transparent 0%,
        rgba(255, 255, 255, 0.28) 45%,
        transparent 70%
    ) !important;
    transform: skewX(-18deg) !important;
    transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1) !important;
    z-index: 1;
    pointer-events: none;
}

.btn-default:hover,
.btn-default:focus,
.rhs-btn-clean:hover,
.rhs-btn-clean:focus {
    background: var(--btn-hover-bg) !important;
    border-color: var(--btn-hover-border) !important;
    color: var(--btn-hover-color) !important;
    padding: 12px 62px 12px 26px !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 32px rgba(26, 61, 50, 0.28) !important;
}

.btn-default:hover::before,
.btn-default:focus::before,
.rhs-btn-clean:hover::before,
.rhs-btn-clean:focus::before {
    transform: translateY(-50%) rotate(45deg) !important;
    background-color: var(--btn-hover-circle) !important;
    background-image: var(--btn-hover-arrow) !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.btn-default:hover::after,
.btn-default:focus::after,
.rhs-btn-clean:hover::after,
.rhs-btn-clean:focus::after {
    left: 140% !important;
}

/* Gold / primary CTA */
.btn-default.btn-highlighted,
.rhs-btn-clean.rhs-btn-gold {
    --btn-bg: var(--rhs-gold);
    --btn-border: var(--rhs-gold);
    --btn-color: var(--rhs-dark);
    --btn-circle: var(--rhs-primary);
    --btn-arrow: url('../images/arrow-white.svg');
    --btn-hover-bg: var(--rhs-primary);
    --btn-hover-border: var(--rhs-primary);
    --btn-hover-color: #fff;
    --btn-hover-circle: #fff;
    --btn-hover-arrow: url('../images/arrow-primary.svg');
}

/* White button */
.btn-default.btn-white {
    --btn-bg: #fff;
    --btn-border: #fff;
    --btn-color: var(--rhs-primary);
    --btn-circle: var(--rhs-primary);
    --btn-arrow: url('../images/arrow-white.svg');
    --btn-hover-bg: var(--rhs-gold);
    --btn-hover-border: var(--rhs-gold);
    --btn-hover-color: var(--rhs-dark);
    --btn-hover-circle: var(--rhs-primary);
    --btn-hover-arrow: url('../images/arrow-white.svg');
}

/* Outline on dark backgrounds */
.btn-default.btn-outline,
.btn-default.btn-outline-light,
.rhs-btn-clean.rhs-btn-outline {
    --btn-bg: transparent;
    --btn-border: rgba(255, 255, 255, 0.75);
    --btn-color: #fff;
    --btn-circle: #fff;
    --btn-arrow: url('../images/arrow-primary.svg');
    --btn-hover-bg: #fff;
    --btn-hover-border: #fff;
    --btn-hover-color: var(--rhs-primary);
    --btn-hover-circle: var(--rhs-primary);
    --btn-hover-arrow: url('../images/arrow-white.svg');
    box-shadow: none !important;
}

.btn-default.btn-outline:hover,
.btn-default.btn-outline-light:hover,
.rhs-btn-clean.rhs-btn-outline:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2) !important;
}

/* Outline on light backgrounds */
.btn-default.rhs-btn-on-light,
.light-section .btn-default.btn-outline,
.rhs-contact-home-panel .btn-default.btn-outline {
    --btn-bg: transparent;
    --btn-border: var(--rhs-primary);
    --btn-color: var(--rhs-primary);
    --btn-circle: var(--rhs-primary);
    --btn-arrow: url('../images/arrow-white.svg');
    --btn-hover-bg: var(--rhs-primary);
    --btn-hover-border: var(--rhs-primary);
    --btn-hover-color: #fff;
    --btn-hover-circle: #fff;
    --btn-hover-arrow: url('../images/arrow-primary.svg');
}

/* Services head button on light section */
.rhs-services-home-head-btn {
    flex-shrink: 0;
    --btn-bg: var(--rhs-primary) !important;
    --btn-border: var(--rhs-primary) !important;
    --btn-color: #fff !important;
    --btn-circle: #fff !important;
    --btn-arrow: url('../images/arrow-primary.svg') !important;
    --btn-hover-bg: var(--rhs-gold) !important;
    --btn-hover-border: var(--rhs-gold) !important;
    --btn-hover-color: var(--rhs-dark) !important;
    --btn-hover-circle: var(--rhs-primary) !important;
    --btn-hover-arrow: url('../images/arrow-white.svg') !important;
}

/* Contact panel side buttons full width */
.rhs-contact-home-btns .btn-default {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding-left: 26px !important;
    padding-right: 62px !important;
}

@media only screen and (max-width: 991px) {
    .btn-default,
    .btn-default:hover,
    .btn-default:focus,
    .rhs-btn-clean,
    .rhs-btn-clean:hover,
    .rhs-btn-clean:focus {
        min-height: 48px;
        padding: 11px 56px 11px 22px !important;
        font-size: 14px !important;
    }

    .btn-default::before,
    .rhs-btn-clean::before {
        width: 36px !important;
        height: 36px !important;
        right: 5px !important;
        background-size: 12px auto !important;
    }
}

/* Preloader — full logo + brand name */
.preloader.rhs-preloader,
.rhs-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse 75% 55% at 50% 40%, rgba(179, 134, 68, 0.14) 0%, transparent 60%),
        linear-gradient(168deg, #fcfdfb 0%, #f3f6f3 48%, #faf8f3 100%);
}

.preloader.rhs-preloader[style*="display: none"],
.rhs-preloader[style*="display: none"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.rhs-loader-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    padding: 0 20px;
    text-align: center;
    width: min(420px, 92vw);
}

.rhs-loader-frame {
    position: relative;
    width: 100%;
    max-width: 360px;
    aspect-ratio: 2.15 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rhs-loader-glow {
    position: absolute;
    inset: 8%;
    border-radius: 28px;
    background: radial-gradient(circle at center, rgba(0, 66, 70, 0.1) 0%, transparent 70%);
    animation: rhs-loader-glow 2.4s ease-in-out infinite;
    pointer-events: none;
}

.rhs-loader-card {
    position: relative;
    z-index: 1;
    width: calc(100% - 36px);
    background: transparent;
    border-radius: 18px;
    padding: 0;
    box-shadow: none;
    animation: rhs-loader-pulse 2.2s ease-in-out infinite;
}

.rhs-loader-card img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 110px;
    object-fit: contain;
    margin: 0 auto;
}

.rhs-loader-meta {
    opacity: 0;
    transform: translateY(10px);
    animation: rhs-loader-reveal 0.7s ease 0.25s forwards;
}

.rhs-loader-title {
    margin: 0;
    font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    font-size: clamp(1.45rem, 3.8vw, 1.85rem);
    font-weight: 600;
    line-height: 1.2;
    color: #004246;
    letter-spacing: 0.01em;
}

.rhs-loader-tag {
    margin: 10px 0 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b38644;
}

.rhs-loader-bar {
    width: min(170px, 50vw);
    height: 2px;
    border-radius: 99px;
    background: rgba(0, 66, 70, 0.1);
    overflow: hidden;
    opacity: 0;
    animation: rhs-loader-reveal 0.5s ease 0.4s forwards;
}

.rhs-loader-bar span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #004246 0%, #b38644 100%);
    animation: rhs-loader-progress 1.25s ease-in-out 0.45s infinite;
}

@keyframes rhs-loader-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes rhs-loader-glow {
    0%, 100% {
        opacity: 0.45;
        transform: scale(0.96);
    }
    50% {
        opacity: 1;
        transform: scale(1.06);
    }
}

@keyframes rhs-loader-reveal {
    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes rhs-loader-progress {
    0% {
        transform: translateX(-130%);
    }
    100% {
        transform: translateX(280%);
    }
}

@media (max-width: 575px) {
    .rhs-loader-stage {
        gap: 22px;
    }

    .rhs-loader-card {
        padding: 0;
        border-radius: 14px;
    }

    .rhs-loader-card img {
        max-height: 88px;
    }
}

/* Responsive */
@media (max-width: 1199px) {
    .rhs-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .rhs-about-intro-grid,
    .rhs-about-grid,
    .rhs-contact-grid,
    .rhs-contact-home-grid,
    .rhs-service-detail {
        grid-template-columns: 1fr;
    }

    .rhs-service-detail.rhs-reverse {
        direction: ltr;
    }

    .rhs-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .rhs-about-images img {
        height: 200px;
        min-height: 200px;
    }
}

@media (max-width: 767px) {
    .rhs-services-grid,
    .rhs-blog-grid {
        grid-template-columns: 1fr;
    }

    .rhs-service-premium-media {
        height: clamp(240px, 55vw, 320px);
    }

    .rhs-about-images .rhs-about-badge {
        position: relative !important;
        transform: none !important;
        left: auto !important;
        bottom: auto !important;
        margin-top: 20px;
    }

    .rhs-testimonials,
    .rhs-advocate-cta-bg {
        background-attachment: scroll;
    }

    .rhs-contact-cards {
        grid-template-columns: 1fr;
    }

    .rhs-contact-home-btns {
        grid-template-columns: 1fr;
    }

    .rhs-gallery-prev,
    .rhs-gallery-next {
        display: none;
    }

    .rhs-gallery-item {
        aspect-ratio: 3 / 4;
    }

    .rhs-service-detail-image img {
        height: 280px;
    }

    .rhs-page-banner {
        padding: 110px 0 80px;
    }

    .rhs-page-banner-content h1 {
        font-size: clamp(2.1rem, 9vw, 2.8rem);
    }

    .rhs-page-crumbs {
        margin-bottom: 14px;
        padding: 7px 14px;
    }

    .rhs-header .navbar-brand img {
        max-height: 60px;
    }

    
}

@media (max-width: 575px) {
    .rhs-form {
        padding: 24px 20px;
    }
}

/* Booking Modal — stylish popup form */
body.rhs-modal-open {
    overflow: hidden;
}

.rhs-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.rhs-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.rhs-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 28, 22, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.rhs-modal-dialog {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #fff;
    border-radius: 20px;
    padding: clamp(28px, 4vw, 40px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    transform: translateY(24px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.rhs-modal.is-open .rhs-modal-dialog {
    transform: translateY(0) scale(1);
}

.rhs-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(26, 61, 50, 0.08);
    color: var(--rhs-primary);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease;
}

.rhs-modal-close:hover {
    background: var(--rhs-primary);
    color: #fff;
}

.rhs-modal-close i {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 16px;
}

.rhs-modal-header {
    margin-bottom: 24px;
    padding-right: 36px;
}

.rhs-modal-tag {
    display: block;
    color: var(--rhs-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.rhs-modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    font-weight: 600;
    color: var(--rhs-primary);
    margin: 0 0 10px;
    line-height: 1.2;
}

.rhs-modal-header p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-color);
}

.rhs-modal-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 22px;
}

.rhs-modal-field {
    display: flex;
    flex-direction: column;
}

.rhs-modal-field-full {
    grid-column: 1 / -1;
}

.rhs-modal-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--rhs-primary);
    margin-bottom: 7px;
}

.rhs-modal-field input,
.rhs-modal-field select,
.rhs-modal-field textarea {
    width: 100%;
    border: 1px solid rgba(26, 61, 50, 0.15);
    border-radius: 12px;
    padding: 13px 14px;
    font-size: 15px;
    color: var(--rhs-dark);
    background: #f7f9f6;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.rhs-modal-field input:focus,
.rhs-modal-field select:focus,
.rhs-modal-field textarea:focus {
    border-color: var(--rhs-gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.2);
}

.rhs-modal-field input.rhs-service-readonly,
.rhs-modal-field input.rhs-service-readonly:focus {
    background: rgba(26, 61, 50, 0.06);
    border-color: rgba(26, 61, 50, 0.12);
    color: var(--rhs-primary);
    font-weight: 600;
    cursor: default;
    box-shadow: none;
    pointer-events: none;
}

.rhs-modal-field textarea {
    resize: vertical;
    min-height: 90px;
}

.rhs-modal-submit {
    width: 100% !important;
    justify-content: center !important;
}

@media (max-width: 575px) {
    .rhs-modal-fields {
        grid-template-columns: 1fr;
    }

    .rhs-modal-dialog {
        padding: 24px 18px;
        border-radius: 16px;
    }
}
