/*
Theme Name: Naqsh & Hajal | نقش وحجل
Theme URI: https://naqshhajal.com
Author: نقش وحجل
Description: قالب WordPress عربي RTL مخصص لمشروع نقش وحجل — حفر مخصص وحجول طيور
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: Private
Text Domain: naqsh-hajal
*/

/* ═══════════════════════════════════════
   1. VARIABLES & RESET
═══════════════════════════════════════ */
:root {
  --navy:    #0D1B35;
  --orange:  #E8721A;
  --blue:    #2B5BA8;
  --white:   #FFFFFF;
  --gray:    #F2F2F2;
  --dgray:   #555555;
  --lgray:   #AAAAAA;
  --black:   #111111;
  --green-wa:#25D366;
  --radius:  8px;
  --shadow:  0 2px 16px rgba(0,0,0,.08);
  --shadow-lg:0 4px 32px rgba(0,0,0,.14);
  --transition: .25s ease;
  --container:1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Tajawal', Arial, sans-serif;
  font-size: 17px;
  color: var(--black);
  background: var(--white);
  direction: rtl;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ═══════════════════════════════════════
   2. TYPOGRAPHY
═══════════════════════════════════════ */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
p  { margin-bottom: 1rem; }

/* ═══════════════════════════════════════
   3. LAYOUT
═══════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-lg { padding: 110px 0; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

/* Section heading with orange underline */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.section-heading h2 {
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}
.section-heading h2::after {
  content: '';
  position: absolute;
  bottom: 0; right: 50%; left: 50%;
  transform: translateX(50%);
  width: 70px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
}
.section-heading p { color: var(--dgray); font-size: 1.05rem; margin-top: 10px; }

/* ═══════════════════════════════════════
   4. BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #d4641a;
  border-color: #d4641a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,114,26,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline-orange:hover {
  background: var(--orange);
  color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: #162c56; }
.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}
.btn-whatsapp:hover { background: #20b957; transform: translateY(-2px); }
.btn-lg { padding: 16px 40px; font-size: 1.1rem; }
.btn-sm { padding: 9px 20px; font-size: .9rem; }
.btn-block { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════
   5. HEADER / NAV
═══════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  transition: var(--transition);
}
#site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.4); }

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

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.logo-icon img { width: 38px; height: 38px; object-fit: contain; }
.logo-text { line-height: 1.15; }
.logo-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
}
.logo-text span {
  font-size: .72rem;
  color: var(--orange);
  letter-spacing: .5px;
}

/* Main Nav */
.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.main-nav ul li a {
  color: rgba(255,255,255,.85);
  font-size: .92rem;
  font-weight: 600;
  padding: 8px 13px;
  border-radius: 6px;
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.main-nav ul li.menu-cta a {
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
}
.main-nav ul li.menu-cta a:hover { background: #d4641a; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.wa-header-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--green-wa);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 700;
  transition: var(--transition);
}
.wa-header-btn:hover { background: #20b957; }
.wa-header-btn svg { width: 18px; height: 18px; fill: currentColor; }

.portal-header-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--blue);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 700;
  transition: var(--transition);
}
.portal-header-btn:hover { background: #1e4a96; }
.portal-header-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* Portal CTA Box (homepage) */
.portal-cta-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 32px 36px;
  flex-wrap: wrap;
}
.portal-cta-icon { font-size: 2.5rem; flex-shrink: 0; }
.portal-cta-content { flex: 1; min-width: 200px; }
.portal-cta-content h2 { font-size: 1.5rem; margin-bottom: 8px; color: var(--navy); }
.portal-cta-content p  { margin: 0; color: var(--dgray); font-size: .97rem; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 38px; height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(255,255,255,.1);
  transition: var(--transition);
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   6. HERO SECTION
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #162c56 60%, #1a3a6e 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: .12;
}
/* Decorative circles */
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(232,114,26,.15);
  top: -100px; left: -100px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,114,26,.2);
  color: var(--orange);
  border: 1px solid rgba(232,114,26,.4);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: .5px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 8px;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  color: var(--orange);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 36px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  text-align: center;
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; margin: 0 auto 4px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════
   7. CHOICE CARDS (ماذا تريد أن ننقش)
