/*
Theme Name: AlNuzm AI
Theme URI: https://alnuzm.com
Author: Al-Nuzm Al-Mutajaddida
Author URI: https://alnuzm.com
Description: ثيم احترافي للنظم المتجددة - شركة ذكاء اصطناعي وتقنية
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: alnuzm
Tags: dark, blue, ai, technology, rtl-language-support, two-columns, custom-menu
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --blue-primary: #0066FF;
  --blue-light:   #3D8BFF;
  --blue-dark:    #003DB3;
  --blue-glow:    rgba(0, 102, 255, 0.3);
  --bg-black:     #050810;
  --bg-dark:      #080D1A;
  --bg-card:      #0D1528;
  --bg-card2:     #111C35;
  --text-white:   #FFFFFF;
  --text-light:   #C8D5F0;
  --text-muted:   #6B84B5;
  --border:       rgba(0, 102, 255, 0.15);
  --border-hover: rgba(0, 102, 255, 0.4);
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,0.4);
  --shadow-blue:  0 0 40px rgba(0, 102, 255, 0.2);
  --font-ar:      'Cairo', 'Tajawal', sans-serif;
  --font-en:      'Exo 2', 'Rajdhani', sans-serif;
  --transition:   all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg-black);
  color: var(--text-white);
  font-family: var(--font-ar);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}

body.lang-en {
  direction: ltr;
  font-family: var(--font-en);
}

a { color: var(--blue-light); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-primary); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-white);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.3rem; }

p { color: var(--text-light); margin-bottom: 1rem; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid var(--border);
  color: var(--blue-light);
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--blue-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

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

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 992px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 102, 255, 0.6);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--blue-light);
  border: 2px solid var(--border-hover);
}

.btn-outline:hover {
  background: rgba(0, 102, 255, 0.1);
  border-color: var(--blue-primary);
  color: var(--text-white);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.card:hover .card-icon {
  background: rgba(0, 102, 255, 0.2);
  border-color: var(--blue-primary);
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

#site-header.scrolled {
  background: rgba(5, 8, 16, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 20px rgba(0, 102, 255, 0.4);
}

.logo-text { line-height: 1.2; }
.logo-text .name { font-size: 1.1rem; font-weight: 800; color: var(--text-white); }
.logo-text .tagline { font-size: 0.7rem; color: var(--blue-light); }

#main-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}

#main-nav ul li a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

#main-nav ul li a:hover,
#main-nav ul li.current-menu-item a {
  color: var(--text-white);
  background: rgba(0, 102, 255, 0.1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switcher {
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-light);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.lang-switcher:hover {
  border-color: var(--blue-primary);
  color: var(--text-white);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 992px) {
  .mobile-menu-toggle { display: flex; }
  #main-nav {
    display: none;
    position: absolute;
    top: 80px; left: 0; right: 0;
    background: rgba(8, 13, 26, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; gap: 4px; }
  #main-nav ul li a { display: block; padding: 12px 16px; }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0, 102, 255, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(0, 60, 180, 0.1) 0%, transparent 60%),
    var(--bg-black);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,102,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 102, 255, 0.1);
  border: 1px solid rgba(0, 102, 255, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--blue-light);
  margin-bottom: 24px;
  font-weight: 600;
  animation: fadeInDown 0.8s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 560px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-light);
  display: block;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-visual {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { background: var(--bg-dark); }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-primary), var(--blue-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: right;
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), var(--shadow-blue);
}

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

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(0,102,255,0.2), rgba(0,60,180,0.1));
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(0,102,255,0.25);
  border-color: var(--blue-primary);
  box-shadow: 0 0 20px rgba(0,102,255,0.3);
}

.service-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ============================================================
   HOSPITALITY SECTION
   ============================================================ */
.hospitality-section {
  background: linear-gradient(180deg, var(--bg-black) 0%, var(--bg-dark) 100%);
}

.hospitality-hero {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 60px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hospitality-hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,102,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hospitality-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 100, 0.1);
  border: 1px solid rgba(0, 180, 100, 0.3);
  color: #00c864;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--bg-black); }

.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-feature:hover { border-color: var(--border-hover); }

.feature-icon {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(0,102,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { background: var(--bg-dark); }

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-blue);
}

.blog-card-image {
  height: 200px;
  background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 24px; }

.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.blog-category {
  background: rgba(0,102,255,0.1);
  color: var(--blue-light);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.blog-date { font-size: 0.8rem; color: var(--text-muted); }

.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card h3 a { color: var(--text-white); }
.blog-card h3 a:hover { color: var(--blue-light); }
.blog-card p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(0,40,120,0.8) 0%, rgba(0,10,40,0.8) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-section h2 { margin-bottom: 16px; }
.cta-section p { margin-bottom: 40px; font-size: 1.1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section { background: var(--bg-black); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
}

.form-group { margin-bottom: 24px; }
.form-group label { display: block; color: var(--text-light); font-size: 0.9rem; font-weight: 600; margin-bottom: 8px; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border);
  color: var(--text-white);
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-ar);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-info-item:hover { border-color: var(--border-hover); }

.contact-info-icon {
  width: 48px; height: 48px;
  min-width: 48px;
  background: rgba(0,102,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 60px 0 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
}

.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 16px; }

.footer-col h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--blue-light); padding-right: 4px; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; margin: 0; }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-links a:hover {
  background: rgba(0,102,255,0.1);
  border-color: var(--blue-primary);
  color: var(--blue-light);
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(0,102,255,0.12) 0%, transparent 70%),
    var(--bg-black);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--blue-light); }
.breadcrumb span { color: var(--text-muted); }

/* ============================================================
   BLOG SINGLE
   ============================================================ */
.post-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  line-height: 1.9;
}

.post-content h2, .post-content h3 { margin: 2rem 0 1rem; }
.post-content p { margin-bottom: 1.2rem; }
.post-content img { border-radius: var(--radius); margin: 2rem 0; }
.post-content ul, .post-content ol { padding-right: 2rem; margin-bottom: 1.2rem; }
.post-content li { margin-bottom: 0.5rem; color: var(--text-light); }
.post-content blockquote {
  border-right: 4px solid var(--blue-primary);
  padding: 16px 24px;
  background: rgba(0,102,255,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
  color: var(--text-light);
  font-style: italic;
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 48px; height: 48px;
  background: var(--blue-primary);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,102,255,0.4);
  z-index: 999;
  border: none;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(0,102,255,0.6); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delay for children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   GLOWING ORBS BACKGROUND EFFECT
   ============================================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
}

.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,102,255,0.3), transparent);
  top: 10%; right: 5%;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,60,180,0.2), transparent);
  bottom: 20%; left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ============================================================
   NUMBERS/STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px 0;
}

.stat-item { text-align: center; }
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-light), var(--blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { color: var(--text-muted); font-size: 0.9rem; }

/* ============================================================
   PARTNERS/CLIENTS SECTION
   ============================================================ */
.partners-section { padding: 60px 0; background: var(--bg-dark); }
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.partner-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  color: var(--text-muted);
  font-weight: 700;
  transition: var(--transition);
  font-size: 0.95rem;
}
.partner-item:hover {
  border-color: var(--blue-primary);
  color: var(--blue-light);
}

/* Disable WordPress comments styling */
.comment-respond, #comments { display: none !important; }
/* Logo Size Fix */
.site-logo img,
.site-logo .custom-logo {
    height: 45px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
}

.site-logo {
    display: flex;
    align-items: center;
}
