/* =============================================
   SeePK - Professional Services Website
   الأنماط الرئيسية - RTL Arabic
   ============================================= */

/* --- استيراد الخطوط --- */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

/* --- متغيرات CSS --- */
:root {
    --primary:       #0F172A;
    --primary-light: #1E293B;
    --primary-dark:  #020617;
    --secondary:     #F59E0B;
    --secondary-light: #FCD34D;
    --secondary-dark:  #D97706;
    --bg-light:      #F8FAFC;
    --bg-white:      #FFFFFF;
    --text-dark:     #0F172A;
    --text-body:     #334155;
    --text-muted:    #64748B;
    --text-light:    #94A3B8;
    --border-color:  #E2E8F0;
    --shadow-sm:     0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md:     0 4px 16px rgba(0,0,0,.10);
    --shadow-lg:     0 10px 40px rgba(0,0,0,.12);
    --shadow-xl:     0 20px 60px rgba(0,0,0,.16);
    --radius-sm:     8px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-xl:     28px;
    --radius-full:   999px;
    --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main:     'Cairo', 'Tajawal', sans-serif;
    --font-title:    'Tajawal', 'Cairo', sans-serif;
    --gradient-primary: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #0F172A 100%);
    --gradient-secondary: linear-gradient(135deg, #F59E0B 0%, #FCD34D 100%);
    --gradient-hero: linear-gradient(135deg, #0F172A 0%, #1E3A5F 40%, #0F172A 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --electricity-color: #3B82F6;
    --plumbing-color:    #10B981;
}

/* =============================================
   إعدادات أساسية
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* =============================================
   شريط التمرير المخصص
   ============================================= */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--secondary-dark); }

/* =============================================
   تحديد النص
   ============================================= */
::selection {
    background: var(--secondary);
    color: var(--primary);
}

/* =============================================
   Header & Navigation
   ============================================= */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
    padding: 12px 0;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,.25);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--primary);
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(245,158,11,.35);
    transition: var(--transition);
}

.brand-logo:hover {
    transform: scale(1.05) rotate(-5deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-size: 22px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 11px;
    color: var(--secondary);
    font-weight: 500;
}

.navbar-nav .nav-item .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px !important;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 16px;
    left: 16px;
    height: 2px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    transform: scaleX(0);
    transition: var(--transition);
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
    color: var(--secondary) !important;
    background: rgba(245,158,11,.1);
}

.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item .nav-link.active::after {
    transform: scaleX(1);
}

.btn-nav-cta {
    background: var(--gradient-secondary) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-full) !important;
    box-shadow: 0 4px 15px rgba(245,158,11,.35) !important;
    border: none;
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,158,11,.5) !important;
    color: var(--primary) !important;
}

.btn-nav-cta::after {
    display: none !important;
}

.navbar-toggler {
    border: 2px solid rgba(245,158,11,.5);
    border-radius: var(--radius-sm);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28245,158,11,0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* =============================================
   Hero Section
   ============================================= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particle linear infinite;
    opacity: 0.15;
}

