/*
Theme Name: Gomaa-LCC
Theme URI: https://www.gomaa-lcc.com
Author: Gomaa Life Coaching & Consulting LLC
Author URI: https://www.gomaa-lcc.com
Description: Custom WordPress theme for Gomaa-LCC Life Coaching & Consulting LLC. SEO-optimized bilingual English/Arabic professional coaching website, Tampa FL.
Version: 6.1.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Private - All Rights Reserved
Text Domain: gomaa-lcc
*/

/* ================================================
   GOMAA-LCC — MAIN STYLESHEET v2.0
   Design System: Refined Warm Professional
   Fonts: Playfair Display + DM Sans + Amiri
================================================ */

/* --- DESIGN TOKENS --- */
:root {
  --gold:      #C9A84C;
  --gold-lt:   #E8D5A3;
  --gold-dk:   #b08a35;
  --teal:      #1A6B6B;
  --teal-dk:   #0F4545;
  --teal-md:   #1A5050;
  --cream:     #FAF6EF;
  --warm-wht:  #FFFDF9;
  --charcoal:  #1C1C1C;
  --mid-gray:  #555555;
  --lt-gray:   #F0EBE3;
  --border:    rgba(201,168,76,0.22);
  --shadow-sm: 0 4px 16px rgba(10,50,50,0.08);
  --shadow:    0 8px 40px rgba(10,50,50,0.12);
  --shadow-lg: 0 16px 60px rgba(10,50,50,0.18);
  --radius:    12px;
  --radius-sm: 6px;
  --ff-head:   'Playfair Display', Georgia, serif;
  --ff-body:   'DM Sans', system-ui, -apple-system, sans-serif;
  --ff-ar:     'Amiri', serif;
  --max-w:     1140px;
  --nav-h:     72px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: auto; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
ul { list-style: none; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold); }
button { cursor: pointer; font-family: var(--ff-body); }

/* --- TYPOGRAPHY --- */
h1,h2,h3,h4,h5 { font-family: var(--ff-head); line-height: 1.22; color: var(--charcoal); }
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p  { color: var(--mid-gray); }

/* --- LAYOUT --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-sub {
  color: var(--mid-gray);
  max-width: 580px;
  margin-top: 10px;
  font-size: 1.02rem;
}

/* --- BADGE --- */
.badge {
  display: inline-block;
  background: var(--gold-lt);
  color: var(--teal-dk);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}
.badge-light {
  background: rgba(201,168,76,.18);
  color: var(--gold-lt);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--gold);    color: #fff; border-color: var(--gold);    }
