/* ================================================
   Ù…Ø¤Ø³Ø³Ø© Ø¬Ù„ÙŠØ¯ Ø§Ù„Ø£Ù†Ø¯Ù„Ø³ - Main Stylesheet
   RTL Arabic - Premium Saudi Business Design
   ================================================ */

:root {
  --primary: #0D2147;
  --secondary: #1A5DAD;
  --accent: #5AAEE8;
  --bg: #FFFFFF;
  --section-bg: #EFF6FD;
  --text: #1A2740;
  --text-light: #6B7280;
  --border: #D8E8F5;
  --shadow: 0 4px 24px rgba(13, 33, 71, 0.08);
  --shadow-hover: 0 8px 40px rgba(13, 33, 71, 0.16);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  direction: rtl;
  scroll-behavior: smooth;
}

body {
  font-family: 'Cairo', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

/* â”€â”€ Typography â”€â”€ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

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

img {
  max-width: 100%;
}

/* â”€â”€ Layout â”€â”€ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--section-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .label {
  display: inline-block;
  background: rgba(26, 93, 173, 0.08);
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  border: 1px solid rgba(26, 93, 173, 0.2);
}

.section-header h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
  font-size: 16px;
}

/* â”€â”€ Buttons â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 93, 173, 0.35);
}

.btn-primary:hover {
  background: #154d90;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 93, 173, 0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}

.btn-secondary {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(26, 93, 173, 0.3);
}

.btn-secondary:hover {
  background: #154d90;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1dbb57;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* â”€â”€ Navigation â”€â”€ */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(13, 33, 71, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
}

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

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

.nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(90, 174, 232, 0.1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta .btn-nav-wa {
  background: #25D366;
  color: #fff;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-cta .btn-nav-wa:hover {
  background: #1dbb57;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* â”€â”€ Mobile Menu â”€â”€ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  bottom: 0;
  background: var(--primary);
  z-index: 999;
  padding: 30px 20px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

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

.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--accent);
}

.mobile-menu .mobile-cta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* â”€â”€ Hero Section â”€â”€ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0D2147 0%, #0f2d5c 40%, #1A5DAD 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%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");
}

.hero-blob-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 93, 173, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-blob-2 {
  position: absolute;
  bottom: -150px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(90, 174, 232, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: 60px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90, 174, 232, 0.15);
  border: 1px solid rgba(90, 174, 232, 0.3);
  color: #A8D8FF;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: #A8D8FF;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-content h1 {
  font-size: clamp(32px, 5vw, 54px);
  color: #fff;
  line-height: 1.25;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-stat .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.hero-stat .lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* â”€â”€ About Section â”€â”€ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 24px;
  padding: 48px 36px;
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.about-card .icon {
  font-size: 64px;
  margin-bottom: 20px;
  display: block;
}

.about-card h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.about-card p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-hover);
}

.about-badge .years {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

.about-badge .text {
  font-size: 12px;
  margin-top: 4px;
}

.about-text .label {
  display: inline-block;
  background: rgba(26, 93, 173, 0.1);
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(26, 93, 173, 0.2);
}

.about-text h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 16px;
  line-height: 1.35;
}

.about-text > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.8;
}

.about-vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.vm-card {
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
}

.vm-card .vm-icon {
  font-size: 22px;
  margin-bottom: 8px;
}

.vm-card h4 {
  font-size: 13px;
  color: var(--secondary);
  margin-bottom: 6px;
}

.vm-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── Services Section ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  background: #fff;
  border: 1px solid #EEF2F7;
  border-radius: 20px;
  padding: 32px 20px 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #1A5DAD, #5AAEE8);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  border-radius: 0 0 4px 4px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(13, 33, 71, 0.12);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 68px;
  height: 68px;
  background: #E8F2FD;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(13, 33, 71, 0.03);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A5DAD 0%, #2E74CC 60%, #5AAEE8 100%);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: inherit;
  z-index: -1;
}

.service-icon i {
  font-size: 24px;
  color: #1A5DAD;
  transition: all 0.35s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(26, 93, 173, 0.3);
}

.service-card:hover .service-icon::before {
  opacity: 1;
}

.service-card:hover .service-icon i {
  color: #fff;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary);
}

.service-card p {
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.7;
}



/* â”€â”€ Why Us Section â”€â”€ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: var(--radius);
  background: var(--bg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.why-icon {
  width: 64px;
  height: 64px;
  background: #E8F2FD;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px rgba(13, 33, 71, 0.03);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.why-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1A5DAD 0%, #2E74CC 60%, #5AAEE8 100%);
  opacity: 0;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: inherit;
  z-index: -1;
}

.why-icon i {
  font-size: 22px;
  color: #1A5DAD;
  transition: all 0.35s ease;
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 24px rgba(26, 93, 173, 0.25);
}

.why-card:hover .why-icon::before {
  opacity: 1;
}

.why-card:hover .why-icon i {
  color: #fff;
}

.why-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* Our Work Gallery */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.work-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  background: #0D2147;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.work-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.work-item img,
.work-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.work-item:hover img,
.work-item:hover video {
  transform: scale(1.06);
}

