/* ===== CSS VARIABLES - White/Blue/Red Theme ===== */
:root {
  /* ── Brand Colors ── */
  --primary:      #1a56db;   /* أزرق رئيسي */
  --primary-dark: #1040b0;   /* أزرق داكن */
  --primary-light:#e8f0fe;   /* أزرق فاتح جداً */
  --accent:       #e63946;   /* أحمر */
  --accent-dark:  #c0202e;   /* أحمر داكن */
  --accent-light: #fde8ea;   /* أحمر فاتح جداً */

  /* ── Heart Colors ── */
  --heart-red:    #e63946;
  --heart-blue:   #1a56db;
  --heart-yellow: #f59e0b;
  --heart-green:  #10b981;
  --heart-white:  #ffffff;
  --heart-black:  #374151;

  /* ── Backgrounds ── */
  --bg:           #ffffff;   /* خلفية بيضاء */
  --bg-soft:      #f8faff;   /* أبيض مائل للأزرق */
  --bg-card:      #ffffff;   /* بطاقات بيضاء */
  --bg-section:   #f0f5ff;   /* قسم فاتح */
  --bg-dark:      #1e2a4a;   /* داكن للهيدر/فوتر */
  --bg-hero:      #1a3a8f;   /* هيرو أزرق */

  /* ── Borders ── */
  --border:       #dbeafe;   /* حدود زرقاء فاتحة */
  --border-dark:  #93c5fd;   /* حدود زرقاء */

  /* ── Text ── */
  --text-main:    #111827;   /* نص رئيسي داكن */
  --text-muted:   #6b7280;   /* نص ثانوي */
  --text-light:   #ffffff;   /* نص أبيض */
  --text-blue:    #1a56db;   /* نص أزرق */

  /* ── WhatsApp ── */
  --wa-green:     #25d366;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', 'Amiri', sans-serif;
  background: var(--bg);
  color: var(--text-main);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--bg-dark);
  border-bottom: 3px solid var(--accent);
  position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(26,86,219,0.15);
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; gap: 16px; flex-wrap: wrap;
}
.logo { display: flex; align-items: center; gap: 12px; }
.heart-logo {
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--accent), var(--primary), var(--heart-yellow), var(--heart-green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: pulse 2s infinite;
}
.logo-text .logo-name { display: block; font-size: 1.2rem; font-weight: 700; color: #fff; }
.logo-text .logo-desc { display: block; font-size: 0.75rem; color: #93c5fd; }
.logo-text a { text-decoration: none; }

.nav-list { display: flex; gap: 4px; flex-wrap: wrap; }
.nav-list li a {
  padding: 7px 14px; border-radius: 20px; font-size: 0.9rem;
  color: #cbd5e1; transition: all 0.3s;
}
.nav-list li a:hover,
.nav-list li.current-menu-item a {
  background: var(--primary); color: #fff;
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--wa-green), #128c7e);
  color: #fff; padding: 9px 18px; border-radius: 25px;
  font-weight: 700; font-size: 0.9rem; white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.55); }

