/* ============================================
   Siant Misr - Appliance Repair Website
   Comprehensive Stylesheet
   ============================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  /* Colors */
  --primary-blue: #0163f7;
  --dark-blue: #162acc;
  --navy-text: #222d4b;
  --dark-navy: #051e33;
  --charcoal: #333e52;
  --gray-heading: #596475;
  --gray-body: #7d8da1;
  --light-gray: #d2d2d2;
  --lighter-gray: #ebebeb;
  --near-white: #f8f9fb;
  --white: #ffffff;
  --light-blue-bg: #f8fbff;
  --success-green: #32cc96;
  --soft-yellow: #ffe283;
  --soft-pink: #ffd3d3;
  --light-purple: #ece8fb;

  /* Typography */
  --font-family: 'Cairo', sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --section-padding-lg: 100px;
  --container-max: 1200px;
  --container-padding: 24px;
  --grid-gap: 24px;
  --card-gap: 16px;
  --component-gap: 32px;
  --inner-padding: 40px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 60px rgba(1, 99, 247, 0.12);
  --shadow-glow: 0 0 20px rgba(1, 99, 247, 0.3);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.625;
  color: var(--navy-text);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- Container ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* ---- Typography ---- */
.h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.21;
}

.h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.24;
}

.h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.31;
}

.h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.42;
}

.h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
}

.lead {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--gray-body);
}

.body-small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71;
}

.micro {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---- Section Label ---- */
.section-label {
  display: inline-block;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .h2 {
  color: var(--navy-text);
  margin-bottom: 12px;
}

.section-header .lead {
  max-width: 600px;
  margin: 0 auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--dark-blue);
  transform: scale(1.02);
}

.btn-secondary {
  background-color: transparent;
  color: var(--navy-text);
  border: 1px solid var(--light-gray);
}

.btn-secondary:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.btn-white {
  background-color: var(--white);
  color: var(--primary-blue);
}

.btn-white:hover {
  background-color: var(--light-blue-bg);
}

.btn-whatsapp {
  background-color: var(--success-green);
  color: var(--white);
}

.btn-whatsapp:hover {
  background-color: #2ab885;
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--inner-padding);
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all var(--transition-slow);
}

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

/* ---- Service Card ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--light-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-card__icon svg,
.service-card__icon i {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
  stroke: var(--primary-blue);
  fill: none;
}

.service-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-text);
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: 14px;
  color: var(--gray-body);
  line-height: 1.71;
  margin-bottom: 12px;
}

.service-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card__link:hover {
  color: var(--dark-blue);
}

/* ---- Brand Card ---- */
.brand-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--lighter-gray);
  text-align: center;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.brand-card__logo {
  width: 100%;
  max-width: 140px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 8px;
}

.brand-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-text);
  margin-bottom: 4px;
}

.brand-card__disclaimer {
  font-size: 11px;
  color: var(--gray-body);
  font-style: italic;
}

/* ---- Grid Systems ---- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--card-gap);
}

/* ---- Badge / Pill ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.badge-blue {
  background: var(--light-blue-bg);
  color: var(--primary-blue);
}

.badge-green {
  background: #e8f9f1;
  color: var(--success-green);
}

.badge-yellow {
  background: #fff8e6;
  color: #b38f00;
}

.badge-gray {
  background: var(--near-white);
  color: var(--gray-body);
}

/* ---- Stars ---- */
.stars {
  display: flex;
  gap: 2px;
  color: var(--soft-yellow);
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ---- Disclaimer Box ---- */
.disclaimer-box {
  background: #fff8f0;
  border-left: 4px solid var(--soft-yellow);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.disclaimer-box p {
  font-size: 13px;
  color: #8b7355;
  line-height: 1.6;
}

/* ---- Independence Box ---- */
.independence-box {
  background: var(--light-blue-bg);
  border-left: 4px solid var(--primary-blue);
  padding: 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
}

.independence-box p {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-text);
  line-height: 1.6;
}

/* ---- Trust Bar ---- */
.trust-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--navy-text);
}

