/* ============================================================
   Saman Niroye Hasht — Main Stylesheet
   Colors: Dark Blue #0a1628 | Orange #f4811f | White #ffffff
   Direction: RTL | Font: Vazirmatn (FA) + Inter (EN)
   ============================================================ */

/* ── Google Fonts ───────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --blue-dark:    #0a1628;
  --blue-mid:     #0f2246;
  --blue-light:   #1a3a6b;
  --orange:       #f4811f;
  --orange-dark:  #d4690d;
  --orange-light: #ff9a3c;
  --white:        #ffffff;
  --gray-100:     #f8f9fa;
  --gray-200:     #e9ecef;
  --gray-300:     #dee2e6;
  --gray-500:     #adb5bd;
  --gray-600:     #6c757d;
  --gray-700:     #495057;
  --gray-800:     #343a40;
  --text-dark:    #1a1a2e;
  --text-body:    #444f5a;
  --shadow-sm:    0 2px 8px rgba(10,22,40,.08);
  --shadow-md:    0 4px 24px rgba(10,22,40,.12);
  --shadow-lg:    0 8px 40px rgba(10,22,40,.18);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --transition:   all .3s ease;
  --font-fa:      'Vazirmatn', system-ui, sans-serif;
  --font-en:      'Inter', system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  direction: rtl;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-fa);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-dark); }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-fa);
  font-weight: 700;
  color: var(--blue-dark);
  line-height: 1.4;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }

.lead { font-size: 1.125rem; line-height: 1.9; }
.text-orange  { color: var(--orange) !important; }
.text-blue    { color: var(--blue-dark) !important; }
.text-muted   { color: var(--gray-600) !important; }

/* ── Utility Classes ────────────────────────────────────────── */
.bg-blue-dark  { background-color: var(--blue-dark); }
.bg-blue-mid   { background-color: var(--blue-mid); }
.bg-orange     { background-color: var(--orange); }
.bg-gray-light { background-color: var(--gray-100); }

.section-padding { padding: 90px 0; }
.section-padding-sm { padding: 60px 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .badge-label {
  display: inline-block;
  background: rgba(244,129,31,.12);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: .5px;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { color: var(--gray-600); max-width: 600px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px auto 24px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-fa);
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: .625rem 1.5rem;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244,129,31,.35);
}
.btn-outline-primary {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}
.btn-outline-primary:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-dark);
}
.btn-dark-blue {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: var(--white);
}
.btn-dark-blue:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg { padding: .875rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: .375rem 1rem; font-size: .875rem; }

.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
#navbar.scrolled {
  background: var(--blue-dark);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
#navbar .navbar-brand img { height: 48px; }
#navbar .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .95rem;
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
#navbar .nav-link:hover,
#navbar .nav-link.active {
  color: var(--orange) !important;
  background: rgba(244,129,31,.1);
}
#navbar .navbar-toggler { border-color: rgba(255,255,255,.4); }
#navbar .navbar-toggler-icon { filter: invert(1); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
}
.nav-cta:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px);
}

/* ── Hero / Slider ──────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-dark);
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 50%, #0d2a5c 100%);
  z-index: 0;
}
.hero-section .hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(244,129,31,.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26,58,107,.5) 0%, transparent 50%);
  z-index: 1;
}
.hero-section .container { position: relative; z-index: 2; }

.hero-badge {
  display: inline-block;
  background: rgba(244,129,31,.15);
  border: 1px solid rgba(244,129,31,.3);
  color: var(--orange-light);
  font-size: .85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero-title {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 24px;
}
.hero-title span { color: var(--orange); }
.hero-subtitle {
  color: rgba(255,255,255,.75);
  font-size: 1.15rem;
  margin-bottom: 40px;
  line-height: 2;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 32px;
}
.hero-stat-item .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}
.hero-stat-item .stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-float {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: var(--white);
}
.hero-card-float .card-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 8px;
}

/* Swiper Hero */
.swiper-hero { width: 100%; height: 100vh; }
.swiper-hero .swiper-slide {
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.swiper-hero .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.92) 0%, rgba(10,22,40,.7) 100%);
}
.swiper-hero .slide-content {
  position: relative;
  z-index: 2;
}
.swiper-pagination-bullet { background: rgba(255,255,255,.5); }
.swiper-pagination-bullet-active { background: var(--orange) !important; }

