@font-face{font-family:'RF Noto Sans Arabic';src:url('../../assets/fonts/NotoSansArabic/NotoSansArabic-Regular.ttf') format('truetype');font-weight:400;font-style:normal;font-display:swap;}
@font-face{font-family:'RF Noto Sans Arabic';src:url('../../assets/fonts/NotoSansArabic/NotoSansArabic-SemiBold.ttf') format('truetype');font-weight:600;font-style:normal;font-display:swap;}
@font-face{font-family:'RF Noto Sans Arabic';src:url('../../assets/fonts/NotoSansArabic/NotoSansArabic-Bold.ttf') format('truetype');font-weight:700;font-style:normal;font-display:swap;}

:root {
    --rf-public-font: 'RF Noto Sans Arabic',Tahoma,Arial,sans-serif;
    --rf-primary: #0A2A5A;
    --rf-secondary: #0B77D8;
    --rf-accent: #28C7BD;
    --rf-gold: #D6A84A;
    --rf-bg: #F5F7FB;
    --rf-card: #FFFFFF;
    --rf-border: #DFE5EF;
    --rf-text: #1F2937;
    --rf-muted: #64748B;
    --rf-radius: 20px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: var(--rf-public-font);
    background: var(--rf-bg);
    color: var(--rf-text);
}

a {
    color: inherit;
}

.rf-public-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.rf-public-header {
    background: #fff;
    border-bottom: 1px solid var(--rf-border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.rf-header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.rf-public-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--rf-primary);
    min-width: 220px;
}

.rf-brand-logo {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

.rf-brand-logo img {
    width: 100%;
    height: 100%;
    max-width: 54px;
    max-height: 54px;
    object-fit: contain;
}

.rf-brand-logo-fallback {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--rf-secondary);
    color: #fff;
    display: inline-grid;
    place-items: center;
    font-weight: 900;
}

.rf-brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.35;
}

.rf-brand-text strong {
    font-size: 14px;
    font-weight: 900;
    color: var(--rf-primary);
    white-space: nowrap;
}

.rf-brand-text small {
    font-size: 11px;
    font-weight: 700;
    color: var(--rf-muted);
    white-space: nowrap;
}


@media (max-width: 900px) {
    .rf-header-inner {
        min-height: auto;
        padding: 12px 0;
        flex-wrap: wrap;
    }

    .rf-public-brand {
        min-width: 0;
        flex: 1 1 100%;
        justify-content: center;
    }

    .rf-brand-text strong,
    .rf-brand-text small {
        white-space: normal;
    }

    .rf-slider-shell,
    .rf-public-hero-slide,
    .rf-hero-content {
        min-height: 620px;
    }

    .rf-hero-copy {
        width: 100%;
        padding: 64px 0 82px;
    }
}

.rf-public-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.rf-public-nav a {
    text-decoration: none;
    color: var(--rf-text);
    font-weight: 700;
}

.rf-public-nav a:hover {
    color: var(--rf-secondary);
}

.rf-public-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rf-lang-btn,
.rf-login-btn,
.rf-public-btn,
.rf-contact-form button {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 12px;
    text-decoration: none;
    background: var(--rf-secondary);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.rf-lang-btn {
    min-width: 42px;
    padding: 10px;
    background: var(--rf-primary);
}

.rf-public-hero {
    position: relative;
    color: #fff;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rf-primary), var(--rf-secondary));
}

.rf-slider-shell {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    min-height: calc(100vh - 78px);
}

.rf-public-hero-slide {
    display: none;
    position: relative;
    min-height: calc(100vh - 78px);
    isolation: isolate;
}

.rf-public-hero-slide.is-active {
    display: block;
}

.rf-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, var(--rf-primary), var(--rf-secondary));
}

.rf-hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 18%, rgba(40,199,189,.24), transparent 30%),
        linear-gradient(90deg, rgba(10,42,90,.92), rgba(11,63,122,.74) 46%, rgba(11,119,216,.42));
    z-index: 1;
}

[dir="rtl"] .rf-hero-bg::after {
    background:
        radial-gradient(circle at 84% 18%, rgba(40,199,189,.24), transparent 30%),
        linear-gradient(270deg, rgba(10,42,90,.92), rgba(11,63,122,.74) 46%, rgba(11,119,216,.42));
}

.rf-hero-bg img,
.rf-hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.rf-hero-content {
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 78px);
    display: flex;
    align-items: center;
}

.rf-hero-copy {
    width: min(680px, 100%);
    padding: 34px 0;
}

[dir="rtl"] .rf-hero-copy {
    margin-inline-start: auto;
    text-align: right;
}

[dir="ltr"] .rf-hero-copy {
    margin-inline-end: auto;
    text-align: left;
}

.rf-hero-kicker {
    display: inline-flex;
    color: var(--rf-gold);
    font-weight: 900;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,.18);
}

.rf-hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(38px, 5.4vw, 72px);
    line-height: 1.15;
    text-shadow: 0 10px 30px rgba(0,0,0,.28);
}

.rf-hero-copy p {
    margin: 0 0 24px;
    color: rgba(255,255,255,.90);
    font-size: 19px;
    line-height: 1.9;
    text-shadow: 0 4px 16px rgba(0,0,0,.22);
}

.rf-slide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.rf-public-btn.is-light {
    background: rgba(255,255,255,.16);
    border: 1px solid rgba(255,255,255,.30);
    box-shadow: none;
}

.rf-slider-dots {
    position: absolute;
    inset-inline-start: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.rf-slider-dots button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    padding: 0;
}

.rf-slider-dots button.is-active {
    width: 28px;
    background: #fff;
}

.rf-public-section {
    padding: 56px 0;
}

.rf-section-head {
    max-width: 760px;
    margin-bottom: 24px;
}