.trust-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ---- Phone Display ---- */
.phone-display {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-display svg {
  width: 24px;
  height: 24px;
}

/* ---- Testimonial Card ---- */
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.testimonial-card__stars {
  margin-bottom: 16px;
}

.testimonial-card__quote {
  font-size: 16px;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.testimonial-card__location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.testimonial-card__appliance {
  font-size: 11px;
  font-weight: 500;
  color: var(--soft-yellow);
  margin-top: 4px;
}

/* ---- Accordion ---- */
.accordion-item {
  border-bottom: 1px solid var(--lighter-gray);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-text);
  transition: color var(--transition-base);
}

.accordion-header:hover {
  color: var(--primary-blue);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--transition-slow);
  flex-shrink: 0;
  color: var(--gray-body);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-body {
  max-height: 500px;
}

.accordion-content {
  padding: 0 0 20px;
  font-size: 16px;
  color: var(--gray-body);
  line-height: 1.625;
}

/* ---- Breadcrumbs ---- */
.breadcrumbs {
  font-size: 13px;
  color: var(--gray-body);
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: var(--primary-blue);
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 4px;
  color: var(--light-gray);
}

/* ---- Form Styles ---- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-text);
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--navy-text);
  transition: border-color var(--transition-base);
  background: var(--white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(1, 99, 247, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-body);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237d8da1' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 12px center;
  padding-left: 36px;
}

/* ---- Blog Card ---- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--lighter-gray);
  overflow: hidden;
  transition: all var(--transition-slow);
}

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

.blog-card__thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card__content {
  padding: 24px;
}

.blog-card__category {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: inline-block;
}

.blog-card__title {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card__excerpt {
  font-size: 14px;
  color: var(--gray-body);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__meta {
  font-size: 12px;
  color: var(--gray-body);
  margin-bottom: 12px;
}

.blog-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-blue);
}

.blog-card__link:hover {
  color: var(--dark-blue);
}

/* ---- Two Column Layout ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col-55-45 {
  grid-template-columns: 55fr 45fr;
}

.two-col-45-55 {
  grid-template-columns: 45fr 55fr;
}

/* ---- Scroll Animation Initial States ---- */
[data-animate] {
  opacity: 0;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="scale-in"] {
  transform: scale(0.9);
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-blue);
  color: var(--white);
  padding: 8px 16px;
  z-index: 100;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--lighter-gray);
  z-index: 1000;
  transition: box-shadow var(--transition-slow);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header__logo-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__logo-name svg {
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
}

.header__logo-tagline {
  font-size: 12px;
  color: var(--gray-body);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy-text);
  position: relative;
  padding: 4px 0;
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-blue);
  transition: transform var(--transition-slow);
}

.header__nav-link:hover::after,
.header__nav-link.active::after {
  transform: translateX(-50%) scale(1);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--primary-blue);
}

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

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-text);
  transition: all var(--transition-base);
}

.header__phone svg {
  width: 16px;
  height: 16px;
  color: var(--primary-blue);
}

.header__phone:hover {
  border-color: var(--primary-blue);
}

.header__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--success-green);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--transition-base);
}

.header__whatsapp:hover {
  background: #2ab885;
}

/* Mobile Menu Toggle */
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-text);
  transition: all var(--transition-slow);
  border-radius: 2px;
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-menu__backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu__link {
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--lighter-gray);
}

.mobile-menu__link:hover {
  color: var(--primary-blue);
}

.mobile-menu__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-text);
  color: var(--white);
  padding-top: 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer__brand-name {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.footer__brand-name svg {
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
}

.footer__brand-tagline {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.footer__phone {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer__heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-base);
}

.footer__link:hover {
  color: var(--white);
}

.footer__disclaimer {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 40px;
}

.footer__disclaimer p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.footer__copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer__copyright p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: calc(72px + var(--section-padding)) 0 var(--section-padding);
  background: var(--white);
}

.hero__container {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
}

.hero__badge {
  margin-bottom: 16px;
}

.hero__title {
  color: var(--navy-text);
  margin-bottom: 16px;
}

.hero__title .highlight {
  color: var(--primary-blue);
}

.hero__subtitle {
  margin-bottom: 28px;
  max-width: 500px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero__trust {
  margin-bottom: 28px;
}

.hero__phone-label {
  font-size: 14px;
  color: var(--gray-body);
}

.hero__media {
  position: relative;
}

.hero__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  height: auto;
}

.hero__stats-card {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__stats-card svg {
  width: 20px;
  height: 20px;
  color: var(--success-green);
}

.hero__stats-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-text);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  padding: var(--section-padding) 0;
  background: var(--near-white);
}

/* ============================================
   BRANDS SECTION
   ============================================ */

.brands-section {
  padding: var(--section-padding) 0;
  background: var(--light-blue-bg);
}

