/*
Theme Name: Reyada Luxury
Theme URI: https://areyada.com/themes/reyada-luxury
Author: Reyada Systems
Author URI: https://areyada.com
Description: قالب ريادة الفاخر - قالب ووردبريس احترافي متعدد الأغراض مع لوحة تحكم متقدمة. مصمم خصيصاً للشركات التقنية والمؤسسات الراقية. يدعم RTL بشكل كامل مع تخصيص مرن للهيدر والفوتر والألوان.
Version: 1.0.4
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reyada-luxury
Domain Path: /languages
Tags: rtl-language-support, custom-logo, custom-menu, custom-colors, editor-style, featured-images, full-width-template, theme-options, translation-ready

Reyada Luxury Theme - Premium WordPress Theme
(C) 2024 Reyada Systems. All rights reserved.
*/

/* ========================================
   CSS Variables & Root Styles
======================================== */
:root {
    /* Brand Colors */
    --rl-gold: #D4AF37;
    --rl-gold-light: #F9E79F;
    --rl-gold-dark: #B8860B;
    --rl-navy: #0f172a;
    --rl-black: #020617;
    --rl-white: #ffffff;

    /* Gradient Colors */
    --rl-gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F9E79F 50%, #B8860B 100%);
    --rl-gradient-dark: linear-gradient(135deg, #020617 0%, #0f172a 100%);

    /* Typography */
    --rl-font-primary: 'Tajawal', sans-serif;
    --rl-font-english: 'Inter', sans-serif;

    /* Spacing */
    --rl-section-padding: 8rem;
    --rl-container-width: 1280px;

    /* Border Radius */
    --rl-radius-sm: 0.5rem;
    --rl-radius-md: 1rem;
    --rl-radius-lg: 1.5rem;
    --rl-radius-xl: 2rem;
    --rl-radius-2xl: 3rem;

    /* Shadows */
    --rl-shadow-gold: 0 10px 25px -5px rgba(212, 175, 55, 0.3);
    --rl-shadow-dark: 0 25px 50px -12px rgba(0, 0, 0, 0.6);

    /* Transitions */
    --rl-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --rl-transition-fast: all 0.3s ease;
}

/* ========================================
   Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--rl-font-primary);
    background-color: var(--rl-white);
    color: #1e293b;
    overflow-x: hidden;
    line-height: 1.7;
}

/* RTL Support */
body.rtl {
    direction: rtl;
    text-align: right;
}

/* ========================================
   Typography
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}

p {
    color: #64748b;
    font-size: 1.125rem;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--rl-transition-fast);
}

/* ========================================
   Gold Text Gradient
======================================== */
.gold-text {
    background: var(--rl-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Container
======================================== */
.rl-container {
    max-width: var(--rl-container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========================================
   Buttons
======================================== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--rl-gold) 0%, var(--rl-gold-dark) 100%);
    color: var(--rl-white);
    padding: 1rem 2.5rem;
    border-radius: var(--rl-radius-xl);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--rl-shadow-gold);
    transition: var(--rl-transition);
}

.btn-gold:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 35px -10px rgba(212, 175, 55, 0.5);
    color: var(--rl-white);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--rl-white);
    padding: 1rem 2rem;
    border-radius: var(--rl-radius-xl);
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--rl-transition-fast);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--rl-gold);
    color: var(--rl-gold);
}

/* ========================================
   Glass Panel Effect
======================================== */
.glass-panel {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: var(--rl-shadow-dark);
}

/* ========================================
   Header / Navigation
======================================== */
.rl-header {
    position: fixed;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--rl-transition-fast);
}

.rl-header.scrolled {
    background: rgba(0, 0, 0, 0.85);
}

.rl-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6rem;
}

/* Logo */
.rl-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.rl-logo-img-wrapper {
    position: relative;
}

.rl-logo-glow {
    position: absolute;
    inset: 0;
    background: var(--rl-gold);
    filter: blur(20px);
    opacity: 0.1;
    transition: var(--rl-transition-fast);
}

.rl-logo:hover .rl-logo-glow {
    opacity: 0.3;
}