/* ── Services Section ───────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 0;
  background: var(--orange);
  transition: height .4s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 64px; height: 64px;
  background: rgba(244,129,31,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--orange);
  color: var(--white);
}
.service-card h4 { margin-bottom: 12px; font-size: 1.1rem; }
.service-card p  { color: var(--gray-600); font-size: .92rem; line-height: 1.8; margin-bottom: 0; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: .9rem;
  font-weight: 600;
  margin-top: 16px;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-link { opacity: 1; }

/* ── Projects ───────────────────────────────────────────────── */
.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.project-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.project-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--gray-200);
}
.project-card .card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.project-card:hover .card-img-wrap img { transform: scale(1.08); }
.project-card .card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.project-card:hover .card-overlay { opacity: 1; }
.project-card .card-body { padding: 24px 20px; }
.project-cat {
  font-size: .78rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.project-card h4 { font-size: 1.05rem; margin-bottom: 10px; }
.project-card p  { color: var(--gray-600); font-size: .88rem; }

/* Tech badges */
.tech-badge {
  display: inline-block;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: .75rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin: 2px;
}

/* ── Clients Section ────────────────────────────────────────── */
.clients-section { background: var(--gray-100); }
.client-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  filter: grayscale(1);
  opacity: .65;
}
.client-logo-wrap:hover {
  filter: grayscale(0);
  opacity: 1;
  box-shadow: var(--shadow-md);
  transform: scale(1.05);
}
.client-logo-wrap img { max-height: 60px; max-width: 140px; object-fit: contain; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonial-section { background: var(--blue-dark); }
.testimonial-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-size: 5rem;
  line-height: 1;
  color: var(--orange);
  opacity: .3;
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: Georgia, serif;
}
.testimonial-card .stars { color: #ffc107; font-size: .9rem; margin-bottom: 16px; }
.testimonial-card p {
  color: rgba(255,255,255,.8);
  line-height: 2;
  font-size: .95rem;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author .author-name  { color: var(--white); font-weight: 600; font-size: .95rem; }
.testimonial-author .author-title { color: rgba(255,255,255,.55); font-size: .82rem; }

/* ── Stats Counter ──────────────────────────────────────────── */
.stats-section { background: var(--blue-dark); }
.stat-box {
  text-align: center;
  padding: 40px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-box:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
}
.stat-label {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  margin-top: 8px;
  display: block;
}

/* ── News Cards ─────────────────────────────────────────────── */
.news-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-card .news-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--gray-200);
}
.news-card .news-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news-card:hover .news-img img { transform: scale(1.06); }
.news-cat-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--orange);
  color: var(--white);
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.news-card .news-body { padding: 20px; }
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .8rem;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.news-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card p {
  font-size: .88rem;
  color: var(--gray-600);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: 80px 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 0; }

/* ── Why Us / Features ──────────────────────────────────────── */
.why-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.why-item:hover { background: var(--gray-100); }
.why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(244,129,31,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
}
.why-text h5 { font-size: 1rem; margin-bottom: 6px; }
.why-text p  { font-size: .88rem; color: var(--gray-600); margin: 0; }