.hero-particle:nth-child(1)  { width:80px; height:80px; background:var(--secondary); top:10%; right:5%;  animation-duration:15s; animation-delay:-2s; }
.hero-particle:nth-child(2)  { width:40px; height:40px; background:#3B82F6;          top:30%; right:15%; animation-duration:20s; animation-delay:-5s; }
.hero-particle:nth-child(3)  { width:60px; height:60px; background:var(--secondary); top:60%; right:8%;  animation-duration:18s; animation-delay:-8s; }
.hero-particle:nth-child(4)  { width:30px; height:30px; background:#10B981;          top:80%; right:25%; animation-duration:12s; animation-delay:-3s; }
.hero-particle:nth-child(5)  { width:50px; height:50px; background:#3B82F6;          top:20%; left:10%;  animation-duration:22s; animation-delay:-10s; }
.hero-particle:nth-child(6)  { width:70px; height:70px; background:var(--secondary); top:70%; left:5%;   animation-duration:17s; animation-delay:-6s; }

@keyframes float-particle {
    0%   { transform: translateY(0) rotate(0deg); }
    33%  { transform: translateY(-40px) rotate(120deg); }
    66%  { transform: translateY(20px) rotate(240deg); }
    100% { transform: translateY(0) rotate(360deg); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(245,158,11,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,158,11,.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-gradient-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(245,158,11,.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(59,130,246,.06) 0%, transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.3);
    color: var(--secondary);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.3); }
    50%       { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}

.hero-title {
    font-size: clamp(38px, 5.5vw, 70px);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-title .highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,.75);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 540px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-num {
    font-size: 28px;
    font-weight: 900;
    color: var(--secondary);
    line-height: 1;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-secondary);
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    border: none;
    box-shadow: 0 8px 30px rgba(245,158,11,.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,.2));
    opacity: 0;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 45px rgba(245,158,11,.55);
    color: var(--primary) !important;
}

.btn-hero-primary:hover::before { opacity: 1; }

.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37,211,102,.15);
    color: #25D366 !important;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    border: 1.5px solid rgba(37,211,102,.4);
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-whatsapp:hover {
    background: #25D366;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 16px 45px rgba(37,211,102,.4);
    border-color: #25D366;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
    background: var(--primary-light);
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-image-container:hover img {
    transform: scale(1.04);
}

.hero-floating-card {
    position: absolute;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
    animation: float-card 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    bottom: -20px;
    right: -20px;
    animation-delay: -2s;
}

.hero-floating-card.card-2 {
    top: -20px;
    left: -20px;
    animation-delay: 0s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

.float-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.float-card-icon.yellow { background: rgba(245,158,11,.15); color: var(--secondary); }
.float-card-icon.blue   { background: rgba(59,130,246,.15); color: #3B82F6; }

.float-card-text .num {
    font-size: 22px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.float-card-text .lbl {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

/* =============================================
   أقسام عامة
   ============================================= */
section {
    padding: 90px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,158,11,.1);
    color: var(--secondary-dark);
    border: 1px solid rgba(245,158,11,.25);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}

.section-title span {
    color: var(--secondary);
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.divider-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    margin: 0 auto 16px;
}

/* =============================================
   قسم لماذا نحن
   ============================================= */
.why-us-section {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

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

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px;
    background: rgba(245,158,11,.1);
    color: var(--secondary);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-secondary);
    color: var(--primary);
    transform: scale(1.1) rotate(-5deg);
}

.feature-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   قسم الخدمات
   ============================================= */
.services-section {
    background: var(--bg-light);
    position: relative;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.category-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-muted);
}

.category-tab.active-electricity,
.category-tab:hover {
    border-color: var(--secondary);
    color: var(--primary);
    background: rgba(245,158,11,.08);
    box-shadow: 0 4px 20px rgba(245,158,11,.2);
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid var(--secondary);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::after { opacity: 1; }

.service-card-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--primary-light);
}

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

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

.service-cat-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.service-cat-badge.electricity {
    background: rgba(59,130,246,.9);
    color: #fff;
}

.service-cat-badge.plumbing {
    background: rgba(16,185,129,.9);
    color: #fff;
}

.service-card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    font-size: 60px;
    color: rgba(245,158,11,.4);
}

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

.service-card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.btn-service-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: none;
    transition: var(--transition);
    width: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-service-order::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    transition: var(--transition);
}

.btn-service-order span, .btn-service-order i {
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.btn-service-order:hover::before { opacity: 1; }
.btn-service-order:hover span, .btn-service-order:hover i { color: var(--primary) !important; }
.btn-service-order:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(245,158,11,.4); }

/* =============================================
   قسم آراء العملاء
   ============================================= */
.testimonials-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245,158,11,.08) 0%, transparent 70%);
    border-radius: 50%;
}

