/* المقر — Modern 2030 theme */
:root {
  --bg-deep: #06080f;
  --bg-surface: #0d111c;
  --bg-elevated: #141b2d;
  --bg-glass: rgba(20, 27, 45, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #e8ecf4;
  --text-muted: #8b95ad;
  --accent: #00d4aa;
  --accent-2: #3b82f6;
  --accent-glow: rgba(0, 212, 170, 0.35);
  --brand: #e63946;
  --brand-soft: rgba(230, 57, 70, 0.15);
  --gradient-hero: linear-gradient(135deg, #06080f 0%, #0f1628 40%, #0a1a2e 100%);
  --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-lg: 24px;
  --nav-h: 76px;
  --container: min(1200px, 92vw);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "IBM Plex Sans Arabic", "Segoe UI", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

/* Ambient background */
.bg-mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(0, 212, 170, 0.12), transparent),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(59, 130, 246, 0.1), transparent),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(230, 57, 70, 0.06), transparent),
    var(--bg-deep);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-link img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--text);
}

.logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-desktop a.active {
  color: var(--accent);
}

.btn-nav-cta {
  margin-inline-start: 0.5rem;
  padding: 0.55rem 1.25rem !important;
  background: var(--gradient-accent) !important;
  color: var(--bg-deep) !important;
  font-weight: 600 !important;
  border-radius: 12px !important;
}

.btn-nav-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.nav-desktop a.btn-nav-cta.active {
  color: var(--bg-deep) !important;
  background: var(--gradient-accent) !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-surface);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 999;
  border-top: 1px solid var(--border);
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.nav-mobile a:hover {
  background: var(--bg-elevated);
  border-color: var(--border-strong);
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, var(--bg-deep) 0%, transparent 35%),
    linear-gradient(to left, var(--bg-deep) 0%, rgba(6, 8, 15, 0.4) 50%, transparent 100%),
    linear-gradient(135deg, rgba(6, 8, 15, 0.92) 0%, rgba(6, 8, 15, 0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 6rem;
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--brand-soft);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 100px;
  font-size: 0.85rem;
  color: #ff8a94;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s 0.1s var(--ease) both;
}

.hero h1 .gradient-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 520px;
  animation: fadeUp 0.8s 0.2s var(--ease) both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.8s 0.3s var(--ease) both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, filter 0.2s;
}

.btn-primary {
  background: var(--gradient-accent);
  color: var(--bg-deep);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-desc {
  margin-inline: auto;
}

/* Features: image + 2×2 cards side by side (equal height) */
.features-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
  min-height: 420px;
}

/* RTL: cards column on the right, image on the left */
.features-bento__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
  min-height: 100%;
}

.features-bento__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 100%;
}

.features-bento__image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  min-height: 0;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-lg);
}

.feature-card.red::before { background: var(--brand); }
.feature-card.blue::before { background: var(--accent-2); }
.feature-card.orange::before { background: #f59e0b; }
.feature-card.teal::before { background: var(--accent); }

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .features-bento {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .features-bento__image {
    order: -1;
  }

  .features-bento__image img {
    min-height: 280px;
  }

  .features-bento__cards {
    min-height: auto;
  }
}

/* Solution block */
.solution {
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.solution-inner .section-title {
  text-align: start;
}

.solution-list {
  margin-top: 1.5rem;
}

.solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.solution-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 170, 0.15);
  color: var(--accent);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
}

.solution-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.solution-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.solution-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0, 212, 170, 0.15));
  pointer-events: none;
}

@media (max-width: 900px) {
  .solution-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* CTA banner */
.cta-banner {
  padding: 4rem 0;
}

.cta-box {
  position: relative;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-elevated) 0%, #1a2540 100%);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  text-align: center;
}

.cta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}

.cta-box p {
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 1.5rem;
  position: relative;
  font-size: 1.05rem;
}

.cta-box .btn {
  position: relative;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0 1.5rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
  text-align: start;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 8, 15, 0.7), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Social */
