/* ============================================================
   EMİR SULTAN DERNEĞİ — CSS v2
   ============================================================ */

/* ---- Brand Tokens ---- */
:root {
    --rv-green: #123f6d;
    --rv-green-mid: #1f5b91;
    --rv-green-light: #3b7db4;
    --rv-green-pale: #e8f1f8;
    --rv-green-xpale: #f4f8fc;
    --rv-gold: #2d6fa6;
    --rv-gold-mid: #4b8fc2;
    --rv-gold-light: #8dc1e3;
    --rv-gold-pale: #eaf4fb;
    --rv-white: #ffffff;
    --rv-bg: #fafcfb;
    --rv-text: #1a1f2e;
    --rv-text-muted: #6b7280;
    --rv-border: #dce8f1;
    --rv-radius: 14px;
    --rv-radius-lg: 22px;
    --rv-shadow: 0 4px 28px rgba(18, 63, 109, 0.1);
    --rv-shadow-md: 0 8px 40px rgba(18, 63, 109, 0.13);
    --rv-shadow-gold: 0 4px 24px rgba(45, 111, 166, 0.2);
    --rv-transition: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    --rv-topbar-h: 38px;
    --rv-navbar-h: 108px;
    --rv-header-h: calc(var(--rv-topbar-h) + var(--rv-navbar-h));
}

.rv-auth-page {
    margin-top: var(--rv-header-h);
    background: var(--rv-bg);
}

.rv-auth-hero {
    position: relative;
    min-height: calc(100vh - var(--rv-header-h));
    padding: 92px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rv-auth-bg,
.rv-auth-shade {
    position: absolute;
    inset: 0;
}

.rv-auth-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.rv-auth-shade {
    background: linear-gradient(
        90deg,
        rgba(8, 35, 63, 0.88),
        rgba(8, 35, 63, 0.58) 45%,
        rgba(8, 35, 63, 0.3)
    );
}

.rv-auth-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
    gap: 56px;
    align-items: center;
}

.rv-auth-copy .rv-page-title,
.rv-auth-copy .rv-page-desc {
    color: #fff;
}

.rv-auth-card,
.rv-panel,
.rv-profile-summary {
    background: #fff;
    border: 1px solid rgba(14, 58, 99, 0.12);
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(5, 27, 49, 0.14);
}

.rv-auth-card {
    padding: 34px;
}

.rv-auth-card-head,
.rv-panel-head {
    margin-bottom: 22px;
}

.rv-auth-card-head h2,
.rv-panel-head h3,
.rv-profile-summary h2 {
    margin: 0;
    color: #182132;
    font-weight: 600;
}

.rv-auth-card-head p,
.rv-panel-head p,
.rv-profile-summary p {
    margin: 7px 0 0;
    color: #7b8494;
}

.rv-form-group {
    margin-bottom: 16px;
}

.rv-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #253046;
    font-weight: 600;
    font-size: 0.9rem;
}

.rv-form-group input {
    width: 100%;
    min-height: 50px;
    border: 1px solid rgba(18, 63, 109, 0.16);
    border-radius: 8px;
    padding: 12px 14px;
    color: #182132;
    background: #f8fbfd;
    outline: none;
}

.rv-form-group input:focus {
    border-color: rgba(18, 63, 109, 0.46);
    box-shadow: 0 0 0 4px rgba(18, 63, 109, 0.09);
    background: #fff;
}

.rv-form-group input:disabled {
    color: #777f8d;
    background: #eef4f8;
}

.rv-form-group small {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-weight: 600;
}

.rv-auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.rv-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #5d6675;
    font-weight: 600;
    cursor: pointer;
}

.rv-auth-switch {
    margin-top: 20px;
    color: #6f7886;
    text-align: center;
}

.rv-auth-switch a {
    color: #123f6d;
    font-weight: 600;
    text-decoration: none;
}

.rv-profile-grid {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.rv-profile-summary {
    padding: 28px;
    text-align: center;
    position: sticky;
    top: 120px;
}

.rv-profile-avatar {
    width: 86px;
    height: 86px;
    margin: 0 auto 16px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #123f6d;
    color: #fff;
    font-size: 1.7rem;
    font-weight: 600;
}

.rv-profile-forms {
    display: grid;
    gap: 22px;
}

.rv-panel {
    padding: 28px;
}

@media (max-width: 991.98px) {
    .rv-auth-grid,
    .rv-profile-grid {
        grid-template-columns: 1fr;
    }

    .rv-auth-hero {
        min-height: auto;
        padding: 64px 0;
    }

    .rv-profile-summary {
        position: static;
    }
}

@media (max-width: 575.98px) {
    .rv-auth-card,
    .rv-panel,
    .rv-profile-summary {
        padding: 22px;
    }
}

/* ---- Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--rv-bg);
    color: var(--rv-text);
    line-height: 1.7;
    overflow-x: hidden;
    max-width: 100%;
}
body.rv-menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none !important;
}
.ph {
    vertical-align: middle;
}
.rv-anchor {
    display: block;
    position: relative;
    top: calc(var(--rv-header-h) * -1);
    height: 0;
    overflow: hidden;
}

html:not(.aos-ready) [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.rv-gallery-section [data-aos],
.rv-video-section [data-aos],
.rv-haberler-section [data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.rv-topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--rv-topbar-h);
    background:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 0 1px,
            transparent 1px 20px
        ),
        linear-gradient(90deg, #0b2a4b 0%, #174f82 48%, #103b66 100%);
    z-index: 1060;
    transition: transform 0.35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.rv-tb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
    min-height: var(--rv-topbar-h);
}

.rv-tb-left,
.rv-tb-right {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 100%;
    min-width: 0;
}

.rv-tb-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 28px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.79rem;
    font-weight: 400;
    line-height: 1;
    border-radius: 999px;
    padding: 0 8px;
    transition: var(--rv-transition);
}
.rv-tb-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}
.rv-tb-link i {
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    line-height: 1;
}

.rv-tb-divider {
    display: none;
}

.rv-tb-text {
    display: flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.76rem;
}
.rv-tb-text i {
    font-size: 0.88rem;
}

.rv-tb-social {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 999px;
    line-height: 1;
    transition: var(--rv-transition);
}
.rv-tb-social:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.rv-search-overlay {
    position: fixed;
    top: var(--rv-header-h); /* navbar altından başlar */
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 2px solid var(--rv-border);
    padding: 20px 0;
    z-index: 1044; /* navbar (1050) ALTINDA — örtmez */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;
    pointer-events: none;
}
.rv-search-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.rv-search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--rv-green-xpale);
    border: 1.5px solid var(--rv-border);
    border-radius: 50px;
    padding: 10px 20px;
    transition: var(--rv-transition);
}
.rv-search-bar:focus-within {
    border-color: var(--rv-green);
    box-shadow: 0 0 0 4px rgba(18, 63, 109, 0.08);
}

.rv-sb-icon {
    color: var(--rv-green);
    font-size: 1.15rem;
    flex-shrink: 0;
}

.rv-search-bar input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--rv-text);
    outline: none;
}
.rv-search-bar input::placeholder {
    color: var(--rv-text-muted);
    font-weight: 500;
}

.rv-search-close {
    background: none;
    border: none;
    color: var(--rv-text-muted);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0 4px;
    transition: var(--rv-transition);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}
.rv-search-submit {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--rv-green);
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--rv-transition);
    flex-shrink: 0;
}
.rv-search-submit:hover {
    background: var(--rv-gold);
    transform: translateX(2px);
}
.rv-search-close:hover {
    color: var(--rv-green);
    transform: rotate(90deg);
}

.rv-search-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}
.rv-search-tags span {
    font-size: 0.8rem;
    color: var(--rv-text-muted);
    font-weight: 600;
}
.rv-search-tags a {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rv-green);
    background: var(--rv-green-pale);
    border: 1px solid var(--rv-border);
    padding: 4px 12px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--rv-transition);
}
.rv-search-tags a:hover {
    background: var(--rv-green);
    color: #fff;
    border-color: var(--rv-green);
}

/* ============================================================
   NAVBAR v2
   ============================================================ */
.rv-navbar {
    position: fixed;
    top: var(--rv-topbar-h);
    left: 0;
    right: 0;
    height: var(--rv-navbar-h);
    z-index: 1050;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1.5px solid transparent;
    transition: var(--rv-transition);
    padding: 0;
}

.rv-navbar.rv-scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--rv-border);
    box-shadow: 0 2px 24px rgba(18, 63, 109, 0.09);
}

.rv-nav-container {
    display: flex;
    align-items: center;
    height: var(--rv-navbar-h);
    gap: 18px;
}

/* Logo — dikey logoya geniş alan */
.rv-brand {
    flex-shrink: 0;
    line-height: 0;
    padding: 6px 0;
}

.rv-logo {
    height: 80px;
    width: auto;
    transition: var(--rv-transition);
    display: block;
    padding: 0.5rem 0;
}
.rv-navbar.rv-scrolled .rv-logo {
    height: 78px;
}

/* Nav links — ortalanmış, desktop'ta her zaman görünür */
.navbar-collapse {
    flex: 1;
}

.rv-mobile-menu-head,
.rv-mobile-menu-actions {
    display: none;
}

.rv-mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(8, 27, 48, 0.36);
    z-index: 1095;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.24s ease,
        visibility 0.24s ease;
}
.rv-mobile-nav-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

/* Desktop'ta collapse'ı zorla göster */
@media (min-width: 992px) {
    .rv-mobile-nav-backdrop {
        display: none;
    }
    .rv-navbar .navbar-collapse {
        display: flex !important;
        flex: 1;
        align-items: center;
        justify-content: center;
    }
    .rv-navbar .navbar-nav {
        flex-direction: row !important;
        align-items: center;
    }
}

.rv-nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--rv-text) !important;
    padding: 6px 12px !important;
    transition: var(--rv-transition);
    position: relative;
    white-space: nowrap;
}
.rv-nav-link::after {
    display: none;
}
.rv-nav-link:hover,
.rv-nav-link.active {
    color: var(--rv-green) !important;
}

.rv-services-dropdown {
    position: relative;
}

.rv-services-dropdown .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.rv-services-dropdown .dropdown-toggle::after {
    display: none;
}

.rv-dropdown-caret {
    font-size: 1.05rem;
    line-height: 1;
    transition: transform 0.25s ease;
}

.rv-services-dropdown:hover .rv-dropdown-caret,
.rv-services-dropdown
    .dropdown-toggle[aria-expanded="true"]
    .rv-dropdown-caret {
    transform: rotate(180deg);
}

.rv-services-menu {
    min-width: 250px;
    padding: 10px;
    border: 1.5px solid var(--rv-border);
    border-radius: 12px;
    box-shadow: var(--rv-shadow-md);
    margin-top: 0;
    z-index: 1085;
}

.rv-services-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: 8px;
    color: var(--rv-text);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 9px 11px;
    transition: var(--rv-transition);
}

.rv-services-menu .dropdown-item:hover,
.rv-services-menu .dropdown-item:focus,
.rv-services-menu .dropdown-item.active,
.rv-services-menu .dropdown-item:active {
    background: transparent;
    color: var(--rv-green);
    transform: translateX(2px);
}

@media (min-width: 992px) {
    .rv-services-dropdown:hover .rv-services-menu,
    .rv-services-dropdown:focus-within .rv-services-menu {
        display: block;
    }
}

/* Right action area */
.rv-nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* Icon buttons (search, user, cart) */
.rv-icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--rv-text);
    font-size: 1.05rem;
    cursor: pointer;
    position: relative;
    transition: var(--rv-transition);
}
.rv-icon-btn:hover {
    background: transparent;
    color: var(--rv-green);
}

/* Cart badge */
.rv-cart-btn {
    position: relative;
}
.rv-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--rv-gold);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.rv-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 27, 48, 0.34);
    z-index: 1080;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}
.rv-cart-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.rv-cart-drawer {
    position: fixed;
    top: var(--rv-header-h);
    right: 18px;
    width: min(390px, calc(100vw - 28px));
    max-height: calc(100vh - var(--rv-header-h) - 24px);
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 14px;
    box-shadow: 0 22px 70px rgba(11, 38, 68, 0.22);
    z-index: 1090;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.98);
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;
}
.rv-cart-drawer.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.rv-cart-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 20px 16px;
    background: linear-gradient(
        135deg,
        var(--rv-green) 0%,
        var(--rv-green-mid) 100%
    );
    color: #fff;
}
.rv-cart-kicker {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--rv-gold-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.rv-cart-head h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}
.rv-cart-close {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.rv-cart-body {
    padding: 16px;
    display: grid;
    gap: 10px;
}
.rv-cart-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--rv-border);
    border-radius: 12px;
    background: var(--rv-green-xpale);
}
.rv-cart-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--rv-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}
.rv-cart-icon-gold {
    background: var(--rv-gold);
}
.rv-cart-info strong {
    display: block;
    color: var(--rv-text);
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.25;
}
.rv-cart-info span {
    display: block;
    color: var(--rv-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}
.rv-cart-price {
    color: var(--rv-green);
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
}
.rv-cart-summary {
    padding: 16px;
    border-top: 1px solid var(--rv-border);
    background: #fff;
}
.rv-cart-summary div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--rv-text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}
.rv-cart-summary strong {
    color: var(--rv-text);
    font-size: 1.1rem;
}
.rv-cart-checkout {
    width: 100%;
    background: var(--rv-green);
    color: #fff !important;
    border-radius: 10px;
    padding: 11px 14px;
    font-weight: 600;
}
.rv-cart-link {
    display: block;
    text-align: center;
    color: var(--rv-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.84rem;
    margin-top: 10px;
}

.rv-cart-page {
    background: #f7f8fa;
}

.rv-cart-notice,
.rv-cart-list-panel,
.rv-cart-summary-panel,
.rv-cart-empty {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(18, 63, 109, 0.05);
}

.rv-cart-notice {
    margin-bottom: 22px;
    padding: 17px 18px;
}

.rv-cart-notice > div > i {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--rv-green);
    background: #f1f5f9;
    font-size: 1.12rem;
}

.rv-cart-notice h5 {
    margin: 0 0 4px;
    color: var(--rv-text);
    font-size: 0.94rem;
    font-weight: 600;
}

.rv-cart-notice p {
    margin: 0;
    color: #7b8493;
    font-size: 0.82rem;
    line-height: 1.72;
}

.rv-cart-notice a {
    color: var(--rv-green);
    font-weight: 600;
}

.rv-cart-empty {
    padding: 52px 24px;
    text-align: center;
}

.rv-cart-empty > i {
    color: #bac6d3;
    font-size: 2.8rem;
}

.rv-cart-empty h4 {
    margin: 12px 0 6px;
    color: var(--rv-text);
    font-weight: 600;
}

.rv-cart-list-panel {
    overflow: hidden;
}

.rv-cart-list-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(18, 63, 109, 0.07);
    color: var(--rv-text);
    font-size: 0.9rem;
    font-weight: 600;
}