.rl-logo img {
    /* Default values - will be overridden by inline styles from admin panel */
    width: 120px;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    position: relative;
    z-index: 10;
    filter: brightness(1.1) drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.rl-logo-text {
    display: flex;
    flex-direction: column;
}

.rl-logo-title {
    font-size: 1.5rem;
    font-weight: 900;
}

.rl-logo-subtitle {
    font-size: 0.5625rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 900;
}

/* Navigation Menu */
.rl-nav {
    display: none;
}

@media (min-width: 1024px) {
    .rl-nav {
        display: flex;
        gap: 2.5rem;
    }
}

.rl-nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    /* RTL: Reverse menu order so الرئيسية appears first (on the right) */
    flex-direction: row-reverse;
}

/* LTR fallback - if site is in English */
html[dir="ltr"] .rl-nav-menu {
    flex-direction: row;
}

.rl-nav-menu li {
    position: relative;
}

.rl-nav-menu a {
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.875rem;
    position: relative;
    padding: 0.5rem 0;
}

.rl-nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--rl-gold);
    transition: var(--rl-transition-fast);
}

.rl-nav-menu a:hover,
.rl-nav-menu .current-menu-item a,
.rl-nav-menu .current_page_item a {
    color: var(--rl-gold);
}

.rl-nav-menu a:hover::after,
.rl-nav-menu .current-menu-item a::after,
.rl-nav-menu .current_page_item a::after {
    width: 100%;
}

/* Sub Menu */
.rl-nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--rl-radius-md);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--rl-transition-fast);
    list-style: none;
}

.rl-nav-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.rl-nav-menu .sub-menu li {
    padding: 0;
}

.rl-nav-menu .sub-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
}

.rl-nav-menu .sub-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Mobile Menu Toggle */
.rl-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .rl-menu-toggle {
        display: none;
    }
}

.rl-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--rl-gold);
    border-radius: 2px;
    transition: var(--rl-transition-fast);
}

/* Mobile Navigation */
.rl-mobile-nav {
    position: fixed;
    top: 6rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    transform: translateX(100%);
    transition: var(--rl-transition-fast);
    z-index: 99;
    overflow-y: auto;
}

.rl-mobile-nav.active {
    transform: translateX(0);
}

.rl-mobile-nav .rl-nav-menu {
    flex-direction: column;
    gap: 0;
}

.rl-mobile-nav .rl-nav-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rl-mobile-nav .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: none;
    border: none;
    padding-right: 1.5rem;
}

/* Header CTA Button */
.rl-header-cta {
    display: none;
}

@media (min-width: 768px) {
    .rl-header-cta {
        display: inline-flex;
    }
}

/* ========================================
   Hero Section
======================================== */
.rl-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    background-color: var(--rl-black);
    overflow: hidden;
}

.rl-hero-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
}

.rl-hero-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.12) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
}

.rl-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
    pointer-events: none;
}

.rl-hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .rl-hero-content {
        grid-template-columns: 7fr 5fr;
    }
}

.rl-hero-text {
    text-align: right;
}

.rl-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem;
    border-radius: var(--rl-radius-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--rl-gold);
    font-size: 0.75rem;
    font-weight: 900;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
}

.rl-hero-badge-dot {
    position: relative;
    width: 0.625rem;
    height: 0.625rem;
}

.rl-hero-badge-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--rl-gold);
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.rl-hero-badge-dot::after {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--rl-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 1);
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.rl-hero-title {
    color: var(--rl-white);
    font-size: clamp(3rem, 10vw, 6.25rem);
    line-height: 1;
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

.rl-hero-description {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 42rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 500;
}

.rl-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.rl-hero-play {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    color: var(--rl-white);
    cursor: pointer;
}

.rl-hero-play-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--rl-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--rl-transition-fast);
    backdrop-filter: blur(4px);
}

.rl-hero-play:hover .rl-hero-play-icon {
    background: rgba(255, 255, 255, 0.1);
}

.rl-hero-play-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--rl-gold);
}

.rl-hero-play-text {
    font-weight: 700;
    font-size: 1rem;
}