.brands__disclaimer-banner {
  margin-top: 40px;
  background: var(--white);
  border: 1px solid var(--lighter-gray);
  border-radius: var(--radius-md);
  padding: 20px 32px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.brands__disclaimer-banner svg {
  width: 18px;
  height: 18px;
  color: var(--primary-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.brands__disclaimer-banner p {
  font-size: 13px;
  color: var(--gray-body);
  font-style: italic;
  line-height: 1.6;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-it-works {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--light-gray) 0, var(--light-gray) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}

.step {
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

.step__number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow);
}

.step__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-text);
  margin-bottom: 8px;
}

.step__desc {
  font-size: 14px;
  color: var(--gray-body);
  max-width: 260px;
  margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
  padding: var(--section-padding) 0;
  background: var(--near-white);
}

.about__image-wrap {
  position: relative;
}

.about__image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
}

.about__stats-card {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}

.about__stats-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-blue);
}

.about__stats-label {
  font-size: 14px;
  color: var(--gray-body);
}

.about__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy-text);
}

.about__feature svg {
  width: 18px;
  height: 18px;
  color: var(--success-green);
  flex-shrink: 0;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
  padding: var(--section-padding-lg) 0;
  background: var(--dark-navy);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials__header .section-label {
  color: var(--soft-yellow);
}

.testimonials__header .h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.testimonials__header .lead {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials__slider {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonials__slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonials__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.testimonials__arrow:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.testimonials__arrow svg {
  width: 20px;
  height: 20px;
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  transition: all var(--transition-base);
}

.testimonials__dot.active {
  background: var(--primary-blue);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */

.cta-banner {
  padding: var(--section-padding) 0;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
}

.cta-banner__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner__title {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner__subtitle {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-size: 18px;
}

.cta-banner__phone {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.cta-banner__phone svg {
  width: 28px;
  height: 28px;
}

.cta-banner__buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.cta-banner__trust {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.cta-banner__trust span {
  margin: 0 8px;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */

.page-hero {
  padding: calc(72px + 60px) 0 60px;
  background: linear-gradient(180deg, var(--light-blue-bg), var(--white));
  text-align: center;
}

.page-hero__title {
  color: var(--navy-text);
  margin-bottom: 12px;
}

.page-hero__subtitle {
  max-width: 600px;
  margin: 0 auto;
}

.page-hero__cta {
  margin-top: 24px;
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.services-page {
  padding: var(--section-padding) 0;
}

.service-detail {
  background: var(--white);
  border: 1px solid var(--lighter-gray);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-slow);
}

.service-detail:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(1, 99, 247, 0.2);
}

.service-detail__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.service-detail__icon-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

.service-detail__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-detail__icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary-blue);
  stroke: var(--primary-blue);
  fill: none;
}

.service-detail__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-text);
}

.service-detail__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.service-detail__desc {
  color: var(--gray-body);
  margin-bottom: 16px;
}

.service-detail__issues {
  margin-bottom: 12px;
}

.service-detail__issues-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-text);
  margin-bottom: 8px;
}

.service-detail__issues-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.service-detail__issue {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--navy-text);
}

.service-detail__issue::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-blue);
  flex-shrink: 0;
}

.service-detail__brands {
  font-size: 12px;
  color: var(--gray-body);
  padding-top: 12px;
  border-top: 1px solid var(--lighter-gray);
}

/* ============================================
   SERVICE AREAS PAGE
   ============================================ */

.areas-page {
  padding: var(--section-padding) 0;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--lighter-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-slow);
}

.area-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
}

.area-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-text);
  margin-bottom: 6px;
}

.area-card__cities {
  font-size: 13px;
  color: var(--gray-body);
  margin-bottom: 12px;
  line-height: 1.5;
}

.area-card__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-blue);
}

/* ============================================
   BRAND PAGE TEMPLATE
   ============================================ */

.brand-hero {
  padding: calc(72px + 60px) 0 60px;
  background: linear-gradient(180deg, var(--light-blue-bg), var(--white));
}

.brand-hero__container {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
}

.brand-hero__title .highlight {
  color: var(--primary-blue);
}

.brand-hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.brand-hero__logo-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.brand-hero__logo {
  max-width: 200px;
  height: auto;
}

.brand-services {
  padding: var(--section-padding) 0;
}

.brand-service-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--lighter-gray);
  border-radius: var(--radius-md);
}