.rv-cart-clear-btn,
.rv-cart-remove-btn,
.rv-cart-update-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(18, 63, 109, 0.1);
    border-radius: 8px;
    background: #f8fafc;
    color: var(--rv-green);
    font-size: 0.78rem;
    font-weight: 500;
    transition: var(--rv-transition);
}

.rv-cart-clear-btn {
    padding: 7px 11px;
}

.rv-cart-remove-btn {
    width: 34px;
    height: 34px;
    padding: 0;
}

.rv-cart-update-btn {
    width: 100%;
    padding: 10px 14px;
}

.rv-cart-clear-btn:hover,
.rv-cart-remove-btn:hover,
.rv-cart-update-btn:hover {
    border-color: rgba(18, 63, 109, 0.18);
    background: #eef3f8;
    color: var(--rv-green);
}

.rv-cart-page-items {
    display: grid;
    gap: 10px;
    padding: 12px;
}

.rv-cart-page-item {
    padding: 12px;
    border: 1px solid rgba(18, 63, 109, 0.07);
    border-radius: 13px;
    background: #fbfdff;
}

.rv-cart-page-image,
.rv-cart-page-placeholder {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    border-radius: 11px;
}

.rv-cart-page-image {
    object-fit: cover;
}

.rv-cart-page-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rv-green);
    background: #f1f5f9;
    font-size: 1.2rem;
}

.rv-cart-page-title {
    color: var(--rv-text);
    font-size: 0.94rem;
    font-weight: 600;
}

.rv-cart-page-price {
    color: var(--rv-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.rv-cart-page-qty {
    width: 70px;
    padding: 6px 8px;
    border: 1px solid rgba(18, 63, 109, 0.12);
    border-radius: 8px;
    color: var(--rv-text);
    background: #fff;
    font-size: 0.84rem;
    font-weight: 500;
    text-align: center;
}

.rv-cart-list-footer {
    padding: 0 12px 12px;
}

.rv-cart-summary-panel {
    position: sticky;
    top: calc(var(--rv-header-h) + 20px);
    padding: 22px;
}

.rv-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #7b8493;
    font-size: 0.86rem;
}

.rv-cart-total strong {
    color: var(--rv-green);
    font-size: 1.2rem;
    font-weight: 600;
}

.rv-cart-summary-panel hr {
    border-color: rgba(18, 63, 109, 0.1);
}

.rv-cart-summary-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
}

.rv-btn-donate {
    background: linear-gradient(
        135deg,
        var(--rv-green) 0%,
        var(--rv-green-mid) 100%
    );
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-weight: 500;
    font-size: 0.88rem;
    padding: 16px 24px;
    line-height: 1.2;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 16px rgba(18, 63, 109, 0.25);
    transition: var(--rv-transition);
    text-decoration: none;
    white-space: nowrap;
}
.rv-btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(18, 63, 109, 0.35);
}

.rv-toggler {
    display: none;
    align-items: center;
    justify-content: center;
    border: 0;
    font-size: 1.35rem;
    color: var(--rv-green);
    background: transparent;
    padding: 5px 6px;
    cursor: pointer;
}
.rv-toggler:focus {
    box-shadow: none;
}

/* Mobile nav — Bootstrap collapse gizle, bottom sheet aktif */
@media (max-width: 991.98px) {
    .rv-navbar {
        height: var(--rv-navbar-h);
        min-height: var(--rv-navbar-h);
    }
    .rv-nav-container {
        height: var(--rv-navbar-h);
        min-height: var(--rv-navbar-h);
        flex-wrap: nowrap;
    }
    .rv-navbar .navbar-collapse {
        display: none !important;
    }
    .rv-toggler {
        display: inline-flex;
    }
    .rv-nav-actions .rv-btn-donate {
        display: none;
    }
}

/* ============================================================
   MOBILE MENU — Bottom Sheet
   ============================================================ */
body.rv-menu-open {
    overflow: hidden;
}

.rv-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1200;
    pointer-events: none;
    visibility: hidden;
}
.rv-mobile-menu.is-open {
    pointer-events: auto;
    visibility: visible;
}

.rv-mm-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 27, 48, 0.6);
    opacity: 0;
    transition: opacity 0.32s ease;
    backdrop-filter: blur(3px);
}
.rv-mobile-menu.is-open .rv-mm-backdrop {
    opacity: 1;
}

.rv-mm-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 24px 24px 0 0;
    max-height: 88vh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-bottom: max(env(safe-area-inset-bottom, 0px), 16px);
    transform: translateY(100%);
    transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 -8px 60px rgba(8, 27, 48, 0.22);
}
.rv-mobile-menu.is-open .rv-mm-sheet {
    transform: translateY(0);
}

.rv-mm-handle {
    width: 40px;
    height: 4px;
    background: var(--rv-border);
    border-radius: 4px;
    margin: 12px auto 0;
    flex-shrink: 0;
}

.rv-mm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-bottom: 1px solid var(--rv-border);
}
.rv-mm-logo {
    height: 52px;
    object-fit: contain;
}
.rv-mm-close {
    width: 38px;
    height: 38px;
    border: 1.5px solid var(--rv-border);
    border-radius: 12px;
    background: var(--rv-green-pale);
    color: var(--rv-green);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--rv-transition);
}
.rv-mm-close:hover {
    background: var(--rv-green);
    color: #fff;
}

/* Quick actions: Profil, Sepet, WhatsApp */
.rv-mm-quick {
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--rv-border);
}
.rv-mm-quick-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 6px;
    background: var(--rv-green-xpale);
    border: 1.5px solid var(--rv-border);
    border-radius: 14px;
    cursor: pointer;
    text-decoration: none;
    color: var(--rv-text);
    font-size: 0.75rem;
    font-weight: 600;
    font-family: inherit;
    transition: var(--rv-transition);
}
.rv-mm-quick-btn:hover {
    background: var(--rv-green-pale);
    border-color: var(--rv-green-mid);
    color: var(--rv-green);
}
.rv-mm-qi {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: #fff;
    border: 1.5px solid var(--rv-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--rv-text);
}
.rv-mm-qi--cart {
    background: var(--rv-gold-pale);
    border-color: var(--rv-gold-mid);
    color: var(--rv-gold);
}
.rv-mm-qi--wa {
    background: #e7f1f8;
    border-color: #bbd8ec;
    color: #22c55e;
}
.rv-mm-cart-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 20px;
    background: var(--rv-green);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nav links */
.rv-mm-nav {
    padding: 8px 12px;
}
.rv-mm-link {
    display: flex;
    align-items: center;
    gap: 11px;
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    text-decoration: none;
    color: var(--rv-text);
    font-size: 0.96rem;
    font-weight: 600;
    font-family: inherit;
    background: transparent;
    border: none;
    cursor: pointer;
    transition:
        background 0.18s,
        color 0.18s;
    text-align: left;
}
.rv-mm-link > i:first-child,
.rv-mm-toggle > span > i:first-child {
    display: none;
}
.rv-mm-link:hover,
.rv-mm-link:focus-visible {
    background: var(--rv-green-xpale);
    color: var(--rv-green);
}

/* Accordion */
.rv-mm-group {
    margin-bottom: 2px;
}
.rv-mm-toggle {
    justify-content: space-between;
}
.rv-mm-toggle > span {
    display: flex;
    align-items: center;
    gap: 11px;
}
.rv-mm-caret {
    font-size: 1.1rem;
    color: #9ca3af;
    transition: transform 0.22s ease;
    flex-shrink: 0;
}
.rv-mm-toggle[aria-expanded="true"] .rv-mm-caret {
    transform: rotate(180deg);
}
.rv-mm-toggle[aria-expanded="true"] {
    background: var(--rv-green-xpale);
    color: var(--rv-green);
}
.rv-mm-sub {
    padding: 4px 8px 6px 48px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.rv-mm-sub-link {
    display: block;
    padding: 9px 12px;
    border-radius: 10px;
    color: var(--rv-text);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition:
        background 0.16s,
        color 0.16s;
}
.rv-mm-sub-link:hover {
    background: var(--rv-green-pale);
    color: var(--rv-green);
}

/* Footer */
.rv-mm-foot {
    padding: 14px 16px 20px;
    border-top: 1px solid var(--rv-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}
/* ============================================================
   HERO v2 — kompakt & güçlü
   ============================================================ */
.rv-hero {
    position: relative;
    margin-top: var(--rv-header-h);
}

/* Splide height constraint */
.rv-hero-splide,
.rv-hero-splide .splide__track,
.rv-hero-splide .splide__list {
    height: clamp(480px, 70vh, 780px);
}

.rv-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

/* Gradient overlay */
.rv-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(8, 30, 55, 0.8) 0%,
        rgba(8, 30, 55, 0.5) 52%,
        rgba(8, 30, 55, 0.18) 100%
    );
}
.rv-overlay-dark {
    background: linear-gradient(
        135deg,
        rgba(5, 20, 38, 0.85) 0%,
        rgba(5, 20, 38, 0.4) 100%
    );
}
.rv-overlay-green {
    background: linear-gradient(
        135deg,
        rgba(10, 36, 64, 0.85) 0%,
        rgba(22, 70, 113, 0.45) 70%,
        rgba(10, 36, 64, 0.2) 100%
    );
}


/* Slide content wrapper */
.rv-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.rv-slide-inner {
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.rv-slide-content-wrap {
    max-width: 640px;
}

.rv-slide-tag {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.035em;
    padding: 2px 0 2px 10px;
    border-left: 3px solid var(--rv-gold);
    margin-bottom: 16px;
}
.rv-tag-gold {
    background: transparent;
}

.rv-slide-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -0.045em;
    margin-bottom: 16px;
    font-style: normal;
}
.rv-slide-title em {
    display: inline-block;
    font-family: "Yellowtail", cursive;
    font-style: normal;
    font-size: 1.34em;
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: 0.015em;
}

.rv-gold-text {
    color: var(--rv-gold-light);
}

.rv-slide-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 30px;
    line-height: 1.78;
    max-width: 480px;
}

.rv-slide-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rv-btn-hero-primary {
    font-family: "Poppins", sans-serif;
    background: rgba(45, 111, 166, 0.92);
    color: #fff !important;
    font-weight: 500;
    font-size: 0.84rem;
    letter-spacing: 0.035em;
    padding: 11px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 22px rgba(5, 20, 38, 0.18);
    transition: var(--rv-transition);
    text-decoration: none;
}
.rv-btn-hero-primary:hover {
    background: var(--rv-gold-mid);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(5, 20, 38, 0.24);
}

.rv-btn-hero-outline {
    font-family: "Poppins", sans-serif;
    background: rgba(255, 255, 255, 0.04);
    color: #fff !important;
    font-weight: 500;
    font-size: 0.84rem;
    letter-spacing: 0.035em;
    padding: 11px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    transition: var(--rv-transition);
    text-decoration: none;
    backdrop-filter: blur(6px);
}
.rv-btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.62);
    transform: translateY(-2px);
}

/* Splide arrows */
.splide__arrow {
    background: rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    width: 48px !important;
    height: 48px !important;
    opacity: 1 !important;
    transition: var(--rv-transition) !important;
}
.splide__arrow:hover {
    background: var(--rv-gold) !important;
    border-color: var(--rv-gold) !important;
}
.splide__arrow svg {
    fill: #fff !important;
    width: 16px !important;
    height: 16px !important;
}

.rv-hero-splide .splide__arrows {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 10;
    display: flex;
    gap: 0;
    transform: translateX(-50%);
    pointer-events: none;
}
.rv-hero-splide .splide__arrow {
    position: static;
    width: 46px !important;
    height: 46px !important;
    border-radius: 0;
    transform: none;
    pointer-events: auto;
}
.rv-hero-splide .splide__arrow--prev {
    background: var(--rv-gold) !important;
    border-color: var(--rv-gold) !important;
}
.rv-hero-splide .splide__arrow--next {
    background: #fff !important;
    border-color: #fff !important;
}
.rv-hero-splide .splide__arrow--next svg {
    fill: var(--rv-green) !important;
}
.rv-hero-splide .splide__arrow:hover {
    background: var(--rv-green) !important;
    border-color: var(--rv-green) !important;
}
.rv-hero-splide .splide__arrow:hover svg {
    fill: #fff !important;
}

.splide__pagination {
    display: none !important;
}

/* Slide counter */
.rv-slide-counter {
    position: absolute;
    bottom: 28px;
    right: 28px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    font-weight: 600;
}
.rv-sc-current {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--rv-gold-light);
    line-height: 1;
}
.rv-sc-track {
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    overflow: hidden;
}
.rv-sc-fill {
    height: 100%;
    background: var(--rv-gold);
    width: 0;
    border-radius: 2px;
    transition: width 0.1s linear;
}
.rv-sc-total {
    opacity: 0.6;
}

/* ============================================================
   SECTIONS — Shared
   ============================================================ */
.rv-section {
    padding: 90px 0;
}

.rv-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    color: var(--rv-green);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0;
    margin-bottom: 12px;
}
.rv-section-tag::before {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--rv-gold);
    flex-shrink: 0;
}

.rv-section-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--rv-text);
    margin-bottom: 12px;
    line-height: 1.25;
}

.rv-section-desc {
    font-size: 1rem;
    color: var(--rv-text-muted);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   HİZMETLER
   ============================================================ */
.rv-hizmetler {
    background: var(--rv-bg);
}

.rv-hizmet-card {
    display: block;
    position: relative;
        aspect-ratio: 1.5 / 2 !important;
    aspect-ratio: 1;
    background: var(--rv-green-pale);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius);
    padding: 0 !important;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(18, 63, 109, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.rv-hizmet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 34px rgba(18, 63, 109, 0.16);
}

.rv-hizmet-cover {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}
.rv-hizmet-card:hover .rv-hizmet-cover {
    transform: scale(1.035);
}
.rv-hizmet-grid {
    transition: opacity 0.45s ease, transform 0.45s ease;
}

/* Cached legacy cards also render as full-cover tiles. */
.rv-hizmet-card > .rv-hizmet-icon {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}
.rv-hizmet-card > .rv-hizmet-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rv-hizmet-card > h5,
.rv-hizmet-card > p,
.rv-hizmet-card > .rv-hizmet-link {
    display: none;
}

/* ============================================================
   PROJELER
   ============================================================ */
.rv-kampanyalar-section {
    position: relative;
    overflow: hidden;
    background: #f5f8fc;
}
.rv-kampanyalar-section .container {
    position: relative;
    z-index: 1;
}
.rv-kampanyalar-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 34px;
}
.rv-kampanyalar-head .rv-section-title {
    margin-bottom: 8px;
}
.rv-kampanyalar-head .rv-section-desc {
    max-width: 620px;
    margin: 0;
}
.rv-kampanyalar-all {
    flex-shrink: 0;
}