.social-section {
  background: var(--bg-surface);
  border-block: 1px solid var(--border);
}

.social-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 1rem;
}

.social-intro {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.social-intro h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.social-intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  min-height: 140px;
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.social-card svg,
.social-card img {
  width: 36px;
  height: 36px;
}

.social-card span {
  font-size: 0.9rem;
  font-weight: 600;
}

.social-card.facebook { background: linear-gradient(145deg, #1877f2, #0d5dbf); }
.social-card.whatsapp { background: linear-gradient(145deg, #25d366, #128c7e); }
.social-card.youtube { background: linear-gradient(145deg, #ff0000, #cc0000); }
.social-card.tiktok { background: linear-gradient(145deg, #010101, #25f4ee33); border-color: rgba(37, 244, 238, 0.2); }

@media (max-width: 900px) {
  .social-grid {
    grid-template-columns: 1fr 1fr;
  }
  .social-intro {
    grid-column: 1 / -1;
  }
}

/* Footer */
.site-footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1rem;
  object-fit: contain;
  background: none;
  border-radius: 0;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-col p,
.footer-col a {
  font-size: 0.92rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-map {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}

.footer-map img {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Inner pages */
body.inner-page .site-header {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.page-hero {
  padding: calc(var(--nav-h) + 3rem) 0 3rem;
  text-align: center;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 3px;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-hero .lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.8;
}

.page-hero--banner {
  position: relative;
  padding: calc(var(--nav-h) + 5rem) 0 4rem;
  overflow: hidden;
  text-align: center;
}

.page-hero--banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-banner-img, url("../img/img-04.jpg"));
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.page-hero.page-hero--banner::after {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  left: 0;
  transform: none;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(6, 8, 15, 0.55) 0%, var(--bg-deep) 100%);
}

.page-hero--banner .container {
  position: relative;
  z-index: 1;
}

.page-hero--banner h1 {
  font-size: clamp(2.25rem, 5vw, 3rem);
}

.page-hero--banner .lead {
  color: rgba(232, 236, 244, 0.85);
}

.timeline-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0 3rem;
}

.timeline-item {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  text-align: center;
}

.timeline-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.35rem;
}

.timeline-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .timeline-card {
    grid-template-columns: 1fr;
  }
}

.page-content {
  padding: 3rem 0 5rem;
}

.page-content section {
  padding: 0;
}

.prose {
  color: var(--text-muted);
  font-size: 1.02rem;
  line-height: 1.85;
}

.prose p {
  margin-bottom: 1.25rem;
}

.prose h2 {
  color: var(--text);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}

.content-panel {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
}

.content-panel h2 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent);
}

.split-block img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  object-fit: cover;
  min-height: 320px;
}

@media (max-width: 900px) {
  .split-block {
    grid-template-columns: 1fr;
  }
  .split-block img {
    order: -1;
    min-height: 240px;
  }
}

/* Service cards */
.service-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.service-intro p {
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-size: 1.02rem;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.service-item:nth-child(even) .service-body {
  order: 2;
}

.service-item:nth-child(even) .service-media {
  order: 1;
}

.service-num {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.service-body {
  padding: 2.5rem;
}

.service-body h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.service-body p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .service-item,
  .service-item:nth-child(even) .service-body,
  .service-item:nth-child(even) .service-media {
    grid-template-columns: 1fr;
    order: unset;
  }
}

.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.product-pill {
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-card h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin: 1.5rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.contact-card h2:first-child {
  margin-top: 0;
}

.contact-card p,
.contact-card a {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 0.35rem;
  display: block;
}

.contact-card a:hover {
  color: var(--accent);
}

.contact-map {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
}

.contact-map img {
  width: 100%;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery full */
.gallery-grid.gallery-full {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
  .gallery-grid.gallery-full {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid.gallery-full {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cta-strip {
  text-align: center;
  padding: 3rem 0 0;
}
