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

:root {
  --deep-blue: #0B1D3A;
  --navy: #132B50;
  --steel: #5A6A7A;
  --steel-light: #8494A5;
  --primary: #F97316;
  --primary-dark: #EA580C;
  --white: #ffffff;
  --off-white: #F7F8FA;
  --light-gray: #EEF0F4;
  --border: rgba(11,29,58,0.08);
  --text-primary: #0B1D3A;
  --text-secondary: #4B5C6E;
  --text-muted: #7A8B9C;
  --gold: #C9963B;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  overflow-x: hidden;
  margin: 0;
}
body[dir="rtl"] { font-family: 'Cairo', sans-serif; }

/* ===== Language ===== */
body[dir="ltr"] .lang-ar { display: none !important; }
body[dir="ltr"] .lang-en { display: block !important; }
body[dir="rtl"] .lang-en { display: none !important; }
body[dir="rtl"] .lang-ar { display: block !important; }

/* ===== RTL Overrides ===== */
body[dir="rtl"] .text-left { text-align: right !important; }
body[dir="rtl"] .text-right { text-align: left !important; }
body[dir="rtl"] .fa-arrow-right { transform: scaleX(-1); display: inline-block; }
body[dir="rtl"] .ml-auto { margin-left: 0 !important; margin-right: auto !important; }
body[dir="rtl"] .mr-auto { margin-right: 0 !important; margin-left: auto !important; }

/* ===== Accent ===== */
.accent-text { color: var(--primary); }
.gradient-text {
  background: linear-gradient(135deg, #F97316, #FB923C, #FDBA74);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.uae-text {
  background: linear-gradient(90deg, #FF0000 0%, #FFFFFF 50%, #00732F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 0px 8px rgba(255,255,255,0.1);
}
.accent-bar {
  height: 3px;
  width: 60px;
  background: var(--primary);
}

/* ===== Section Dividers ===== */
.section-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,29,58,0.1) 50%, transparent);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
}
.section-divider::before {
  content: '';
  width: 32px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  position: absolute;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 2px 20px rgba(11,29,58,0.06);
}

/* ===== UAE Top Bar ===== */
#uae-top-bar {
  max-height: 120px;
  opacity: 1;
}
.site-header.scrolled #uae-top-bar {
  max-height: 0;
  opacity: 0;
  border-color: transparent;
}
.site-header.scrolled #uae-top-bar > div {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  opacity: 0;
}

/* ===== Modern Nav Links ===== */
.nav-link {
  position: relative;
  display: inline-block;
  padding: 0.4rem 0.75rem;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.2s ease-out;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 100%;
  height: 100%;
  background: rgba(11, 29, 58, 0.05); /* Calm gray-blue */
  border-radius: 4px; /* Rectangle */
  z-index: -1;
  transition: all 0.2s ease-out;
  opacity: 0;
  pointer-events: none;
}

.nav-link:hover::before,
.nav-link.is-active::before {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text-primary) !important;
}

/* Global focus and tap highlight fixes */
a, button {
  -webkit-tap-highlight-color: transparent;
  outline: none !important;
}

/* ===== Section Helpers ===== */
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.section-heading {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
}

/* ===== Cards — Asymmetric border-radius ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.5rem 0 1.5rem 0;
  overflow: hidden;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(11,29,58,0.08);
  transform: translateY(-4px);
}

/* ===== Service Card ===== */
.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--deep-blue);
  border-radius: 1.5rem 0 1.5rem 0;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,29,58,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.service-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover > img { transform: scale(1.06); }
.service-card-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  padding-top: 60%;
  color: #fff;
}

/* ===== Video Hero ===== */
.video-hero { position: relative; min-height: 100vh; overflow: hidden; }
.video-hero .hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.video-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,29,58,0.4) 0%, rgba(11,29,58,0.6) 60%, var(--deep-blue) 100%);
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--steel-light);
  margin-bottom: 1rem;
}
.breadcrumbs a {
  color: var(--steel-light);
  text-decoration: none;
  transition: color 0.3s;
}
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .separator {
  display: inline-flex;
  font-size: 0.65rem;
  opacity: 0.5;
  animation: breadcrumbPulse 2s ease-in-out infinite;
}
.breadcrumbs .current {
  color: var(--text-primary);
  font-weight: 700;
}
.breadcrumbs.light a { color: rgba(255,255,255,0.5); }
.breadcrumbs.light .separator { color: rgba(255,255,255,0.3); }
.breadcrumbs.light .current { color: rgba(255,255,255,0.9); }
@keyframes breadcrumbPulse {
  0%,100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
}