.rv-kamp-splide .splide__arrow {
    background: #fff !important;
    border: 1.5px solid var(--rv-border) !important;
    box-shadow: var(--rv-shadow) !important;
}
.rv-kamp-splide .splide__arrow svg {
    fill: var(--rv-green) !important;
}
.rv-kamp-splide .splide__arrow:hover {
    background: var(--rv-green) !important;
    border-color: var(--rv-green) !important;
}
.rv-kamp-splide .splide__arrow:hover svg {
    fill: #fff !important;
}

.rv-kamp-splide,
.rv-kamp-splide .splide__track,
.rv-kamp-splide .splide__list,
.rv-kamp-splide .splide__slide {
    height: auto !important;
}

.rv-kamp-splide .splide__slide {
    display: flex;
    align-items: stretch;
}

.rv-kamp-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--rv-shadow);
    transition: var(--rv-transition);
    height: auto;
    width: 100%;
    border: 1px solid rgba(18, 63, 109, 0.12);
}
.rv-kamp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--rv-shadow-md);
    border-color: rgba(45, 111, 166, 0.42);
}

.rv-kamp-img-wrap {
    display: block;
    position: relative;
    overflow: hidden;
    height: 220px;
}
.rv-kamp-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.rv-kamp-card:hover .rv-kamp-img {
    transform: scale(1.06);
}

.rv-kamp-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(8, 30, 55, 0.34);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 0.74rem;
    font-weight: 500;
    padding: 6px 11px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 16px rgba(5, 20, 38, 0.12);
}
.rv-badge-green,
.rv-badge-gold,
.rv-badge-blue {
    background: rgba(8, 30, 55, 0.34);
    color: #fff;
}

.rv-kamp-body {
    padding: 20px;
}

.rv-kamp-country {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--rv-text-muted);
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}
.rv-kamp-body h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--rv-text);
    margin-bottom: 6px;
    line-height: 1.35;
}
.rv-kamp-body p {
    font-size: 0.85rem;
    color: var(--rv-text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.rv-kamp-progress-wrap {
    margin-bottom: 14px;
}
.rv-kamp-progress-bar {
    height: 7px;
    background: var(--rv-green-pale);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 7px;
}
.rv-kamp-progress-fill {
    height: 100%;
    background: linear-gradient(
        90deg,
        var(--rv-green) 0%,
        var(--rv-green-light) 100%
    );
    border-radius: 50px;
    width: 0;
    transition: width 1.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rv-kamp-progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
}
.rv-kp-collected {
    color: var(--rv-text-muted);
}
.rv-kp-collected strong {
    color: var(--rv-green);
    font-weight: 600;
}
.rv-kp-percent {
    font-weight: 600;
    color: var(--rv-green);
}

.rv-kamp-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}
.rv-kamp-meta {
    display: flex;
    gap: 10px;
    font-size: 0.76rem;
    color: var(--rv-text-muted);
    font-weight: 600;
}
.rv-kamp-meta span {
    display: flex;
    align-items: center;
}

.rv-btn-kampanya {
    background: var(--rv-green);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.86rem;
    padding: 8px 18px;
    border-radius: 50px;
    border: none;
    transition: var(--rv-transition);
    text-decoration: none;
    white-space: nowrap;
}
.rv-btn-kampanya:hover {
    background: var(--rv-gold);
    transform: translateY(-2px);
    box-shadow: var(--rv-shadow-gold);
}

/* Homepage project cards — soft premium */
.rv-kampanyalar-section {
    background: #f7f8fa;
}
.rv-kampanyalar-section .rv-kamp-card {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(18, 63, 109, 0.05);
    padding: 9px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.rv-kampanyalar-section .rv-kamp-card:hover {
    border-color: rgba(18, 63, 109, 0.14);
    box-shadow: 0 20px 42px rgba(18, 63, 109, 0.1);
    transform: translateY(-4px);
}
.rv-kampanyalar-section .rv-kamp-img-wrap {
    height: 210px;
    border-radius: 12px;
}
.rv-kampanyalar-section .rv-kamp-card:hover .rv-kamp-img {
    transform: scale(1.035);
}
.rv-kampanyalar-section .rv-kamp-body {
    padding: 16px 9px 10px;
}
.rv-kampanyalar-section .rv-kamp-country {
    color: #8b95a5;
    font-size: 0.72rem;
    font-weight: 500;
}
.rv-kampanyalar-section .rv-kamp-body h4 {
    font-size: 1.02rem;
    line-height: 1.42;
    margin-bottom: 8px;
}
.rv-kampanyalar-section .rv-kamp-body p {
    color: #7b8493;
    font-size: 0.82rem;
    line-height: 1.7;
}
.rv-kampanyalar-section .rv-kamp-progress-bar {
    height: 5px;
    background: #e8edf3;
}
.rv-kampanyalar-section .rv-kamp-progress-info {
    color: #8b95a5;
    font-size: 0.72rem;
}
.rv-kampanyalar-section .rv-btn-kampanya {
    background: #f1f5f9;
    border: 1px solid rgba(18, 63, 109, 0.1);
    border-radius: 7px;
    color: var(--rv-green) !important;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 8px 14px;
}
.rv-kampanyalar-section .rv-btn-kampanya:hover {
    background: var(--rv-green);
    border-color: var(--rv-green);
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(18, 63, 109, 0.16);
    transform: translateY(-1px);
}
.rv-kampanyalar-section .rv-kamp-splide .splide__arrow {
    border: 1px solid rgba(18, 63, 109, 0.1) !important;
    box-shadow: 0 8px 20px rgba(18, 63, 109, 0.08) !important;
}

/* Inner project and donation cards - keep the homepage premium language */
.rv-page-content .rv-project-grid .rv-kamp-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(18, 63, 109, 0.05);
    padding: 9px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.rv-page-content .rv-project-grid .rv-kamp-card:hover {
    border-color: rgba(18, 63, 109, 0.14);
    box-shadow: 0 20px 42px rgba(18, 63, 109, 0.1);
    transform: translateY(-4px);
}
.rv-page-content .rv-project-grid .rv-kamp-img-wrap {
    height: 210px;
    border-radius: 12px;
}
.rv-page-content .rv-project-grid .rv-kamp-card:hover .rv-kamp-img {
    transform: scale(1.035);
}
.rv-page-content .rv-project-grid .rv-kamp-body {
    padding: 16px 9px 10px;
}
.rv-page-content .rv-project-grid .rv-kamp-country {
    color: #8b95a5;
    font-size: 0.72rem;
    font-weight: 500;
}
.rv-page-content .rv-project-grid .rv-kamp-body h4 {
    font-size: 1.02rem;
    line-height: 1.42;
    margin-bottom: 8px;
}
.rv-page-content .rv-project-grid .rv-kamp-body p {
    color: #7b8493;
    font-size: 0.82rem;
    line-height: 1.7;
}
.rv-page-content .rv-project-grid .rv-kamp-progress-bar {
    height: 5px;
    background: #e8edf3;
}
.rv-page-content .rv-project-grid .rv-kamp-progress-info {
    color: #8b95a5;
    font-size: 0.72rem;
}
.rv-page-content .rv-project-grid .rv-btn-kampanya {
    background: #f1f5f9;
    border: 1px solid rgba(18, 63, 109, 0.1);
    border-radius: 7px;
    color: var(--rv-green) !important;
    font-size: 0.78rem;
    font-weight: 500;
    padding: 8px 14px;
}
.rv-page-content .rv-project-grid .rv-btn-kampanya:hover {
    background: var(--rv-green);
    border-color: var(--rv-green);
    color: #fff !important;
    box-shadow: 0 10px 22px rgba(18, 63, 109, 0.16);
    transform: translateY(-1px);
}
.rv-page-content .rv-project-grid .rv-btn-kampanya-detail {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
    background: transparent;
    border-color: transparent;
    color: #7b8493 !important;
}
.rv-page-content .rv-project-grid .rv-btn-kampanya-detail:hover {
    background: #f1f5f9;
    border-color: rgba(18, 63, 109, 0.08);
    color: var(--rv-green) !important;
    box-shadow: none;
}

.rv-btn-outline-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--rv-green) !important;
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.015em;
    padding: 10px 18px;
    border-radius: 7px;
    border: 1px solid rgba(18, 63, 109, 0.3);
    box-shadow: 0 5px 16px rgba(18, 63, 109, 0.06);
    transition: var(--rv-transition);
    text-decoration: none;
}
.rv-btn-outline-green:hover {
    background: var(--rv-green);
    border-color: var(--rv-green);
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(18, 63, 109, 0.18);
}

/* ============================================================
   HOW TO DONATE
   ============================================================ */
.rv-how-section {
    background: #f7f8fa;
    position: relative;
    overflow: hidden;
}
.rv-how-head {
    margin-bottom: 30px;
}
.rv-how-head-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
    align-items: end;
    gap: 28px;
}
.rv-how-head-grid--center {
    display: block;
}
.rv-how-head .rv-section-title,
.rv-how-head .rv-section-desc {
    margin: 0;
}
.rv-how-head .rv-section-desc {
    max-width: 520px;
}
.rv-how-head-grid--center .rv-section-title {
    margin-bottom: 12px;
}
.rv-how-head-grid--center .rv-section-desc {
    margin-left: auto;
    margin-right: auto;
}
.rv-how-layout > div {
    display: flex;
}
.rv-how-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
}

.rv-how-step {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-height: 210px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(18, 63, 109, 0.05);
    position: relative;
    transition: var(--rv-transition);
}
.rv-how-step:hover {
    background: #fff;
    border-color: rgba(18, 63, 109, 0.14);
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(18, 63, 109, 0.1);
}

.rv-how-num {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--rv-gold);
    letter-spacing: 0.12em;
    line-height: 1;
    font-family: "Manrope", sans-serif;
    transition: var(--rv-transition);
}
.rv-how-step:hover .rv-how-num {
    color: var(--rv-green);
}

.rv-how-content {
    display: block;
}

.rv-how-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--rv-green);
    flex-shrink: 0;
    transition: var(--rv-transition);
}
.rv-how-step:hover .rv-how-icon {
    background: #e9f0f7;
    color: var(--rv-green);
    transform: translateY(-1px);
}

.rv-how-content h5 {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--rv-text);
    margin-bottom: 3px;
}
.rv-how-content p {
    font-size: 0.84rem;
    color: #7b8493;
    margin: 0;
    line-height: 1.6;
}

/* Donation widget */
.rv-donate-widget {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(18, 63, 109, 0.07);
    position: sticky;
    top: calc(var(--rv-header-h) + 16px);
}

.rv-dw-header {
    background: #fff;
    padding: 24px 24px 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(18, 63, 109, 0.1);
}
.rv-dw-kicker {
    display: block;
    color: var(--rv-gold);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 12px;
    position: relative;
}

.rv-dw-logo {
    height: 48px;
    max-width: 100%;
    width: auto;
    margin: 0 0 14px;
    position: relative;
}
.rv-dw-header h4 {
    color: var(--rv-text);
    font-weight: 600;
    font-size: 1.18rem;
    margin: 0 0 4px;
    position: relative;
}
.rv-dw-header p {
    color: var(--rv-text-muted);
    font-size: 0.86rem;
    margin: 0;
    position: relative;
}

.rv-dw-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
    background: #fff;
}

.rv-dw-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 14px;
}
.rv-dw-amt {
    padding: 10px 4px;
    border: 1px solid var(--rv-border);
    border-radius: 10px;
    background: #fbfcfe;
    font-weight: 500;
    font-size: 0.86rem;
    color: var(--rv-text);
    cursor: pointer;
    transition: var(--rv-transition);
    text-align: center;
}
.rv-dw-amt:hover,
.rv-dw-active {
    border-color: rgba(18, 63, 109, 0.24) !important;
    background: #eef4fa !important;
    color: var(--rv-green) !important;
}
.rv-dw-custom {
    grid-column: span 3;
}

.rv-dw-input {
    border: 1px solid var(--rv-border);
    border-radius: 10px;
    padding: 11px 15px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--rv-text);
    margin-bottom: 12px;
    width: 100%;
    transition: var(--rv-transition);
    font-family: "Poppins", sans-serif;
}
.rv-dw-input:focus {
    border-color: var(--rv-green);
    box-shadow: 0 0 0 3px rgba(18, 63, 109, 0.08);
    outline: none;
}

.rv-dw-select {
    border: 1px solid var(--rv-border);
    border-radius: 10px;
    padding: 11px 15px;
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--rv-text);
    margin-bottom: 14px;
    cursor: pointer;
    transition: var(--rv-transition);
    width: 100%;
    background: #fff;
    font-family: "Poppins", sans-serif;
}
.rv-dw-select:focus {
    border-color: var(--rv-green);
    box-shadow: 0 0 0 3px rgba(18, 63, 109, 0.08);
    outline: none;
}

.rv-btn-donate-full {
    width: 100%;
    background: #1ebe5d;
    color: #fff !important;
    font-weight: 600;
    font-size: 1.02rem;
    padding: 14px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 7px 18px rgba(30, 190, 93, 0.2);
    transition: var(--rv-transition);
    margin-top: auto;
    margin-bottom: 14px;
}
.rv-btn-donate-full:hover {
    background: #18a950;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(30, 190, 93, 0.3);
}

.rv-dw-footer {
    display: flex;
    justify-content: center;
    gap: 14px;
    font-size: 0.76rem;
    color: var(--rv-text-muted);
    font-weight: 600;
}
.rv-dw-footer span {
    display: flex;
    align-items: center;
}

/* ============================================================
   PHOTO GALLERY
   ============================================================ */
.rv-gallery-section {
    background: var(--rv-bg);
}

/* Filter tabs */
.rv-gallery-filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.rv-gf-btn {
    background: #fff;
    color: var(--rv-text-muted);
    border: 1.5px solid var(--rv-border);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--rv-transition);
    font-family: "Poppins", sans-serif;
}
.rv-gf-btn:hover {
    border-color: var(--rv-green);
    color: var(--rv-green);
    background: var(--rv-green-pale);
}
.rv-gf-btn.active {
    background: var(--rv-green);
    color: #fff;
    border-color: var(--rv-green);
}

/* Masonry via CSS columns */
.rv-gallery-grid {
    columns: 3;
    column-gap: 14px;
}

.rv-gallery-item {
    display: block;
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: var(--rv-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--rv-transition);
    opacity: 1;
    visibility: visible;
}
.rv-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--rv-shadow-md);
}

.rv-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.rv-gallery-item:hover img {
    transform: scale(1.06);
}

.rv-gi-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(8, 29, 52, 0.75) 0%,
        rgba(8, 29, 52, 0) 50%
    );
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.rv-gallery-item:hover .rv-gi-overlay {
    opacity: 1;
}

.rv-gi-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: transform 0.3s ease;
}
.rv-gallery-item:hover .rv-gi-zoom {
    transform: translate(-50%, -50%) scale(1);
}

.rv-gi-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    line-height: 1.4;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}
.rv-gallery-item:hover .rv-gi-label {
    transform: translateY(0);
}