.testimonial-card {
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 100px;
    color: rgba(245,158,11,.15);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    background: rgba(255,255,255,.1);
    transform: translateY(-5px);
    border-color: rgba(245,158,11,.3);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: var(--secondary);
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info .name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.testimonial-info .city {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 500;
}

.section-title-white { color: #fff; }
.section-subtitle-white { color: rgba(255,255,255,.7); }

/* =============================================
   قسم اتصل بنا
   ============================================= */
.contact-section {
    background: var(--bg-white);
    position: relative;
}

.contact-info-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(245,158,11,.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(245,158,11,.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--secondary);
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.1);
}

.contact-item-text .label {
    font-size: 13px;
    color: rgba(255,255,255,.5);
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-item-text .value {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.contact-social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.7);
}

.contact-social-link.whatsapp { background: rgba(37,211,102,.15); color: #25D366; }
.contact-social-link.facebook { background: rgba(24,119,242,.15); color: #1877F2; }
.contact-social-link.instagram { background: rgba(225,48,108,.15); color: #E1306C; }

.contact-social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: var(--shadow-md);
}

.contact-form-card {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    border: 1px solid var(--border-color);
}

/* =============================================
   النماذج
   ============================================= */
.form-group {
    margin-bottom: 20px;
}

.form-label-custom {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-label-custom .required { color: #EF4444; }

.form-control-custom {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
    direction: rtl;
}

.form-control-custom:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(245,158,11,.12);
    background: #fff;
}

.form-control-custom::placeholder {
    color: var(--text-light);
}

.form-select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2364748B' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
}

/* =============================================
   Footer
   ============================================= */
.site-footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,.7);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-secondary);
}

.footer-main {
    padding: 64px 0 40px;
}

.footer-brand .brand-name { font-size: 26px; margin-bottom: 12px; }

.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.6);
    margin-bottom: 24px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,.1);
    transition: var(--transition);
    color: rgba(255,255,255,.6);
}

.footer-social-link:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.footer-links { list-style: none; padding: 0; }

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

.footer-links a {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-right: 4px;
}

.footer-links a i {
    font-size: 10px;
    color: var(--secondary);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 15px;
    width: 16px;
}

.footer-contact-item span {
    font-size: 14px;
    color: rgba(255,255,255,.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,.45);
}

.footer-credits {
    font-size: 12px;
    color: rgba(255,255,255,.35);
}

/* =============================================
   زر واتساب العائم
   ============================================= */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    animation: float-whatsapp 3s ease-in-out infinite;
}

@keyframes float-whatsapp {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.whatsapp-float-btn {
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 8px 30px rgba(37,211,102,.5);
    transition: var(--transition);
    position: relative;
}

.whatsapp-float-btn::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.4);
    animation: pulse-ring 2s ease-out infinite;
}

.whatsapp-float-btn::after {
    content: '';
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(37,211,102,.2);
    animation: pulse-ring 2s ease-out infinite 0.5s;
}

@keyframes pulse-ring {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 40px rgba(37,211,102,.7);
}

.whatsapp-float-tooltip {
    position: absolute;
    left: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #25D366;
    color: #fff;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.whatsapp-float-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #25D366;
}

.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
}

/* =============================================
   Modal الطلب
   ============================================= */
.order-modal .modal-content {
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    direction: rtl;
}

.order-modal .modal-header {
    background: var(--gradient-primary);
    padding: 28px 32px;
    border: none;
}

.order-modal .modal-title {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.order-modal .modal-title i {
    color: var(--secondary);
}

.order-modal .btn-close {
    filter: invert(1);
    opacity: 0.7;
}

.order-modal .modal-body {
    padding: 32px;
    background: var(--bg-light);
}

.order-modal .modal-footer {
    padding: 20px 32px;
    background: #fff;
    border-top: 1px solid var(--border-color);
    gap: 12px;
}

.btn-submit-order {
    background: var(--gradient-secondary);
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-submit-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,158,11,.5);
}

.btn-submit-order:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* =============================================
   Breadcrumb
   ============================================= */