/* ===== Animated line ===== */
.animated-line {
  width: 0;
  height: 2px;
  background: var(--primary);
  animation: lineGrow 1s ease-out forwards;
}
@keyframes lineGrow { to { width: 80px; } }

/* ===== Photo Grid ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.5rem;
}
.photo-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 1.5rem 0 1.5rem 0;
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}
.photo-grid img:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* ===== Stats ===== */
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--deep-blue);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--steel);
  margin-top: 0.5rem;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.3);
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--text-primary);
  padding: 0.85rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border: 2px solid var(--border);
  transition: all 0.3s;
  cursor: pointer;
}
.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  overflow: hidden;
  background: var(--light-gray);
}
.page-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11,29,58,0.3) 0%, rgba(11,29,58,0.7) 70%, var(--deep-blue) 100%);
}
.page-hero .section-label { color: var(--primary); }
.page-hero .section-heading { color: #fff; }

/* ===== Parallax Section ===== */
.parallax-section {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.parallax-bg {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  z-index: 0;
}
.parallax-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(11,29,58,0.55);
}
.glass-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 1.5rem 0 1.5rem 0;
  padding: 2.5rem;
  max-width: 520px;
  color: #fff;
}
.glass-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--primary);
}
.glass-card p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
}

/* ===== Opportunities Section ===== */
.opportunities-section {
  position: relative;
  overflow: hidden;
}
.opportunities-section > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--deep-blue);
  color: rgba(255,255,255,0.8);
}
.site-footer h4 {
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.site-footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer a:hover { color: var(--primary); }

/* ===== Smooth transitions ===== */
a, button { transition: all 0.3s ease; }

.transition-fade {
  transition: opacity 0.35s ease, transform 0.35s ease;
  opacity: 1;
  transform: translateY(0);
}
html.is-animating .transition-fade { opacity: 0; transform: translateY(16px); }

/* ===== Mobile Nav ===== */
.mobile-nav {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.mobile-nav::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(249,115,22,0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(11,29,58,0.03) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav .mobile-nav-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11,29,58,0.06);
  border-radius: 50%;
  border: none; cursor: pointer;
  z-index: 2;
  transition: all 0.3s;
}
.mobile-nav .mobile-nav-close:hover {
  background: var(--primary);
  transform: rotate(90deg);
}
.mobile-nav .mobile-nav-close:hover i { color: #fff; }
.mobile-nav .mobile-nav-close i {
  font-size: 1.1rem;
  color: var(--text-primary);
  transition: color 0.3s;
}
.mobile-nav a {
  font-size: 1.25rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-primary); text-decoration: none;
  position: relative; z-index: 1;
  transition: all 0.2s ease-out;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a.is-active { 
  color: var(--text-primary); 
  transform: translateX(4px); 
  background: rgba(11, 29, 58, 0.05);
}

.hamburger { display: none; cursor: pointer; padding: 0.5rem; background: none; border: none; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); margin: 5px 0;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
@media (max-width: 768px) { .hamburger { display: block; } }

/* ===== Scroll Reveal Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--steel-light); }

/* ===== Prose ===== */
.prose h3 { margin-top: 2em; margin-bottom: 1em; font-weight: 800; color: var(--text-primary); }
.prose p { margin-bottom: 1.5em; line-height: 1.8; color: var(--text-secondary); }

/* ===== Particle / Tech decoration ===== */
.tech-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  background-image: radial-gradient(circle, rgba(16,185,129,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}



/* ===== Fixed Mobile WhatsApp Bar ===== */
.mobile-enquiry-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--primary);
  padding: 0;
}
.mobile-enquiry-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  body { padding-bottom: 56px; }
  .mobile-enquiry-bar { display: block; }

  .video-hero { min-height: 100vh; }
  .video-hero h1 { font-size: 2rem !important; }
  .video-hero p { font-size: 0.9rem !important; }

  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.6rem; }

  .section-heading { font-size: 1.6rem !important; }

  .service-card { height: 240px !important; }
  .service-card-content { padding: 1.2rem; padding-top: 55%; }
  .service-card-content h3 { font-size: 0.95rem; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 0.3rem; }


  .glass-card { padding: 1.5rem; margin: 1rem; max-width: 100%; }
  .glass-card h3 { font-size: 1.2rem; }
  .glass-card p { font-size: 0.8rem; }

  .btn-primary { padding: 0.75rem 1.5rem; font-size: 0.78rem; }
  .btn-outline { padding: 0.75rem 1.5rem; font-size: 0.78rem; }

  .page-hero { min-height: 35vh; }
}