/* Hidden items (filter) */
.rv-gallery-item.rv-hidden {
    display: none;
}

/* ============================================================
   VIDEO GALLERY
   ============================================================ */
.rv-video-section {
    background: #f7f8fa;
}

.rv-video-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(18, 63, 109, 0.08);
    box-shadow: 0 8px 24px rgba(18, 63, 109, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1;
    visibility: visible;
}
.rv-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(18, 63, 109, 0.1);
    border-color: rgba(18, 63, 109, 0.14);
}

.rv-vc-thumb {
    position: relative;
    overflow: hidden;
    height: 184px;
    margin: 9px 9px 0;
    border-radius: 12px;
    flex-shrink: 0;
}
.rv-vc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.rv-video-card:hover .rv-vc-img {
    transform: scale(1.035);
}

.rv-vc-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 22, 41, 0.2);
    transition: background 0.3s ease;
}
.rv-video-card:hover .rv-vc-overlay {
    background: rgba(5, 22, 41, 0.32);
}

.rv-vc-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: var(--rv-green);
    font-size: 1.14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(5, 22, 41, 0.18);
    transition: var(--rv-transition);
    padding-left: 3px; /* optical alignment */
}
.rv-video-card:hover .rv-vc-play {
    transform: translate(-50%, -50%) scale(1.06);
    box-shadow: 0 14px 32px rgba(5, 22, 41, 0.24);
}

.rv-vc-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.68);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
}

.rv-vc-body {
    padding: 15px 17px 18px;
    flex: 1;
}

.rv-vc-cat {
    display: flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 500;
    color: #8b95a5;
    margin-bottom: 7px;
}

.rv-vc-body h5 {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--rv-text);
    margin-bottom: 6px;
    line-height: 1.4;
}
.rv-vc-body p {
    font-size: 0.78rem;
    color: #8b95a5;
    margin: 0;
    line-height: 1.6;
}

/* Video Modal */
.rv-video-modal .modal-content {
    background: #000;
    border: none;
    border-radius: 16px;
    overflow: hidden;
}

.rv-vm-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #fff;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--rv-transition);
}
.rv-vm-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.rv-vm-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.rv-vm-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================================
   HABERLER
   ============================================================ */
.rv-haberler-section {
    background: #f7f8fa;
}

.rv-haber-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(18, 63, 109, 0.08);
    box-shadow: 0 8px 24px rgba(18, 63, 109, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.rv-haber-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(18, 63, 109, 0.1);
    border-color: rgba(18, 63, 109, 0.14);
}

.rv-haber-img-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
    margin: 9px 9px 0;
    border-radius: 12px;
}
.rv-haber-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.rv-haber-card:hover .rv-haber-img {
    transform: scale(1.035);
}

.rv-haber-cat {
    position: absolute;
    bottom: 12px;
    left: 14px;
    background: var(--rv-green);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.06em;
}
.rv-cat-gold {
    background: var(--rv-gold);
}

.rv-haber-body {
    padding: 17px 18px 19px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rv-haber-meta {
    display: flex;
    gap: 12px;
    font-size: 0.72rem;
    color: #8b95a5;
    font-weight: 500;
    margin-bottom: 9px;
}
.rv-haber-meta span {
    display: flex;
    align-items: center;
}

.rv-haber-body h5 {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--rv-text);
    margin-bottom: 8px;
    line-height: 1.42;
}
.rv-haber-body p {
    font-size: 0.82rem;
    color: #7b8493;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 14px;
}

.rv-haber-link {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--rv-green);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--rv-transition);
    margin-top: auto;
}
.rv-haber-link:hover {
    color: var(--rv-green);
    gap: 7px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.rv-footer {
    padding: 22px 0;
    background: #f7f8fa;
    color: #7b8493;
    border-top: 0;
}
.rv-footer-panel {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 22px;
    box-shadow: 0 12px 34px rgba(18, 63, 109, 0.07);
}
.rv-footer-top {
    padding: 46px 28px 32px;
}
.rv-footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.rv-footer-logo {
    height: 58px;
    width: auto;
    margin: 0 0 14px;
    display: block;
}
.rv-footer-about {
    max-width: 760px;
    margin: 0 auto 18px;
    color: #86909f;
    font-size: 0.79rem;
    line-height: 1.75;
}

.rv-footer-social {
    display: flex;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}
.rv-social-link {
    width: 34px;
    height: 34px;
    background: #f7f9fb;
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rv-green);
    font-size: 1rem;
    text-decoration: none;
    transition: var(--rv-transition);
}
.rv-social-link:hover {
    background: #f1f5f9;
    border-color: rgba(18, 63, 109, 0.2);
    color: var(--rv-green);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(18, 63, 109, 0.08);
}
.rv-footer-note {
    color: #748092;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.rv-footer-contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
}
.rv-footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7b8493;
    font-size: 0.74rem;
    text-decoration: none;
    transition: var(--rv-transition);
}
.rv-footer-contact i {
    color: var(--rv-green);
    font-size: 0.86rem;
}
.rv-footer-contact a:hover {
    color: var(--rv-green);
}

.rv-footer-bottom {
    border-top: 1px solid rgba(18, 63, 109, 0.08);
    padding: 15px 22px;
    background: #fff;
    font-size: 0.7rem;
    color: #98a2b3;
}
.rv-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 16px;
}
.rv-footer-bottom-links a {
    color: #8b95a5;
    text-decoration: none;
    transition: color 0.2s ease;
}
.rv-footer-bottom-links a:hover {
    color: var(--rv-green);
}

/* ============================================================
   CORPORATE INNER PAGES
   ============================================================ */
.rv-page-main {
    margin-top: var(--rv-header-h);
    background: var(--rv-bg);
}

.rv-page-hero {
    background: linear-gradient(135deg, var(--rv-green) 0%, #0d3157 100%);
    color: #fff;
    padding: 72px 0 58px;
}

.rv-page-kicker {
    display: inline-flex;
    color: var(--rv-gold-light);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.rv-page-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.18;
    margin: 0 0 12px;
}

.rv-page-desc {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.03rem;
    line-height: 1.8;
    margin: 0;
}

.rv-page-content {
    padding: 70px 0;
}

.rv-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 34px;
    align-items: start;
}

.rv-page-panel,
.rv-page-card {
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 14px;
}

.rv-page-panel {
    padding: 28px;
}
.rv-page-panel h2,
.rv-page-card h3 {
    color: var(--rv-text);
    font-size: 1.22rem;
    font-weight: 600;
    margin: 0 0 12px;
}
.rv-page-panel p,
.rv-page-card p {
    color: var(--rv-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 12px;
}
.rv-page-panel p:last-child,
.rv-page-card p:last-child {
    margin-bottom: 0;
}

.rv-page-card {
    padding: 20px;
}
.rv-page-stack {
    display: grid;
    gap: 14px;
}

.rv-clean-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    display: grid;
    gap: 10px;
}
.rv-clean-list li {
    padding: 12px 14px;
    background: var(--rv-green-xpale);
    border: 1px solid var(--rv-border);
    border-radius: 10px;
    color: var(--rv-text);
    font-weight: 600;
}

.rv-news-list,
.rv-doc-list {
    display: grid;
    gap: 14px;
}
.rv-news-item,
.rv-doc-item {
    display: grid;
    gap: 6px;
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 14px;
    padding: 20px;
    color: var(--rv-text);
    text-decoration: none;
}
.rv-news-meta,
.rv-doc-meta {
    color: var(--rv-green);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}
.rv-news-item h2,
.rv-doc-item h2 {
    font-size: 1.12rem;
    font-weight: 600;
    margin: 0;
}
.rv-news-item p,
.rv-doc-item p {
    color: var(--rv-text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* Corporate inner pages v2 */
.rv-page-main {
    overflow: hidden;
}

.rv-inner-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    padding: 84px 0 52px;
    color: #fff;
    isolation: isolate;
    overflow: hidden;
    background: var(--rv-green);
}

.rv-inner-hero-bg,
.rv-inner-hero-shade {
    position: absolute;
    inset: -1px;
    z-index: -2;
}

.rv-inner-hero-bg {
    background-position: center;
    background-size: cover;
    filter: saturate(0.88) contrast(0.94);
    transform: scale(1.035);
}

.rv-inner-hero-shade {
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(6, 25, 46, 0.9) 0%,
            rgba(8, 34, 61, 0.68) 52%,
            rgba(8, 34, 61, 0.22) 100%
        ),
        linear-gradient(
            0deg,
            rgba(6, 25, 46, 0.66) 0%,
            rgba(6, 25, 46, 0.04) 70%
        );
}

.rv-inner-hero-content {
    max-width: 700px;
    padding-left: 18px;
    border-left: 2px solid rgba(109, 190, 255, 0.72);
}
.rv-inner-hero .rv-page-kicker {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
}

.rv-inner-hero .rv-page-title {
    font-size: clamp(2.15rem, 4.2vw, 3.8rem);
    color: #fff;
    max-width: 760px;
    margin-bottom: 14px;
    letter-spacing: -0.045em;
    line-height: 1.06;
}

.rv-inner-hero .rv-page-desc {
    max-width: 650px;
    font-size: 0.98rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.76);
}

.rv-page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.rv-btn-outline-light {
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.46);
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
}

.rv-btn-outline-light:hover {
    background: #fff;
    color: var(--rv-green-dark);
}

.rv-about-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    gap: 22px;
    align-items: stretch;
}

.rv-about-section {
    background: #f7f8fa;
}

.rv-about-lead {
    padding: clamp(26px, 4vw, 40px);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(18, 63, 109, 0.06);
}

.rv-about-lead h2,
.rv-doc-info h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.55rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.045em;
    color: var(--rv-text);
    margin: 10px 0 16px;
}

.rv-about-copy-head {
    padding-bottom: 18px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(18, 63, 109, 0.08);
}

.rv-about-copy-head h2 {
    margin-bottom: 0;
}

.rv-about-richtext p,
.rv-about-richtext li {
    color: #7b8493;
    font-size: 0.94rem;
    line-height: 1.86;
}

.rv-about-richtext p:last-child {
    margin-bottom: 0;
}

.rv-about-visual {
    position: relative;
    min-height: 430px;
    padding: 9px;
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(18, 63, 109, 0.06);
}

.rv-about-visual img,
.rv-news-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rv-about-visual img {
    border-radius: 15px;
}

.rv-about-visual-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 13px;
    padding: 15px;
    box-shadow: 0 16px 36px rgba(5, 22, 41, 0.14);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.rv-about-visual-note strong,
.rv-about-visual-note span,
.rv-about-visual-note small {
    display: block;
}

.rv-about-visual-note small {
    margin-bottom: 6px;
    color: var(--rv-green);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.rv-about-visual-note strong {
    color: var(--rv-text);
    font-weight: 600;
    margin-bottom: 4px;
}

.rv-about-visual-note span {
    color: #7b8493;
    font-size: 0.84rem;
    line-height: 1.55;
}

.rv-value-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.rv-about-values {
    margin-top: 54px;
}

.rv-about-values-head {
    max-width: 680px;
}

.rv-about-values-head h2 {
    margin: 10px 0 8px;
    color: var(--rv-text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.045em;
}

.rv-about-values-head p {
    margin: 0;
    color: #7b8493;
    font-size: 0.9rem;
    line-height: 1.75;
}

.rv-value-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 17px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(18, 63, 109, 0.045);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.rv-value-card:hover {
    border-color: rgba(18, 63, 109, 0.14);
    box-shadow: 0 16px 32px rgba(18, 63, 109, 0.08);
    transform: translateY(-3px);
}

.rv-value-card i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #f1f5f9;
    color: var(--rv-green);
    font-size: 1.22rem;
    margin-bottom: 14px;
}

.rv-value-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.rv-value-card p {
    color: #7b8493;
    font-size: 0.84rem;
    line-height: 1.72;
    margin: 0;
}

.rv-page-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

.rv-news-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 0;
}

.rv-news-filter {
    max-width: 680px;
}

.rv-news-filter .rv-search-close:hover {
    transform: none;
}

.rv-news-card {
    display: grid;
    grid-template-rows: 210px 1fr;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(18, 63, 109, 0.05);
    padding: 9px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.rv-news-card:hover {
    border-color: rgba(18, 63, 109, 0.14);
    box-shadow: 0 20px 42px rgba(18, 63, 109, 0.1);
    transform: translateY(-4px);
}

.rv-news-card > img {
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.rv-news-card:hover > img {
    transform: scale(1.025);
}

.rv-news-card > div {
    padding: 16px 9px 10px;
    display: flex;
    flex-direction: column;
}

.rv-news-card h2 {
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.42;
    margin: 8px 0;
    color: var(--rv-text);
}

.rv-news-card p {
    margin: 0;
    color: #7b8493;
    line-height: 1.7;
    font-size: 0.82rem;
}

.rv-news-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    margin-top: auto;
    padding-top: 16px;
    color: var(--rv-green);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--rv-transition);
}

.rv-news-link:hover {
    color: var(--rv-green);
    gap: 8px;
}

.rv-article-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.rv-article {
    scroll-margin-top: calc(var(--rv-header-h) + 24px);
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--rv-shadow-soft);
}

.rv-article + .rv-article {
    margin-top: 28px;
}

.rv-article-media {
    height: clamp(260px, 36vw, 430px);
}

.rv-article-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rv-article-body {
    padding: clamp(24px, 4vw, 42px);
}

.rv-article-body h2 {
    font-family: "Manrope", sans-serif;
    font-weight: 600;
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    line-height: 1.18;
    color: var(--rv-text);
    margin: 10px 0 16px;
}

.rv-article-body p {
    color: var(--rv-text-muted);
    font-size: 1rem;
    line-height: 1.82;
    margin-bottom: 16px;
}

.rv-article-body p:last-child {
    margin-bottom: 0;
}

.rv-article-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.rv-blog-detail-section {
    background: #f7f8fa;
}

.rv-blog-detail-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.rv-blog-detail-card {
    overflow: hidden;
    padding: 9px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(18, 63, 109, 0.06);
}

.rv-blog-detail-media {
    height: clamp(260px, 40vw, 470px);
    overflow: hidden;
    border-radius: 15px;
}

.rv-blog-detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rv-blog-detail-body {
    padding: clamp(24px, 5vw, 48px);
}

.rv-blog-detail-head {
    padding-bottom: 24px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(18, 63, 109, 0.08);
}

.rv-blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-top: 14px;
    color: #8b95a5;
    font-size: 0.74rem;
    font-weight: 500;
}

.rv-blog-detail-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rv-blog-detail-meta i {
    color: var(--rv-green);
}

