/*
Theme Name: Evora Fire Protective Coating
Theme URI: https://evora-fireproofing.com
Author: Evora Technical Services
Description: Custom WordPress theme for Evora Technical Services — UAE's leading fireproofing & fire retardant company.
Version: 1.0.0
Text Domain: evora
*/

/* ═══════════════════════════════════════════════════════
   EVORA THEME — Complete Stylesheet
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #ffffff;
  color: #374151;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', Georgia, serif;
  font-weight: 800;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 0.5em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }
p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 1em;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 640px) { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 40px; } }

.section-spacing {
  padding: 80px 0;
}
@media (min-width: 640px) {
  .section-spacing { padding: 96px 0; }
}
@media (min-width: 1024px) {
  .section-spacing { padding: 120px 0; }
}

.section-spacing-sm {
  padding: 56px 0;
}
@media (min-width: 640px) {
  .section-spacing-sm { padding: 72px 0; }
}
@media (min-width: 1024px) {
  .section-spacing-sm { padding: 88px 0; }
}

.section-light { background: #f9fafb; }
.section-dark { background: #111111; }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 28px; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}
.btn-fire {
  background: #b91c1c;
  color: #ffffff;
  border-color: #b91c1c;
}
.btn-fire:hover {
  background: #991b1b;
  border-color: #991b1b;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #111111;
  border-color: #111111;
}
.btn-outline:hover {
  background: #111111;
  color: #ffffff;
}
.btn-white {
  background: #ffffff;
  color: #b91c1c;
  border-color: #ffffff;
}
.btn-white:hover {
  background: #b91c1c;
  color: #ffffff;
  border-color: #b91c1c;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 2px solid #d4a017;
  background: #d4a017;
  color: #111111;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
}
.btn-gold:hover {
  background: #b8860b;
  border-color: #b8860b;
}

/* ── Accent Line ── */
.accent-line {
  width: 40px;
  height: 2px;
  background: #b91c1c;
}

/* ── Top Bar ── */
.top-bar {
  background: #111111;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: #9ca3af;
}
.top-bar a {
  color: #9ca3af;
  transition: color 0.3s;
}
.top-bar a:hover {
  color: #ef4444;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar-left a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar-right a {
  color: #6b7280;
  transition: color 0.3s;
}
.top-bar-right a:hover {
  color: #ef4444;
}

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.navbar-main {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  transition: all 0.3s;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-logo img {
  height: 40px;
  width: auto;
}
.navbar-links {
  display: none;
  align-items: center;
  gap: 4px;
}
@media (min-width: 1024px) {
  .navbar-links { display: flex; }
}
.navbar-links a {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 10px 16px;
  transition: color 0.3s;
}
.navbar-links a:hover,
.navbar-links a.active {
  color: #b91c1c;
}
.navbar-cta {
  display: none;
}
@media (min-width: 1024px) {
  .navbar-cta { display: inline-flex; }
}

/* Dropdown */
.nav-item {
  position: relative;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 100;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}
.nav-dropdown-inner {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 1px solid #f3f4f6;
  padding: 10px 0;
  min-width: 260px;
}
.nav-dropdown-inner a {
  display: block;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 500;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: all 0.2s;
}
.nav-dropdown-inner a:hover {
  color: #b91c1c;
  background: #fef2f2;
}

/* Mobile Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}
.mobile-toggle span {
  width: 20px;
  height: 2px;
  background: #111111;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-height: 80vh;
  overflow-y: auto;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #f3f4f6;
}
.mobile-menu a:hover {
  color: #b91c1c;
  background: #fef2f2;
}
.mobile-menu .sub-link {
  padding-left: 48px;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.2) 100%);
}
.hero-overlay-side {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.hero-content {
  position: relative;
  padding-bottom: 80px;
  width: 100%;
}
@media (min-width: 1024px) {
  .hero-content { padding-bottom: 112px; }
}
.hero-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-label-line {
  width: 40px;
  height: 2px;
  background: #ef4444;
}
.hero-label-text {
  font-size: 13px;
  font-weight: 700;
  color: #f87171;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero-title .text-crimson {
  color: #ef4444;
}
.hero-desc {
  font-size: 17px;
  color: #d1d5db;
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-trust-icon {
  width: 24px;
  height: 24px;
  background: rgba(239, 68, 68, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-trust-icon svg {
  width: 14px;
  height: 14px;
  color: #f87171;
}
.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, #ef4444, transparent);
}

/* ── Page Hero (inner pages) ── */
.page-hero {
  position: relative;
  background: #111111;
  overflow: hidden;
  padding: 160px 0 56px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #111111 0%, rgba(17,17,17,0.7) 50%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}
.page-hero-breadcrumb a {
  color: #9ca3af;
  transition: color 0.3s;
}
.page-hero-breadcrumb a:hover {
  color: #ef4444;
}
.page-hero-breadcrumb .current {
  color: #ef4444;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #ffffff;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 15px;
  color: #9ca3af;
  max-width: 560px;
}
.page-hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #b91c1c, #ef4444, transparent);
}

/* ── Service Cards ── */
.service-card {
  background: #ffffff;
  border: 1px solid #f3f4f6;
  transition: all 0.3s ease;
  overflow: hidden;
}
.service-card:hover {
  border-color: #fecaca;
}
.service-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-image img {
  transform: scale(1.1);
}
.service-card-body {
  padding: 28px;
}
.service-card-body h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111111;
  margin-bottom: 10px;
  transition: color 0.3s;
}
.service-card:hover .service-card-body h3 {
  color: #b91c1c;
}
.service-card-body p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 16px;
}
.service-card-link {
  font-size: 12px;
  font-weight: 700;
  color: #b91c1c;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card-link svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
}
.service-card:hover .service-card-link svg {
  transform: translateX(4px);
}