/* Hero Image Side */
.rl-hero-visual {
    position: relative;
}

.rl-hero-image-wrapper {
    position: relative;
    animation: floating 5s ease-in-out infinite;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(1.5deg);
    }
}

.rl-hero-image-frame {
    padding: 0.75rem;
    border-radius: 3rem;
    transform: rotate(3deg);
    transition: transform 1s;
    position: relative;
}

.rl-hero-image-frame:hover {
    transform: rotate(0);
}

.rl-hero-image-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9l11 6.35 11-6.35v12.7l-11 6.35-11-6.35V17.9z' fill='%23d4af37' fill-opacity='0.04' fill-rule='evenodd'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
    border-radius: 3rem;
}

.rl-hero-image-frame img {
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    filter: brightness(0.9) contrast(1.25);
    width: 100%;
    height: auto;
}

/* Hero Floating Cards */
.rl-hero-float-card {
    position: absolute;
    padding: 1.5rem;
    border-radius: var(--rl-radius-2xl);
}

.rl-hero-float-card.top {
    top: -3rem;
    left: -2rem;
    animation: bounce 4s ease-in-out infinite;
}

.rl-hero-float-card.bottom {
    bottom: -2.5rem;
    right: -1.25rem;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.rl-hero-float-label {
    font-size: 0.625rem;
    font-weight: 900;
    color: var(--rl-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.rl-hero-float-value {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--rl-white);
}

.rl-hero-float-bar {
    width: 5rem;
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    margin-top: 0.25rem;
    overflow: hidden;
}

.rl-hero-float-bar-fill {
    width: 100%;
    height: 100%;
    background: var(--rl-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Hero Scroll Indicator */
.rl-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.rl-hero-scroll-text {
    font-size: 0.625rem;
    color: rgba(212, 175, 55, 0.4);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5em;
}

.rl-hero-scroll-line {
    width: 1px;
    height: 4rem;
    background: linear-gradient(to bottom, var(--rl-gold), transparent);
    opacity: 0.5;
}

/* ========================================
   Services Section
======================================== */
.rl-services {
    padding: var(--rl-section-padding) 0;
    background: linear-gradient(180deg, #ffffff 0%, #fdfcf9 100%);
    position: relative;
}

.rl-services-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9l11 6.35 11-6.35v12.7l-11 6.35-11-6.35V17.9z' fill='%23d4af37' fill-opacity='0.04' fill-rule='evenodd'%3E%3C/path%3E%3C/svg%3E");
    pointer-events: none;
}

.rl-section-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .rl-section-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
}

.rl-section-label {
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--rl-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.rl-section-title {
    color: #0f172a;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.rl-section-title span {
    color: #94a3b8;
}

.rl-section-description {
    max-width: 28rem;
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Service Cards Grid */
.rl-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .rl-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rl-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Service Card */
.rl-service-card {
    padding: 2.5rem;
    background: var(--rl-white);
    border: 1px solid #f1f5f9;
    border-radius: 3rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: var(--rl-transition);
    position: relative;
    overflow: hidden;
}

.rl-service-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
}

.rl-service-card:hover::after {
    left: 100%;
}

.rl-service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-0.75rem);
}

.rl-service-icon {
    width: 5rem;
    height: 5rem;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: var(--rl-transition);
    overflow: hidden;
}

.rl-service-card:hover .rl-service-icon {
    background: var(--rl-black);
    transform: scale(1.1);
}

.rl-service-icon svg,
.rl-service-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--rl-gold);
}

/* Service Circular Image */
.rl-service-icon img,
.rl-service-icon .rl-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--rl-transition);
}

.rl-service-card:hover .rl-service-icon img,
.rl-service-card:hover .rl-service-icon .rl-service-img {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.rl-service-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.rl-service-description {
    font-size: 0.875rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Service Link */
.rl-service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--rl-gold);
    margin-top: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--rl-transition);
}

.rl-service-card:hover .rl-service-link {
    opacity: 1;
    transform: translateX(0);
}

.rl-service-link svg,
.rl-service-link i {
    width: 1rem;
    height: 1rem;
    transition: var(--rl-transition);
}