.rv-blog-detail-head h2 {
    max-width: 820px;
    margin: 12px 0 0;
    color: var(--rv-text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.75rem, 3.6vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.14;
}

.rv-blog-detail-head p {
    max-width: 780px;
    margin: 14px 0 0;
    color: #7b8493;
    font-size: 0.94rem;
    line-height: 1.8;
}

.rv-blog-detail-copy {
    max-width: 820px;
    color: #6f7a89;
    font-size: 0.96rem;
    line-height: 1.92;
}

.rv-blog-detail-copy h2,
.rv-blog-detail-copy h3,
.rv-blog-detail-copy h4 {
    margin: 28px 0 10px;
    color: var(--rv-text);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.28;
}

.rv-blog-detail-copy p,
.rv-blog-detail-copy ul,
.rv-blog-detail-copy ol {
    margin-bottom: 16px;
}

.rv-blog-detail-copy img {
    max-width: 100%;
    height: auto;
    margin: 18px 0;
    border-radius: 12px;
}

.rv-blog-detail-footer {
    padding-top: 24px;
    margin-top: 28px;
    border-top: 1px solid rgba(18, 63, 109, 0.08);
}

.rv-blog-detail-footer .rv-btn-outline-green {
    gap: 7px;
    font-size: 0.82rem;
}

.rv-static-page-section {
    background: #f7f8fa;
}

.rv-static-page-wrap {
    max-width: 980px;
    margin: 0 auto;
}

.rv-static-page-card {
    overflow: hidden;
    padding: 9px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(18, 63, 109, 0.06);
}

.rv-static-page-media {
    height: clamp(220px, 32vw, 380px);
    overflow: hidden;
    border-radius: 15px;
}

.rv-static-page-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rv-static-page-body {
    padding: clamp(24px, 5vw, 46px);
}

.rv-static-page-head {
    padding-bottom: 22px;
    margin-bottom: 26px;
    border-bottom: 1px solid rgba(18, 63, 109, 0.08);
}

.rv-static-page-head h2 {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--rv-text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.65rem, 3.5vw, 2.65rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.14;
}

.rv-static-page-head p {
    max-width: 760px;
    margin: 12px 0 0;
    color: #7b8493;
    font-size: 0.92rem;
    line-height: 1.76;
}

.rv-static-page-copy {
    max-width: 820px;
    color: #6f7a89;
    font-size: 0.94rem;
    line-height: 1.9;
}

.rv-static-page-copy h2,
.rv-static-page-copy h3,
.rv-static-page-copy h4 {
    margin: 28px 0 10px;
    color: var(--rv-text);
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.28;
}

.rv-static-page-copy h2 {
    font-size: 1.32rem;
}

.rv-static-page-copy h3 {
    font-size: 1.12rem;
}

.rv-static-page-copy p,
.rv-static-page-copy ul,
.rv-static-page-copy ol {
    margin-bottom: 16px;
}

.rv-static-page-copy ul,
.rv-static-page-copy ol {
    padding-left: 20px;
}

.rv-static-page-copy li + li {
    margin-top: 7px;
}

.rv-static-page-copy a {
    color: var(--rv-green);
    text-underline-offset: 3px;
}

.rv-static-page-copy strong {
    color: var(--rv-text);
    font-weight: 600;
}

.rv-service-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 56px;
}

.rv-service-intro .rv-page-panel {
    padding: 34px;
    box-shadow: var(--rv-shadow-soft);
}

.rv-service-intro h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
    font-weight: 600;
    line-height: 1.22;
    color: var(--rv-text);
    margin: 10px 0 14px;
}

.rv-service-summary {
    display: grid;
    gap: 12px;
}

.rv-service-summary div {
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--rv-shadow-soft);
}

.rv-service-summary strong,
.rv-service-summary span {
    display: block;
}

.rv-service-summary strong {
    font-size: 1.9rem;
    line-height: 1;
    color: var(--rv-green);
    font-weight: 600;
}

.rv-service-summary span {
    margin-top: 6px;
    color: var(--rv-text-muted);
    font-weight: 600;
    font-size: 0.9rem;
}

.rv-service-donate-head {
    scroll-margin-top: calc(var(--rv-header-h) + 24px);
}

.rv-donation-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.rv-qurban-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1080px;
    margin: 0 auto;
}

.rv-donation-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--rv-shadow-soft);
    transition: var(--rv-transition);
    scroll-margin-top: calc(var(--rv-header-h) + 24px);
}

.rv-qurban-card {
    border-radius: 18px;
    border-color: rgba(15, 50, 87, 0.12);
}

.rv-donation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--rv-shadow);
    border-color: rgba(31, 91, 145, 0.35);
}

.rv-donation-card-featured {
    border-color: rgba(45, 111, 166, 0.42);
    box-shadow: var(--rv-shadow-gold);
}

.rv-donation-image {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.rv-qurban-card .rv-donation-image {
    height: 300px;
    margin: 16px 16px 0;
    width: calc(100% - 32px);
    border-radius: 14px;
}

.rv-qurban-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 20px 20px;
}

.rv-qurban-card h3 {
    margin: 0 0 8px;
    font-size: 1.12rem;
}

.rv-qurban-location {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--rv-text-muted);
    font-weight: 600;
    margin: 0 0 14px;
    font-size: 0.92rem;
}

.rv-qurban-desc {
    margin: 0 0 18px;
    color: var(--rv-text-muted);
    font-size: 0.92rem;
    line-height: 1.62;
}

.rv-qurban-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
}

.rv-qurban-bottom strong {
    color: var(--rv-text);
    font-size: 1.18rem;
    font-weight: 600;
    white-space: nowrap;
}

.rv-qurban-bottom .rv-btn-donate {
    min-height: 46px;
    padding: 12px 20px;
    font-size: 0.94rem;
    font-weight: 500;
    box-shadow: 0 14px 30px rgba(31, 91, 145, 0.18);
}

.rv-qurban-card details {
    margin-top: 14px;
    border: 1px solid var(--rv-border);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.rv-qurban-card summary {
    cursor: pointer;
    list-style: none;
    padding: 10px 12px;
    color: var(--rv-green);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}

.rv-qurban-card summary::-webkit-details-marker {
    display: none;
}

.rv-qurban-card details[open] summary {
    background: var(--rv-green-xpale);
    border-bottom: 1px solid var(--rv-border);
}

.rv-qurban-card details p {
    padding: 12px;
    margin: 0;
    color: var(--rv-text-muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.rv-donation-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.rv-donation-card-head i {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--rv-green-xpale);
    color: var(--rv-green);
    font-size: 1.35rem;
    flex-shrink: 0;
}

.rv-donation-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    min-height: 28px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--rv-green-pale);
    color: var(--rv-green);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 20px 20px 12px;
}

.rv-donation-card h3 {
    color: var(--rv-text);
    font-size: 1.18rem;
    font-weight: 600;
    margin: 0 20px 8px;
}

.rv-donation-card p {
    color: var(--rv-text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
    margin: 0 20px 18px;
}

.rv-donation-price {
    padding: 16px;
    border-radius: 15px;
    background: var(--rv-green-xpale);
    margin: 0 20px 16px;
}

.rv-donation-price span,
.rv-donation-price strong {
    display: block;
}

.rv-donation-price span {
    color: var(--rv-text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.rv-donation-price strong {
    color: var(--rv-green);
    font-size: 1.55rem;
    font-weight: 600;
}

.rv-donation-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: grid;
    gap: 9px;
}

.rv-donation-list li {
    position: relative;
    padding-left: 24px;
    color: var(--rv-text);
    font-size: 0.9rem;
    font-weight: 750;
    line-height: 1.45;
}

.rv-donation-list li::before {
    content: "\EB7B";
    font-family: "remixicon";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--rv-green);
    font-weight: 400;
}

.rv-donation-actions {
    margin-top: auto;
    padding: 0 20px 20px;
}

.rv-donation-actions .btn {
    width: 100%;
    margin-bottom: 12px;
}

.rv-donation-actions details {
    border: 1px solid var(--rv-border);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.rv-donation-actions summary {
    cursor: pointer;
    list-style: none;
    padding: 10px 12px;
    color: var(--rv-green);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}

.rv-donation-actions summary::-webkit-details-marker {
    display: none;
}

.rv-donation-actions details[open] summary {
    border-bottom: 1px solid var(--rv-border);
    background: var(--rv-green-xpale);
}

.rv-donation-actions details p {
    margin: 0;
    padding: 12px;
    color: var(--rv-text-muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.rv-service-product-grid {
    align-items: stretch;
}

.rv-service-product-card {
    border-radius: 16px;
    border-color: rgba(15, 50, 87, 0.12);
    box-shadow: 0 16px 42px rgba(15, 50, 87, 0.08);
}

.rv-service-product-media {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 14px 14px 0;
    border-radius: 12px;
    background: var(--rv-green-xpale);
}

.rv-service-product-media .rv-donation-image {
    height: 215px;
    transition: transform 0.35s ease;
}

.rv-service-product-card:hover .rv-donation-image {
    transform: scale(1.04);
}

.rv-service-product-action {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--rv-green);
    font-size: 0.78rem;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(15, 50, 87, 0.16);
}

.rv-service-product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-top: 2px;
}

.rv-service-product-card .rv-donation-badge {
    margin-top: 16px;
}

.rv-service-product-card .rv-donation-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 15px;
}

.rv-service-product-card .rv-donation-price span,
.rv-service-product-card .rv-donation-price strong {
    margin: 0;
}

.rv-service-product-card .rv-donation-price strong {
    font-size: 1.18rem;
    white-space: nowrap;
}

.rv-service-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 40px;
    border-radius: 999px;
    color: var(--rv-green);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    background: var(--rv-green-xpale);
}

.rv-service-detail-link:hover {
    color: var(--rv-green-dark);
}

.rv-page-desc-note {
    margin-top: 10px;
    font-weight: 600;
}

.rv-service-donation-grid {
    align-items: stretch;
}

.rv-service-donation-card .rv-kamp-img-wrap {
    display: block;
    text-decoration: none;
}

.rv-service-donation-card .rv-kamp-body {
    display: flex;
    flex-direction: column;
    min-height: 270px;
}

.rv-service-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--rv-green-xpale);
    margin: auto 0 16px;
}

.rv-service-price-row span {
    color: var(--rv-text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.rv-service-price-row strong {
    color: var(--rv-green);
    font-size: 1.04rem;
    font-weight: 600;
    white-space: nowrap;
}

.rv-service-donation-card .rv-kamp-footer {
    align-items: center;
}

.rv-service-donation-card .rv-service-detail-link {
    min-height: 37px;
    padding: 7px 12px;
    font-size: 0.82rem;
    flex: 1;
}

.rv-product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
    gap: 24px;
    align-items: stretch;
}

.rv-product-detail-section {
    background: #f7f8fa;
}

.rv-service-hero .rv-btn-outline-green {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.rv-service-hero .rv-btn-outline-green:hover {
    color: var(--rv-green) !important;
    border-color: #fff;
    background: #fff;
}

.rv-product-detail-media,
.rv-product-detail-panel,
.rv-product-detail-content {
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(18, 63, 109, 0.06);
}

.rv-product-detail-media {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    padding: 9px;
}

.rv-product-detail-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 15px;
}

.rv-product-detail-media span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(8, 30, 55, 0.48);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.rv-product-detail-panel {
    padding: clamp(24px, 3vw, 34px);
}

.rv-product-detail-panel h2,
.rv-product-detail-content h2 {
    margin: 10px 0 14px;
    color: var(--rv-text);
    font-weight: 600;
}

.rv-product-detail-panel h2 {
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.rv-product-detail-panel p {
    color: #7b8493;
    font-size: 0.9rem;
    line-height: 1.75;
}

.rv-product-detail-price {
    padding: 18px 20px;
    border: 1px solid rgba(18, 63, 109, 0.07);
    border-radius: 15px;
    background: #f4f7fa;
    margin: 24px 0 16px;
}

.rv-product-detail-price span,
.rv-product-detail-row span {
    display: block;
    color: var(--rv-text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.rv-product-detail-price strong {
    display: block;
    color: var(--rv-green);
    font-size: clamp(1.75rem, 3vw, 2.2rem);
    font-weight: 600;
    margin-top: 4px;
}

.rv-product-detail-row {
    display: flex;
    gap: 12px;
    padding: 15px 0;
    border-top: 1px solid rgba(18, 63, 109, 0.08);
}

.rv-product-detail-row i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #f1f5f9;
    color: var(--rv-green);
    flex-shrink: 0;
}

.rv-product-detail-row strong,
.rv-product-detail-row a {
    color: var(--rv-text);
    font-weight: 600;
    text-decoration: none;
}

.rv-product-detail-panel .rv-btn-donate {
    margin-top: 20px;
    min-height: 50px;
    border-radius: 9px;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 12px 24px rgba(18, 63, 109, 0.16);
}

.rv-product-detail-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-top: 14px;
    color: #8b95a5;
    font-size: 0.7rem;
    font-weight: 500;
}

.rv-product-detail-trust span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rv-product-detail-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: clamp(24px, 4vw, 38px);
    margin-top: 28px;
}

.rv-product-detail-copy {
    color: #7b8493;
    font-size: 0.94rem;
    line-height: 1.88;
}

.rv-product-detail-copy h2,
.rv-product-detail-copy h3,
.rv-product-detail-copy h4 {
    color: var(--rv-text);
    font-weight: 600;
    margin-top: 20px;
}

.rv-product-detail-copy p:last-child {
    margin-bottom: 0;
}

.rv-qurban-card .rv-qurban-card-body h3 {
    margin: 0 0 8px;
    font-size: 1.12rem;
}

.rv-qurban-card .rv-qurban-location {
    margin: 0 0 14px;
}

.rv-qurban-card .rv-qurban-desc {
    margin: 0 0 18px;
}

.rv-service-process {
    scroll-margin-top: calc(var(--rv-header-h) + 24px);
    margin-top: 64px;
}

.rv-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.rv-process-grid div {
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--rv-shadow-soft);
}

.rv-process-grid span {
    display: inline-flex;
    color: var(--rv-gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.rv-process-grid h3 {
    color: var(--rv-text);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.rv-process-grid p {
    color: var(--rv-text-muted);
    font-size: 0.88rem;
    line-height: 1.62;
    margin: 0;
}

.rv-project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.rv-project-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.38fr);
    gap: 24px;
    align-items: start;
}

.rv-project-detail-section {
    background: #f7f8fa;
}

.rv-project-detail-hero .rv-btn-outline-green {
    color: #fff !important;
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.08);
}

.rv-project-detail-hero .rv-btn-outline-green:hover {
    color: var(--rv-green) !important;
    border-color: #fff;
    background: #fff;
}

.rv-project-detail-main,
.rv-project-donate-panel {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(18, 63, 109, 0.06);
}

.rv-project-detail-main {
    overflow: hidden;
    padding: 9px;
}

.rv-project-detail-cover {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 15px;
}

.rv-project-detail-cover img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.rv-project-detail-cover .rv-kamp-badge {
    top: 16px;
    left: 16px;
}

.rv-project-detail-copy {
    padding: clamp(24px, 4vw, 34px) 25px 28px;
}

