/* ============================================================
   Remco Homepage — remco-home.css
   Phase 5B — Categories + Contractors + Paths + Trust
   RTL-first, Mobile-first, Performance-optimized
   ============================================================ */

/* ── Design Tokens ── */
:root {
    --rc-green-dark: #1a3c2a;
    --rc-green: #2d6a4f;
    --rc-green-light: #40916c;
    --rc-gold: #d4a843;
    --rc-gold-light: #e8c96a;
    --rc-gold-dark: #b8922f;
    --rc-white: #ffffff;
    --rc-off-white: #f8f7f4;
    --rc-gray-100: #f3f3f3;
    --rc-gray-200: #e5e5e5;
    --rc-gray-600: #6b6b6b;
    --rc-gray-800: #2d2d2d;
    --rc-text: #1a1a1a;
    --rc-radius: 12px;
    --rc-radius-sm: 8px;
    --rc-radius-lg: 16px;
    --rc-shadow: 0 2px 8px rgba(0,0,0,0.08);
    --rc-shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --rc-transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --rc-font: 'Cairo', 'Tajawal', -apple-system, sans-serif;
    --rc-max-width: 1340px;
}

/* ── Global Reset for RC sections ── */
.rc-utility-bar *, .rc-header-main *, .rc-nav-bar *,
.rc-hero *, .rc-ai-tools *, .rc-categories *,
.rc-contractors *, .rc-paths *, .rc-trust * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ── Hide default Astra header ── */
body.remco-home .ast-above-header,
body.remco-home .ast-primary-header,
body.remco-home .ast-below-header,
body.remco-home .site-header,
body.remco-home #ast-desktop-header,
body.remco-home #ast-mobile-header {
    display: none !important;
}

/* ── Shared Section Styles ── */
.rc-section-inner {
    max-width: var(--rc-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.rc-section-header {
    text-align: center;
    margin-bottom: 40px;
}

.rc-section-title {
    font-size: clamp(22px, 4vw, 32px);
    font-weight: 700;
    color: var(--rc-green-dark);
    font-family: var(--rc-font);
    margin-bottom: 12px;
}

.rc-section-desc {
    font-size: 16px;
    color: var(--rc-gray-600);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.rc-section-footer {
    text-align: center;
    margin-top: 32px;
}

.rc-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid var(--rc-green);
    color: var(--rc-green);
    border-radius: var(--rc-radius);
    font-family: var(--rc-font);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--rc-transition);
}

.rc-btn-outline:hover {
    background: var(--rc-green);
    color: var(--rc-white);
    transform: translateY(-2px);
}

/* ════════════════════════════════════════
   UTILITY BAR
   ════════════════════════════════════════ */
.rc-utility-bar {
    background: var(--rc-green-dark);
    color: var(--rc-off-white);
    font-family: var(--rc-font);
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.rc-utility-inner {
    max-width: var(--rc-max-width);
    margin: 0 auto;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.rc-utility-links {
    display: flex;
    gap: 20px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rc-utility-links li { list-style: none; }

.rc-utility-links a {
    color: var(--rc-off-white);
    text-decoration: none;
    transition: color var(--rc-transition);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
}

.rc-utility-links a:hover { color: var(--rc-gold-light); }

.rc-utility-links a svg,
.rc-utility-links li a svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ════════════════════════════════════════
   MAIN HEADER
   ════════════════════════════════════════ */
.rc-header-main {
    background: var(--rc-white);
    box-shadow: var(--rc-shadow);
    position: sticky;
    top: 0;
    z-index: 999;
    font-family: var(--rc-font);
}

.rc-header-inner {
    max-width: var(--rc-max-width);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.rc-logo { flex-shrink: 0; text-decoration: none; }

.rc-logo img {
    height: 52px;
    width: auto;
    display: block;
    max-width: 220px;
}

.rc-search-wrap { flex: 1; max-width: 600px; }

.rc-search-box {
    display: flex;
    align-items: center;
    background: var(--rc-gray-100);
    border: 2px solid var(--rc-gray-200);
    border-radius: var(--rc-radius);
    overflow: hidden;
    transition: border-color var(--rc-transition);
}

.rc-search-box:focus-within {
    border-color: var(--rc-green);
    background: var(--rc-white);
}

.rc-search-box input[type="search"] {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 16px;
    font-size: 14px;
    font-family: var(--rc-font);
    color: var(--rc-text);
    outline: none;
    min-width: 0;
}

.rc-search-box input[type="search"]::placeholder {
    color: var(--rc-gray-600);
    font-size: 13px;
}

.rc-search-btn {
    background: var(--rc-green);
    color: var(--rc-white);
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    transition: background var(--rc-transition);
    display: flex;
    align-items: center;
    line-height: 1;
}

.rc-search-btn:hover { background: var(--rc-green-light); }
.rc-search-btn svg { width: 20px; height: 20px; }

.rc-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.rc-header-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--rc-gray-800);
    padding: 6px 10px;
    border-radius: var(--rc-radius-sm);
    transition: all var(--rc-transition);
    position: relative;
    font-size: 11px;
    min-width: 56px;
}

.rc-header-action:hover {
    background: var(--rc-gray-100);
    color: var(--rc-green);
}

.rc-header-action svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.rc-action-badge {
    position: absolute;
    top: 2px;
    left: 2px;
    background: var(--rc-gold);
    color: var(--rc-green-dark);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-ai-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--rc-gold), var(--rc-gold-dark));
    color: var(--rc-green-dark);
    border: none;
    padding: 10px 18px;
    border-radius: var(--rc-radius);
    font-family: var(--rc-font);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--rc-transition);
    white-space: nowrap;
    text-decoration: none;
}

.rc-ai-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.4);
    color: var(--rc-green-dark);
}

.rc-ai-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.rc-mobile-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--rc-green-dark);
}

.rc-mobile-toggle svg { width: 28px; height: 28px; }

/* ════════════════════════════════════════
   NAVIGATION BAR
   ════════════════════════════════════════ */
.rc-nav-bar {
    background: var(--rc-green);
    font-family: var(--rc-font);
}

.rc-nav-inner {
    max-width: var(--rc-max-width);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    overflow-x: auto;
    scrollbar-width: none;
}