.rl-service-card:hover .rl-service-link svg,
.rl-service-card:hover .rl-service-link i {
    transform: translateX(-4px);
}

/* Service Card as Link */
a.rl-service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

/* ==========================================================================
   NEW SERVICES SECTION - 1.0.4 - Matching Screenshot
   ========================================================================== */

.rl-services-new {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
}

.rl-services-new .rl-services-texture {
    display: none;
    /* Hidden to match clean screenshot */
}

/* Services Header - Hidden for clean look like screenshot */
.rl-services-header {
    display: none;
}

/* Services Grid - 4 Cards */
.rl-services-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .rl-services-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rl-services-grid-new {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* New Service Card - Clean Design */
.rl-service-card-new {
    display: flex;
    flex-direction: column;
    background: var(--rl-white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
    border: none;
}

.rl-service-card-new:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Service Image Wrapper */
.rl-service-image-wrapper {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.rl-service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.rl-service-card-new:hover .rl-service-image {
    transform: scale(1.05);
}

.rl-service-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

/* Service Content Area */
.rl-service-content {
    padding: 1.25rem 1.5rem 1.5rem;
    text-align: right;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rl-service-card-title {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.rl-service-card-desc {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: #6b7280;
    font-weight: 400;
    margin: 0;
    flex: 1;
}

/* Read More Link with Plus */
.rl-service-read-more {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.375rem;
    margin-top: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rl-gold);
    flex-direction: row-reverse;
}

.rl-plus-icon {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.3s ease;
}

.rl-service-card-new:hover .rl-plus-icon {
    transform: rotate(90deg);
}

/* ========================================
   Single Service Page
======================================== */
.rl-service-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.rl-service-hero-content {
    text-align: center;
}

.rl-service-icon-large {
    width: 6rem;
    height: 6rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rl-radius-xl);
}

.rl-service-icon-large svg,
.rl-service-icon-large i {
    width: 3rem;
    height: 3rem;
    color: var(--rl-gold);
}

/* Service Hero Image */
.rl-service-icon-large img,
.rl-service-icon-large .rl-service-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--rl-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.rl-service-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--rl-white);
    margin-bottom: 1rem;
}

.rl-service-excerpt {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.rl-service-content-section {
    padding: 4rem 0;
    background: var(--rl-light);
}

.rl-service-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.rl-service-featured-image {
    margin-bottom: 2rem;
    border-radius: var(--rl-radius-xl);
    overflow: hidden;
}

.rl-service-featured-image img {
    width: 100%;
    height: auto;
}

.rl-service-content {
    background: var(--rl-white);
    padding: 2.5rem;
    border-radius: var(--rl-radius-xl);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.rl-service-content h2,
.rl-service-content h3,
.rl-service-content h4 {
    color: var(--rl-black);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.rl-service-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.rl-service-content ul,
.rl-service-content ol {
    margin-bottom: 1.5rem;
    padding-right: 1.5rem;
}

.rl-service-content li {
    margin-bottom: 0.5rem;
}

/* Related Services */
.rl-related-services {
    margin-top: 4rem;
}

.rl-related-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rl-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.rl-related-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: var(--rl-transition);
}

.rl-related-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rl-related-icon {
    width: 4rem;
    height: 4rem;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.rl-related-icon svg,
.rl-related-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--rl-gold);
}

/* Related Service Image */
.rl-related-icon img,
.rl-related-icon .rl-related-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: var(--rl-transition);
}

.rl-related-card:hover .rl-related-icon img {
    transform: scale(1.1);
}

.rl-related-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

/* Back Button */
.rl-service-back {
    margin-top: 3rem;
    text-align: center;
}

.rl-service-back a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.rl-service-back svg,
.rl-service-back i {
    width: 1.25rem;
    height: 1.25rem;
}

/* ========================================
   Products Section
======================================== */
.rl-products {
    padding: 5rem 0;
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.rl-products-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9l11 6.35 11-6.35v12.7l-11 6.35-11-6.35V17.9z' fill='%23d4af37' fill-opacity='0.04' fill-rule='evenodd'%3E%3C/path%3E%3C/svg%3E");
    opacity: 0.1;
    pointer-events: none;
}

.rl-products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rl-products-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.rl-products-divider {
    width: 4rem;
    height: 0.25rem;
    background: var(--rl-gold);
    margin: 1rem auto 0;
    border-radius: 9999px;
}

/* Products Grid */
.rl-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .rl-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Product Card */
.rl-product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.875rem;
    padding: 1.5rem;
    transition: var(--rl-transition);
    backdrop-filter: blur(4px);
}