.rv-project-detail-copy h2 {
    margin: 10px 0 18px;
    color: var(--rv-text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    font-weight: 600;
}

.rv-project-detail-copy,
.rv-project-detail-copy p,
.rv-project-detail-copy li {
    color: #7b8493;
    line-height: 1.85;
}

.rv-project-detail-copy h3,
.rv-project-detail-copy h4 {
    margin-top: 24px;
    color: var(--rv-text);
    font-weight: 600;
}

.rv-project-donate-panel {
    position: sticky;
    top: calc(var(--rv-header-h) + 24px);
    padding: 28px;
}

.rv-project-donate-panel h3 {
    margin: 10px 0 8px;
    color: var(--rv-text);
    font-size: 1.35rem;
    font-weight: 600;
}

.rv-project-donate-panel p {
    color: #7b8493;
    font-size: 0.9rem;
    line-height: 1.72;
    margin-bottom: 18px;
}

.rv-project-donate-panel .rv-kamp-progress-bar {
    height: 5px;
    background: #e8edf3;
}

.rv-project-donate-panel .rv-kamp-progress-info {
    color: #8b95a5;
    font-size: 0.72rem;
}

.rv-project-info-list {
    display: grid;
    gap: 10px;
    margin: 22px 0;
}

.rv-project-info-list div {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid rgba(18, 63, 109, 0.07);
    border-radius: 13px;
    background: #f4f7fa;
}

.rv-project-info-list i {
    grid-row: span 2;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: #fff;
    color: var(--rv-green);
    font-size: 1.15rem;
}

.rv-project-info-list span {
    color: #8b95a5;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.rv-project-info-list strong {
    color: var(--rv-text);
    font-weight: 600;
}

.rv-project-donate-panel .rv-btn-donate {
    min-height: 50px;
    border-radius: 9px;
    font-size: 0.88rem;
    font-weight: 500;
    box-shadow: 0 12px 24px rgba(18, 63, 109, 0.16);
}

.rv-project-detail-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding-top: 14px;
    color: #8b95a5;
    font-size: 0.7rem;
    font-weight: 500;
}

.rv-project-detail-trust span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rv-related-projects-head {
    margin-top: 70px;
}

.rv-progress-static {
    width: var(--rv-progress, 0%);
}

/* Gallery tab navigation */
.rv-gallery-tabs-nav {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    border-bottom: 2px solid var(--rv-border);
    padding-bottom: 0;
}

.rv-gtab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--rv-text-muted, #6b7280);
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    position: relative;
    transition:
        color 0.22s ease,
        background 0.22s ease;
    margin-bottom: -2px;
    border-bottom: 2px solid transparent;
}

.rv-gtab-btn i {
    font-size: 1.1rem;
}

.rv-gtab-btn:hover {
    color: var(--rv-green);
    background: var(--rv-green-xpale);
}

.rv-gtab-btn.active {
    color: var(--rv-green);
    background: var(--rv-green-xpale);
    border-bottom-color: var(--rv-green);
}

.rv-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--rv-green-pale);
    color: var(--rv-green);
    transition:
        background 0.22s ease,
        color 0.22s ease;
}

.rv-gtab-btn.active .rv-tab-count {
    background: var(--rv-green);
    color: #fff;
}

.rv-gallery-tab-content {
    min-height: 200px;
}

.rv-inner-gallery-grid {
    columns: 3;
}

.rv-inner-gallery-section {
    background: #f7f8fa;
}

.rv-inner-gallery-section .rv-gallery-toolbar {
    margin-bottom: 28px;
    padding: 9px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(18, 63, 109, 0.05);
}

.rv-inner-gallery-section .rv-gallery-tabs-nav {
    gap: 4px;
    margin: 0;
    padding: 0;
    border-bottom: 0;
}

.rv-inner-gallery-section .rv-gtab-btn {
    margin-bottom: 0;
    padding: 11px 16px;
    border: 1px solid transparent;
    border-radius: 10px;
    color: #7b8493;
    font-size: 0.84rem;
    font-weight: 500;
    text-decoration: none;
}

.rv-inner-gallery-section .rv-gtab-btn:hover {
    background: #f4f7fa;
    color: var(--rv-green);
}

.rv-inner-gallery-section .rv-gtab-btn.active {
    border-color: rgba(18, 63, 109, 0.08);
    background: #f1f5f9;
    color: var(--rv-green);
}

.rv-inner-gallery-section .rv-tab-count {
    min-width: 20px;
    height: 20px;
    background: #fff;
    color: var(--rv-green);
    font-size: 0.7rem;
    font-weight: 500;
}

.rv-inner-gallery-section .rv-gallery-filters {
    justify-content: flex-start;
    gap: 7px;
    margin: 12px 0 0;
    padding: 12px 2px 2px;
    border-top: 1px solid rgba(18, 63, 109, 0.07);
}

.rv-inner-gallery-section .rv-gf-btn {
    padding: 7px 13px;
    border: 1px solid rgba(18, 63, 109, 0.1);
    border-radius: 999px;
    color: #7b8493;
    font-size: 0.76rem;
    font-weight: 500;
    background: #fff;
}

.rv-inner-gallery-section .rv-gf-btn:hover {
    border-color: rgba(18, 63, 109, 0.18);
    color: var(--rv-green);
    background: #f4f7fa;
}

.rv-inner-gallery-section .rv-gf-btn.active {
    border-color: var(--rv-green);
    color: #fff;
    background: var(--rv-green);
}

.rv-inner-gallery-section .rv-inner-gallery-grid {
    column-gap: 16px;
}

.rv-inner-gallery-section .rv-gallery-item {
    margin-bottom: 16px;
    padding: 7px;
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 7px 20px rgba(18, 63, 109, 0.045);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.rv-inner-gallery-section .rv-gallery-item:hover {
    border-color: rgba(18, 63, 109, 0.14);
    box-shadow: 0 18px 36px rgba(18, 63, 109, 0.1);
    transform: translateY(-4px);
}

.rv-inner-gallery-section .rv-gallery-item img {
    border-radius: 10px;
}

.rv-inner-gallery-section .rv-gi-overlay {
    inset: 7px;
    border-radius: 10px;
}

.rv-inner-gallery-section .rv-gi-zoom {
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.18);
    font-size: 1.05rem;
}

.rv-inner-video-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 0;
}

.rv-inner-video-grid .rv-vc-thumb {
    height: auto;
    aspect-ratio: 4 / 3;
}

.rv-empty-state {
    grid-column: 1 / -1;
    padding: 28px;
    border: 1.5px solid var(--rv-border);
    border-radius: 18px;
    background: #fff;
    color: var(--rv-text-muted);
    text-align: center;
    box-shadow: var(--rv-shadow-soft);
}

.rv-search-shell {
    padding: 42px 0 76px;
    background: #f7f8fa;
}

.rv-search-shell-simple {
    min-height: calc(100vh - var(--rv-header-h));
}

.rv-search-focus {
    max-width: 920px;
    margin: 0 auto 42px;
    padding: clamp(22px, 3vw, 30px);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(18, 63, 109, 0.06);
    text-align: left;
}

.rv-search-focus h1 {
    margin: 7px 0 6px;
    color: var(--rv-text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.15rem);
    font-weight: 800;
    letter-spacing: -0.045em;
}

.rv-search-focus-head p {
    max-width: 680px;
    margin: 0 0 18px;
    color: #7b8493;
    font-size: 0.86rem;
    line-height: 1.7;
}

.rv-search-panel {
    padding: clamp(24px, 4vw, 42px);
    margin-bottom: 28px;
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 22px;
    box-shadow: var(--rv-shadow-soft);
}

.rv-search-panel-head {
    max-width: 760px;
    margin-bottom: 22px;
}

.rv-search-panel-head h1 {
    margin: 8px 0 10px;
    color: var(--rv-text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(2rem, 5vw, 3.35rem);
    font-weight: 600;
}

.rv-search-panel-head p {
    margin: 0;
    color: var(--rv-text-muted);
    font-size: 1.02rem;
    line-height: 1.7;
}

.rv-search-page-form {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 12px 12px 12px 18px;
    background: #f4f7fa;
    border: 1px solid rgba(18, 63, 109, 0.1);
    border-radius: 14px;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rv-search-page-form:focus-within {
    background: #fff;
    border-color: rgba(18, 63, 109, 0.24);
    box-shadow: 0 10px 24px rgba(18, 63, 109, 0.07);
}

.rv-search-focus .rv-search-page-form {
    max-width: none;
    text-align: left;
}

.rv-search-page-form .rv-btn-donate {
    min-height: 42px;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    box-shadow: 0 8px 18px rgba(18, 63, 109, 0.14);
}

.rv-search-page-form i {
    color: var(--rv-green);
    font-size: 1.35rem;
}

.rv-search-page-form input {
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--rv-text);
    font-weight: 500;
    background: transparent;
}

.rv-search-page-form input::placeholder {
    color: var(--rv-text-muted);
}

.rv-search-page-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    justify-content: flex-start;
}

.rv-search-page-tags span {
    color: var(--rv-text-muted);
    font-size: 0.78rem;
    font-weight: 500;
}

.rv-search-page-tags a,
.rv-search-summary a {
    color: var(--rv-text);
    text-decoration: none;
}