.rc-nav-inner::-webkit-scrollbar { display: none; }

.rc-nav-link {
    color: var(--rc-white);
    text-decoration: none;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: all var(--rc-transition);
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rc-nav-link:hover,
.rc-nav-link:focus {
    background: rgba(255,255,255,0.18);
    border-bottom-color: var(--rc-gold);
    color: var(--rc-gold-light);
}

.rc-nav-link svg { width: 16px; height: 16px; flex-shrink: 0; }

.rc-nav-link--all {
    background: var(--rc-green-dark);
    border-radius: var(--rc-radius-sm) var(--rc-radius-sm) 0 0;
}

/* ════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════ */
.rc-hero {
    background: linear-gradient(135deg, var(--rc-green-dark) 0%, #0d2818 40%, #1a3c2a 100%);
    position: relative;
    overflow: hidden;
    font-family: var(--rc-font);
}

.rc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at 30% 50%, rgba(212,168,67,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(45,106,79,0.15) 0%, transparent 50%);
    animation: rc-glow 20s ease-in-out infinite alternate;
}

@keyframes rc-glow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-5%, -5%); }
}

.rc-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(30deg, rgba(212,168,67,0.03) 12%, transparent 12.5%, transparent 87%, rgba(212,168,67,0.03) 87.5%),
        linear-gradient(150deg, rgba(212,168,67,0.03) 12%, transparent 12.5%, transparent 87%, rgba(212,168,67,0.03) 87.5%);
    background-size: 80px 140px;
    pointer-events: none;
}

.rc-hero-inner {
    max-width: var(--rc-max-width);
    margin: 0 auto;
    padding: 60px 20px 50px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rc-hero-accent {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--rc-gold), var(--rc-gold-light));
    border-radius: 2px;
    margin-bottom: 24px;
}

.rc-hero-title {
    color: var(--rc-white);
    font-size: clamp(24px, 5vw, 40px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    max-width: 800px;
    font-family: var(--rc-font);
}

.rc-hero-title span { color: var(--rc-gold); }

.rc-hero-desc {
    color: rgba(255,255,255,0.8);
    font-size: clamp(14px, 2.5vw, 17px);
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 32px;
}

.rc-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.rc-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--rc-radius);
    font-family: var(--rc-font);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--rc-transition);
    cursor: pointer;
    border: 2px solid transparent;
}

.rc-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.rc-cta--primary {
    background: linear-gradient(135deg, var(--rc-gold), var(--rc-gold-dark));
    color: var(--rc-green-dark);
}

.rc-cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,168,67,0.4);
    color: var(--rc-green-dark);
}

.rc-cta--secondary {
    background: transparent;
    color: var(--rc-white);
    border-color: rgba(255,255,255,0.3);
}

.rc-cta--secondary:hover {
    border-color: var(--rc-gold);
    color: var(--rc-gold-light);
    background: rgba(255,255,255,0.05);
}

/* Gold CTA (Contractors) */
.rc-cta--gold {
    background: linear-gradient(135deg, var(--rc-gold), var(--rc-gold-dark));
    color: var(--rc-green-dark);
}

.rc-cta--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212,168,67,0.4);
    color: var(--rc-green-dark);
}

/* Outline Light (Contractors dark bg) */
.rc-cta--outline-light {
    background: transparent;
    color: var(--rc-white);
    border-color: rgba(255,255,255,0.3);
}

.rc-cta--outline-light:hover {
    border-color: var(--rc-gold);
    color: var(--rc-gold-light);
    background: rgba(255,255,255,0.05);
}

/* Hero Stats */
.rc-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

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

.rc-stat-num {
    color: var(--rc-gold);
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-stat-num svg {
    width: 28px;
    height: 28px;
    stroke: var(--rc-gold);
}

.rc-stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    margin-top: 4px;
}

/* ════════════════════════════════════════
   AI TOOLS SECTION
   ════════════════════════════════════════ */
.rc-ai-tools {
    background: var(--rc-off-white);
    font-family: var(--rc-font);
    padding: 50px 20px;
    position: relative;
}

.rc-ai-tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rc-green), var(--rc-gold), var(--rc-green));
}

.rc-ai-tools-inner { max-width: var(--rc-max-width); margin: 0 auto; }

.rc-ai-tools-header { text-align: center; margin-bottom: 36px; }

.rc-ai-tools-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--rc-green-dark), var(--rc-green));
    color: var(--rc-gold-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.rc-ai-tools-tag svg { width: 16px; height: 16px; flex-shrink: 0; }

.rc-ai-tools-title {
    font-size: clamp(20px, 4vw, 28px);
    color: var(--rc-green-dark);
    font-weight: 700;
    font-family: var(--rc-font);
}

.rc-ai-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.rc-ai-card {
    background: var(--rc-white);
    border-radius: var(--rc-radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--rc-gray-200);
    transition: all var(--rc-transition);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.rc-ai-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at top right, rgba(212,168,67,0.08), transparent 70%);
    border-radius: 0 var(--rc-radius-lg) 0 0;
}

.rc-ai-card:hover {
    border-color: var(--rc-gold);
    box-shadow: var(--rc-shadow-md);
    transform: translateY(-4px);
    color: inherit;
}

.rc-ai-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--rc-green), var(--rc-green-light));
    border-radius: var(--rc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--rc-white);
}

.rc-ai-card-icon svg { width: 24px; height: 24px; }

.rc-ai-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--rc-green-dark);
    margin-bottom: 8px;
    font-family: var(--rc-font);
}

.rc-ai-card-desc {
    font-size: 14px;
    color: var(--rc-gray-600);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.rc-ai-card-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rc-green);
    font-size: 14px;
    font-weight: 700;
    transition: gap var(--rc-transition), color var(--rc-transition);
}

.rc-ai-card-action svg { width: 16px; height: 16px; flex-shrink: 0; }

.rc-ai-card:hover .rc-ai-card-action {
    gap: 10px;
    color: var(--rc-gold-dark);
}

/* ════════════════════════════════════════
   CATEGORIES GRID (Phase 5B)
   ════════════════════════════════════════ */
.rc-categories {
    background: var(--rc-white);
    font-family: var(--rc-font);
    padding: 60px 0;
}