═══════════════════════════════════════ */
.choice-section {
  background: var(--gray);
  padding: 70px 0;
}
.choice-question {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 40px;
}
.choice-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.choice-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px 16px 22px;
  text-align: center;
  border: 2px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--navy);
  display: block;
}
.choice-card:hover {
  border-color: var(--orange);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.choice-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}
.choice-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.choice-card p  { font-size: .82rem; color: var(--dgray); margin: 0; line-height: 1.4; }

/* ═══════════════════════════════════════
   8. SERVICE CARDS
═══════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--orange);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 58px; height: 58px;
  background: rgba(43,91,168,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.service-card p  { font-size: .92rem; color: var(--dgray); margin-bottom: 18px; }
.service-link {
  color: var(--orange);
  font-weight: 700;
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ═══════════════════════════════════════
   9. BIRD RINGS SECTION
═══════════════════════════════════════ */
.rings-section { background: linear-gradient(135deg, var(--navy) 0%, #1a2f5c 100%); color: var(--white); }
.rings-section .section-heading h2 { color: var(--white); }
.rings-section .section-heading h2::after { background: var(--orange); }
.rings-section .section-heading p { color: rgba(255,255,255,.75); }
.sizes-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}
.size-badge {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 700;
  transition: var(--transition);
}
.size-badge:hover, .size-badge.active {
  background: var(--orange);
  border-color: var(--orange);
}
.colors-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.color-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
}
.color-dot-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
}

/* ═══════════════════════════════════════
   10. MATERIALS GRID
═══════════════════════════════════════ */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.material-card {
  background: var(--gray);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}
.material-card:hover {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.material-card .mat-icon { font-size: 2.5rem; margin-bottom: 14px; }
.material-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.material-card p  { font-size: .88rem; color: var(--dgray); margin: 0; }

/* ═══════════════════════════════════════
   11. HOW IT WORKS
═══════════════════════════════════════ */
.steps-section { background: var(--gray); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.step-number {
  width: 54px; height: 54px;
  background: var(--navy);
  color: var(--orange);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p  { font-size: .9rem; color: var(--dgray); margin: 0; }

/* ═══════════════════════════════════════
   12. PORTFOLIO / GALLERY
═══════════════════════════════════════ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  background: var(--gray);
  aspect-ratio: 4/3;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: .4s ease; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,53,.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { color: var(--white); font-size: 1rem; margin-bottom: 4px; }
.portfolio-overlay span { color: var(--orange); font-size: .82rem; }
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  justify-content: center;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid var(--lgray);
  background: var(--white);
  color: var(--dgray);
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.filter-tab.active, .filter-tab:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

/* ═══════════════════════════════════════
   13. PRICES TABLE
═══════════════════════════════════════ */
.prices-section { background: var(--gray); }
.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.price-table th {
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}
.price-table td {
  padding: 16px 24px;
  text-align: center;
  font-size: .95rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.price-table tr:nth-child(even) td { background: var(--gray); }
.price-table tr:hover td { background: rgba(43,91,168,.06); }
.price-amount {
  font-weight: 800;
  color: var(--orange);
  font-size: 1.1rem;
}
.price-note {
  text-align: center;
  color: var(--dgray);
  font-size: .9rem;
  margin-top: 16px;
}

/* ═══════════════════════════════════════
   14. CTA SECTION
═══════════════════════════════════════ */
.cta-section {
  background: var(--navy);
  padding: 90px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 600px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════
   15. ABOUT SNIPPET
═══════════════════════════════════════ */
.about-snippet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 { margin-bottom: 18px; }
.about-text p   { color: var(--dgray); margin-bottom: 14px; }
.about-features { list-style: none; margin: 20px 0 28px; }
.about-features li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--black);
}
.about-features li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-image { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 400px; object-fit: cover; }

/* ═══════════════════════════════════════
   16. FOOTER
═══════════════════════════════════════ */
#site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-about .site-logo { margin-bottom: 16px; }
.footer-about p { font-size: .9rem; line-height: 1.7; }
.footer-tagline { color: var(--orange); font-style: italic; font-size: .88rem; margin-top: 10px; }
.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--orange); padding-right: 6px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .9rem;
}
.footer-contact-item svg { width: 18px; height: 18px; fill: var(--orange); flex-shrink: 0; }
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--orange); }