.work-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 33, 71, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-size: 22px;
}

.work-item:hover .work-overlay {
  opacity: 1;
}

/* Work Lightbox */
.work-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 33, 71, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}

.work-lightbox.show {
  display: flex;
}

.work-lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
}

.work-lightbox-content img,
.work-lightbox-content video {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.work-lightbox-close {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.work-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* â”€â”€ CTA Banner â”€â”€ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 64px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner h2 {
  color: #fff;
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 14px;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  font-size: 16px;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
}

/* â”€â”€ Form Pages â”€â”€ */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.page-hero .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  margin-bottom: 16px;
  position: relative;
}

.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.page-hero .breadcrumb a:hover {
  color: var(--accent);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 42px);
  position: relative;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
  position: relative;
}

.form-section {
  padding: 60px 0 80px;
}

.form-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  max-width: 740px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.form-group label span.req {
  color: #EF4444;
  margin-right: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Cairo', sans-serif;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  direction: rtl;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(26, 93, 173, 0.1);
}

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

.form-group .file-upload {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--section-bg);
}

.form-group .file-upload:hover {
  border-color: var(--secondary);
  background: rgba(26, 93, 173, 0.04);
}

.form-group .file-upload input[type="file"] {
  display: none;
}

.file-upload-icon {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.file-upload p {
  font-size: 13px;
  color: var(--text-light);
}

.file-upload strong {
  color: var(--secondary);
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(26, 93, 173, 0.08);
  border: 1.5px solid rgba(26, 93, 173, 0.25);
  border-radius: 10px;
  color: var(--secondary);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: var(--transition);
}

.location-btn:hover {
  background: rgba(26, 93, 173, 0.14);
}

.location-display {
  margin-top: 8px;
  padding: 10px 14px;
  background: rgba(26, 93, 173, 0.06);
  border-radius: 8px;
  font-size: 13px;
  color: var(--text-light);
  display: none;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
}

/* â”€â”€ Success Toast / Modal â”€â”€ */
.success-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.5);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-modal.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.success-modal-inner {
  background: var(--bg);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  max-width: 400px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: slideUp 0.35s ease;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10B981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 20px;
}

.success-modal-inner h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.success-modal-inner p {
  color: var(--text-light);
  margin-bottom: 8px;
  font-size: 14px;
}

.request-number {
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  margin: 18px 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.1em;
}

/* â”€â”€ Track Request â”€â”€ */
.track-card {
  max-width: 580px;
  margin: 0 auto;
}

.track-input-group {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
}

.track-input-group input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Cairo', sans-serif;
  outline: none;
  transition: var(--transition);
  direction: rtl;
}

.track-input-group input:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(26, 93, 173, 0.1);
}

.track-result {
  display: none;
}

.track-result.show {
  display: block;
  animation: fadeIn 0.3s ease;
}

.request-info-card {
  background: var(--section-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 28px;
}

.request-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.request-info-row:last-child {
  border-bottom: none;
}

.request-info-row .lbl {
  color: var(--text-light);
}

.request-info-row .val {
  font-weight: 600;
  color: var(--primary);
}

.status-timeline {
  position: relative;
  padding-right: 28px;
}

.status-timeline::before {
  content: '';
  position: absolute;
  right: 10px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: var(--border);
}

.timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  flex-direction: row-reverse;
}

.step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--border);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -11px;
  transition: var(--transition);
}

.step-dot.done {
  background: #10B981;
  border-color: #10B981;
  color: #fff;
  font-size: 11px;
}

.step-dot.active {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(90, 174, 232, 0.2);
  animation: pulse 2s infinite;
}

.step-content {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  background: var(--section-bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.step-content.active {
  background: rgba(90, 174, 232, 0.07);
  border-color: rgba(90, 174, 232, 0.3);
}

.step-content.done-step {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.2);
}

.step-content h4 {
  font-size: 14px;
  margin-bottom: 4px;
}

.step-content.active h4 {
  color: var(--accent);
}

.step-content.done-step h4 {
  color: #059669;
}

.step-content p {
  font-size: 12px;
  color: var(--text-light);
}

/* â”€â”€ Contact Page â”€â”€ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.contact-info-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--secondary);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: #fff;
}

.contact-info-item h4 {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  margin-top: 16px;
}

.map-container iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: none;
}

.hours-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 16px;
}

.hours-card h4 {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  color: var(--text-light);
}

.hours-row .time {
  font-weight: 600;
  color: var(--primary);
}

.hours-row .closed {
  color: #EF4444;
  font-weight: 600;
}

/* â”€â”€ Status Badge â”€â”€ */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.status-badge.pending {
  background: rgba(245, 158, 11, 0.1);
  color: #D97706;
}

.status-badge.in-progress {
  background: rgba(59, 130, 246, 0.1);
  color: #2563EB;
}

.status-badge.done {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

/* â”€â”€ Footer â”€â”€ */
.footer {
  background: #07101e;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
}

.footer-logo-box {
  margin-bottom: 16px;
  width: fit-content;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}

.footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--accent);
  padding-right: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-contact-item .ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.powered-by-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0d1e38;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 8px 18px 8px 10px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.powered-by-badge:hover {
  border-color: var(--accent);
  color: #fff;
}

.powered-by-badge img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
}