.rc-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.rc-cat-card {
    background: var(--rc-off-white);
    border-radius: var(--rc-radius-lg);
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all var(--rc-transition);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.rc-cat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rc-green), var(--rc-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--rc-transition);
}

.rc-cat-card:hover {
    border-color: var(--rc-green-light);
    box-shadow: var(--rc-shadow-md);
    transform: translateY(-4px);
    color: inherit;
}

.rc-cat-card:hover::after { transform: scaleX(1); }

.rc-cat-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--rc-green-dark), var(--rc-green));
    border-radius: var(--rc-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--rc-gold-light);
    flex-shrink: 0;
}

.rc-cat-icon svg { width: 26px; height: 26px; }

.rc-cat-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--rc-green-dark);
    margin-bottom: 8px;
    font-family: var(--rc-font);
}

.rc-cat-desc {
    font-size: 13px;
    color: var(--rc-gray-600);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 14px;
}

.rc-cat-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--rc-green);
    font-size: 13px;
    font-weight: 700;
    transition: gap var(--rc-transition), color var(--rc-transition);
}

.rc-cat-action svg { flex-shrink: 0; }

.rc-cat-card:hover .rc-cat-action {
    gap: 10px;
    color: var(--rc-gold-dark);
}

/* ════════════════════════════════════════
   CONTRACTORS / RFQ (Phase 5B)
   ════════════════════════════════════════ */
.rc-contractors {
    background: linear-gradient(135deg, var(--rc-green-dark) 0%, #0d2818 50%, var(--rc-green-dark) 100%);
    font-family: var(--rc-font);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.rc-contractors-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(30deg, rgba(212,168,67,0.04) 12%, transparent 12.5%, transparent 87%, rgba(212,168,67,0.04) 87.5%),
        linear-gradient(150deg, rgba(212,168,67,0.04) 12%, transparent 12.5%, transparent 87%, rgba(212,168,67,0.04) 87.5%);
    background-size: 60px 100px;
}

.rc-contractors > .rc-section-inner {
    position: relative;
    z-index: 1;
}

.rc-contractors-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rc-contractors-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212,168,67,0.15);
    color: var(--rc-gold-light);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid rgba(212,168,67,0.25);
}

.rc-contractors-tag svg { flex-shrink: 0; }

.rc-contractors-title {
    font-size: clamp(24px, 4vw, 34px);
    font-weight: 700;
    color: var(--rc-white);
    margin-bottom: 16px;
    font-family: var(--rc-font);
}

.rc-contractors-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 28px;
}

.rc-contractors-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Contractor features */
.rc-contractors-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.rc-cf-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--rc-radius);
    padding: 20px;
    transition: all var(--rc-transition);
}

.rc-cf-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(212,168,67,0.3);
    transform: translateY(-2px);
}

.rc-cf-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--rc-gold), var(--rc-gold-dark));
    border-radius: var(--rc-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rc-green-dark);
    flex-shrink: 0;
}

.rc-cf-icon svg { width: 22px; height: 22px; }

.rc-cf-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--rc-white);
    margin-bottom: 4px;
    font-family: var(--rc-font);
}

.rc-cf-item p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* ════════════════════════════════════════
   SMART SHOPPING PATHS (Phase 5B)
   ════════════════════════════════════════ */
.rc-paths {
    background: var(--rc-off-white);
    font-family: var(--rc-font);
    padding: 60px 0;
}

.rc-paths-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.rc-path-card {
    background: var(--rc-white);
    border-radius: var(--rc-radius-lg);
    padding: 36px 28px;
    border: 2px solid var(--rc-gray-200);
    transition: all var(--rc-transition);
    text-align: center;
    position: relative;
}

.rc-path-card:hover {
    border-color: var(--rc-green-light);
    box-shadow: var(--rc-shadow-md);
    transform: translateY(-4px);
}

.rc-path-card--featured {
    border-color: var(--rc-gold);
    background: linear-gradient(180deg, rgba(212,168,67,0.04) 0%, var(--rc-white) 40%);
}

.rc-path-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--rc-gold), var(--rc-gold-light), var(--rc-gold));
    border-radius: var(--rc-radius-lg) var(--rc-radius-lg) 0 0;
}

.rc-path-num {
    width: 32px;
    height: 32px;
    background: var(--rc-green);
    color: var(--rc-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.rc-path-card--featured .rc-path-num {
    background: linear-gradient(135deg, var(--rc-gold), var(--rc-gold-dark));
    color: var(--rc-green-dark);
}

.rc-path-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--rc-green-dark), var(--rc-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--rc-gold-light);
}

.rc-path-icon svg { width: 28px; height: 28px; }

.rc-path-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--rc-green-dark);
    margin-bottom: 12px;
    font-family: var(--rc-font);
}

.rc-path-desc {
    font-size: 14px;
    color: var(--rc-gray-600);
    line-height: 1.8;
    margin-bottom: 24px;
}

.rc-path-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rc-green);
    color: var(--rc-white);
    padding: 10px 24px;
    border-radius: var(--rc-radius);
    font-family: var(--rc-font);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--rc-transition);
}

.rc-path-cta:hover {
    background: var(--rc-green-dark);
    transform: translateY(-2px);
    color: var(--rc-white);
}

.rc-path-card--featured .rc-path-cta {
    background: linear-gradient(135deg, var(--rc-gold), var(--rc-gold-dark));
    color: var(--rc-green-dark);
}

.rc-path-card--featured .rc-path-cta:hover {
    box-shadow: 0 4px 16px rgba(212,168,67,0.4);
}

/* ════════════════════════════════════════
   TRUST FEATURES STRIP (Phase 5B)
   ════════════════════════════════════════ */
.rc-trust {
    background: var(--rc-green-dark);
    font-family: var(--rc-font);
    padding: 36px 0;
    border-top: 3px solid var(--rc-gold);
}

.rc-trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.rc-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
}

.rc-trust-icon {
    width: 36px;
    height: 36px;
    background: rgba(212,168,67,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rc-gold-light);
    flex-shrink: 0;
}

.rc-trust-icon svg { width: 18px; height: 18px; }