.mobile-menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.mobile-menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: #cbd5e1; border-radius: 2px; transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block; padding: 12px 28px; border-radius: 30px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all 0.3s; border: 2px solid transparent;
  font-family: 'Cairo', sans-serif;
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 16px rgba(26,86,219,0.3);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,86,219,0.45); }
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 16px rgba(230,57,70,0.3);
}
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-green {
  background: linear-gradient(135deg, var(--wa-green), #128c7e);
  color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(37,211,102,0.55); }
.btn-outline {
  border-color: var(--primary); color: var(--primary); background: transparent;
}
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white {
  border-color: #fff; color: #fff; background: transparent;
}
.btn-outline-white:hover { background: #fff; color: var(--primary); }
.btn-lg { font-size: 1.15rem; padding: 15px 36px; }

/* ===== HERO ===== */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--bg-hero) 0%, #0f2460 50%, #1e2a4a 100%);
  padding: 100px 0 80px; text-align: center;
}
.hearts-bg { position: absolute; inset: 0; pointer-events: none; }
.heart { position: absolute; opacity: 0.12; animation: floatHeart 6s ease-in-out infinite; }
.h1 { color: var(--heart-red);    top: 10%; left: 5%;  font-size: 3rem;   animation-delay: 0s; }
.h2 { color: #fff;                top: 20%; right: 8%; font-size: 2rem;   animation-delay: 1s; }
.h3 { color: var(--heart-yellow); top: 60%; left: 10%; font-size: 2.5rem; animation-delay: 2s; }
.h4 { color: var(--heart-green);  top: 70%; right: 5%; font-size: 1.8rem; animation-delay: 0.5s; }
.h5 { color: #93c5fd;             top: 40%; left: 2%;  font-size: 1.5rem; animation-delay: 1.5s; }
.h6 { color: var(--heart-red);    top: 50%; right: 3%; font-size: 2.2rem; animation-delay: 2.5s; }

.hero-content { position: relative; z-index: 2; }
.hero-content h1 { font-size: 2.6rem; color: #fff; margin-bottom: 16px; line-height: 1.4; }
.hero-content h1 strong { color: #93c5fd; }
.hero-sub { font-size: 1.1rem; color: #bfdbfe; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.phone-box {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  padding: 10px 24px; border-radius: 30px; font-size: 1.1rem;
}
.phone-box a { color: #fde68a; font-weight: 700; direction: ltr; }

/* ===== SECTION TITLE ===== */
.section-title {
  text-align: center; font-size: 2rem; color: var(--text-main);
  margin-bottom: 50px; position: relative;
}
.section-title::after {
  content: ''; display: block; width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  margin: 12px auto 0; border-radius: 2px;
}
.section-title span { color: var(--primary); }

/* ===== HEARTS SECTION (Services on homepage) ===== */
.hearts-section { padding: 80px 0; background: var(--bg-soft); }
.hearts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.heart-card {
  border-radius: 16px; padding: 32px 24px; text-align: center;
  background: var(--bg-card);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 2px solid transparent;
}
.heart-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(26,86,219,0.15); }

.heart-card.blue   { border-color: var(--primary);      box-shadow: 0 4px 20px rgba(26,86,219,0.1); }
.heart-card.red    { border-color: var(--accent);        box-shadow: 0 4px 20px rgba(230,57,70,0.1); }
.heart-card.yellow { border-color: var(--heart-yellow);  box-shadow: 0 4px 20px rgba(245,158,11,0.1); }
.heart-card.green  { border-color: var(--heart-green);   box-shadow: 0 4px 20px rgba(16,185,129,0.1); }
.heart-card.white  { border-color: var(--border-dark);   box-shadow: 0 4px 20px rgba(26,86,219,0.08); }
.heart-card.black  { border-color: #374151;              box-shadow: 0 4px 20px rgba(55,65,81,0.1); }

.heart-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.heart-card.blue   .heart-icon { color: var(--primary); }
.heart-card.red    .heart-icon { color: var(--accent); }
.heart-card.yellow .heart-icon { color: var(--heart-yellow); }
.heart-card.green  .heart-icon { color: var(--heart-green); }
.heart-card.white  .heart-icon { color: var(--primary); }
.heart-card.black  .heart-icon { color: #374151; }

.heart-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--text-main); font-weight: 700; }
.heart-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.card-link { display: inline-block; margin-top: 14px; color: var(--primary); font-size: 0.85rem; font-weight: 700; }
.card-link:hover { color: var(--accent); }

/* ===== WHY SECTION ===== */
.why-section { padding: 80px 0; background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-item {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: 16px; padding: 28px 20px; text-align: center;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.why-item:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 8px 30px rgba(26,86,219,0.12); }
.why-icon { font-size: 2.2rem; display: block; margin-bottom: 12px; }
.why-item h4 { font-size: 1.05rem; color: var(--text-main); margin-bottom: 8px; font-weight: 700; }
.why-item p  { font-size: 0.88rem; color: var(--text-muted); }

/* ===== LATEST POSTS ===== */
.latest-posts-section { padding: 80px 0; background: var(--bg-soft); }
.articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }

.article-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(26,86,219,0.06);
}
.article-card:hover {
  border-color: var(--primary); transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(26,86,219,0.15);
}
.article-thumb {
  position: relative; overflow: hidden;
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--primary-light), var(--bg-soft));
}
.article-thumb a { display: block; width: 100%; height: 100%; }
.article-thumb .card-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.4s ease;
}
.article-card:hover .card-img { transform: scale(1.05); }

