/*
Theme Name: رموز الشبكات الرقمية - Child Theme
Theme URI: https://rumuzraac.com
Description: قالب ابن لـ Astra بتصميم حديث احترافي - أنظمة IPTV للفنادق
Author: رموز الشبكات الرقمية
Author URI: https://rumuzraac.com
Template: astra
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rumuz-astra-child
*/

/* ===== Custom Properties ===== */
:root {
  --rumuz-blue: #046BD2;
  --rumuz-blue-dark: #034a9a;
  --rumuz-blue-light: #e8f0fe;
  --rumuz-gradient: linear-gradient(135deg, #046BD2 0%, #034a9a 100%);
  --rumuz-text: #1e293b;
  --rumuz-text-light: #64748b;
  --rumuz-bg: #f8fafc;
  --rumuz-white: #ffffff;
  --rumuz-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --rumuz-radius: 12px;
}

/* ===== Astra Overrides ===== */
.site-header {
    transition: all 0.3s ease !important;
    background: transparent !important;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}

/* ===== Hero Section ===== */
.rumuz-hero {
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #046BD2 0%, #034a9a 100%);
    padding: 80px 40px;
}
.rumuz-hero h1 {
    font-size: 3.2rem !important;
    font-weight: 800 !important;
    color: #fff !important;
    line-height: 1.3 !important;
    margin-bottom: 24px !important;
}
.rumuz-hero p {
    font-size: 1.2rem !important;
    color: rgba(255,255,255,0.9) !important;
    line-height: 1.8 !important;
    max-width: 650px;
}
.rumuz-hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ===== Services Grid ===== */
.rumuz-services {
    padding: 80px 40px;
    background: #f8fafc;
}
.rumuz-service-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
}
.rumuz-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(4,107,210,0.15);
    border-color: #046BD2;
}
.rumuz-service-card .icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #046BD2, #034a9a);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
}
.rumuz-service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}
.rumuz-service-card p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== Stats ===== */
.rumuz-stats {
    background: linear-gradient(135deg, #046BD2 0%, #034a9a 100%);
    padding: 60px 40px;
    color: white;
}
.rumuz-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.rumuz-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== Cities Map ===== */
.rumuz-cities {
    padding: 80px 40px;
}
.rumuz-city-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    background: white;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    color: #1e293b;
    transition: all 0.3s ease;
    cursor: default;
}
.rumuz-city-tag:hover {
    border-color: #046BD2;
    background: #e8f0fe;
    transform: translateY(-2px);
}

/* ===== FAQ ===== */
.rumuz-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.rumuz-faq-item.active {
    border-color: #046BD2;
    box-shadow: 0 4px 12px rgba(4,107,210,0.1);
}
.rumuz-faq-question {
    padding: 20px 24px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: color 0.3s;
    border: none;
    width: 100%;
    text-align: right;
    font-size: 1.05rem;
}
.rumuz-faq-question:hover {
    color: #046BD2;
}
.rumuz-faq-answer {
    padding: 0 24px 20px;
    color: #64748b;
    line-height: 1.8;
    display: none;
}
.rumuz-faq-item.active .rumuz-faq-answer {
    display: block;
}

/* ===== CTA Section ===== */
.rumuz-cta {
    background: linear-gradient(135deg, #046BD2 0%, #034a9a 100%);
    padding: 80px 40px;
    text-align: center;
    color: white;
}
.rumuz-cta h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.rumuz-cta p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}
.rumuz-cta .phone {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-top: 20px;
}

/* ===== Animations ===== */
.rumuz-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.rumuz-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .rumuz-hero { padding: 60px 20px; min-height: 70vh; }
    .rumuz-hero h1 { font-size: 2rem !important; }
    .rumuz-hero p { font-size: 1rem !important; }
    .rumuz-services { padding: 60px 20px; }
    .rumuz-service-card { padding: 24px; }
    .rumuz-cities { padding: 60px 20px; }
    .rumuz-cta { padding: 60px 20px; }
    .rumuz-cta h2 { font-size: 1.6rem; }
    .rumuz-cta .phone { font-size: 1.5rem; }
    .rumuz-stat-number { font-size: 2rem; }
}