.rc-trust-label {
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
    .rc-cat-grid { grid-template-columns: repeat(2, 1fr); }
    .rc-contractors-content { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 768px) {
    .rc-utility-inner {
        flex-direction: column;
        padding: 6px 16px;
        gap: 4px;
    }

    .rc-utility-links { gap: 12px; font-size: 12px; }

    .rc-header-inner {
        flex-wrap: wrap;
        padding: 10px 16px;
        gap: 10px;
    }

    .rc-logo img { height: 40px; }

    .rc-search-wrap {
        order: 10;
        max-width: none;
        width: 100%;
    }

    .rc-mobile-toggle { display: flex; margin-right: auto; }
    .rc-ai-btn span { display: none; }
    .rc-ai-btn { padding: 10px 12px; }
    .rc-header-action span { display: none; }
    .rc-header-action { min-width: 40px; padding: 6px; }

    .rc-hero-inner { padding: 40px 16px 36px; }

    .rc-hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .rc-cta { justify-content: center; width: 100%; }

    .rc-hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rc-ai-cards { grid-template-columns: 1fr; }
    .rc-ai-tools { padding: 36px 16px; }

    /* Phase 5B responsive */
    .rc-cat-grid { grid-template-columns: 1fr; }

    .rc-categories,
    .rc-paths { padding: 40px 0; }

    .rc-contractors { padding: 50px 0; }
    .rc-contractors-features { grid-template-columns: 1fr; }

    .rc-paths-grid { grid-template-columns: 1fr; }

    .rc-trust-grid {
        justify-content: center;
        gap: 12px;
    }

    .rc-trust-item { flex: 0 1 45%; justify-content: center; }
}

@media (max-width: 480px) {
    .rc-utility-links {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .rc-stat-num { font-size: 22px; }
    .rc-trust-item { flex: 0 1 100%; }
}

/* Admin bar fix */
body.admin-bar .rc-header-main { top: 32px; }

@media (max-width: 782px) {
    body.admin-bar .rc-header-main { top: 46px; }
}


/* ================================================
   Phase 5C — Container for Footer sections
   ================================================ */
.rc-footer-cta .rc-container,
.rc-footer .rc-container,
.rc-copyright .rc-container {
    max-width: var(--rc-max-width, 1340px);
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* ================================================
   Phase 5C — Footer CTA Strip
   ================================================ */
.rc-footer-cta {
    background: linear-gradient(135deg, #1a3c2a 0%, #2d6a4f 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.rc-footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rc-footer-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.rc-footer-cta-title {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
}

.rc-footer-cta-desc {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.7;
}

.rc-footer-cta-actions {
    display: flex;
    gap: 14px;
    flex-shrink: 0;
}


.rc-footer-cta .rc-btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #d4a843;
    color: #1a3c2a;
    border: 2px solid #d4a843;
    border-radius: 10px;
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.rc-footer-cta .rc-btn-gold:hover {
    background: #e0b84d;
    border-color: #e0b84d;
    color: #1a3c2a;
    box-shadow: 0 4px 14px rgba(212,168,67,0.35);
}

.rc-footer-cta a:visited {
    color: inherit;
}

.rc-btn-outline-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid #fff;
    background: #fff;
    border-radius: 10px;
    color: #1a3c2a !important;
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.rc-btn-outline-light:hover {
    background: rgba(255,255,255,0.88);
    border-color: #fff;
    color: #1a3c2a !important;
    box-shadow: 0 4px 14px rgba(255,255,255,0.25);
}

/* ================================================
   Phase 5C — Main Footer
   ================================================ */
.rc-footer {
    background: #0f261a;
    padding: 60px 0 0;
    direction: rtl;
}

.rc-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 16px;
    align-items: start;
}

/* Column: About */
.rc-footer-logo-img {
    max-width: 180px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 18px;
}

.rc-footer-about-text {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.9;
    margin: 0 0 14px 0;
}

.rc-footer-company {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 12px;
    color: #d4a843;
    font-weight: 600;
    margin: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

/* Column Headings */
.rc-footer-heading {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    position: relative;
}

.rc-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 36px;
    height: 3px;
    background: #d4a843;
    border-radius: 2px;
}

/* Links */
.rc-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.rc-footer-links li {
    margin-bottom: 10px;
}

.rc-footer-links a {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.25s ease, padding-right 0.25s ease;
    display: inline-block;
}

.rc-footer-links a:hover {
    color: #d4a843;
    padding-right: 6px;
}

/* ================================================
   Phase 5C — Copyright Bar
   ================================================ */
.rc-copyright {
    background: #0a1c12;
    margin-top: 50px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.rc-copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.rc-copyright-text {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.rc-copyright-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.rc-copyright-links a {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.25s ease;
}

.rc-copyright-links a:hover {
    color: #d4a843;
}

.rc-sep {
    color: rgba(255,255,255,0.15);
    font-size: 13px;
}

/* ================================================
   Phase 5C — Floating Contact Buttons
   ================================================ */
.rc-floating-btns {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.rc-float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rc-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.rc-float-whatsapp {
    background: #25d366;
    color: #fff;
}

.rc-float-whatsapp:hover {
    color: #fff;
}

.rc-float-phone {
    background: #1a3c2a;
    color: #d4a843;
    border: 2px solid rgba(212,168,67,0.3);
}

.rc-float-phone:hover {
    color: #d4a843;
    border-color: #d4a843;
}

/* ================================================
   Phase 5C — Hide default Astra footer on homepage
   ================================================ */
body.remco-home .site-footer,
body.remco-home .ast-footer-overlay,
body.remco-home .ast-small-footer,
body.remco-home footer.site-footer,
body.remco-home .site-below-footer-wrap,
body.remco-home .ast-footer-copyright,
body.remco-home .ast-builder-footer-grid-columns {
    display: none !important;
}

/* ================================================
   Phase 5C — Footer Responsive
   ================================================ */
@media (max-width: 1024px) {
    .rc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .rc-footer-cta { padding: 36px 0; }
    
    .rc-footer-cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .rc-footer-cta-title { font-size: 22px; }
    
    .rc-footer-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .rc-footer-cta-actions .rc-btn,
    .rc-footer-cta-actions .rc-btn-gold,
    .rc-footer-cta-actions .rc-btn-outline-light {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
    
    .rc-footer { padding: 40px 0 0; }
    
    .rc-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rc-footer-about { text-align: center; }
    .rc-footer-logo-img { margin: 0 auto 18px; display: block; }
    
    .rc-footer-heading::after {
        right: 50%;
        transform: translateX(50%);
    }
    
    .rc-copyright { margin-top: 30px; }
    
    .rc-copyright-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .rc-copyright-links {
        justify-content: center;
    }
    
    .rc-floating-btns {
        bottom: 16px;
        left: 16px;
    }
    
    .rc-float-btn {
        width: 46px;
        height: 46px;
    }
    
    .rc-float-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .rc-footer-cta-title { font-size: 20px; }
    .rc-footer-cta-desc { font-size: 14px; }
    
    .rc-floating-btns {
        bottom: 12px;
        left: 12px;
        gap: 8px;
    }
    
    .rc-float-btn {
        width: 42px;
        height: 42px;
    }
}

    color: #e0b84d !important;
}

/* Phase 6A Review — Nav active state */
.rc-nav-active {
    color: #d4a843 !important;
    border-bottom-color: #d4a843 !important;
    background: rgba(212,168,67,0.12) !important;
    font-weight: 700 !important;
}
/* ════════════════════════════════════════════════════════════════ */
/* 6-SLIDE DYNAMIC HERO SLIDER (KEN BURNS ANIMATION ENGINE)         */
/* ════════════════════════════════════════════════════════════════ */
.rc-hero {
    position: relative;
    width: 100%;
    height: 620px;
    overflow: hidden;
    direction: rtl;
    background: #0f172a;
    font-family: 'Cairo', system-ui, -apple-system, sans-serif;
}

.rc-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease, visibility 0s 1.2s;
    z-index: 0;
}

.rc-hero__slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.2s ease, visibility 0s 0s;
    z-index: 1;
}

/* Ken Burns Smooth Motion Zoom Effect */
.rc-hero__slide-bg {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
}

.rc-hero__slide.active .rc-hero__slide-bg {
    animation: rcKenBurns 7s ease forwards;
}

.rc-hero__slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes rcKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Cinematic Dark Gradient Overlay */
.rc-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(30, 41, 59, 0.65) 50%,
        rgba(15, 23, 42, 0.88) 100%
    );
    z-index: 1;
}

/* Hero Slide Content */
.rc-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px 110px;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.rc-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #f59e0b;
    padding: 8px 22px;
    border: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    background: rgba(245, 158, 11, 0.12);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(25px);
}

.rc-hero__slide.active .rc-hero__eyebrow {
    animation: rcSlideUp 0.7s cubic-bezier(.22,1,.36,1) 0.15s forwards;
}

.rc-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(25px);
}