.rl-product-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.rl-product-image {
    aspect-ratio: 16/9;
    border-radius: var(--rl-radius-xl);
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.rl-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75);
    transition: all 0.7s;
}

.rl-product-card:hover .rl-product-image img {
    filter: brightness(1);
    transform: scale(1.05);
}

.rl-product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.rl-product-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rl-product-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--rl-white);
    font-style: italic;
}

.rl-product-title span {
    color: var(--rl-gold);
}

.rl-product-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rl-gold);
    transition: var(--rl-transition-fast);
    cursor: pointer;
}

.rl-product-link:hover {
    background: var(--rl-gold);
    color: var(--rl-black);
}

.rl-product-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.rl-product-description {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-top: 0.75rem;
    line-height: 1.8;
}

/* ========================================
   Clients Section
======================================== */
.rl-clients {
    padding: 6rem 0;
    background: var(--rl-white);
}

.rl-clients-header {
    text-align: center;
    margin-bottom: 4rem;
}

.rl-clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

@media (min-width: 768px) {
    .rl-clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.rl-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rl-client-image {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    margin-bottom: 1rem;
    transition: var(--rl-transition);
}

.rl-client:hover .rl-client-image {
    border-color: var(--rl-gold);
}

.rl-client-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: var(--rl-transition);
}

.rl-client:hover .rl-client-image img {
    filter: grayscale(0);
}

.rl-client-name {
    font-weight: 700;
    color: #475569;
    transition: var(--rl-transition-fast);
}

.rl-client:hover .rl-client-name {
    color: var(--rl-gold);
}

/* ========================================
   Footer
======================================== */
.rl-footer {
    background: var(--rl-black);
    color: var(--rl-white);
    padding: 3rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.rl-footer-texture {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.02;
    pointer-events: none;
}

.rl-footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 768px) {
    .rl-footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Footer Branding */
.rl-footer-brand {
    text-align: center;
}

@media (min-width: 768px) {
    .rl-footer-brand {
        text-align: right;
    }
}

.rl-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .rl-footer-logo {
        justify-content: flex-start;
    }
}

.rl-footer-logo img {
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.rl-footer-logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -0.025em;
}

.rl-footer-copyright {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #475569;
}

/* Footer Contact */
.rl-footer-contact {
    text-align: center;
}

.rl-footer-phone {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
}

.rl-footer-version {
    font-size: 0.5625rem;
    font-weight: 700;
    color: #475569;
    margin-top: 0.25rem;
}

/* Footer Social */
.rl-footer-social {
    display: flex;
    gap: 1rem;
}

.rl-footer-social a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--rl-radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--rl-transition-fast);
}

.rl-footer-social a:hover {
    background: var(--rl-gold);
    color: var(--rl-black);
}

.rl-footer-social svg {
    width: 1rem;
    height: 1rem;
}

/* ========================================
   Utilities
======================================== */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.flex {
    display: flex;
}

.grid {
    display: grid;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.z-10 {
    z-index: 10;
}

.z-20 {
    z-index: 20;
}

/* ========================================
   Custom Scrollbar
======================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--rl-black);
}

::-webkit-scrollbar-thumb {
    background: var(--rl-gold);
    border-radius: 10px;
}

/* ========================================
   WordPress Core Styles
======================================== */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin: 1.5rem auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #64748b;
    text-align: center;
    padding: 0.5rem 0;
}

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* ========================================
   Page Templates
======================================== */
.rl-page-header {
    background: var(--rl-black);
    padding: 10rem 0 5rem;
    position: relative;
}