/* â”€â”€ Utilities â”€â”€ */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.hidden { display: none !important; }

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* â”€â”€ Scroll to top â”€â”€ */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(13, 33, 71, 0.3);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  border: none;
}

.scroll-top.show {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

/* ── Floating WhatsApp ── */
.wa-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  z-index: 100;
  transition: all 0.3s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
  background: #1dbb57;
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
  animation: none;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
  50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.8), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}



/* â”€â”€ Responsive â”€â”€ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-visual {
    max-width: 420px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-stats {
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .about-vm {
    grid-template-columns: 1fr;
  }

  .track-input-group {
    flex-direction: column;
  }

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

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

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

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Delay classes for staggered list animations */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* Nth-child automatic offsets for dynamic/standard lists */
.fade-up:nth-child(2), .scale-in:nth-child(2), .slide-in-right:nth-child(2), .slide-in-left:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3), .scale-in:nth-child(3), .slide-in-right:nth-child(3), .slide-in-left:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4), .scale-in:nth-child(4), .slide-in-right:nth-child(4), .slide-in-left:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5), .scale-in:nth-child(5), .slide-in-right:nth-child(5), .slide-in-left:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6), .scale-in:nth-child(6), .slide-in-right:nth-child(6), .slide-in-left:nth-child(6) { transition-delay: 0.5s; }

/* Entry Keyframe animations (non-observer load animations) */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Page load initial states */
.hero-content h1 {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-content p {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-buttons {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}
.hero-stats {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}
.hero-badge {
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Premium Hover Transitions */
.service-card, .why-card, .btn, .nav-links a, .social-btn, .contact-info-item, .date-card, .time-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Shimmer overlay effect for primary buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-25deg);
  transition: none;
}
.btn-primary:hover::after {
  left: 150%;
  transition: left 0.8s ease-in-out;
}

/* Floating animation for map marker or badges */
@keyframes mini-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.about-badge {
  animation: mini-float 4s ease-in-out infinite;
}

/* Underline slide effect for navbar links */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:hover::after, .nav-links a.active::after {
  width: 70%;
  left: 15%;
}

/* ── Premium Hero Particle System ── */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  filter: blur(1px);
}

@keyframes drift {
  0% {
    transform: translateY(100vh) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(-10vh) translateX(50px) rotate(360deg);
    opacity: 0;
  }
}

/* Background blob enhancement */
.hero-blob-1, .hero-blob-2 {
  filter: blur(80px);
  opacity: 0.65;
}

.hero-blob-3 {
  position: absolute;
  top: 30%;
  left: 40%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(90, 174, 232, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 14s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
}

/* Stats card highlight effect */
.hero-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 24px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.hero-stat:hover {
  transform: translateY(-6px) scale(1.05);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(90, 174, 232, 0.35);
  box-shadow: 0 10px 30px rgba(90, 174, 232, 0.18);
}

/* Glowing primary button pulse */
.hero-buttons .btn-primary {
  animation: btn-glow 3s infinite alternate;
}

@keyframes btn-glow {
  0% {
    box-shadow: 0 4px 16px rgba(26, 93, 173, 0.35);
  }
  100% {
    box-shadow: 0 4px 28px rgba(90, 174, 232, 0.65), 0 0 0 4px rgba(90, 174, 232, 0.15);
  }
}

/* Heading color cycle shine */
.hero-content h1 span {
  background: linear-gradient(120deg, #5AAEE8, #ffffff, #5AAEE8);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 5s linear infinite;
  display: inline-block;
}

@keyframes shineText {
  to {
    background-position: 200% center;
  }
}

/* ── FAQ Section ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.faq-item[open] {
  border-color: var(--secondary);
  box-shadow: 0 4px 20px rgba(26, 93, 173, 0.1);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  position: relative;
}

.faq-q::-webkit-details-marker { display: none; }

.faq-q h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  flex: 1;
  line-height: 1.5;
}

.faq-q::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 13px;
  color: var(--secondary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-q::after {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  margin-top: 0;
}

@media (max-width: 600px) {
  .faq-q { padding: 14px 16px; }
  .faq-q h3 { font-size: 14px; }
  .faq-a { padding: 0 16px 14px; }
}