.rc-hero__title em {
    font-style: normal;
    color: #f59e0b;
}

.rc-hero__slide.active .rc-hero__title {
    animation: rcSlideUp 0.7s cubic-bezier(.22,1,.36,1) 0.3s forwards;
}

.rc-hero__desc {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: #cbd5e1;
    margin: 0 0 28px 0;
    max-width: 720px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(25px);
}

.rc-hero__slide.active .rc-hero__desc {
    animation: rcSlideUp 0.7s cubic-bezier(.22,1,.36,1) 0.45s forwards;
}

.rc-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    opacity: 0;
    transform: translateY(25px);
}

.rc-hero__slide.active .rc-hero__ctas {
    animation: rcSlideUp 0.7s cubic-bezier(.22,1,.36,1) 0.6s forwards;
}

.rc-hero__cta {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.35);
    transition: all 0.25s ease;
}

.rc-hero__cta:hover {
    background: linear-gradient(135deg, #b45309 0%, #78350f 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.45);
}

.rc-hero__cta--outline {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.rc-hero__cta--outline:hover {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

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

/* Slider Navigation Arrows */
.rc-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.rc-hero__arrow:hover {
    background: #d97706;
    border-color: #d97706;
    box-shadow: 0 4px 16px rgba(217, 119, 6, 0.4);
}

.rc-hero__arrow--prev { right: 24px; }
.rc-hero__arrow--next { left: 24px; }

/* Progress Bar Indicators */
.rc-hero__progress-bar {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.rc-hero__progress-item {
    width: 45px;
    height: 5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.rc-hero__progress-fill {
    height: 100%;
    width: 0%;
    background: #d97706;
    border-radius: 10px;
}

.rc-hero__progress-item.active .rc-hero__progress-fill {
    animation: rcProgress 6s linear forwards;
}

@keyframes rcProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Stats Bar */
.rc-hero__stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(15, 23, 42, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 14px 20px;
}

.rc-hero__stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rc-hero__stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(217, 119, 6, 0.15);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rc-hero__stat-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
}

.rc-hero__stat-text span {
    font-size: 0.82rem;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .rc-hero { height: 560px; }
    .rc-hero__arrow { display: none; }
    .rc-hero__stats { display: none; }
    .rc-hero__progress-bar { bottom: 25px; }
    .rc-hero__content { padding-bottom: 60px; }
}
/* ════════════════════════════════════════════════════════════════ */
/* CONTINUOUS INFINITE SCROLLING BRANDS TICKER                      */
/* ════════════════════════════════════════════════════════════════ */
.rc-brands-ticker-sec {
    background: #f8fafc;
    padding: 32px 0 24px 0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
}

.rc-brands-header {
    text-align: center;
    margin-bottom: 18px;
}

.rc-brands-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.rc-brands-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0;
}

/* Gradient Mask Edges for Smooth Fade */
.rc-brands-track-wrapper::before,
.rc-brands-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 5;
    pointer-events: none;
}

.rc-brands-track-wrapper::before {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}

.rc-brands-track-wrapper::after {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}

.rc-brands-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: rcBrandsScroll 35s linear infinite;
}

.rc-brands-track-wrapper:hover .rc-brands-track {
    animation-play-state: paused;
}

@keyframes rcBrandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.rc-brand-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 22px;
    min-width: 185px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
    transition: all 0.25s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.rc-brand-card:hover {
    border-color: #d97706;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.15);
    transform: translateY(-2px);
}

.rc-brand-logo {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
    text-align: center;
}

.rc-brand-cat {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 3px;
    font-weight: 600;
}

.rc-ai-tools {
    margin-top: 20px !important;
}
/* ════════════════════════════════════════════════════════════════ */
/* CONTINUOUS INFINITE SCROLLING OFFICIAL SVG BRANDS MARQUEE        */
/* ════════════════════════════════════════════════════════════════ */
.rc-brands-ticker-sec {
    background: #f8fafc;
    padding: 32px 0 26px 0;
    border-bottom: 1px solid #e2e8f0;
    overflow: hidden;
    position: relative;
    direction: rtl;
}

.rc-brands-header {
    text-align: center;
    margin-bottom: 20px;
}

.rc-brands-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #1e293b;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.rc-brands-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 12px 0;
}