@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 1.6rem; }
  .video-hero h1 { font-size: 1.7rem !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Performance: Render Containment ===== */
.contain-layout {
  contain: layout style;
}
.content-offscreen {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ===== SERVICES PAGE — Premium Redesign ===== */

/* Category Navigation Strip */
.services-category-nav {
  position: sticky;
  top: 64px;
  z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.services-category-nav.has-shadow {
  box-shadow: 0 4px 20px rgba(11,29,58,0.06);
}
.category-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
  cursor: pointer;
}
.category-tab:hover {
  color: var(--text-primary);
}
.category-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.category-tab .tab-num {
  font-size: 0.6rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.6;
}

/* Service Category Sections */
.service-category {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}
.service-category--dark {
  background: var(--deep-blue);
  color: #fff;
}
.service-category--dark .svc-section-title {
  color: #fff;
}
.service-category--dark .svc-section-desc {
  color: rgba(255,255,255,0.55);
}
.service-category--dark .svc-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.service-category--dark .svc-card-title {
  color: #fff;
}
.service-category--dark .svc-card-desc {
  color: rgba(255,255,255,0.55);
}
.service-category--dark .svc-chip {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.1);
}
.service-category--dark .svc-card-link {
  color: var(--primary);
}
.service-category--dark .svc-watermark {
  color: rgba(255,255,255,0.03);
}

.service-category--light {
  background: var(--off-white);
}
.service-category--light .svc-watermark {
  color: rgba(11,29,58,0.025);
}

/* Section Watermark Numbers */
.svc-watermark {
  position: absolute;
  top: -0.5rem;
  right: 2rem;
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Section Headers */
.svc-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.svc-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.svc-section-desc {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
}

/* Service Cards — Vertical Layout */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1.5rem 0 1.5rem 0;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.4s ease;
  contain: layout style;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11,29,58,0.1);
}
.svc-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.svc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.svc-card:hover .svc-card-img img {
  transform: scale(1.06);
}
.svc-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,29,58,0.15) 100%);
  pointer-events: none;
}
.svc-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.svc-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}
.svc-card-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.svc-chip {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.65rem;
  border-radius: 4px;
  background: rgba(11,29,58,0.04);
  color: var(--steel);
  border: 1px solid rgba(11,29,58,0.06);
}
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.3s;
}
.svc-card-link:hover {
  gap: 0.85rem;
}
.svc-card-link i {
  font-size: 0.6rem;
  transition: transform 0.3s;
}
.svc-card:hover .svc-card-link i {
  transform: translateX(2px);
}

/* Geometric Divider between sections */
.svc-geo-divider {
  position: relative;
  height: 1px;
  max-width: 100%;
}
.svc-geo-divider::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,29,58,0.08) 20%, rgba(11,29,58,0.08) 80%, transparent);
}
.svc-geo-divider--dark::before {
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 20%, rgba(255,255,255,0.06) 80%, transparent);
}

/* Entrance animations (CSS-only, triggered by class) */
.svc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.svc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.svc-reveal-delay-1 { transition-delay: 0.08s; }
.svc-reveal-delay-2 { transition-delay: 0.16s; }
.svc-reveal-delay-3 { transition-delay: 0.24s; }
.svc-reveal-delay-4 { transition-delay: 0.32s; }

/* Services Mobile */
@media (max-width: 768px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-category {
    padding: 3.5rem 0;
  }
  .svc-watermark {
    font-size: 6rem;
    right: 1rem;
    top: 0;
  }
  .svc-card-img {
    height: 180px;
  }
  .svc-card-body {
    padding: 1.25rem;
  }
  .services-category-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .services-category-nav::-webkit-scrollbar {
    display: none;
  }
  .category-tab {
    padding: 0.75rem 1rem;
    font-size: 0.65rem;
  }
}