/* ── Approval Badges ── */
.approval-badge {
  padding: 20px;
  text-align: center;
  border: 1px solid #f3f4f6;
  transition: all 0.3s;
}
.approval-badge:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.approval-badge .code {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 6px;
}
.approval-badge .name {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Color variants */
.badge-dcd .code { color: #b91c1c; }
.badge-dcd { background: #fef2f2; border-color: #fecaca; }
.badge-adcd .code { color: #1d4ed8; }
.badge-adcd { background: #eff6ff; border-color: #bfdbfe; }
.badge-scd .code { color: #059669; }
.badge-scd { background: #ecfdf5; border-color: #a7f3d0; }
.badge-rakcd .code { color: #d97706; }
.badge-rakcd { background: #fffbeb; border-color: #fde68a; }
.badge-adnoc .code { color: #16a34a; }
.badge-adnoc { background: #f0fdf4; border-color: #bbf7d0; }
.badge-cmw .code { color: #7c3aed; }
.badge-cmw { background: #f5f3ff; border-color: #ddd6fe; }

/* ── Client Logos Marquee ── */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
}
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 10;
}
.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}
.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 36px;
  margin: 0 16px;
  border: 1px solid #f3f4f6;
  background: #f9fafb;
}
.marquee-item span {
  font-size: 15px;
  font-weight: 700;
  color: #d1d5db;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Contact Form ── */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #111111;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #b91c1c;
  box-shadow: 0 0 0 1px #b91c1c;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-status {
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}
.form-status.success { color: #16a34a; }
.form-status.error { color: #dc2626; }

/* ── Project Cards ── */
.project-card {
  border: 1px solid #f3f4f6;
  background: #ffffff;
  transition: all 0.3s;
}
.project-card:hover {
  border-color: #fecaca;
}
.project-card-image {
  position: relative;
  height: 208px;
  overflow: hidden;
  background: #f3f4f6;
}
.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.project-card:hover .project-card-image img {
  transform: scale(1.1);
}
.project-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #b91c1c;
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
}
.project-card-body {
  padding: 24px;
}
.project-card-body h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #111111;
  margin-bottom: 12px;
}
.project-card-meta {
  font-size: 14px;
  color: #6b7280;
}
.project-card-meta div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}
.project-card-meta div:last-child {
  border-bottom: none;
}
.project-card-meta .label {
  color: #9ca3af;
}
.project-card-meta .value {
  font-weight: 500;
  color: #374151;
}

/* ── Sidebar ── */
.service-sidebar {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
  padding: 32px;
  margin-bottom: 28px;
}
.service-sidebar h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #111111;
  margin-bottom: 20px;
}
.service-sidebar nav a {
  display: block;
  padding: 11px 18px;
  font-size: 15px;
  font-weight: 500;
  color: #4b5563;
  border-left: 2px solid transparent;
  transition: all 0.3s;
}
.service-sidebar nav a:hover {
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.03);
}
.service-sidebar nav a.active {
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.05);
  border-left-color: #b91c1c;
}

.sidebar-cta {
  background: #111111;
  padding: 28px;
}
.sidebar-cta h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin-bottom: 14px;
}
.sidebar-cta p {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* ── Prose (service page content) ── */
.prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #111111;
  margin-top: 40px;
  margin-bottom: 16px;
}
.prose h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111111;
  margin-top: 32px;
  margin-bottom: 12px;
}
.prose p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: #4b5563;
}
.prose ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}
.prose ul li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: #4b5563;
}
.prose a {
  color: #b91c1c;
  text-decoration: underline;
}