/* Gradient Fade Mask Edges for Smooth Infinite Aesthetic */
.rc-brands-track-wrapper::before,
.rc-brands-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.rc-brands-track-wrapper::before {
    right: 0;
    background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}

.rc-brands-track-wrapper::after {
    left: 0;
    background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}

.rc-brands-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: rcBrandsScroll 32s linear infinite;
    will-change: transform;
}

.rc-brands-track-wrapper:hover .rc-brands-track {
    animation-play-state: paused;
}

@keyframes rcBrandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.rc-brand-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px 24px;
    min-width: 190px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    flex-shrink: 0;
}

.rc-brand-card:hover {
    border-color: #d97706;
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.2);
    transform: translateY(-4px) scale(1.03);
}

.rc-brand-svg-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
}

.rc-brand-svg-box svg {
    max-height: 32px;
    width: auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.rc-brand-card:hover .rc-brand-svg-box svg {
    filter: grayscale(0%);
}

.rc-brand-cat {
    font-size: 0.78rem;
    color: #64748b;
    margin-top: 5px;
    font-weight: 700;
}

.rc-ai-tools {
    margin-top: 24px !important;
}
/* ════════════════════════════════════════════════════════════════ */
/* CONTINUOUS INFINITE SCROLLING REEMCO OFFICIAL BRAND LOGOS        */
/* ════════════════════════════════════════════════════════════════ */
.rc-brands-ticker-sec {
    background: #ffffff;
    padding: 24px 0;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
    position: relative;
    direction: rtl;
}

.rc-brands-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 4px 0;
}

/* Side Gradient Fade Masks */
.rc-brands-track-wrapper::before,
.rc-brands-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 5;
    pointer-events: none;
}

.rc-brands-track-wrapper::before {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.rc-brands-track-wrapper::after {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.rc-brands-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: rcReemcoBrandsScroll 30s linear infinite;
    will-change: transform;
}

.rc-brands-track-wrapper:hover .rc-brands-track {
    animation-play-state: paused;
}

@keyframes rcReemcoBrandsScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.rc-reemco-brand-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 10px 20px;
    min-width: 175px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: all 0.25s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.rc-reemco-brand-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.rc-reemco-brand-card img {
    max-height: 52px;
    max-width: 145px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.rc-ai-tools {
    margin-top: 24px !important;
}
/* ════════════════════════════════════════════════════════════════ */
/* REEMCO OFFICIAL BRANDS TICKER — SEAMLESS 3-SET RTL INFINITE LOOP */
/* ════════════════════════════════════════════════════════════════ */
.rc-brands-ticker-sec {
    background: #ffffff;
    padding: 16px 0 8px 0;
    border: none !important;
    overflow: hidden;
    position: relative;
    direction: rtl;
}

.rc-brands-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 4px 0;
}

/* Side Gradient Fade Masks for Elegant Fading at Edges */
.rc-brands-track-wrapper::before,
.rc-brands-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 5;
    pointer-events: none;
}

.rc-brands-track-wrapper::before {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.rc-brands-track-wrapper::after {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.rc-brands-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: rcReemcoBrandsScroll3Set 35s linear infinite;
    will-change: transform;
}

.rc-brands-track-wrapper:hover .rc-brands-track {
    animation-play-state: paused;
}

@keyframes rcReemcoBrandsScroll3Set {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); }
}

.rc-reemco-brand-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 18px;
    min-width: 165px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: all 0.25s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.rc-reemco-brand-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.rc-reemco-brand-card img {
    max-height: 50px;
    max-width: 135px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Remove awkward green/gold border & lift AI tools section up */
.rc-ai-tools {
    margin-top: 10px !important;
    padding-top: 24px !important;
    border-top: none !important;
}

.rc-ai-tools::before {
    display: none !important;
}
/* ════════════════════════════════════════════════════════════════ */
/* REEMCO OFFICIAL BRANDS TICKER — JS 60FPS ALWAYS VISIBLE LOOP    */
/* ════════════════════════════════════════════════════════════════ */
.rc-brands-ticker-sec {
    background: #ffffff;
    padding: 16px 0 8px 0;
    border: none !important;
    overflow: hidden;
    position: relative;
    direction: ltr;
}

.rc-brands-track-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 4px 0;
}

/* Side Gradient Fade Masks for Elegant Edge Fading */
.rc-brands-track-wrapper::before,
.rc-brands-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    z-index: 5;
    pointer-events: none;
}

.rc-brands-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}

.rc-brands-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.rc-brands-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: transform;
}