.rv-search-page-tags a {
    display: inline-flex;
    padding: 7px 12px;
    border: 1px solid rgba(18, 63, 109, 0.1);
    border-radius: 999px;
    background: #fff;
    color: var(--rv-green);
    font-size: 0.78rem;
    font-weight: 500;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.rv-search-page-tags a:hover {
    border-color: rgba(18, 63, 109, 0.18);
    background: #f1f5f9;
    color: var(--rv-green);
}

.rv-search-welcome {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 260px;
    padding: 34px;
    text-align: center;
    background: #fff;
    border: 1.5px dashed rgba(31, 91, 145, 0.18);
    border-radius: 22px;
}

.rv-search-quiet-state {
    max-width: 720px;
    margin: 0 auto;
    padding: 22px 24px;
    text-align: center;
    color: #7b8493;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(18, 63, 109, 0.04);
}

.rv-search-results-head {
    max-width: 1120px;
    margin: 0 auto 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.rv-search-results-head h2 {
    margin: 8px 0 0;
    color: var(--rv-text);
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.25rem, 2.4vw, 1.72rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.rv-search-results-head strong {
    color: #8b95a5;
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
}

.rv-search-list {
    max-width: 1120px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.rv-search-list-item {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: start;
    min-height: 132px;
    padding: 9px;
    color: inherit;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(18, 63, 109, 0.035);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.rv-search-list-item:hover {
    border-color: rgba(18, 63, 109, 0.14);
    box-shadow: 0 14px 28px rgba(18, 63, 109, 0.08);
    transform: translateY(-2px);
}

.rv-search-list-item img {
    width: 104px;
    height: 112px;
    border-radius: 10px;
    object-fit: cover;
}

.rv-search-list-copy {
    padding: 7px 0 4px;
}

.rv-search-list-item span {
    display: block;
    margin-bottom: 4px;
    color: #7b8493;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.rv-search-list-item h3 {
    margin: 0 0 5px;
    color: var(--rv-text);
    font-size: 0.96rem;
    font-weight: 600;
    line-height: 1.42;
}

.rv-search-list-item p {
    margin: 0;
    color: #8b95a5;
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.58;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.rv-search-list-item > i {
    margin: 9px 5px 0 0;
    color: #a1acb9;
    font-size: 1.05rem;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.rv-search-list-item:hover > i {
    color: var(--rv-green);
    transform: translateX(3px);
}

.rv-search-welcome i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: var(--rv-green-xpale);
    color: var(--rv-green);
    font-size: 1.75rem;
}

.rv-search-welcome h2 {
    margin: 8px 0 0;
    color: var(--rv-text);
    font-size: 1.4rem;
    font-weight: 600;
}

.rv-search-welcome p {
    max-width: 560px;
    margin: 0;
    color: var(--rv-text-muted);
    line-height: 1.7;
}

.rv-search-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 34px;
}

.rv-search-summary a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 16px;
    box-shadow: var(--rv-shadow-soft);
    transition: var(--rv-transition);
}

.rv-search-summary a:hover {
    border-color: rgba(31, 91, 145, 0.28);
    transform: translateY(-2px);
}

.rv-search-summary a.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.rv-search-summary span {
    color: var(--rv-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.rv-search-summary strong {
    color: var(--rv-green);
    font-size: 1.35rem;
    font-weight: 600;
}

.rv-search-result-block {
    scroll-margin-top: calc(var(--rv-header-h) + 28px);
    margin-top: 44px;
}

.rv-search-block-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.rv-search-block-head h2 {
    margin: 8px 0 0;
    color: var(--rv-text);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 600;
}

.rv-search-result-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.rv-search-result-card {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 12px;
    min-height: 150px;
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 16px;
    color: inherit;
    text-decoration: none;
    box-shadow: var(--rv-shadow-soft);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.rv-search-result-card:hover {
    transform: translateY(-3px);
    border-color: rgba(31, 91, 145, 0.25);
    box-shadow: 0 22px 54px rgba(13, 49, 84, 0.1);
}

.rv-search-result-card img {
    width: 150px;
    height: 126px;
    border-radius: 12px;
    object-fit: cover;
}

.rv-search-result-card span {
    display: inline-flex;
    margin-bottom: 7px;
    color: var(--rv-green);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.rv-search-result-card h3 {
    margin: 0 0 7px;
    color: var(--rv-text);
    font-size: 1.08rem;
    font-weight: 600;
}

.rv-search-result-card p {
    margin: 0;
    color: var(--rv-text-muted);
    line-height: 1.55;
}

.rv-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
    gap: 22px;
    align-items: start;
}

.rv-contact-panel,
.rv-contact-card,
.rv-contact-map,
.rv-contact-location {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(18, 63, 109, 0.05);
}

.rv-contact-panel {
    padding: clamp(24px, 4vw, 34px);
}

.rv-contact-panel h2,
.rv-contact-location h2 {
    font-family: "Manrope", sans-serif;
    color: var(--rv-text);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    margin: 10px 0 18px;
}

.rv-contact-form {
    display: grid;
    gap: 14px;
}

.rv-contact-form label {
    display: block;
    width: 100%;
    color: var(--rv-text);
    font-size: 0.88rem;
    font-weight: 500;
}

.rv-contact-form input,
.rv-contact-form select,
.rv-contact-form textarea {
    width: 100%;
    margin-top: 7px;
    border: 1px solid rgba(18, 63, 109, 0.1);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--rv-text);
    background: #f8fafc;
    outline: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.rv-contact-form input:focus,
.rv-contact-form select:focus,
.rv-contact-form textarea:focus {
    border-color: rgba(18, 63, 109, 0.24);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(18, 63, 109, 0.06);
}

.rv-contact-form .rv-btn-donate {
    justify-self: start;
    min-height: 46px;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 0.84rem;
    font-weight: 500;
    box-shadow: 0 10px 22px rgba(18, 63, 109, 0.14);
}

.rv-contact-side {
    display: grid;
    gap: 14px;
}

.rv-contact-card {
    display: flex;
    gap: 14px;
    padding: 17px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.rv-contact-card:hover {
    border-color: rgba(18, 63, 109, 0.14);
    box-shadow: 0 16px 30px rgba(18, 63, 109, 0.08);
    transform: translateY(-2px);
}

.rv-contact-card i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: var(--rv-green);
    background: #f1f5f9;
    font-size: 1.22rem;
    flex-shrink: 0;
}

.rv-contact-card span {
    display: block;
    color: #8b95a5;
    font-size: 0.72rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 3px;
}

.rv-contact-card a,
.rv-contact-card p {
    color: var(--rv-text);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.62;
    text-decoration: none;
    margin: 0;
}

.rv-contact-location {
    margin-top: 24px;
    padding: 9px;
}

.rv-contact-location-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 18px 16px;
}

.rv-contact-location h2 {
    margin-bottom: 0;
}

.rv-contact-location-head p {
    max-width: 460px;
    margin: 0;
    color: #7b8493;
    font-size: 0.86rem;
    line-height: 1.7;
    text-align: right;
}

.rv-contact-map {
    min-height: 360px;
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: none;
}

.rv-contact-map iframe {
    display: block;
    width: 100%;
    height: 360px;
    border: 0;
    border-radius: 14px;
}

.rv-bank-section {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
    gap: 22px;
    align-items: center;
    margin-top: 30px;
    padding: 28px;
}

.rv-bank-section p {
    color: var(--rv-text-muted);
    margin: 0;
}

.rv-bank-card {
    padding: 20px;
    background: var(--rv-green-xpale);
}

.rv-bank-card span,
.rv-bank-card small {
    display: block;
    color: var(--rv-text-muted);
    font-weight: 600;
}

.rv-bank-card strong {
    display: block;
    color: var(--rv-green);
    font-family: monospace;
    font-size: 1.15rem;
    margin: 7px 0;
    word-break: break-word;
}

.rv-bank-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 28px;
}

.rv-bank-page-head h2 {
    font-family: "Manrope", sans-serif;
    color: var(--rv-text);
    font-size: clamp(1.75rem, 3vw, 2.55rem);
    font-weight: 600;
    margin: 10px 0 10px;
}

.rv-bank-page-head p {
    color: var(--rv-text-muted);
    margin: 0;
}

.rv-bank-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.rv-bank-account-card {
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 18px;
    box-shadow: var(--rv-shadow-soft);
    overflow: hidden;
}

.rv-bank-account-head {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-bottom: 1.5px solid var(--rv-border);
    background: var(--rv-green-xpale);
}

.rv-bank-logo {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #fff;
    border: 1.5px solid var(--rv-border);
    color: var(--rv-green);
    font-size: 1.45rem;
}

.rv-bank-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.rv-bank-account-head h3 {
    color: var(--rv-text);
    font-size: 1.12rem;
    font-weight: 600;
    margin: 0 0 2px;
}

.rv-bank-account-head p {
    color: var(--rv-text-muted);
    font-weight: 600;
    margin: 0;
}

.rv-currency-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1.5px solid var(--rv-border);
    color: var(--rv-green);
    font-size: 0.8rem;
    font-weight: 600;
}

.rv-bank-account-body {
    padding: 18px 18px 4px;
}

.rv-bank-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px dashed var(--rv-border);
}

.rv-bank-row:last-child {
    border-bottom: 0;
}

.rv-bank-row span,
.rv-iban-box span {
    color: var(--rv-text-muted);
    font-size: 0.84rem;
    font-weight: 600;
}

.rv-bank-row strong {
    color: var(--rv-text);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: right;
}

.rv-iban-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 16px 18px 18px;
    padding: 14px;
    border-radius: 16px;
    border: 1.5px solid var(--rv-border);
    background: #fff;
}

.rv-iban-box strong {
    display: block;
    color: var(--rv-green);
    font-family: monospace;
    font-size: 1rem;
    margin-top: 4px;
    word-break: break-word;
}

.rv-copy-iban {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    background: var(--rv-green);
    color: #fff;
    font-weight: 600;
    white-space: nowrap;
}

.rv-doc-layout {
    display: grid;
    grid-template-columns: minmax(290px, 0.43fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.rv-doc-info {
    position: sticky;
    top: calc(var(--rv-header-h) + 22px);
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--rv-shadow-soft);
}

.rv-doc-info p {
    color: var(--rv-text-muted);
    line-height: 1.78;
    margin: 0 0 18px;
}

.rv-doc-mini {
    display: flex;
    gap: 12px;
    padding: 15px;
    border-radius: 14px;
    background: var(--rv-green-xpale);
    color: var(--rv-text);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.55;
}

.rv-doc-mini i {
    color: var(--rv-green);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.rv-doc-list-v2 .rv-doc-item {
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 22px;
    transition: var(--rv-transition);
}

.rv-doc-list-v2 .rv-doc-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--rv-shadow);
    border-color: rgba(31, 91, 145, 0.34);
}

.rv-doc-list-v2 .rv-doc-item > i {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--rv-green-xpale);
    color: var(--rv-green);
    font-size: 1.45rem;
}

.rv-doc-list-v2 .rv-doc-item strong {
    color: var(--rv-green);
    font-weight: 600;
    white-space: nowrap;
}

/* ============================================================
   BELGE SAYFASI — Sade satır listesi
   ============================================================ */
.rv-doclist-intro {
    max-width: 660px;
    margin: 0 auto 34px;
    text-align: center;
}
.rv-doclist-intro .rv-section-title {
    margin-bottom: 10px;
}
.rv-doclist-intro p {
    margin: 0;
    color: #7b8493;
    font-size: 0.9rem;
    line-height: 1.75;
}
.rv-doclist-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 34px;
}
.rv-doclist-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #7b8493;
    margin: 0 0 12px;
}
.rv-doclist-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.rv-dl-green {
    background: var(--rv-green);
}
.rv-dl-blue {
    background: #2563eb;
}
.rv-dl-gold {
    background: var(--rv-gold);
}
.rv-dl-purple {
    background: #9333ea;
}

.rv-doclist {
    background: #fff;
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(18, 63, 109, 0.05);
}
.rv-docrow {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    text-decoration: none;
    color: var(--rv-text);
    border-bottom: 1px solid rgba(18, 63, 109, 0.07);
    transition: background 0.2s ease;
}
.rv-docrow:last-child {
    border-bottom: none;
}
.rv-docrow:hover {
    background: #fbfdff;
}
.rv-docrow-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    color: var(--rv-green);
    background: #f1f5f9;
}
.rv-docrow-info {
    flex: 1;
    min-width: 0;
}
.rv-docrow-info strong {
    display: block;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--rv-text);
    margin-bottom: 2px;
}
.rv-docrow-info span {
    font-size: 0.8rem;
    color: #8b95a5;
}
.rv-docrow-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.76rem;
    font-weight: 500;
    color: var(--rv-green);
    white-space: nowrap;
    flex-shrink: 0;
}
.rv-docrow-action i {
    transition: transform 0.2s ease;
}
.rv-docrow:hover .rv-docrow-action i {
    transform: translateX(3px);
}

/* ============================================================
   BELGE SAYFASI — Stats band + Category sections + Cards (eski)
   ============================================================ */
.rv-doc-stats-band {
    background: var(--rv-green-xpale);
    border-bottom: 1px solid var(--rv-border);
    padding: 32px 0;
}
.rv-doc-stats-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.rv-doc-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 48px;
    border-right: 1px solid var(--rv-border);
}
.rv-doc-stat:last-child {
    border-right: none;
}
.rv-doc-stat strong {
    font-size: 2rem;
    font-weight: 600;
    color: var(--rv-green);
    font-family: "Manrope", sans-serif;
    line-height: 1.1;
}
.rv-doc-stat span {
    font-size: 0.8rem;
    color: var(--rv-text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.rv-doc-section {
    margin-bottom: 52px;
}

.rv-doc-cat-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--rv-border);
}
.rv-doc-cat-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.rv-doc-cat-green {
    background: var(--rv-green-pale);
    color: var(--rv-green);
}
.rv-doc-cat-blue {
    background: #e8f0fe;
    color: #2563eb;
}
.rv-doc-cat-gold {
    background: var(--rv-gold-pale);
    color: var(--rv-gold);
}
.rv-doc-cat-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.rv-doc-cat-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 2px;
    color: var(--rv-text);
}
.rv-doc-cat-desc {
    font-size: 0.85rem;
    color: var(--rv-text-muted);
    margin: 0;
}

.rv-doc-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.rv-doc-card {
    background: #fff;
    border: 1.5px solid var(--rv-border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
    color: var(--rv-text);
    transition: var(--rv-transition);
}
.rv-doc-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--rv-shadow);
    border-color: var(--rv-green-mid);
    color: var(--rv-text);
}
.rv-doc-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}
.rv-doc-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.rv-doc-icon-green {
    background: var(--rv-green-pale);
    color: var(--rv-green);
}
.rv-doc-icon-blue {
    background: #e8f0fe;
    color: #2563eb;
}
.rv-doc-icon-gold {
    background: var(--rv-gold-pale);
    color: var(--rv-gold);
}
.rv-doc-icon-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.rv-doc-card-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    flex-shrink: 0;
}
.rv-doc-badge-green {
    background: var(--rv-green-pale);
    color: var(--rv-green);
}
.rv-doc-badge-blue {
    background: #e8f0fe;
    color: #2563eb;
}
.rv-doc-badge-gold {
    background: var(--rv-gold-pale);
    color: var(--rv-gold);
}
.rv-doc-badge-purple {
    background: #f3e8ff;
    color: #9333ea;
}

.rv-doc-card-body h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 6px;
    color: var(--rv-text);
}
.rv-doc-card-body p {
    font-size: 0.87rem;
    color: var(--rv-text-muted);
    line-height: 1.6;
    margin: 0;
}
.rv-doc-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--rv-border);
    margin-top: auto;
}
.rv-doc-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.77rem;
    color: var(--rv-text-muted);
}
.rv-doc-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.rv-doc-card-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--rv-green);
    white-space: nowrap;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .rv-doc-stats-grid {
        flex-direction: column;
        align-items: center;
    }
    .rv-doc-stat {
        border-right: none;
        border-bottom: 1px solid var(--rv-border);
        padding: 14px 0;
        width: 100%;
        text-align: center;
    }
    .rv-doc-stat:last-child {
        border-bottom: none;
    }
    .rv-doc-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.rv-floating-wa {
    position: fixed;
    right: 26px;
    bottom: 26px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #1ebe5d;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(10, 88, 42, 0.2);
    font-size: 1.2rem;
    line-height: 1;
    z-index: 999;
    transition: var(--rv-transition);
}
.rv-floating-wa.has-back-top {
    bottom: 80px;
}
.rv-floating-wa:hover {
    color: #fff;
    background: #18a950;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 88, 42, 0.28);
}

.rv-back-top {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 44px;
    height: 44px;
    background: var(--rv-green);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--rv-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--rv-transition);
}
.rv-back-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.rv-back-top:hover {
    background: var(--rv-gold);
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    .rv-donate-widget {
        height: auto;
        position: static;
    }
    .rv-page-grid {
        grid-template-columns: 1fr;
    }
    .rv-inner-hero {
        min-height: 380px;
        padding: 90px 0 58px;
    }
    .rv-about-layout,
    .rv-doc-layout,
    .rv-project-detail-layout {
        grid-template-columns: 1fr;
    }
    .rv-project-donate-panel {
        position: static;
    }
    .rv-service-intro,
    .rv-donation-card-grid,
    .rv-search-summary,
    .rv-search-result-grid,
    .rv-process-grid,
    .rv-contact-layout,
    .rv-bank-section,
    .rv-bank-grid {
        grid-template-columns: 1fr;
    }
    .rv-inner-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .rv-bank-page-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .rv-about-visual {
        min-height: 340px;
        padding: 7px;
    }
    .rv-project-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .rv-value-grid,
    .rv-news-board {
        grid-template-columns: 1fr;
    }
    .rv-doc-info {
        position: static;
    }
    .rv-gallery-grid {
        columns: 2;
    }
    .rv-inner-gallery-grid {
        columns: 2;
    }
}