.brand-service-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-service-item__icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary-blue);
  stroke: var(--primary-blue);
  fill: none;
}

.brand-service-item__info {
  flex: 1;
}

.brand-service-item__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-text);
}

.brand-service-item__desc {
  font-size: 14px;
  color: var(--gray-body);
}

.brand-service-item__tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--success-green);
  flex-shrink: 0;
}

.brand-issues {
  padding: var(--section-padding) 0;
  background: var(--near-white);
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-page__story {
  padding: var(--section-padding) 0;
}

.about-page__values {
  padding: var(--section-padding) 0;
  background: var(--white);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card__number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-blue);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.value-card__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-text);
  margin-bottom: 8px;
}

.value-card__desc {
  font-size: 16px;
  color: var(--gray-body);
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-page {
  padding: var(--section-padding) 0;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  border-radius: var(--radius-md);
  padding: 24px;
}

.info-card--phone {
  background: var(--light-blue-bg);
}

.info-card--whatsapp {
  background: #e8f9f1;
}

.info-card--area {
  background: var(--white);
  border: 1px solid var(--lighter-gray);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.info-card--phone .info-card__icon {
  background: rgba(1, 99, 247, 0.1);
}

.info-card--whatsapp .info-card__icon {
  background: rgba(50, 204, 150, 0.1);
}

.info-card--area .info-card__icon {
  background: var(--near-white);
}

.info-card__icon svg {
  width: 24px;
  height: 24px;
}

.info-card--phone .info-card__icon svg {
  color: var(--primary-blue);
}

.info-card--whatsapp .info-card__icon svg {
  color: var(--success-green);
}

.info-card--area .info-card__icon svg {
  color: var(--gray-body);
}

.info-card__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-text);
  margin-bottom: 4px;
}

.info-card__value {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-card--phone .info-card__value {
  color: var(--primary-blue);
}

.info-card--whatsapp .info-card__value {
  color: var(--success-green);
}

.info-card__note {
  font-size: 13px;
  color: var(--gray-body);
}

.contact__form-card {
  background: var(--white);
  border: 1px solid var(--lighter-gray);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.active {
  display: block;
}

.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--success-green);
  margin-bottom: 16px;
}

.form-success__title {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy-text);
  margin-bottom: 8px;
}

.form-success__text {
  color: var(--gray-body);
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-page {
  padding: var(--section-padding) 0;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
}

.blog-pagination__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-pagination__link:hover {
  color: var(--dark-blue);
}

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */

.article-page {
  padding: 60px 0;
}

.article__content {
  max-width: 720px;
  margin: 0 auto;
}

.article__content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-text);
  margin-top: 40px;
  margin-bottom: 16px;
}

.article__content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article__content p {
  font-size: 16px;
  color: var(--gray-body);
  line-height: 1.75;
  margin-bottom: 20px;
}

.article__content ul,
.article__content ol {
  padding-right: 20px;
  margin-bottom: 20px;
}

.article__content ul {
  list-style: disc;
}

.article__content ol {
  list-style: decimal;
}

.article__content li {
  font-size: 16px;
  color: var(--gray-body);
  line-height: 1.75;
  margin-bottom: 8px;
}

.article__content strong {
  font-weight: 600;
  color: var(--navy-text);
}