.page-header {
    background: var(--gradient-hero);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(245,158,11,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245,158,11,.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.page-header-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: #fff;
    position: relative;
    z-index: 1;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
    position: relative;
    z-index: 1;
}

.breadcrumb-custom li {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb-custom li a {
    color: rgba(255,255,255,.6);
    transition: var(--transition);
}

.breadcrumb-custom li a:hover { color: var(--secondary); }

.breadcrumb-custom li.active { color: var(--secondary); font-weight: 600; }

.breadcrumb-custom li:not(:last-child)::after {
    content: '/';
    color: rgba(255,255,255,.3);
}

/* =============================================
   صفحة الخدمات
   ============================================= */
.search-bar-wrapper {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
}

.search-bar-input {
    width: 100%;
    padding: 18px 60px 18px 24px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-size: 16px;
    outline: none;
    background: #fff;
    transition: var(--transition);
    direction: rtl;
    box-shadow: var(--shadow-sm);
}

.search-bar-input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(245,158,11,.12);
}

.search-bar-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
}

/* =============================================
   صفحة تفاصيل الخدمة
   ============================================= */
.service-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 16/9;
    background: var(--primary-light);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-body);
    font-weight: 500;
}

.service-features-list li:last-child { border-bottom: none; }

.service-features-list li i {
    color: var(--secondary);
    font-size: 16px;
    flex-shrink: 0;
}

.service-sidebar-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: sticky;
    top: 90px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.sidebar-service-name {
    background: rgba(245,158,11,.15);
    border: 1px solid rgba(245,158,11,.3);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-sidebar-order {
    width: 100%;
    background: var(--gradient-secondary);
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
    padding: 16px;
    border-radius: var(--radius-md);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    margin-bottom: 12px;
}

.btn-sidebar-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,158,11,.5);
}

.btn-sidebar-whatsapp {
    width: 100%;
    background: rgba(37,211,102,.15);
    color: #25D366;
    font-weight: 700;
    font-size: 15px;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(37,211,102,.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-sidebar-whatsapp:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   أزرار عامة
   ============================================= */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-secondary);
    color: var(--primary);
    font-weight: 700;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    font-family: var(--font-main);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245,158,11,.4);
    color: var(--primary);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    padding: 13px 30px;
    border-radius: var(--radius-full);
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
    font-family: var(--font-main);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* =============================================
   Back to Top
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    z-index: 999;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: translateY(-4px);
}

/* =============================================
   Loading Spinner
   ============================================= */
.spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.spinner-overlay.show {
    opacity: 1;
    visibility: visible;
}

.spinner-ring {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(245,158,11,.3);
    border-top-color: var(--secondary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =============================================
   Swiper Customization
   ============================================= */
.swiper-pagination-bullet {
    background: rgba(255,255,255,.4);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 24px;
    border-radius: var(--radius-full);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--secondary);
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(245,158,11,.3);
    transition: var(--transition);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
    font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* =============================================
   Utility Classes
   ============================================= */
.text-secondary-color { color: var(--secondary) !important; }
.bg-primary-custom    { background: var(--primary) !important; }
.bg-secondary-custom  { background: var(--secondary) !important; }
.fw-900 { font-weight: 900; }
.lh-1   { line-height: 1; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* =============================================
   Animations
   ============================================= */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 991px) {
    .hero-content { padding: 100px 0 60px; }
    .hero-image-wrapper { margin-top: 48px; }
    .hero-floating-card.card-1 { bottom: 10px; right: 10px; }
    .hero-floating-card.card-2 { top: 10px; left: 10px; }
    section { padding: 70px 0; }
    .contact-info-card { margin-bottom: 32px; }
    .service-sidebar-card { position: relative; top: auto; margin-top: 32px; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 32px; }
    .hero-buttons { flex-direction: column; }
    .btn-hero-primary, .btn-hero-whatsapp { justify-content: center; }
    .hero-stats { gap: 20px; }
    .contact-info-card { padding: 32px 24px; }
    .contact-form-card { padding: 32px 24px; }
    .order-modal .modal-body { padding: 24px; }
    .whatsapp-float { bottom: 20px; left: 20px; }
    .back-to-top { bottom: 90px; left: 20px; }
    .footer-main { padding: 48px 0 32px; }
    section { padding: 56px 0; }
}

@media (max-width: 575px) {
    .hero-badge { font-size: 12px; }
    .hero-stat-num { font-size: 22px; }
    .feature-card { padding: 24px 20px; }
    .testimonial-card { padding: 28px 24px; }
}