.rc-reemco-brand-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 8px 18px;
    min-width: 165px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: all 0.25s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.rc-reemco-brand-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.rc-reemco-brand-card img {
    max-height: 50px;
    max-width: 135px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Lift AI Tools section up smoothly */
.rc-ai-tools {
    margin-top: 10px !important;
    padding-top: 20px !important;
    border-top: none !important;
}

.rc-ai-tools::before {
    display: none !important;
}
/* ════════════════════════════════════════════════════════════════ */
/* FOOTER BRANDING, LEGAL DATA & SCALED LOGO STYLING                */
/* ════════════════════════════════════════════════════════════════ */
.rc-footer-logo-img {
    max-width: 110px !important;
    height: auto !important;
    margin-bottom: 12px !important;
    display: block;
}

.rc-footer-company-box {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rc-footer-company-name {
    font-family: 'Cairo', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: #d4a843;
    margin: 0 0 10px 0;
    line-height: 1.5;
}

.rc-footer-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rc-footer-legal-list li {
    font-family: 'Cairo', system-ui, sans-serif;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.5;
}

.rc-footer-legal-list li span {
    color: rgba(255, 255, 255, 0.55);
}

.rc-footer-legal-list li strong {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.rc-footer-legal-list li svg {
    color: #d4a843;
    flex-shrink: 0;
}

.rc-footer-legal-list a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.rc-footer-legal-list a:hover {
    color: #d4a843;
}
/* ════════════════════════════════════════════════════════════════ */
/* UNIFIED 1:1 SQUARE PRODUCT IMAGE CARDS (WC CATALOG & SINGLE PROD) */
/* ════════════════════════════════════════════════════════════════ */

.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product img,
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail,
.woocommerce-loop-product__thumbnail,
.woocommerce img.wp-post-image {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: auto !important;
    max-height: 280px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: #ffffff !important;
    padding: 10px !important;
    border-radius: 8px !important;
    box-sizing: border-box !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.04) !important;
}

/* Single Product Page Main Gallery & Thumbnails */
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product div.images .woocommerce-product-gallery__image {
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}

.woocommerce div.product div.images img,
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
    aspect-ratio: 1 / 1 !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 500px !important;
    object-fit: contain !important;
    object-position: center !important;
    background: #ffffff !important;
    padding: 16px !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
}

/* Single Product Thumbnail Selector Strip */
.woocommerce div.product div.images .flex-control-thumbs li img {
    aspect-ratio: 1 / 1 !important;
    object-fit: contain !important;
    background: #ffffff !important;
    padding: 4px !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 6px !important;
}

/* Product Card Box Styling */
.woocommerce ul.products li.product {
    background: #ffffff !important;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    padding: 12px !important;
    transition: all 0.25s ease !important;
}

.woocommerce ul.products li.product:hover {
    border-color: #cbd5e1 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06) !important;
}
/* ════════════════════════════════════════════════════════════════ */
/* REEMCO FULL-FILL PRODUCT IMAGES + HOVER ZOOM MAGNIFIER           */
/* ════════════════════════════════════════════════════════════════ */

.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product .post-thumbnail {
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
}

.woocommerce ul.products li.product img,
.woocommerce ul.products li.product .attachment-woocommerce_thumbnail,
.woocommerce-loop-product__thumbnail,
.woocommerce img.wp-post-image {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 8px !important;
    display: block !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease !important;
    will-change: transform !important;
}

/* Smooth Interactive Hover Zoom on Catalog Cards */
.woocommerce ul.products li.product:hover img,
.woocommerce ul.products li.product a:hover img {
    transform: scale(1.12) !important;
    filter: brightness(1.03) !important;
}

/* Single Product Page - Large Main Image Gallery Container */
.woocommerce div.product div.images,
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper,
.woocommerce div.product div.images .woocommerce-product-gallery__image {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    position: relative !important;
}

/* Single Product Main Image - Fill Frame & Magnify on Hover */
.woocommerce div.product div.images img,
.woocommerce div.product div.images .woocommerce-product-gallery__image img {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 12px !important;
    cursor: zoom-in !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Single Product Hover Zoom Effect */
.woocommerce div.product div.images .woocommerce-product-gallery__image:hover img,
.woocommerce div.product div.images img:hover {
    transform: scale(1.22) !important;
}

/* Single Product Thumbnail Strip */
.woocommerce div.product div.images .flex-control-thumbs li img {
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    padding: 0 !important;
    transition: transform 0.25s ease !important;
}

.woocommerce div.product div.images .flex-control-thumbs li img:hover {
    transform: scale(1.1) !important;
}
/* ════════════════════════════════════════════════════════════════ */
/* RSP SINGLE PRODUCT GALLERY — FULL FILL & INTERACTIVE HOVER ZOOM  */
/* ════════════════════════════════════════════════════════════════ */
.rsp-main-img {
    border-radius: 12px !important;
    overflow: hidden !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    text-align: center !important;
    padding: 0 !important;
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.rsp-main-img img,
.rsp-main-img .rsp-img {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    cursor: zoom-in !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease !important;
    will-change: transform !important;
}

/* Single Product Image Hover Zoom Magnifier Effect */
.rsp-main-img:hover img,
.rsp-main-img:hover .rsp-img {
    transform: scale(1.28) !important;
    filter: brightness(1.03) !important;
}

/* Related Products Grid Images */
.rsp-rel-img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #ffffff !important;
}

.rsp-rel-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.rsp-rel-card:hover .rsp-rel-img img {
    transform: scale(1.12) !important;
}
/* ════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════ */
/* REEMCO SINGLE PRODUCT PERFECT DESIGN & COMPONENT STYLES OVERRIDE */
/* ════════════════════════════════════════════════════════════════ */
.rsp-bread-bar {
    background: #fafaf7 !important;
    border-bottom: 1px solid #e8e8e3 !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.rsp-bread {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    font-size: 13px !important;
    color: #666666 !important;
    margin: 0 !important;
    padding: 0 !important;
}

.rsp-bread a {
    color: #2d6a4f !important;
    text-decoration: none !important;
}

.rsp-cart-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-top: 16px !important;
}

.rsp-qty-box {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
}

.rsp-qty-label {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1a3c2a !important;
}

.rsp-qty-controls {
    display: inline-flex !important;
    align-items: center !important;
    border: 1.5px solid #dcdce2 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background: #ffffff !important;
}

.rsp-qty-btn {
    width: 38px !important;
    height: 38px !important;
    border: none !important;
    background: #f5f5f0 !important;
    color: #1a3c2a !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.rsp-qty-input {
    width: 50px !important;
    height: 38px !important;
    border: none !important;
    text-align: center !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a3c2a !important;
    background: #ffffff !important;
}

.rsp-actions-row {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}

.rsp-btn-action {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    border: none !important;
    cursor: pointer !important;
}

.rsp-btn-cart {
    background: #2d6a4f !important;
    color: #ffffff !important;
}

.rsp-btn-wa {
    background: #25D366 !important;
    color: #ffffff !important;
}

.rsp-btn-rfq {
    background: #d4a843 !important;
    color: #1a3c2a !important;
}

.rsp-bullets-wrap {
    background: #fafaf7 !important;
    border: 1px solid #e8e8e3 !important;
    border-radius: 12px !important;
    padding: 18px 22px !important;
    margin-top: 20px !important;
}

.rsp-bullets-title {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1a3c2a !important;
    margin: 0 0 12px 0 !important;
}

.rsp-bullets-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.rsp-bullets-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    font-size: 13.5px !important;
    color: #444444 !important;
    line-height: 1.6 !important;
}