.article-body { padding: 20px; }
.tag {
  display: inline-block; padding: 3px 12px; border-radius: 12px;
  font-size: 0.75rem; font-weight: 700; margin-bottom: 10px;
  background: var(--primary-light); color: var(--primary);
}
.tag a { color: var(--primary); }
.article-body h3 { font-size: 1.05rem; color: var(--text-main); margin-bottom: 8px; line-height: 1.5; font-weight: 700; }
.article-body h3 a { color: inherit; }
.article-body h3 a:hover { color: var(--primary); }
.article-body p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.read-more { display: inline-block; margin-top: 12px; color: var(--primary); font-size: 0.85rem; font-weight: 700; }
.read-more:hover { color: var(--accent); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0; text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}
.cta-section h2 { font-size: 2rem; color: #fff; margin-bottom: 16px; }
.cta-section p  { font-size: 1.05rem; color: #bfdbfe; margin-bottom: 32px; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--bg-hero) 0%, var(--primary-dark) 100%);
  padding: 70px 0 50px; text-align: center;
  border-bottom: 3px solid var(--accent);
}
.page-hero h1 { font-size: 2.2rem; color: #fff; margin-bottom: 12px; }
.page-hero p  { font-size: 1rem; color: #bfdbfe; }
.post-meta { font-size: 0.9rem; color: #bfdbfe; }
.post-meta a { color: #93c5fd; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 0.85rem; color: #93c5fd; margin-bottom: 12px; flex-wrap: wrap;
}
.breadcrumb a { color: #bfdbfe; }
.breadcrumb a:hover { color: #fff; }
.bc-sep { color: #60a5fa; }

/* ── Category meta ── */
.cat-meta { margin-top: 10px; font-size: 0.85rem; color: #93c5fd; }

/* ===== ARCHIVE / CATEGORY SECTION ===== */
.archive-section { padding: 80px 0; background: var(--bg-soft); }

/* ===== NO POSTS ===== */
.no-posts {
  text-align: center; padding: 80px 20px;
  background: var(--bg-card); border-radius: 20px;
  border: 2px dashed var(--border-dark);
}
.no-posts-icon { font-size: 4rem; color: var(--accent); margin-bottom: 16px; }
.no-posts h2 { font-size: 1.5rem; color: var(--text-main); margin-bottom: 10px; }
.no-posts p  { color: var(--text-muted); margin-bottom: 24px; }

/* ===== PAGE CONTENT ===== */
.page-content { padding: 60px 0; background: var(--bg); }
.entry-content { font-size: 1rem; line-height: 1.9; color: var(--text-main); }
.entry-content h2, .entry-content h3 { color: var(--primary); margin: 24px 0 12px; }
.entry-content p { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { padding-right: 24px; margin-bottom: 16px; }
.entry-content li { margin-bottom: 8px; }
.entry-content a { color: var(--primary); text-decoration: underline; }

/* ===== SINGLE / SIDEBAR ===== */
.single-content { padding: 60px 0; background: var(--bg); }
.single-grid { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.post-tags { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.sidebar { position: sticky; top: 90px; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px; padding: 24px; text-align: center; margin-top: 24px;
}
.sidebar-cta h4 { color: #fff; margin-bottom: 8px; font-size: 1.05rem; }
.sidebar-cta p  { font-size: 0.9rem; color: #bfdbfe; margin-bottom: 16px; }
.sidebar-cta-icon { font-size: 2.5rem; color: #fca5a5; margin-bottom: 8px; animation: pulse 2s infinite; }
.widget {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px; margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(26,86,219,0.06);
}
.widget-title { color: var(--primary); font-size: 1rem; margin-bottom: 12px; font-weight: 700; }

/* ── Single featured image ── */
.single-featured-img {
  width: 100%; max-height: 500px; object-fit: cover; object-position: center top;
  border-radius: 16px; margin-bottom: 32px; display: block;
  box-shadow: 0 4px 20px rgba(26,86,219,0.15);
}
.entry-body { font-size: 1rem; line-height: 1.9; color: var(--text-main); }
.entry-body h2, .entry-body h3 { color: var(--primary); margin: 24px 0 12px; }
.entry-body p { margin-bottom: 16px; }
.entry-body a { color: var(--primary); }
.entry-body img { border-radius: 10px; margin: 16px auto; }
.entry-body .alignleft  { float: right; margin: 0 0 16px 24px; }
.entry-body .alignright { float: left;  margin: 0 24px 16px 0; }
.entry-body .aligncenter { display: block; margin: 16px auto; }
.entry-body figure.wp-block-image { margin: 24px 0; }
.entry-body figure figcaption { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }
.entry-body .wp-block-gallery {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px; margin: 24px 0;
}
.entry-body .wp-block-gallery img { width: 100%; height: 200px; object-fit: cover; border-radius: 10px; }

/* ===== POST NAVIGATION ===== */
.post-nav { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.post-nav-link {
  flex: 1; min-width: 200px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px; transition: border-color 0.3s, box-shadow 0.3s;
}
.post-nav-link:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(26,86,219,0.12); }
.nav-label { display: block; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
.nav-title  { display: block; font-size: 0.92rem; color: var(--text-main); line-height: 1.4; font-weight: 600; }

/* ===== RELATED / SIDEBAR ===== */
.sidebar-related { margin-top: 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.related-item { display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.related-item:last-child { border-bottom: none; }
.related-thumb { flex-shrink: 0; width: 72px; height: 54px; border-radius: 8px; overflow: hidden; display: block; }
.related-img { width: 72px; height: 54px; object-fit: cover; border-radius: 8px; }
.related-title { font-size: 0.88rem; color: var(--text-main); line-height: 1.5; transition: color 0.2s; }
.related-title:hover { color: var(--primary); }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.service-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(26,86,219,0.06);
}
.service-card:hover { border-color: var(--primary); transform: translateY(-6px); box-shadow: 0 12px 30px rgba(26,86,219,0.15); }
.service-thumb { position: relative; overflow: hidden; aspect-ratio: 3/2; background: var(--primary-light); }
.service-thumb a { display: block; width: 100%; height: 100%; }
.service-thumb .card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .card-img { transform: scale(1.05); }
.service-body { padding: 20px; }
.service-body h3 { font-size: 1.1rem; color: var(--text-main); margin-bottom: 8px; font-weight: 700; }
.service-body p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.service-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.s-icon { font-size: 2.5rem; margin-bottom: 16px; display: block; }
.s-cta {
  display: inline-block; padding: 8px 18px; border-radius: 16px;
  font-size: 0.85rem; font-weight: 700; transition: all 0.2s;
}
.s-cta--read { background: var(--primary-light); color: var(--primary); border: 1px solid var(--border-dark); }
.s-cta--read:hover { background: var(--primary); color: #fff; }
.s-cta--wa { background: linear-gradient(135deg, var(--wa-green), #128c7e); color: #fff; }
.service-single-icon { font-size: 5rem; text-align: center; color: var(--accent); margin-bottom: 24px; }

/* ===== ABOUT ===== */
.about-section { padding: 80px 0; background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text h2 { font-size: 1.8rem; color: var(--primary); margin-bottom: 20px; }
.about-text p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.about-stats { display: flex; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.stat-box {
  background: var(--bg-card); border: 2px solid var(--border);
  border-radius: 12px; padding: 16px 24px; text-align: center; flex: 1; min-width: 100px;
  box-shadow: 0 2px 8px rgba(26,86,219,0.08);
}
.stat-box .num { font-size: 2rem; font-weight: 700; color: var(--accent); }
.stat-box .lbl { font-size: 0.8rem; color: var(--text-muted); }
.about-image-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 20px; padding: 40px; text-align: center;
  box-shadow: 0 8px 30px rgba(26,86,219,0.25);
}
.about-heart-big {
  font-size: 8rem; display: block; margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent), #fff, var(--heart-yellow), var(--heart-green));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  animation: pulse 2s infinite;
}
.about-image-box h3 { font-size: 1.3rem; color: #fff; }
.about-image-box p  { font-size: 0.9rem; color: #bfdbfe; margin-top: 8px; }

/* ===== CONTACT ===== */
.contact-section { padding: 80px 0; background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info h2 { font-size: 1.6rem; color: var(--primary); margin-bottom: 20px; }
.contact-info p  { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex; align-items: center; gap: 14px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; padding: 16px 20px; transition: border-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 6px rgba(26,86,219,0.06);
}
.contact-method:hover { border-color: var(--wa-green); box-shadow: 0 4px 16px rgba(37,211,102,0.15); }
.cm-icon { font-size: 1.8rem; }
.cm-text strong { display: block; color: var(--text-main); font-size: 0.95rem; }
.cm-text a, .cm-text span { color: var(--wa-green); font-size: 0.9rem; }

.contact-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  box-shadow: 0 4px 20px rgba(26,86,219,0.08);
}
.contact-form h2 { font-size: 1.4rem; color: var(--primary); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.9rem; color: var(--text-muted); margin-bottom: 6px; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  background: var(--bg-soft); border: 1px solid var(--border-dark);
  color: var(--text-main); font-family: 'Cairo', sans-serif; font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; padding: 14px; border: none; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: opacity 0.3s, transform 0.2s;
  font-family: 'Cairo', sans-serif;
  box-shadow: 0 4px 16px rgba(26,86,219,0.3);
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-2px); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-dark); padding: 60px 0 20px;
  border-top: 3px solid var(--accent);
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-bottom: 40px; }
.footer-col h4, .footer-widget-title { color: #93c5fd; font-size: 1.05rem; margin-bottom: 14px; font-weight: 700; }
.footer-col p, .footer-col li, .footer-widget p { font-size: 0.9rem; color: #94a3b8; line-height: 1.8; }
.footer-col a, .footer-nav a { color: #94a3b8; transition: color 0.2s; }
.footer-col a:hover, .footer-nav a:hover { color: #fff; }
.footer-nav { display: flex; flex-direction: column; gap: 6px; }
.footer-bottom {
  text-align: center; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem; color: #64748b;
}

/* ===== PAGINATION ===== */
.pagination { margin-top: 40px; text-align: center; }
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pagination .page-numbers {
  padding: 8px 16px; border-radius: 8px;
  background: var(--bg-card); border: 1px solid var(--border-dark);
  color: var(--text-muted); transition: all 0.3s; font-weight: 600;
}
.pagination .page-numbers.current { background: var(--primary); color: #fff; border-color: var(--primary); }
.pagination .page-numbers:hover   { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }

/* ===== CUSTOM LOGO ===== */
.custom-logo { max-height: 60px; width: auto; }
.custom-logo-link { display: flex; align-items: center; }

/* ===== ANIMATIONS ===== */
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.08)} }
@keyframes floatHeart {
  0%,100%{transform:translateY(0) rotate(0deg);opacity:0.12}
  50%{transform:translateY(-20px) rotate(10deg);opacity:0.22}
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .single-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image-box { order: -1; }
}
@media (max-width: 768px) {
  .site-header .container { flex-direction: column; gap: 12px; }
  .mobile-menu-toggle { display: flex; }
  .main-nav { display: none; width: 100%; }
  .main-nav.open { display: block; }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-list li a { border-radius: 8px; }
  .hero-content h1 { font-size: 1.7rem; }
  .section-title { font-size: 1.5rem; }
  .hero { padding: 70px 0 60px; }
  .hearts-section, .why-section, .latest-posts-section,
  .archive-section, .about-section, .contact-section { padding: 50px 0; }
  .cta-section { padding: 50px 0; }
  .cta-section h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-lg { font-size: 1rem; padding: 13px 28px; }
  .about-stats { flex-direction: column; }
  .contact-grid { gap: 28px; }
}