@media (max-width: 767.98px) {
    .splide__arrow {
        display: none;
    }
    .rv-how-head {
        margin-bottom: 22px;
    }
    .rv-how-head-grid,
    .rv-how-steps {
        grid-template-columns: 1fr;
    }
    .rv-how-head-grid {
        gap: 10px;
    }
    .rv-how-step {
        min-height: auto;
    }
    .rv-kampanyalar-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-bottom: 26px;
    }
    .rv-kampanyalar-all {
        padding: 9px 14px;
        font-size: 0.78rem;
    }
    .rv-section {
        padding: 60px 0;
    }
    :root {
        --rv-navbar-h: 86px;
    }
    .rv-logo {
        height: 66px;
    }
    .rv-navbar.rv-scrolled .rv-logo {
        height: 60px;
    }
    .rv-nav-actions {
        margin-left: auto;
        gap: 0;
    }
    .rv-icon-btn {
        width: 38px;
        height: 38px;
    }
    .rv-cart-drawer {
        top: calc(var(--rv-topbar-h) + 10px);
        right: 10px;
        max-height: calc(100vh - var(--rv-topbar-h) - 20px);
    }
    .rv-gallery-grid {
        columns: 2;
    }
    .rv-page-hero {
        padding: 54px 0 44px;
    }
    .rv-inner-hero {
        min-height: 240px;
        padding: 58px 0 34px;
    }
    .rv-inner-hero-shade {
        background:
            linear-gradient(
                90deg,
                rgba(6, 25, 46, 0.92) 0%,
                rgba(8, 34, 61, 0.76) 100%
            ),
            linear-gradient(
                0deg,
                rgba(6, 25, 46, 0.82) 0%,
                rgba(6, 25, 46, 0.12) 70%
            );
    }
    .rv-inner-hero .rv-page-title {
        font-size: 2rem;
    }
    .rv-inner-hero-content {
        padding-left: 13px;
    }
    .rv-page-hero-actions .btn {
        width: auto;
        justify-content: center;
        padding: 9px 14px;
        font-size: 0.78rem;
    }
    .rv-search-page-form {
        grid-template-columns: auto minmax(0, 1fr);
        padding: 12px 14px;
    }
    .rv-search-shell {
        padding: 42px 0 64px;
    }
    .rv-search-focus {
        margin-bottom: 24px;
    }
    .rv-search-page-form .btn {
        grid-column: 1 / -1;
        width: 100%;
    }
    .rv-search-result-card {
        grid-template-columns: 108px minmax(0, 1fr);
        gap: 12px;
        min-height: 128px;
    }
    .rv-search-result-card img {
        width: 108px;
        height: 104px;
    }
    .rv-search-result-card h3 {
        font-size: 0.98rem;
    }
    .rv-search-result-card p {
        font-size: 0.88rem;
    }
    .rv-search-results-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
    .rv-search-list {
        grid-template-columns: 1fr;
    }
    .rv-search-list-item {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 12px;
        min-height: auto;
    }
    .rv-search-list-item img {
        width: 82px;
        height: 86px;
    }
    .rv-search-list-item > i {
        display: none;
    }
    .rv-project-detail-cover img {
        height: 260px;
    }
    .rv-project-detail-main {
        padding: 7px;
    }
    .rv-project-detail-copy,
    .rv-project-donate-panel {
        padding: 22px;
    }
    .rv-page-content {
        padding: 48px 0;
    }
    .rv-page-panel {
        padding: 22px;
    }
    .rv-cart-summary-panel {
        position: static;
    }
    .rv-cart-notice {
        padding: 14px;
    }
    .rv-cart-page-image,
    .rv-cart-page-placeholder {
        width: 58px;
        height: 58px;
    }
    .rv-static-page-card {
        padding: 7px;
    }
    .rv-blog-detail-card {
        padding: 7px;
    }
    .rv-blog-detail-body {
        padding: 22px 16px 18px;
    }
    .rv-blog-detail-media {
        height: 230px;
    }
    .rv-static-page-body {
        padding: 22px 16px 18px;
    }
    .rv-static-page-media {
        height: 210px;
    }
    .rv-about-lead,
    .rv-doc-info {
        padding: 22px;
    }
    .rv-service-intro {
        margin-bottom: 42px;
    }
    .rv-service-intro .rv-page-panel,
    .rv-donation-card,
    .rv-process-grid div {
        padding: 20px;
    }
    .rv-service-product-card,
    .rv-qurban-card {
        padding: 0;
    }
    .rv-product-detail-layout {
        grid-template-columns: 1fr;
    }
    .rv-product-detail-content {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .rv-product-detail-media,
    .rv-product-detail-media img {
        min-height: 340px;
    }
    .rv-page-split,
    .rv-doc-list-v2 .rv-doc-item {
        grid-template-columns: 1fr;
    }
    .rv-news-card {
        grid-template-rows: 190px 1fr;
    }
    .rv-doc-list-v2 .rv-doc-item strong {
        justify-self: start;
    }
    .rv-qurban-card .rv-donation-image {
        height: 220px;
        margin: 12px 12px 0;
        width: calc(100% - 24px);
    }
    .rv-service-product-media .rv-donation-image {
        height: 190px;
    }
    .rv-project-grid {
        grid-template-columns: 1fr;
    }
    .rv-qurban-card-body {
        padding: 16px;
    }
    .rv-qurban-bottom {
        align-items: stretch;
        flex-direction: column;
    }
    .rv-qurban-bottom .rv-btn-donate {
        width: 100%;
    }
    .rv-contact-panel,
    .rv-bank-section {
        padding: 22px;
    }
    .rv-contact-location-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 14px 12px;
    }
    .rv-contact-location-head p {
        text-align: left;
    }
    .rv-contact-map,
    .rv-contact-map iframe {
        min-height: 280px;
        height: 280px;
    }
    .rv-bank-account-head,
    .rv-iban-box,
    .rv-bank-row {
        align-items: flex-start;
        flex-direction: column;
    }
    .rv-bank-account-head {
        display: flex;
    }
    .rv-bank-row strong {
        text-align: left;
    }
    .rv-footer-top {
        padding: 30px 18px 22px;
    }
    .rv-footer {
        padding: 14px 0;
    }
    .rv-footer-panel {
        border-radius: 17px;
    }
    .rv-footer-bottom {
        padding: 14px 16px;
    }
    .rv-footer-logo {
        height: 46px;
    }
    .rv-footer-contact {
        justify-content: center;
    }
    .rv-dw-amounts {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575.98px) {
    :root {
        --rv-topbar-h: 40px;
        --rv-navbar-h: 78px;
    }
    .rv-topbar .container,
    .rv-navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .rv-tb-inner {
        gap: 6px;
    }
    .rv-tb-left {
        flex: 1;
        gap: 5px;
        min-width: 0;
        overflow: hidden;
    }
    .rv-tb-right {
        gap: 3px;
        flex-shrink: 0;
    }
    .rv-tb-divider {
        display: none;
    }
    .rv-tb-link {
        min-height: 28px;
        padding: 0 7px;
        font-size: 0.72rem;
    }
    .rv-tb-phone span {
        max-width: 94px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .rv-tb-social {
        width: 26px;
        height: 26px;
        font-size: 0.86rem;
    }
    .rv-logo {
        height: 72px;
    }
    .rv-slide-title {
        font-size: 2rem;
    }
    .rv-slide-actions {
        gap: 8px;
    }
    .rv-btn-hero-primary,
    .rv-btn-hero-outline {
        width: auto;
        justify-content: center;
        text-align: center;
        padding: 8px 13px;
        border-radius: 6px;
        font-size: 0.74rem;
        letter-spacing: 0.02em;
    }
    .rv-gallery-grid {
        columns: 1;
    }
    .rv-inner-gallery-grid {
        columns: 1;
    }
    .rv-inner-video-grid {
        grid-template-columns: 1fr;
    }
    .rv-gallery-tabs-nav {
        gap: 6px;
    }
    .rv-inner-gallery-section .rv-gallery-toolbar {
        margin-bottom: 20px;
        padding: 7px;
    }
    .rv-inner-gallery-section .rv-gtab-btn {
        padding: 9px 11px;
        font-size: 0.78rem;
    }
    .rv-inner-gallery-section .rv-gallery-filters {
        margin-top: 8px;
        padding-top: 10px;
    }
    .rv-gtab-btn {
        padding: 10px 16px;
        font-size: 0.88rem;
    }
    .rv-dw-amounts {
        grid-template-columns: repeat(2, 1fr);
    }
    .rv-dw-custom {
        grid-column: span 2;
    }
    .rv-floating-wa,
    .rv-back-top {
        right: 16px;
        width: 42px;
        height: 42px;
    }
    .rv-floating-wa {
        bottom: 20px;
    }
    .rv-floating-wa.has-back-top {
        bottom: 72px;
    }
    .rv-back-top {
        bottom: 20px;
    }
    .rv-sc-track {
        width: 40px;
    }
}

/* ============================================================
   KULLANICI DURUM NOKTASI (Header & Mobil Menü)
   ============================================================ */
.rv-icon-btn--profile { position: relative; }

.rv-user-status-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 2px solid #fff;
    bottom: 7px;
    right: 7px;
    pointer-events: none;
    flex-shrink: 0;
}
.rv-user-status-dot--on  { background: #22c55e; }
.rv-user-status-dot--off { background: #94a3b8; }

/* Mobil menüdeki dot için konum */
.rv-mm-qi .rv-user-status-dot {
    bottom: 2px;
    right: 2px;
}

/* ============================================================
   HESAP SİL — TEHLİKELİ BÖLGE PANELİ
   ============================================================ */
.rv-panel--danger {
    border: 1.5px solid #fca5a5 !important;
    background: #fff5f5;
}
.rv-panel--danger .rv-panel-head {
    border-bottom-color: #fca5a5;
}
.rv-danger-title {
    color: #dc2626;
    font-size: 1.1rem;
}

/* Güvenlik Kodu Gösterimi */
.rv-delete-code-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 22px;
    padding: 16px 20px;
    background: #fff;
    border: 1.5px dashed #fca5a5;
    border-radius: var(--rv-radius);
}
.rv-delete-code-label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #dc2626;
}
.rv-delete-code-box {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.rv-delete-code-char {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 50px;
    border-radius: 10px;
    background: #dc2626;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0;
    font-family: 'Courier New', monospace;
    box-shadow: 0 2px 8px rgba(220,38,38,.25);
    user-select: none;
}
.rv-delete-code-hint {
    font-size: .78rem;
    color: #9ca3af;
}

/* Sil Butonu */
.rv-btn-danger {
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: var(--rv-radius);
    padding: 12px 24px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--rv-transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
}
.rv-btn-danger:hover {
    background: #b91c1c;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(220,38,38,.3);
}

/* =============================================
   BANK ACCOUNTS PAGE  (rv-ba-*)
   ============================================= */

/* Nasıl Bağış Yapılır — Guide */
.rv-ba-section {
    background: #f7f8fa;
}
.rv-ba-guide {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 22px;
    padding: 12px;
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(18, 63, 109, 0.05);
}
.rv-ba-guide-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
}
.rv-ba-guide-step {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 14px;
    border-radius: 13px;
    background: #f8fafc;
}
.rv-ba-guide-num {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #eaf0f6;
    color: var(--rv-green);
    font-size: .88rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rv-ba-guide-step > div strong {
    display: block;
    font-size: .84rem;
    font-weight: 600;
    color: var(--rv-text);
    line-height: 1.3;
}
.rv-ba-guide-step > div p {
    margin: 0;
    font-size: .74rem;
    color: #8b95a5;
    line-height: 1.5;
}
.rv-ba-guide-divider {
    display: none;
}
.rv-ba-guide-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    background: #f1f5f9;
    color: var(--rv-green);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 10px;
    padding: 11px 16px;
    font-weight: 500;
    font-size: .8rem;
    text-decoration: none;
    transition: var(--rv-transition);
    white-space: nowrap;
    flex-shrink: 0;
}
.rv-ba-guide-wa i { font-size: 1.2rem; }
.rv-ba-guide-wa:hover {
    background: var(--rv-green);
    border-color: var(--rv-green);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(18, 63, 109, .14);
}

/* Section Head */
.rv-ba-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.rv-ba-section-head h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -.045em;
    color: var(--rv-dark);
    margin: 4px 0 0;
}

/* Grid */
.rv-ba-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 40px;
}

/* Card */
.rv-ba-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 63, 109, 0.08);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--rv-transition);
    box-shadow: 0 8px 24px rgba(18, 63, 109, .05);
}
.rv-ba-card:hover {
    border-color: rgba(18, 63, 109, .14);
    box-shadow: 0 18px 38px rgba(18,63,109,.10);
    transform: translateY(-3px);
}

/* Card Head */
.rv-ba-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(18, 63, 109, .07);
    background: #fbfdff;
}
.rv-ba-logo {
    width: 48px;
    height: 48px;
    border-radius: 11px;
    background: #fff;
    border: 1px solid rgba(18, 63, 109, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.rv-ba-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
}
.rv-ba-logo i {
    font-size: 1.6rem;
    color: #9ca3af;
}
.rv-ba-bank-info {
    flex: 1;
    min-width: 0;
}
.rv-ba-bank-info h3 {
    font-size: .98rem;
    font-weight: 600;
    color: var(--rv-dark);
    margin: 0 0 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.rv-ba-bank-info p {
    font-size: .8rem;
    color: #6b7280;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Currency Badge */
.rv-ba-currency {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .04em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.rv-ba-currency--tr,
.rv-ba-currency--usd,
.rv-ba-currency--eur {
    background: #eef3f8;
    color: var(--rv-green);
}

/* Card Body */
.rv-ba-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.rv-ba-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.rv-ba-field-label {
    font-size: .7rem;
    color: #8b95a5;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .04em;
    white-space: nowrap;
}
.rv-ba-field-value {
    font-size: .9rem;
    color: var(--rv-dark);
    font-weight: 600;
    text-align: right;
}

/* IBAN Block */
.rv-ba-iban-block {
    margin: 3px 0;
    background: #f4f7fa;
    border: 1px solid rgba(18, 63, 109, .07);
    border-radius: 12px;
    padding: 14px;
}
.rv-ba-iban-block .rv-ba-field-label {
    display: block;
    margin-bottom: 6px;
}
.rv-ba-iban-text {
    display: block;
    font-family: 'Courier New', Courier, monospace;
    font-size: .92rem;
    font-weight: 600;
    color: var(--rv-dark);
    letter-spacing: .06em;
    word-break: break-all;
}

/* Card Footer */
.rv-ba-footer {
    padding: 0 18px 18px;
    border-top: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Copy Button */
.rv-ba-copy-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--rv-green);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 10px 16px;
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--rv-transition);
}
.rv-ba-copy-btn i { font-size: 1rem; }
.rv-ba-copy-btn:hover {
    background: #123f6d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(18,63,109,.25);
}
.rv-ba-copy-btn--done {
    background: #059669 !important;
}

/* WA Button */
.rv-ba-wa-btn {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: #f1f5f9;
    border: 1px solid rgba(18, 63, 109, .08);
    color: var(--rv-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    text-decoration: none;
    transition: var(--rv-transition);
    flex-shrink: 0;
}
.rv-ba-wa-btn:hover {
    background: var(--rv-green);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(18, 63, 109, .16);
}

/* Footer Note */
.rv-ba-note {
    font-size: .8rem;
    color: #7b8493;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, .72);
    border-radius: 14px;
    border: 1px solid rgba(18, 63, 109, .07);
}
.rv-ba-note a {
    color: var(--rv-green);
    font-weight: 600;
    text-decoration: none;
}
.rv-ba-note a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
    .rv-ba-guide {
        grid-template-columns: 1fr;
        padding: 9px;
        gap: 10px;
    }
    .rv-ba-guide-steps {
        grid-template-columns: 1fr;
        gap: 4px;
    }
    .rv-ba-guide-divider { display: none; }
    .rv-ba-guide-wa { width: 100%; justify-content: center; }
    .rv-ba-grid { grid-template-columns: 1fr; }
    .rv-ba-section-head { flex-direction: column; align-items: flex-start; }
    .rv-ba-head {
        padding: 14px;
    }
    .rv-ba-body {
        padding: 14px;
    }
    .rv-ba-footer {
        padding: 0 14px 14px;
    }
}

/* =============================================
   404 PAGE
   ============================================= */
.rv-404-section {
    padding: 80px 0 100px;
}
.rv-404-box {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}
.rv-404-num {
    font-size: clamp(5.5rem, 14vw, 8.5rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.04em;
    background: linear-gradient(135deg, var(--rv-green) 0%, var(--rv-green-light) 60%, var(--rv-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    user-select: none;
}
.rv-404-divider {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--rv-green), var(--rv-gold));
    margin: 20px auto 28px;
}
.rv-404-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--rv-text);
    margin-bottom: 14px;
}
.rv-404-desc {
    font-size: .97rem;
    color: var(--rv-text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}
.rv-404-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.rv-btn-green-solid {
    background: var(--rv-green);
    color: #fff !important;
    font-weight: 600;
    font-size: .93rem;
    padding: 11px 26px;
    border-radius: 50px;
    border: 2px solid var(--rv-green);
    transition: var(--rv-transition);
    text-decoration: none;
}
.rv-btn-green-solid:hover {
    background: var(--rv-green-mid);
    border-color: var(--rv-green-mid);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--rv-shadow);
}

@media (max-width: 480px) {
    .rv-404-section { padding: 60px 0 72px; }
    .rv-404-actions { flex-direction: column; align-items: center; }
}