/* ── CTA Section ── */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
}
.cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.15'%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/g%3E%3C/svg%3E");
}
.cta-content {
  position: relative;
  text-align: center;
}
.cta-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 18px;
}
.cta-content p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* ── About Section ── */
.about-text p {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(185, 28, 28, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-feature-icon svg {
  width: 18px;
  height: 18px;
  color: #b91c1c;
}
.about-feature h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* ── Stats Grid ── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #e5e7eb;
}
.stats-grid > div {
  background: #ffffff;
  padding: 40px 32px;
  text-align: center;
}
.stats-number {
  font-size: 42px;
  font-weight: 900;
  color: #b91c1c;
  margin-bottom: 6px;
  font-family: 'Open Sans', serif;
}
.stats-label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ── Mission/Vision ── */
.mission-card {
  padding: 48px;
}
.mission-card.dark {
  background: #111111;
}
.mission-card.crimson {
  background: #b91c1c;
}
.mission-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.mission-card.crimson .mission-icon {
  background: rgba(255,255,255,0.1);
}
.mission-card.dark .mission-icon {
  background: rgba(185, 28, 28, 0.2);
}
.mission-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
.mission-card.crimson h3 { color: #ffffff; }
.mission-card.dark h3 { color: #ffffff; }
.mission-card p {
  font-size: 15px;
  line-height: 1.75;
}
.mission-card.crimson p { color: rgba(255,255,255,0.8); }
.mission-card.dark p { color: #9ca3af; }

/* ── Testimonial ── */
.testimonial-quote {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #ffffff;
  line-height: 1.65;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: rgba(185, 28, 28, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar span {
  font-size: 15px;
  font-weight: 700;
  color: #ef4444;
}
.testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}
.testimonial-role {
  font-size: 12px;
  color: #6b7280;
}

/* ── Footer ── */
.footer {
  background: #111111;
  position: relative;
  overflow: hidden;
}
.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%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/g%3E%3C/svg%3E");
}
.footer-accent {
  height: 4px;
  background: linear-gradient(to right, #b91c1c, #ef4444, #b91c1c);
}
.footer-content {
  position: relative;
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; }
}
.footer-brand p {
  font-size: 15px;
  color: #9ca3af;
  line-height: 1.75;
  margin: 18px 0 24px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all 0.3s;
}
.footer-social a:hover {
  color: #ffffff;
  border-color: #b91c1c;
}
.footer h4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin-bottom: 24px;
}
.footer-links a {
  display: block;
  font-size: 15px;
  color: #9ca3af;
  padding: 7px 0;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: #ef4444;
}
.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}
.footer-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(185, 28, 28, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-contact-icon svg {
  width: 18px;
  height: 18px;
  color: #ef4444;
}
.footer-contact-item p {
  font-size: 15px;
  color: #9ca3af;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p {
  font-size: 13px;
  color: #6b7280;
}
.footer-bottom-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-bottom-badge svg {
  width: 14px;
  height: 14px;
  color: #ef4444;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* ── Animations ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.animate-fade-up { animation: fade-up 0.7s ease forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

/* ── Utility ── */
.text-center { text-align: center; }
.text-white { color: #ffffff; }
.text-crimson { color: #b91c1c; }
.bg-dark { background: #111111; }
.hidden { display: none; }
@media (min-width: 1024px) { .lg-hidden { display: none; } }
@media (max-width: 1023px) { .lg-only { display: none; } }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #b91c1c; }

/* ── Selection ── */
::selection { background: #b91c1c; color: #ffffff; }

/* ── FAQ Accordion ── */
details {
  transition: all 0.3s ease;
}
details[open] {
  border-color: #b91c1c !important;
  box-shadow: 0 2px 8px rgba(185, 28, 28, 0.08);
}
details summary::-webkit-details-marker {
  display: none;
}
details summary {
  cursor: pointer;
}
details summary svg {
  transition: transform 0.3s ease;
}
details[open] summary svg {
  transform: rotate(180deg);
}

/* ═══════════════════════════════════════════════════════
   LANGUAGE TOGGLE
   ═══════════════════════════════════════════════════════ */

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #b91c1c;
  background: transparent;
  border: 2px solid #b91c1c;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none !important;
  line-height: 1;
  margin-right: 12px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.lang-toggle:hover {
  color: #fff;
  background: #b91c1c;
  border-color: #b91c1c;
}

/* Mobile language toggle */
.lang-switcher-mobile {
  padding: 16px;
  border-top: 1px solid #e5e7eb;
  margin-top: 8px;
}
.lang-toggle-mobile {
  display: block;
  text-align: center;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid #b91c1c;
  border-radius: 8px;
  color: #b91c1c;
  transition: all 0.25s ease;
  text-decoration: none !important;
}
.lang-toggle-mobile:hover {
  background: #b91c1c;
  color: #fff;
}

/* ═══════════════════════════════════════════════════════
   RTL SUPPORT (Arabic)
   ═══════════════════════════════════════════════════════ */

html[dir="rtl"],
html.lang-ar,
body.lang-ar,
body.rtl {
  direction: rtl;
  text-align: right;
}

body.rtl,
body.lang-ar {
  font-family: 'Cairo', 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.rtl h1, body.lang-ar h1,
body.rtl h2, body.lang-ar h2,
body.rtl h3, body.lang-ar h3,
body.rtl h4, body.lang-ar h4,
body.rtl h5, body.lang-ar h5,
body.rtl h6, body.lang-ar h6 {
  font-family: 'Cairo', 'Open Sans', Georgia, serif;
  direction: rtl;
  text-align: right;
}

/* RTL Navbar */
html[dir="rtl"] .navbar-inner,
body.rtl .navbar-inner {
  flex-direction: row-reverse;
}

html[dir="rtl"] .navbar-links,
body.rtl .navbar-links {
  margin-right: 0;
  margin-left: auto;
}

html[dir="rtl"] .navbar-cta,
body.rtl .navbar-cta {
  margin-right: 0;
  margin-left: 16px;
}

html[dir="rtl"] .lang-toggle,
body.rtl .lang-toggle {
  margin-right: 0;
  margin-left: 12px;
}

/* RTL Dropdown */
html[dir="rtl"] .nav-dropdown,
body.rtl .nav-dropdown {
  right: auto;
  left: 0;
}

html[dir="rtl"] .nav-dropdown-inner,
body.rtl .nav-dropdown-inner {
  text-align: right;
}

/* RTL Page Hero */
html[dir="rtl"] .page-hero-breadcrumb,
body.rtl .page-hero-breadcrumb {
  direction: rtl;
}

html[dir="rtl"] .page-hero-breadcrumb span:not(.current)::before,
body.rtl .page-hero-breadcrumb span:not(.current)::before {
  content: "\200F";
}

html[dir="rtl"] .page-hero-content p,
body.rtl .page-hero-content p {
  text-align: right;
}

/* RTL Content */
html[dir="rtl"] .entry-content,
body.rtl .entry-content {
  text-align: right;
}

html[dir="rtl"] .entry-content h2,
html[dir="rtl"] .entry-content h3,
html[dir="rtl"] .entry-content h4,
body.rtl .entry-content h2,
body.rtl .entry-content h3,
body.rtl .entry-content h4 {
  text-align: right;
  direction: rtl;
}

/* RTL Footer */
html[dir="rtl"] .footer-grid,
body.rtl .footer-grid {
  direction: rtl;
}

html[dir="rtl"] .footer-contact p,
body.rtl .footer-contact p {
  text-align: right;
}

/* RTL Stats Grid */
html[dir="rtl"] .stats-grid,
body.rtl .stats-grid {
  direction: rtl;
}

/* RTL Sections */
html[dir="rtl"] .section-heading,
body.rtl .section-heading,
html[dir="rtl"] .section-subheading,
body.rtl .section-subheading {
  text-align: right;
}

html[dir="rtl"] .section-heading .accent-line,
body.rtl .section-heading .accent-line {
  margin-left: 0;
  margin-right: auto;
}

/* RTL Buttons */
html[dir="rtl"] .btn,
body.rtl .btn {
  direction: rtl;
}

/* RTL Forms */
html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select,
body.rtl input,
body.rtl textarea,
body.rtl select {
  text-align: right;
}

/* RTL Lists */
html[dir="rtl"] .services-list li::before,
body.rtl .services-list li::before {
  content: "\2190";
}

/* RTL Breadcrumbs */
html[dir="rtl"] .breadcrumbs,
body.rtl .breadcrumbs {
  direction: rtl;
}

/* RTL Service Cards */
body.rtl .service-card-body h3,
body.lang-ar .service-card-body h3 {
  text-align: right;
  direction: rtl;
}

body.rtl .service-card-body p,
body.lang-ar .service-card-body p {
  text-align: right;
  direction: rtl;
}

/* RTL About Features */
body.rtl .about-feature,
body.lang-ar .about-feature {
  text-align: right;
}

/* RTL Hero */
body.rtl .hero-content,
body.lang-ar .hero-content {
  text-align: right;
}

body.rtl .hero-label,
body.lang-ar .hero-label {
  direction: rtl;
}

body.rtl .hero-trust,
body.lang-ar .hero-trust {
  direction: rtl;
}

body.rtl .hero-buttons,
body.lang-ar .hero-buttons {
  direction: rtl;
  justify-content: flex-start;
}

body.rtl .hero-overlay-side,
body.lang-ar .hero-overlay-side {
  background: linear-gradient(to left, rgba(0,0,0,0.5) 0%, transparent 60%);
}

/* RTL Prose content */
body.rtl .prose,
body.lang-ar .prose {
  text-align: right;
  direction: rtl;
}

body.rtl .prose h2,
body.rtl .prose h3,
body.lang-ar .prose h2,
body.lang-ar .prose h3 {
  text-align: right;
  direction: rtl;
}

body.rtl .prose ul,
body.rtl .prose ol,
body.lang-ar .prose ul,
body.lang-ar .prose ol {
  padding-right: 1.5em;
  padding-left: 0;
}

/* RTL Sidebar */
body.rtl .service-sidebar,
body.lang-ar .service-sidebar {
  text-align: right;
}

body.rtl .service-sidebar nav a,
body.lang-ar .service-sidebar nav a {
  text-align: right;
}

body.rtl .sidebar-cta,
body.lang-ar .sidebar-cta {
  text-align: right;
}

/* RTL Testimonial */
body.rtl .testimonial-quote,
body.lang-ar .testimonial-quote {
  text-align: center;
}

/* RTL Mission Cards */
body.rtl .mission-card,
body.lang-ar .mission-card {
  text-align: right;
}

/* RTL CTA */
body.rtl .cta-content,
body.lang-ar .cta-content {
  text-align: center;
}

/* RTL Grid layouts */
body.rtl .grid-3,
body.lang-ar .grid-3 {
  direction: rtl;
}

/* Mobile RTL */
@media (max-width: 1023px) {
  html[dir="rtl"] .mobile-menu,
  body.rtl .mobile-menu {
    text-align: right;
  }
  
  html[dir="rtl"] .mobile-menu a,
  body.rtl .mobile-menu a {
    text-align: right;
  }

  body.rtl .mobile-toggle,
  body.lang-ar .mobile-toggle {
    margin-left: 12px;
    margin-right: 0;
  }
}

/* ── Blog Article Content ── */
.blog-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #111111;
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #fecaca;
}
.blog-content h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #111111;
  margin: 32px 0 12px;
}
.blog-content p {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog-content ul,
.blog-content ol {
  margin: 16px 0 24px 20px;
}
.blog-content li {
  font-size: 16px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}
.blog-content ol li {
  list-style: decimal;
}
.blog-content strong {
  color: #111111;
  font-weight: 700;
}
.blog-content blockquote {
  border-left: 4px solid #b91c1c;
  padding: 16px 24px;
  margin: 24px 0;
  background: #fef2f2;
  font-style: italic;
  color: #374151;
}
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.blog-content th,
.blog-content td {
  padding: 12px 16px;
  border: 1px solid #f3f4f6;
  text-align: left;
  font-size: 15px;
}
.blog-content th {
  background: #111111;
  color: #ffffff;
  font-weight: 700;
}
.blog-content tr:nth-child(even) {
  background: #f9fafb;
}

/* RTL Blog */
html[dir="rtl"] .blog-content ul,
html[dir="rtl"] .blog-content ol,
body.rtl .blog-content ul,
body.rtl .blog-content ol {
  margin: 16px 20px 24px 0;
}
html[dir="rtl"] .blog-content blockquote,
body.rtl .blog-content blockquote {
  border-left: none;
  border-right: 4px solid #b91c1c;
}
html[dir="rtl"] .blog-content th,
html[dir="rtl"] .blog-content td,
body.rtl .blog-content th,
body.rtl .blog-content td {
  text-align: right;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: #111111;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #111111;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}
html[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 24px;
}
html[dir="rtl"] .whatsapp-tooltip {
  right: auto;
  left: 70px;
}
html[dir="rtl"] .whatsapp-tooltip::after {
  right: auto;
  left: -6px;
  border-left: none;
  border-right: 6px solid #111111;
}