.btn-primary:hover { background: var(--gold-dk); border-color: var(--gold-dk); color: #fff; }
.btn-teal    { background: var(--teal);    color: #fff; border-color: var(--teal);    }
.btn-teal:hover { background: var(--teal-dk); border-color: var(--teal-dk); color: #fff; }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; }
.btn-ghost   { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.2); color: #fff; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ================================================
   TOP BAR
================================================ */
.topbar {
  background: var(--teal-dk);
  color: rgba(255,255,255,.78);
  font-size: .78rem;
  padding: 8px 0;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-contact { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar-contact a { color: var(--gold-lt); }
.topbar-contact a:hover { color: #fff; }
.topbar-contact .sep { opacity: .35; }
.topbar-social { display: flex; gap: 14px; }
.topbar-social a {
  display: flex; align-items: center; gap: 5px;
  color: rgba(255,255,255,.65);
  font-size: .75rem;
}
.topbar-social a:hover { color: var(--gold-lt); }

/* ================================================
   STICKY NAVBAR
================================================ */
.navbar {
  background: var(--warm-wht);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 150;
  box-shadow: 0 2px 20px rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 28px rgba(0,0,0,.1); }
.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--nav-h);
  gap: 20px;
}

/* Brand */
.brand { display: flex; flex-direction: column; line-height: 1.1; gap: 2px; max-width: 220px; flex-shrink: 0; }
.brand-name {
  font-family: var(--ff-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal-dk);
  letter-spacing: -.01em;
}
.brand-sub {
  font-size: .68rem;
  font-family: var(--ff-body);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.brand:hover .brand-name { color: var(--teal); }
.custom-logo { height: 50px; width: auto; max-width: 180px; display: block; }
.custom-logo-link { display: flex; align-items: center; }
.site-logo { display: flex; align-items: center; }
.site-logo img { height: 50px; width: auto; max-width: 180px; }
.wp-block-site-logo img,
a.custom-logo-link img { height: 50px; width: auto; max-width: 180px; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: .84rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 7px 11px;
  border-radius: 5px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { background: var(--lt-gray); color: var(--teal); }
.nav-links .cta-nav {
  background: var(--gold) !important;
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-left: 6px;
}
.nav-links .cta-nav:hover { background: var(--gold-dk) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all .25s;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Skip link */
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 10px; top: 10px; z-index: 9999; background: #fff; padding: 8px 16px; border-radius: 4px; }

/* ================================================
   PAGE HERO (inner pages)
================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dk), var(--teal-md));
  color: #fff;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: #fff; position: relative; }
.page-hero .breadcrumb { font-size: .8rem; color: rgba(255,255,255,.6); margin-top: 10px; position: relative; }
.page-hero .breadcrumb a { color: var(--gold-lt); }

/* ================================================
   HERO — HOMEPAGE
================================================ */
.hero {
  background: linear-gradient(135deg, var(--teal-dk) 0%, var(--teal-md) 55%, #0D3838 100%);
  color: #fff;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A84C' fill-opacity='0.045'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  overflow: visible;
}

/* Hero badge */
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--gold-lt);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
}

/* Hero heading */
.hero-title { color: #fff; margin-bottom: 18px; }
.hero-title em { color: var(--gold); font-style: normal; }

/* Sub text */
.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: 1.04rem;
  margin-bottom: 14px;
  line-height: 1.75;
}
.hero-arabic {
  font-family: var(--ff-ar);
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  direction: rtl;
  text-align: right;
  border-right: 3px solid var(--gold);
  padding-right: 14px;
  margin-bottom: 32px;
  line-height: 2;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 0;   max-width: 100%;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-val {
  font-family: var(--ff-head);
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-lbl {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
  margin-top: 4px;
}

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  min-width: 0;
  overflow: hidden;
  word-wrap: break-word;
}
.hero-card h3 {
  color: var(--gold-lt);
  font-family: var(--ff-head);
  font-size: 1.1rem;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-services-list li {
  color: rgba(255,255,255,.8);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.hero-services-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: .65rem;
  margin-top: 4px;
  flex-shrink: 0;
}
.hero-services-list li:last-child { border-bottom: none; }
.tag-org {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
  vertical-align: middle;
}

/* ================================================
   HOW IT WORKS
================================================ */
.how-section { background: var(--warm-wht); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
}
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-num {
  font-family: var(--ff-head);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--lt-gray);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; }
.step-card h3 { color: var(--teal-dk); margin-bottom: 10px; font-size: 1.1rem; }
.step-card p { font-size: .88rem; }

/* ================================================
   SERVICES
================================================ */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .22s, transform .22s;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.svc-icon { font-size: 2.2rem; margin-bottom: 14px; }
.svc-target {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 8px;
}
.service-card h3 { color: var(--teal-dk); margin-bottom: 10px; font-size: 1.1rem; }
.service-card p { font-size: .88rem; }
.svc-link {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 18px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--teal);
}
.svc-link:hover { color: var(--gold); }

/* Consulting card dark variant */
.consult-card {
  background: linear-gradient(135deg, var(--teal-dk), var(--teal-md)) !important;
  border-color: rgba(201,168,76,.2) !important;
}
.consult-card::before { background: linear-gradient(90deg, var(--gold), #e8b96a) !important; }
.consult-card h3 { color: var(--gold-lt); }
.consult-card .svc-target { color: rgba(255,255,255,.55); }
.consult-card p { color: rgba(255,255,255,.8); }
.consult-card .svc-link { color: var(--gold-lt); }
.consult-card .svc-link:hover { color: #fff; }

/* ================================================
   ABOUT SECTION
================================================ */
.about-section { background: var(--warm-wht); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start; /* TOP-aligned — photo top matches text top */
}
.about-img-wrap {
  position: relative;
  padding-bottom: 20px; /* space for float card */
}
.about-photo {
  border-radius: 20px;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
  display: block;
  vertical-align: top;
}
.about-img-placeholder {
  background: linear-gradient(135deg, var(--teal-dk), var(--teal-md));
  border-radius: 20px;
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  text-align: center;
  padding: 24px;
}
.about-img-icon { font-size: 4rem; margin-bottom: 12px; }
.about-float-card {
  position: absolute;
  bottom: 0;
  right: -18px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.about-float-val {
  font-family: var(--ff-head);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.about-float-lbl { font-size: .72rem; opacity: .85; margin-top: 4px; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.value-item {
  background: var(--lt-gray);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--teal-dk);
}
.vi-icon { font-size: 1.2rem; margin-bottom: 4px; }

/* ================================================
   TESTIMONIALS
================================================ */
.testimonials-section { background: var(--lt-gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: .9rem;
  font-style: italic;
  color: var(--charcoal);
  margin-bottom: 18px;
  line-height: 1.7;
}
.testimonial-author { font-weight: 700; font-size: .85rem; color: var(--teal-dk); }
.testimonial-role { font-size: .78rem; color: var(--mid-gray); }

/* ================================================
   PRICING
================================================ */
.pricing-section { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.price-card {
  background: #fff;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 26px;
  transition: box-shadow .22s;
}
.price-card:hover { box-shadow: var(--shadow); }
.price-card.featured {
  border-color: var(--gold);
  position: relative;
}
.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff;
  font-size: .68rem; font-weight: 700;
  padding: 3px 14px; border-radius: 20px;
  white-space: nowrap;
}
.price-card h3 { color: var(--teal-dk); font-size: 1.05rem; margin-bottom: 10px; }
.price-amt {
  font-family: var(--ff-head);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--charcoal);
  line-height: 1;
  margin: 14px 0 6px;
}
.price-amt sup { font-size: 1.1rem; vertical-align: top; margin-top: 7px; }
.per { font-size: .82rem; font-family: var(--ff-body); font-weight: 400; color: var(--mid-gray); }
.price-duration { color: var(--mid-gray); font-size: .82rem; margin-bottom: 20px; }
.price-features li {
  font-size: .85rem;
  color: var(--mid-gray);
  padding: 8px 0;
  border-bottom: 1px solid var(--lt-gray);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.price-features li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.price-features li:last-child { border-bottom: none; }

/* Dark pricing card — Islamic Org */
.price-card-dark {
  background: linear-gradient(135deg, var(--teal-dk), var(--teal-md));
  border-color: rgba(201,168,76,.25);
}
.price-card-dark-title { color: var(--gold-lt) !important; }
.price-amt-light { color: #fff !important; }
.price-duration-light { color: rgba(255,255,255,.6) !important; }
.price-features-teal li { color: var(--gold-lt) !important; border-color: rgba(255,255,255,.07) !important; }
.price-features-teal li::before { color: var(--gold-lt) !important; }

/* ================================================
   WHY GOMAA-LCC (SEO INTELLIGENCE)
================================================ */
.seo-section { background: var(--warm-wht); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow .22s, transform .22s;
}
.why-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.why-icon { font-size: 2rem; margin-bottom: 12px; }
.why-card h3 { color: var(--teal-dk); font-size: 1.05rem; margin-bottom: 8px; }
.why-card p { font-size: .87rem; }

/* ================================================
   BLOG GRID
================================================ */
.blog-section { background: var(--cream); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .22s;
}
.blog-card:hover { box-shadow: var(--shadow); }
.blog-img-link img, .blog-card img {
  width: 100%; height: 200px; object-fit: cover;
}
.blog-img-placeholder { height: 200px; background: linear-gradient(135deg, var(--teal-dk), var(--teal-md)); }
.blog-body { padding: 24px; }
.blog-cat { font-size: .72rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.blog-title { font-size: 1.05rem; margin-bottom: 8px; }
.blog-title a { color: var(--charcoal); }
.blog-title a:hover { color: var(--teal); }
.blog-excerpt { font-size: .87rem; margin-bottom: 14px; }
.blog-meta { font-size: .76rem; color: var(--mid-gray); margin-bottom: 8px; }

/* Single post layout */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.single-post { min-width: 0; }
.single-post .entry-content { font-size: 1rem; line-height: 1.85; }
.single-post .entry-content h2,
.single-post .entry-content h3 { margin: 28px 0 12px; color: var(--teal-dk); }
.single-post .entry-content p { margin-bottom: 16px; }
.single-post .entry-content ul,
.single-post .entry-content ol { padding-left: 24px; margin-bottom: 16px; }
.single-post .entry-content li { margin-bottom: 6px; }
.post-thumbnail { border-radius: var(--radius); overflow: hidden; margin-bottom: 32px; }
.post-thumbnail img { width: 100%; max-height: 420px; object-fit: cover; }
.post-tags { margin-top: 32px; font-size: .85rem; color: var(--mid-gray); }
.blog-meta-top { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.blog-meta-top a { color: var(--gold-lt); }

/* Sidebar */
.blog-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.sidebar-cta {
  background: var(--teal-dk);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 28px;
}
.sidebar-cta-icon { font-size: 2rem; margin-bottom: 10px; }
.sidebar-cta h4 { color: var(--gold-lt); margin-bottom: 8px; font-size: 1rem; }
.sidebar-cta p { color: rgba(255,255,255,.7); font-size: .87rem; }
.sidebar-services {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.sidebar-services h4 { color: var(--teal-dk); margin-bottom: 14px; font-size: .9rem; }
.sidebar-services li { border-bottom: 1px solid var(--lt-gray); }
.sidebar-services li:last-child { border-bottom: none; }
.sidebar-services li a { display: block; padding: 8px 0; font-size: .85rem; color: var(--mid-gray); }
.sidebar-services li a:hover { color: var(--teal); }

/* Pagination */
.pagination { margin-top: 48px; display: flex; justify-content: center; }
.pagination .nav-links { gap: 6px; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .85rem;
  color: var(--charcoal);
  transition: all .2s;
}
.pagination .page-numbers:hover,
.pagination .page-numbers.current { background: var(--teal); color: #fff; border-color: var(--teal); }

/* No posts */
.no-posts { text-align: center; padding: 60px 0; }
.no-posts h2 { margin-bottom: 12px; }
.no-posts p { margin-bottom: 28px; }

/* ================================================
   CTA BANNER — "Take the First Step"
================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--teal-dk), var(--teal-md));
  padding: 88px 0;
  text-align: center;
}
.cta-section h2 { color: #fff; margin-bottom: 12px; }
.cta-section > .container > p {
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 auto 10px;
  font-size: 1.04rem;
}
.cta-arabic {
  font-family: var(--ff-ar);
  font-size: .95rem;
  color: rgba(255,255,255,.45);
  margin-bottom: 32px !important;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

/* ================================================
   FOOTER
================================================ */
.site-footer { background: #111; color: rgba(255,255,255,.6); padding: 68px 0 32px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 52px;
}
.footer-brand-name {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 4px;
}
.footer-tagline { font-size: .78rem; color: var(--gold); font-weight: 600; margin-bottom: 12px; }
.footer-desc { font-size: .84rem; line-height: 1.7; margin-bottom: 18px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.footer-contact-list a { font-size: .83rem; color: rgba(255,255,255,.6); }
.footer-contact-list a:hover { color: var(--gold-lt); }
.footer-contact-list span { font-size: .83rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-heading {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: .84rem; color: rgba(255,255,255,.6); }
.footer-links a:hover { color: var(--gold-lt); }

/* Footer column base */
.footer-col { min-width: 0; }
.footer-col .btn {
  width: 100%;
  justify-content: center;
  display: flex;
  box-sizing: border-box;
}
.footer-cta-col p { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .78rem;
}
.footer-legal a { color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: var(--gold-lt); }

/* ================================================
   PAGE CONTENT
================================================ */
.page-content-wrap { max-width: 820px; }
.entry-content { font-size: 1rem; line-height: 1.85; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin: 28px 0 12px; color: var(--teal-dk); }
.entry-content p { margin-bottom: 16px; color: var(--mid-gray); }
.entry-content ul, .entry-content ol { padding-left: 24px; margin-bottom: 16px; }
.entry-content li { margin-bottom: 6px; color: var(--mid-gray); }
.entry-content strong { color: var(--charcoal); }
.entry-content a { color: var(--teal); text-decoration: underline; }

/* ================================================
   ANIMATIONS
================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeInUp .7s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .30s; }
.delay-3 { animation-delay: .45s; }

/* ================================================
   RESPONSIVE — TABLET
================================================ */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-card { max-width: 640px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-float-card { right: 20px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .navbar-inner { padding: 0 20px; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--warm-wht);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 20px 20px;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 14px; }
  .nav-links .cta-nav { margin-left: 0; margin-top: 6px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  .topbar-contact { gap: 6px; }
  .topbar .sep { display: none; }
  .hero { padding: 72px 0 56px; }
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .container { padding: 0 16px; }
  .hero-card { display: none; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ================================================
   ACCESSIBILITY & FOCUS
================================================ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ================================================
   SERVICE DETAIL PAGES
================================================ */
.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.service-detail-main { min-width: 0; }
.service-detail-main h2 {
  font-size: 1.5rem;
  color: var(--teal-dk);
  margin: 36px 0 14px;
}
.service-detail-main h2:first-child { margin-top: 0; }
.service-detail-main p { font-size: .95rem; margin-bottom: 14px; }

.service-detail-list {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--mid-gray);
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.service-detail-list li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.service-topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 16px 0 28px;
}
.service-topic {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--charcoal);
}
.service-topic span { font-size: 1.2rem; flex-shrink: 0; }

.service-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--teal-dk), var(--teal-md));
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 40px;
}
.service-cta-banner h3 { color: var(--gold-lt); margin-bottom: 4px; font-size: 1.1rem; }
.service-cta-banner p  { color: rgba(255,255,255,.7); font-size: .88rem; }

/* Service Sidebar */
.service-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 20px; }
.sidebar-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
}
.sidebar-box h4 {
  font-family: var(--ff-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.sidebar-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--lt-gray);
  font-size: .85rem;
  color: var(--mid-gray);
}
.sidebar-price-row:last-of-type { border-bottom: none; }
.sidebar-services-list li { border-bottom: 1px solid var(--lt-gray); }
.sidebar-services-list li:last-child { border-bottom: none; }
.sidebar-services-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: .85rem;
  color: var(--mid-gray);
}
.sidebar-services-list li a:hover { color: var(--teal); }
.sidebar-services-list li a span { font-size: 1rem; }

/* Service cards — dual action buttons */
.svc-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn-svc-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--gold);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-weight: 600;
  border: 2px solid var(--gold);
  transition: all .2s;
  white-space: nowrap;
}
.btn-svc-book:hover { background: var(--gold-dk); border-color: var(--gold-dk); color: #fff; }
.consult-card .btn-svc-book { background: var(--gold); border-color: var(--gold); color: #fff; }
.consult-card .btn-svc-book:hover { background: var(--gold-dk); color: #fff; }

/* Breadcrumb */
.breadcrumb { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.breadcrumb a { color: var(--gold-lt); }
.breadcrumb a:hover { color: #fff; }

/* Responsive service detail */
@media (max-width: 900px) {
  .service-detail-layout { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .service-cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .service-topics-grid { grid-template-columns: 1fr; }
}

/* ================================================
   ABOUT PAGE — PHOTO TOP ALIGNMENT FIX
================================================ */
/* Ensure photo column sticks to top even when text is much taller */
.about-inner > .about-img-wrap {
  align-self: start;
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
/* On mobile, un-stick */
@media (max-width: 1024px) {
  .about-inner > .about-img-wrap {
    position: static;
  }
}

/* ================================================
   GOMAA FORMS — Shared field styles (gf-*)
================================================ */
.gf-section {
  font-size: .8rem; font-weight: 700; color: var(--teal);
  text-transform: uppercase; letter-spacing: .1em;
  padding: 14px 0 10px; border-bottom: 2px solid var(--gold-lt);
  margin: 28px 0 18px;
}
.gf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px; }
.gf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 4px; }
.gf-label { font-size: .78rem; font-weight: 600; color: var(--teal-dk); text-transform: uppercase; letter-spacing: .06em; }
.gf-req { color: #B83B3B; }
.gf-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: var(--ff-body); font-size: .92rem;
  background: var(--cream); color: var(--charcoal);
  transition: border-color .2s, box-shadow .2s;
}
.gf-input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,107,107,.12); }
.gf-select {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-family: var(--ff-body); font-size: .92rem;
  background: var(--cream); color: var(--charcoal);
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230F4545' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 38px; cursor: pointer;
}
.gf-select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px rgba(26,107,107,.12); }
.gf-terms {
  background: #f8faff; border: 1px solid #e3eafc;
  border-radius: 8px; padding: 20px 24px; margin-bottom: 16px;
}
.gf-terms p { font-size: .88rem; color: var(--mid-gray); line-height: 1.78; margin-bottom: 12px; }
.gf-terms p:last-child { margin-bottom: 0; }
@media (max-width: 640px) {
  .gf-row2 { grid-template-columns: 1fr; }
}

/* ================================================
   BOOKS PAGE
================================================ */
.book-card { display:grid; grid-template-columns:300px 1fr; gap:56px; align-items:start; padding:56px 0; }
.book-card-reverse { grid-template-columns:1fr 300px; }
.book-card-reverse .book-cover-col { order:2; }
.book-card-reverse .book-info-col { order:1; }
.book-cover-col { display:flex; flex-direction:column; align-items:center; gap:20px; position:sticky; top:calc(var(--nav-h) + 24px); }
.book-cover-wrap { width:100%; border-radius:14px; overflow:hidden; box-shadow:0 16px 48px rgba(10,50,50,.22); }
.book-cover-img { width:100%; height:auto; display:block; }
.book-badges-row { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:16px; }
.book-badge { display:inline-block; background:var(--gold-lt); color:var(--teal-dk); font-size:.7rem; font-weight:700; text-transform:uppercase; letter-spacing:.08em; padding:3px 12px; border-radius:20px; }
.book-badge-dark { background:var(--teal-dk); color:#fff; }
.book-title { font-size:clamp(1.35rem,2.5vw,2rem); color:var(--teal-dk); margin-bottom:10px; line-height:1.25; }
.book-subtitle { font-size:.95rem; color:var(--gold); font-style:italic; margin-bottom:18px; font-weight:500; }
.book-desc { font-size:.95rem; color:var(--mid-gray); line-height:1.8; margin-bottom:28px; }
.book-details-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; background:var(--lt-gray); border-radius:var(--radius); padding:22px 24px; }
.book-detail { display:flex; flex-direction:column; gap:3px; }
.book-detail-lbl { font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.07em; color:var(--teal-dk); }
.book-detail-val { font-size:.88rem; color:var(--mid-gray); }
.book-divider { height:1px; background:var(--border); margin:0; }
@media(max-width:900px){.book-card,.book-card-reverse{grid-template-columns:1fr!important;gap:32px;}.book-cover-col{position:static;max-width:260px;margin:0 auto;}.book-details-grid{grid-template-columns:1fr;}}

/* ================================================
   HUMAN VERIFICATION WIDGET
================================================ */
.gf-human-verify {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--lt-gray);
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-top: 8px;
}
.gf-verify-label {
  font-size: .95rem;
  color: var(--charcoal);
  font-weight: 500;
}
.gf-verify-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--teal);
  min-width: 24px;
  text-align: center;
}
.gf-verify-op {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
}
.gf-verify-input {
  width: 90px;
  padding: 10px 14px;
  border: 2px solid var(--teal);
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  font-family: var(--ff-body);
  color: var(--charcoal);
  background: #fff;
}
.gf-verify-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(26,107,107,.15);
}
.gf-verify-hint {
  font-size: .82rem;
  color: var(--mid-gray);
  margin-left: auto;
}
@media (max-width: 480px) {
  .gf-human-verify { gap: 10px; }
  .gf-verify-hint { margin-left: 0; width: 100%; }
}