/* WhatsApp Float */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: wa-pulse 2.5s infinite;
}
.wa-float:hover { transform: scale(1.12); }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.7), 0 0 0 8px rgba(37,211,102,.15); }
}

/* ═══════════════════════════════════════
   17. FORMS (Gravity Forms Overrides)
═══════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 120px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.8); max-width: 650px; margin: 14px auto 0; }
.page-hero .breadcrumb {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  margin-bottom: 18px;
}
.page-hero .breadcrumb a { color: var(--orange); }

/* Form Container */
.form-section { padding: 70px 0; background: var(--gray); }
.form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  max-width: 860px;
  margin: 0 auto;
}
/* Missing GF fallback box */
.gf-missing-box {
  padding: 36px 28px;
  text-align: center;
  background: #fff8e1;
  border: 2px solid #ffc107;
  border-radius: 12px;
  color: var(--navy);
}
.gf-missing-box h3 { color: #856404; margin-bottom: 10px; }
.gf-missing-box p  { color: var(--dgray); margin-bottom: 0; }

.form-info-box {
  background: #EBF5FB;
  border-right: 4px solid var(--blue);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-bottom: 32px;
  font-size: .92rem;
  color: var(--navy);
}
.form-info-box strong { color: var(--blue); }
.form-section-title {
  background: var(--navy);
  color: var(--orange);
  font-weight: 700;
  font-size: .95rem;
  padding: 10px 18px;
  border-radius: 6px;
  margin: 30px 0 20px;
}

/* GF Overrides */
.gform_wrapper .gfield_label {
  font-family: 'Cairo', inherit !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  font-size: .95rem !important;
  margin-bottom: 6px !important;
}
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="number"],
.gform_wrapper select,
.gform_wrapper textarea {
  font-family: 'Cairo', inherit !important;
  border: 2px solid #ddd !important;
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 1rem !important;
  transition: var(--transition) !important;
  direction: rtl !important;
  width: 100% !important;
  background: var(--white) !important;
}
.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
  border-color: var(--blue) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(43,91,168,.15) !important;
}
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_page_footer input[type="submit"] {
  background: var(--orange) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 15px 40px !important;
  border-radius: 8px !important;
  font-family: 'Cairo', inherit !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  width: 100% !important;
}
.gform_wrapper .gform_footer input[type="submit"]:hover {
  background: #d4641a !important;
}
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error select,
.gform_wrapper .gfield_error textarea {
  border-color: #e53e3e !important;
}
.gform_wrapper .validation_message { color: #e53e3e !important; font-size: .85rem !important; }
.gform-theme--foundation .gfield--type-checkbox .gfield_checkbox,
.gform-theme--foundation .gfield--type-radio .gfield_radio {
  gap: 10px !important;
}

/* Package info box (shown via conditional logic) */
.package-info-box {
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 10px;
  margin: 16px 0;
  display: none;
}
.package-info-box.visible { display: block; }
.package-info-box .pkg-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
}
.package-info-box .pkg-qty { font-size: .9rem; opacity: .85; }

/* Confirmation after submit */
.wa-after-submit {
  text-align: center;
  margin-top: 28px;
  padding: 24px;
  background: var(--gray);
  border-radius: 10px;
}
.wa-after-submit p { margin-bottom: 14px; color: var(--dgray); }