.article__content a {
  color: var(--primary-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article__content a:hover {
  color: var(--dark-blue);
}

.article__content blockquote {
  border-right: 4px solid var(--primary-blue);
  background: var(--light-blue-bg);
  padding: 16px 20px;
  margin: 24px 0;
  font-style: italic;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.article__inline-cta {
  background: var(--light-blue-bg);
  border: 1px solid var(--lighter-gray);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  margin: 32px 0;
}

.article__inline-cta p {
  margin-bottom: 12px;
}

.article__inline-cta a {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-blue);
}

.article__footer {
  max-width: 720px;
  margin: 40px auto 0;
  padding-top: 40px;
  border-top: 1px solid var(--lighter-gray);
}

/* ============================================
   FAQ PAGE
   ============================================ */

.faq-page {
  padding: var(--section-padding) 0;
}

.faq__container {
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================
   PRIVACY / TERMS / DISCLAIMER PAGES
   ============================================ */

.legal-page {
  padding: var(--section-padding) 0;
}

.legal__content {
  max-width: 800px;
  margin: 0 auto;
}

.legal__content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy-text);
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal__content h2:first-child {
  margin-top: 0;
}

.legal__content p {
  font-size: 16px;
  color: var(--gray-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal__content ul {
  padding-right: 20px;
  margin-bottom: 16px;
  list-style: disc;
}

.legal__content li {
  font-size: 16px;
  color: var(--gray-body);
  line-height: 1.75;
  margin-bottom: 8px;
}

.disclaimer-page-hero {
  background: #fff8f0;
}

.disclaimer-boxes {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
  .h1 {
    font-size: 40px;
  }

  .h2 {
    font-size: 36px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-6 {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials__slide {
    flex: 0 0 calc(50% - 12px);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
    --section-padding-lg: 80px;
  }

  .h1 {
    font-size: 32px;
  }

  .h2 {
    font-size: 28px;
  }

  .h3 {
    font-size: 24px;
  }

  .lead {
    font-size: 16px;
  }

  .header__nav,
  .header__actions {
    display: none;
  }

  .header__toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(72px + 40px);
  }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__container > :nth-child(1) {
    order: 2;
  }

  .hero__container > :nth-child(2) {
    order: 1;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }

  .hero__phone {
    justify-content: center;
  }

  .hero__stats-card {
    right: 8px;
    bottom: -8px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col,
  .two-col-55-45,
  .two-col-45-55 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .steps {
    flex-direction: column;
    gap: 40px;
  }

  .steps::before {
    display: none;
  }

  .step {
    max-width: 300px;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .testimonials__slide {
    flex: 0 0 100%;
  }

  .cta-banner__phone {
    font-size: 28px;
  }

  .brand-hero__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand-hero__disclaimer {
    text-align: right;
  }

  .service-detail__header {
    flex-direction: column;
  }

  .service-detail__issues-list {
    grid-template-columns: 1fr;
  }

  .contact-page .two-col {
    grid-template-columns: 1fr;
  }

  .contact__info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-card {
    flex: 1;
    min-width: 250px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__copyright {
    flex-direction: column;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .areas-page .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-service-item {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .h1 {
    font-size: 28px;
  }

  .h2 {
    font-size: 24px;
  }

  .hero__ctas {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .areas-page .grid-4 {
    grid-template-columns: 1fr;
  }

  .contact__info {
    flex-direction: column;
  }

  .info-card {
    min-width: auto;
  }

  .trust-bar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .hero__trust {
    align-items: center;
  }
}

/* ============================================
   FOCUS STATES (Accessibility)
   ============================================ */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================
   STICKY CALL BUTTON (Floating Action Button)
   ============================================ */

.sticky-call-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--success-green), #2ab885);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(50, 204, 150, 0.4);
  transition: all var(--transition-slow);
  animation: callPulse 2s ease-in-out infinite;
}

.sticky-call-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 30px rgba(50, 204, 150, 0.6);
}

.sticky-call-btn svg {
  width: 20px;
  height: 20px;
}

@keyframes callPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(50, 204, 150, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(50, 204, 150, 0.7); }
}

@media (max-width: 768px) {
  .sticky-call-btn {
    bottom: 16px;
    left: 16px;
    padding: 12px 20px;
    font-size: 14px;
  }
  .sticky-call-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   ARABIC SEO SECTION (Brand Pages)
   ============================================ */

.arabic-seo {
  padding: var(--section-padding) 0;
  background: var(--near-white);
}

.arabic-seo__header {
  text-align: center;
  margin-bottom: 48px;
}

.arabic-seo__header .h2 {
  color: var(--navy-text);
  margin-bottom: 12px;
}

.arabic-seo__lead {
  font-size: 18px;
  color: var(--gray-body);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

.arabic-seo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

.arabic-seo__card {
  background: var(--white);
  border: 1px solid var(--lighter-gray);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all var(--transition-slow);
}

.arabic-seo__card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.arabic-seo__card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy-text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.arabic-seo__card p {
  font-size: 15px;
  color: var(--gray-body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.arabic-seo__card a {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 15px;
}

.arabic-seo__cta {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  border-radius: var(--radius-lg);
}

.arabic-seo__cta h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.arabic-seo__cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.arabic-seo__cta .phone-display {
  justify-content: center;
  color: var(--white);
  font-size: 32px;
}

@media (max-width: 768px) {
  .arabic-seo__grid {
    grid-template-columns: 1fr;
  }
  .arabic-seo__cta .phone-display {
    font-size: 24px;
  }
}