/* ── About Page ─────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(244,129,31,.08) 0%, transparent 60%);
}
.page-hero h1, .page-hero .breadcrumb-item,
.page-hero .breadcrumb-item a { color: var(--white); }
.page-hero .breadcrumb-item.active { color: rgba(255,255,255,.65); }
.page-hero .breadcrumb-divider { color: rgba(255,255,255,.4); }

.team-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--orange);
}
.team-card .team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 16px;
}
.team-card img {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}
.team-card h5 { margin-bottom: 4px; }
.team-card .position { color: var(--orange); font-size: .88rem; font-weight: 600; }

/* ── Forms ──────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.form-label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-control, .form-select {
  font-family: var(--font-fa);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gray-300);
  padding: .625rem .875rem;
  font-size: .95rem;
  transition: var(--transition);
  color: var(--text-body);
}
.form-control:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,129,31,.15);
}
textarea.form-control { resize: vertical; min-height: 120px; }

.form-check-input:checked {
  background-color: var(--orange);
  border-color: var(--orange);
}
.form-check-input:focus { box-shadow: 0 0 0 3px rgba(244,129,31,.2); }

/* Alert messages */
.alert-success-custom {
  background: rgba(25,135,84,.1);
  border: 1px solid rgba(25,135,84,.3);
  color: #145523;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 500;
}
.alert-error-custom {
  background: rgba(220,53,69,.1);
  border: 1px solid rgba(220,53,69,.3);
  color: #842029;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-weight: 500;
}

/* ── Contact Info Cards ─────────────────────────────────────── */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); }
.contact-info-icon {
  width: 52px; height: 52px;
  background: rgba(244,129,31,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
  flex-shrink: 0;
}
.contact-info-text h6 { font-size: 1rem; margin-bottom: 4px; }
.contact-info-text p  { color: var(--gray-600); font-size: .9rem; margin: 0; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,.75);
  padding-top: 70px;
}
footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1rem;
  position: relative;
  padding-bottom: 12px;
}
footer h5::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 32px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
footer .footer-logo img { height: 48px; margin-bottom: 16px; }
footer .footer-desc { font-size: .9rem; line-height: 1.9; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-right: 6px; }
.footer-links a i { font-size: .7rem; color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .88rem;
}
.footer-contact-item i { color: var(--orange); margin-top: 3px; flex-shrink: 0; }

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,.1);
}
.social-links a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: .85rem;
  color: rgba(255,255,255,.45);
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb { margin: 0; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); content: '/'; }
.breadcrumb-item a { color: rgba(255,255,255,.7); }
.breadcrumb-item a:hover { color: var(--orange); }

/* ── Pagination ─────────────────────────────────────────────── */
.pagination .page-link {
  font-family: var(--font-fa);
  color: var(--blue-dark);
  border-radius: var(--radius-sm) !important;
  margin: 0 3px;
  border-color: var(--gray-300);
}
.pagination .page-item.active .page-link {
  background: var(--orange);
  border-color: var(--orange);
}
.pagination .page-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ── Scroll To Top ──────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 46px; height: 46px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(244,129,31,.4);
  transition: var(--transition);
}
#scrollTop:hover { background: var(--orange-dark); transform: translateY(-3px); }
#scrollTop.show { display: flex; }

/* ── Loading Overlay ────────────────────────────────────────── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .5s ease;
}
#page-loader.hidden { opacity: 0; pointer-events: none; }
.loader-spinner {
  width: 50px; height: 50px;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── AOS Custom Animations ──────────────────────────────────── */
[data-aos] { opacity: 0; }
[data-aos].aos-animate { opacity: 1; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .section-padding { padding: 70px 0; }
  #navbar { background: var(--blue-dark); }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-box:last-child { border-bottom: none; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 767.98px) {
  .section-padding { padding: 55px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .form-card { padding: 24px 18px; }
  .hero-stats { gap: 16px; }
}

/* ── Utility Misc ───────────────────────────────────────────── */
.fw-800   { font-weight: 800; }
.fw-700   { font-weight: 700; }
.rounded-xl { border-radius: var(--radius-lg); }
.rounded-md { border-radius: var(--radius-md); }
.shadow-sm  { box-shadow: var(--shadow-sm); }
.shadow-md  { box-shadow: var(--shadow-md); }
.shadow-lg  { box-shadow: var(--shadow-lg); }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.object-fit-cover { object-fit: cover; }