.rf-section-head h2,
.rf-page-title h1 {
    margin: 0 0 10px;
    color: var(--rf-primary);
    font-size: clamp(26px, 4vw, 42px);
}

.rf-section-head p,
.rf-page-title p,
.rf-empty-text {
    margin: 0;
    color: var(--rf-muted);
    line-height: 1.9;
}

.rf-page-title {
    padding: 52px 0;
    background: #fff;
    border-bottom: 1px solid var(--rf-border);
}

.rf-page-content {
    background: var(--rf-card);
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius);
    padding: 28px;
    line-height: 2;
    color: var(--rf-text);
}

.rf-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: start;
}

.rf-contact-form {
    background: var(--rf-card);
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius);
    padding: 24px;
    display: grid;
    gap: 14px;
}

.rf-contact-form label {
    display: grid;
    gap: 6px;
    color: var(--rf-primary);
    font-weight: 800;
}

.rf-contact-form input,
.rf-contact-form textarea {
    width: 100%;
    border: 1px solid var(--rf-border);
    border-radius: 12px;
    padding: 12px;
    font: inherit;
    color: var(--rf-text);
    background: #fff;
}

.rf-form-success,
.rf-form-error {
    border-radius: 12px;
    padding: 12px;
    font-weight: 800;
}

.rf-form-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.rf-form-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.rf-public-footer {
    background: #fff;
    border-top: 1px solid var(--rf-border);
    padding-top: 34px;
}

.rf-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
    padding-bottom: 26px;
}

.rf-public-footer h3,
.rf-public-footer h4 {
    color: var(--rf-primary);
    margin: 0 0 12px;
}

.rf-public-footer p {
    color: var(--rf-muted);
    line-height: 1.8;
    margin: 0;
}

.rf-footer-links,
.rf-footer-contact,
.rf-social-links {
    display: grid;
    gap: 8px;
}

.rf-footer-links a,
.rf-social-links a {
    color: var(--rf-muted);
    text-decoration: none;
}

.rf-footer-bottom {
    border-top: 1px solid var(--rf-border);
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--rf-muted);
    font-size: 13px;
}

@media (max-width: 900px) {
    .rf-header-inner,
    .rf-public-nav,
    .rf-public-actions {
        flex-wrap: wrap;
    }

    .rf-hero-grid,
    .rf-contact-grid,
    .rf-footer-grid {
        grid-template-columns: 1fr;
    }

    .rf-public-nav {
        order: 3;
        width: 100%;
    }
}

/* Batch 01.8 — Services, Ads & Booking Enhancements */
.rf-section-head.is-centered {
    text-align: center;
    margin-inline: auto;
}

.rf-section-head p {
    color: var(--rf-muted);
    line-height: 1.9;
}

.rf-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.rf-service-card,
.rf-ad-card,
.rf-empty-panel {
    background: var(--rf-card);
    border: 1px solid var(--rf-border);
    border-radius: var(--rf-radius);
    box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
    overflow: hidden;
}

.rf-service-image {
    min-height: 190px;
    background: linear-gradient(135deg, rgba(11,119,216,.10), rgba(40,199,189,.12));
}

.rf-service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.rf-service-body {
    padding: 20px;
    display: grid;
    gap: 12px;
}

.rf-service-body i {
    color: var(--rf-secondary);
    font-size: 24px;
}

.rf-service-body h3,
.rf-ad-card h3 {
    margin: 0;
    color: var(--rf-primary);
    font-size: 22px;
}

.rf-service-body p,
.rf-ad-card p {
    margin: 0;
    color: var(--rf-muted);
    line-height: 1.8;
}

.rf-service-meta {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.rf-service-meta span {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(11,119,216,.08);
    color: var(--rf-primary);
    font-size: 13px;
    font-weight: 800;
}

.rf-service-body a,
.rf-ad-card a {
    width: max-content;
}

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

.rf-ad-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: stretch;
}

.rf-ad-card img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
}

.rf-ad-card > div {
    padding: 18px;
    display: grid;
    gap: 10px;
    align-content: center;
}

.rf-booking-cta {
    padding: 54px 0;
    background: linear-gradient(135deg, var(--rf-primary), var(--rf-secondary));
    color: #fff;
}

.rf-booking-cta-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.rf-booking-cta span {
    color: var(--rf-gold);
    font-weight: 900;
}

.rf-booking-cta h2 {
    margin: 8px 0;
    font-size: clamp(26px, 3vw, 42px);
}

.rf-booking-cta p {
    margin: 0;
    color: rgba(255,255,255,.78);
}

.rf-contact-form select,
.rf-contact-form input,
.rf-contact-form textarea {
    width: 100%;
}

.rf-empty-panel {
    padding: 28px;
    color: var(--rf-muted);
    text-align: center;
}

.rf-form-success,
.rf-form-error {
    padding: 12px 14px;
    border-radius: 14px;
    font-weight: 800;
}

.rf-form-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.rf-form-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 900px) {
    .rf-services-grid,
    .rf-ads-grid,
    .rf-ad-card {
        grid-template-columns: 1fr;
    }

    .rf-booking-cta-grid {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* batch_02_2_v1_2_public_service_savings */
.rf-service-image{position:relative}.rf-service-saving-badge{position:absolute;inset-inline-start:12px;top:12px;background:#0b77d8;color:#fff;border-radius:999px;padding:7px 12px;font-size:.85rem;font-weight:700;box-shadow:0 8px 18px rgba(0,0,0,.14)}.rf-service-price-old{text-decoration:line-through;opacity:.62}.rf-service-price-final{font-weight:800;color:#0a2a5a}.rf-service-saving-line{margin-top:8px;color:#0a7a35;font-weight:700;font-size:.92rem}