.rsp-bullets-list li svg {
    stroke: #2d6a4f !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    margin-top: 3px !important;
}
/* ════════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════════ */
/* EXECUTIVE PRODUCT DESCRIPTION STYLES OVERRIDE                    */
/* ════════════════════════════════════════════════════════════════ */
.rsp-desc-sec {
    background: #fafaf7 !important;
    padding: 32px 0 !important;
    border-top: 1px solid #e8e8e3 !important;
    border-bottom: 1px solid #e8e8e3 !important;
}

.rsp-desc-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 14px !important;
    padding: 30px 34px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

.rsp-desc-header {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    border-bottom: 2px solid #f0f0ea !important;
    padding-bottom: 14px !important;
    margin-bottom: 20px !important;
}

.rsp-desc-header svg {
    stroke: #d4a843 !important;
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0 !important;
}

.rsp-desc-header h2 {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #1a3c2a !important;
    margin: 0 !important;
}

.rsp-desc-body {
    font-size: 15px !important;
    color: #333333 !important;
    line-height: 1.85 !important;
    margin-bottom: 24px !important;
}

.rsp-eng-callout {
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.05), rgba(212, 168, 67, 0.08)) !important;
    border: 1px solid rgba(45, 106, 79, 0.15) !important;
    border-right: 4px solid #2d6a4f !important;
    border-radius: 10px !important;
    padding: 16px 20px !important;
}

.rsp-eng-callout svg {
    stroke: #2d6a4f !important;
    width: 24px !important;
    height: 24px !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
}
/* ════════════════════════════════════════════════════════════════ */

/* ================================================
   Remco Footer Action Banner Styling
   ================================================ */
.rc-footer-banner {
    background: linear-gradient(135deg, #0d2117 0%, #173e2b 100%) !important;
    border-top: 3px solid #d4af37 !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding: 36px 0 !important;
    color: #ffffff !important;
    direction: rtl !important;
}
.rc-footer-banner-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 24px !important;
    flex-wrap: wrap !important;
}
.rc-footer-banner-text {
    flex: 1 !important;
    min-width: 280px !important;
}
.rc-footer-banner-title {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.3 !important;
}
.rc-footer-banner-sub {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    font-size: 14px !important;
    color: #cbd5e1 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}
.rc-footer-banner-actions {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
}
.rc-footer-banner-actions .rc-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 11px 24px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}
.rc-footer-banner-actions .rc-btn-gold {
    background: #d4af37 !important;
    color: #0f261a !important;
    border: 1px solid #d4af37 !important;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.25) !important;
}
.rc-footer-banner-actions .rc-btn-gold:hover {
    background: #c5a028 !important;
    color: #0f261a !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.35) !important;
}
.rc-footer-banner-actions .rc-btn-outline-white {
    background: rgba(255,255,255,0.06) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}
.rc-footer-banner-actions .rc-btn-outline-white:hover {
    background: rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.6) !important;
    transform: translateY(-2px) !important;
}
@media (max-width: 768px) {
    .rc-footer-banner-inner {
        flex-direction: column !important;
        text-align: center !important;
    }
    .rc-footer-banner-actions {
        justify-content: center !important;
        width: 100% !important;
    }
    .rc-footer-banner-actions .rc-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}


/* ================================================
   Remco Floating Footer Action Banner (Premium Design)
   ================================================ */
.rc-footer-banner {
    background: #0f261a !important;
    padding: 40px 0 10px !important;
    direction: rtl !important;
    position: relative !important;
}
.rc-footer-banner-inner {
    background: linear-gradient(135deg, #143323 0%, #1a422e 100%) !important;
    border: 1px solid rgba(212, 175, 55, 0.35) !important;
    border-radius: 20px !important;
    padding: 32px 40px !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
    flex-wrap: wrap !important;
    position: relative !important;
    overflow: hidden !important;
}
.rc-footer-banner-inner::before {
    content: '' !important;
    position: absolute !important;
    top: -50px !important;
    right: -50px !important;
    width: 200px !important;
    height: 200px !important;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%) !important;
    pointer-events: none !important;
}
.rc-footer-banner-text {
    flex: 1 !important;
    min-width: 280px !important;
    position: relative !important;
    z-index: 2 !important;
}
.rc-footer-banner-title {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 0 8px 0 !important;
    line-height: 1.3 !important;
}
.rc-footer-banner-sub {
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    font-size: 14px !important;
    color: #cbd5e1 !important;
    margin: 0 !important;
    line-height: 1.6 !important;
}
.rc-footer-banner-actions {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    flex-wrap: wrap !important;
    position: relative !important;
    z-index: 2 !important;
}
.rc-footer-banner-actions .rc-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: 'Cairo', 'Tajawal', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 12px 26px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    transition: all 0.25s ease !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}
.rc-footer-banner-actions .rc-btn-gold {
    background: #d4af37 !important;
    color: #0f261a !important;
    border: 1px solid #d4af37 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3) !important;
}
.rc-footer-banner-actions .rc-btn-gold:hover {
    background: #c5a028 !important;
    color: #0f261a !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.45) !important;
}
.rc-footer-banner-actions .rc-btn-outline-white {
    background: rgba(255,255,255,0.08) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.35) !important;
}
.rc-footer-banner-actions .rc-btn-outline-white:hover {
    background: rgba(255,255,255,0.18) !important;
    color: #ffffff !important;
    border-color: rgba(255,255,255,0.7) !important;
    transform: translateY(-3px) !important;
}
@media (max-width: 768px) {
    .rc-footer-banner { padding: 30px 0 10px !important; }
    .rc-footer-banner-inner {
        padding: 24px 20px !important;
        flex-direction: column !important;
        text-align: center !important;
    }
    .rc-footer-banner-actions {
        justify-content: center !important;
        width: 100% !important;
    }
    .rc-footer-banner-actions .rc-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}