/* ═══════════════════════════════════════
   18. ABOUT PAGE
═══════════════════════════════════════ */
.about-full .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 60px;
}
.stat-card {
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 32px 20px;
}
.stat-card .stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--orange);
  display: block;
}
.stat-card .stat-lbl { font-size: .9rem; opacity: .85; }

/* ═══════════════════════════════════════
   19. FAQ PAGE
═══════════════════════════════════════ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
}
.faq-question {
  background: var(--navy);
  color: var(--white);
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.faq-question:hover { background: #162c56; }
.faq-question .faq-icon {
  width: 28px; height: 28px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  background: var(--white);
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: .95rem;
  color: var(--dgray);
  border-right: 4px solid var(--orange);
}
.faq-item.open .faq-answer { max-height: 200px; padding: 18px 24px; }

/* ═══════════════════════════════════════
   20. PRICES PAGE
═══════════════════════════════════════ */
.custom-price-box {
  background: var(--gray);
  border-radius: 12px;
  padding: 40px;
  margin-top: 50px;
  text-align: center;
}
.custom-price-box h3 { margin-bottom: 14px; }
.custom-price-box p { color: var(--dgray); margin-bottom: 22px; }

/* ═══════════════════════════════════════
   21. CONTACT PAGE
═══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 32px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--orange); margin-bottom: 28px; font-size: 1.3rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-detail-text strong { display: block; color: var(--orange); margin-bottom: 3px; font-size: .88rem; }
.contact-detail-text span  { font-size: .92rem; opacity: .85; }
.contact-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--green-wa);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 28px;
  transition: var(--transition);
  justify-content: center;
}
.contact-wa-btn:hover { background: #20b957; }

/* ═══════════════════════════════════════
   22. RESPONSIVE — Tablet
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .choice-cards       { grid-template-columns: repeat(3,1fr); }
  .services-grid      { grid-template-columns: repeat(2,1fr); }
  .materials-grid     { grid-template-columns: repeat(2,1fr); }
  .steps-grid         { grid-template-columns: repeat(2,1fr); }
  .about-snippet      { grid-template-columns: 1fr; }
  .about-image        { display: none; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-about       { grid-column: 1/-1; }
  .contact-grid       { grid-template-columns: 1fr; }
  .about-full .about-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   23. RESPONSIVE — Mobile
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .menu-toggle        { display: flex; }
  .main-nav {
    position: fixed;
    top: 72px; right: 0; left: 0;
    background: var(--navy);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .main-nav.open { max-height: 500px; }
  .main-nav ul {
    flex-direction: column;
    align-items: flex-end;
    padding: 16px 20px;
    gap: 2px;
  }
  .main-nav ul li { width: 100%; }
  .main-nav ul li a { display: block; width: 100%; padding: 12px 16px; }
  .wa-header-btn span, .portal-header-btn span { display: none; }

  .choice-cards       { grid-template-columns: repeat(2,1fr); }
  .services-grid      { grid-template-columns: 1fr; }
  .materials-grid     { grid-template-columns: 1fr 1fr; }
  .steps-grid         { grid-template-columns: 1fr; }
  .portfolio-grid     { grid-template-columns: repeat(2,1fr); }
  .footer-grid        { grid-template-columns: 1fr; gap: 30px; }
  .form-wrapper       { padding: 26px 18px; }
  .price-table th, .price-table td { padding: 12px 10px; font-size: .85rem; }
  .stat-row           { grid-template-columns: 1fr; }
  .cta-buttons        { flex-direction: column; align-items: center; }
  .hero-buttons       { flex-direction: column; align-items: center; }
  .hero-buttons .btn  { width: 100%; max-width: 300px; justify-content: center; }
  .section            { padding: 55px 0; }
}

@media (max-width: 480px) {
  .choice-cards       { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .portfolio-grid     { grid-template-columns: 1fr; }
  .materials-grid     { grid-template-columns: 1fr; }
}