.rl-page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.rl-page-title {
    color: var(--rl-white);
    text-align: center;
    position: relative;
    z-index: 10;
}

.rl-page-content {
    padding: 5rem 0;
}

/* ========================================
   Blog / Archive Styles
======================================== */
.rl-posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .rl-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rl-posts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rl-post-card {
    background: var(--rl-white);
    border-radius: var(--rl-radius-xl);
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: var(--rl-transition);
}

.rl-post-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.rl-post-thumbnail {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.rl-post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--rl-transition);
}

.rl-post-card:hover .rl-post-thumbnail img {
    transform: scale(1.05);
}

.rl-post-content {
    padding: 1.5rem;
}

.rl-post-meta {
    font-size: 0.75rem;
    color: var(--rl-gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.rl-post-title-link {
    font-size: 1.25rem;
    font-weight: 900;
    color: #0f172a;
    display: block;
    margin-bottom: 0.75rem;
    transition: var(--rl-transition-fast);
}

.rl-post-title-link:hover {
    color: var(--rl-gold);
}

.rl-post-excerpt {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.7;
}

/* ========================================
   Single Post Styles
======================================== */
.rl-single-content {
    max-width: 48rem;
    margin: 0 auto;
}

.rl-single-content p {
    margin-bottom: 1.5rem;
}

.rl-single-content h2,
.rl-single-content h3,
.rl-single-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #0f172a;
}

.rl-single-content ul,
.rl-single-content ol {
    margin: 1.5rem 0;
    padding-right: 2rem;
}

.rl-single-content li {
    margin-bottom: 0.5rem;
}

.rl-single-content blockquote {
    border-right: 4px solid var(--rl-gold);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f8fafc;
    border-radius: 0 var(--rl-radius-md) var(--rl-radius-md) 0;
}

.rl-single-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--rl-radius-md);
    margin: 1.5rem 0;
}

/* ========================================
   Comments
======================================== */
.rl-comments {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid #e2e8f0;
}

.rl-comments-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.rl-comment-list {
    list-style: none;
    padding: 0;
}

.rl-comment {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: var(--rl-radius-lg);
    margin-bottom: 1.5rem;
}

.rl-comment-author {
    font-weight: 700;
    color: #0f172a;
}

.rl-comment-date {
    font-size: 0.75rem;
    color: #64748b;
    margin-right: 1rem;
}

.rl-comment-content {
    margin-top: 1rem;
}

/* Comment Form */
.rl-comment-form input[type="text"],
.rl-comment-form input[type="email"],
.rl-comment-form input[type="url"],
.rl-comment-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--rl-radius-md);
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: var(--rl-transition-fast);
}

.rl-comment-form input:focus,
.rl-comment-form textarea:focus {
    outline: none;
    border-color: var(--rl-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.rl-comment-form input[type="submit"] {
    background: linear-gradient(135deg, var(--rl-gold) 0%, var(--rl-gold-dark) 100%);
    color: var(--rl-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--rl-radius-xl);
    font-weight: 700;
    cursor: pointer;
    transition: var(--rl-transition);
}

.rl-comment-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: var(--rl-shadow-gold);
}

/* ========================================
   Widgets
======================================== */
.rl-widget {
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: var(--rl-radius-lg);
    margin-bottom: 2rem;
}

.rl-widget-title {
    font-size: 1.125rem;
    font-weight: 900;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--rl-gold);
}

.rl-widget ul {
    list-style: none;
    padding: 0;
}

.rl-widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.rl-widget li:last-child {
    border-bottom: none;
}

.rl-widget a {
    color: #475569;
    transition: var(--rl-transition-fast);
}

.rl-widget a:hover {
    color: var(--rl-gold);
}

/* ========================================
   Responsive Adjustments
======================================== */
@media (max-width: 767px) {
    :root {
        --rl-section-padding: 4rem;
    }

    .rl-hero-title {
        font-size: 2.5rem;
    }

    .rl-hero-description {
        font-size: 1rem;
    }

    .rl-hero-visual {
        display: none;
    }

    .rl-section-title {
        font-size: 2rem;
    }
}