:root {
  --teal: #0d9488;
  --teal-deep: #0f766e;
  --emerald: #10b981;
  --amber: #f59e0b;
  --gold: #eab308;
  --coral: #f97316;
  --sky: #0ea5e9;
  --rose: #fb7185;
  --mint: #2dd4bf;
  --ink: #042f2e;
  --ink-soft: #134e4a;
  --paper: #f0fdfa;
  --glass: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 60px rgba(4, 47, 46, 0.28);
  --radius: 1.25rem;
  --font: "Outfit", system-ui, sans-serif;
  --font-ar: "Cairo", "Outfit", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(45, 212, 191, 0.35), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(245, 158, 11, 0.28), transparent 50%),
    linear-gradient(160deg, #ecfdf5 0%, #ccfbf1 35%, #fef3c7 70%, #fff7ed 100%);
  min-height: 100vh;
  line-height: 1.55;
  overflow-x: hidden;
  padding-bottom: 5.5rem;
}

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

a {
  color: inherit;
  text-decoration: none;
}

code {
  font-size: 0.85em;
  background: rgba(13, 148, 136, 0.12);
  padding: 0.1em 0.4em;
  border-radius: 0.35rem;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

/* Ambient orbs */
.bg-orbs {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: float 14s ease-in-out infinite;
}

.orb-a {
  width: 320px;
  height: 320px;
  background: #2dd4bf;
  top: 12%;
  left: -80px;
}

.orb-b {
  width: 280px;
  height: 280px;
  background: #fbbf24;
  top: 40%;
  right: -60px;
  animation-delay: -4s;
}

.orb-c {
  width: 220px;
  height: 220px;
  background: #fb7185;
  bottom: 8%;
  left: 30%;
  animation-delay: -7s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-28px) scale(1.06);
  }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(240, 253, 250, 0.82);
  border-bottom: 1px solid rgba(13, 148, 136, 0.15);
}

.nav-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-inline-start: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 0.5rem;
}

.brand-text {
  font-size: 1.15rem;
}

.brand-text span {
  color: var(--teal-deep);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(13, 148, 136, 0.22);
  gap: 0.15rem;
}

.lang-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.4rem 0.55rem;
  border-radius: 999px;
  color: var(--ink-soft);
  line-height: 1;
}

.lang-btn.is-active {
  background: linear-gradient(135deg, #0d9488, #059669);
  color: #fff;
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);
}

.lang-btn:hover:not(.is-active) {
  color: var(--teal-deep);
}

html[dir="rtl"] body {
  font-family: "Cairo", var(--font);
}

html[data-lang="ur"] body {
  font-family: "Noto Nastaliq Urdu", "Cairo", var(--font);
  line-height: 1.75;
}

html[dir="rtl"] .hero-brand,
html[dir="rtl"] .brand-text {
  font-family: "Outfit", var(--font);
}

html[dir="rtl"] .hero-tagline,
html[dir="rtl"] .hero-support,
html[dir="rtl"] .section-head,
html[dir="rtl"] .feature-card,
html[dir="rtl"] .contact-blurb {
  text-align: start;
}

html[dir="rtl"] .lightbox-close {
  right: auto;
  left: 1rem;
}

.nav-links a:not(.btn):hover {
  color: var(--teal-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.35rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
}

.btn-xl {
  width: 100%;
  padding: 1.1rem 1.4rem;
  font-size: 1.02rem;
  border-radius: 1rem;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 10px 28px rgba(22, 163, 74, 0.35);
  animation: pulse-soft 2.8s ease-in-out infinite;
}

.btn-whatsapp-alt {
  background: linear-gradient(135deg, #14b8a6, #0d9488);
  box-shadow: 0 10px 28px rgba(13, 148, 136, 0.35);
  animation: none;
}

.btn-call {
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  color: #fff;
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.32);
}

.btn-download {
  background: linear-gradient(135deg, #3b82f6, #4f46e5);
  color: #fff;
  box-shadow: 0 10px 28px rgba(79, 70, 229, 0.35);
}

@keyframes pulse-soft {
  0%,
  100% {
    box-shadow: 0 10px 28px rgba(22, 163, 74, 0.35);
  }
  50% {
    box-shadow: 0 14px 36px rgba(22, 163, 74, 0.55);
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: auto 10% -20% 10%;
  height: 280px;
  background: radial-gradient(closest-side, rgba(13, 148, 136, 0.35), transparent);
  filter: blur(20px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.badge {
  display: inline-block;
  font-family: var(--font-ar);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #065f46;
  background: linear-gradient(90deg, #a7f3d0, #fde68a);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-brand {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  background: linear-gradient(120deg, #042f2e 10%, #0d9488 45%, #ea580c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.75rem;
}

.hero-tagline {
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: var(--ink-soft);
  max-width: 34ch;
  margin-bottom: 0.65rem;
}

.hero-support {
  color: #3f6864;
  max-width: 42ch;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.hero-pills li {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(13, 148, 136, 0.2);
  color: var(--teal-deep);
}

.hero-shot {
  min-height: 320px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.animate-in {
  animation: rise 0.9s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

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

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.03em;
  margin: 0.35rem 0 0.65rem;
}

.section-head p {
  color: #3f6864;
}

.section-head.light h2,
.section-head.light .eyebrow {
  color: #ecfdf5;
}

.section-head.light p {
  color: rgba(236, 253, 250, 0.82);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  padding: 1.35rem 1.2rem;
  box-shadow: 0 12px 30px rgba(4, 47, 46, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border-top: 4px solid var(--teal);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(4, 47, 46, 0.14);
}

.feature-icon {
  width: 2.4rem;
  height: 2.4rem;
  display: grid;
  place-items: center;
  border-radius: 0.75rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  background: #ccfbf1;
  color: var(--teal-deep);
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: #3f6864;
}

.c-teal {
  border-top-color: var(--teal);
}
.c-teal .feature-icon {
  background: #ccfbf1;
  color: #0f766e;
}
.c-emerald {
  border-top-color: var(--emerald);
}
.c-emerald .feature-icon {
  background: #d1fae5;
  color: #047857;
}
.c-amber {
  border-top-color: var(--amber);
}
.c-amber .feature-icon {
  background: #fef3c7;
  color: #b45309;
}
.c-coral {
  border-top-color: var(--coral);
}
.c-coral .feature-icon {
  background: #ffedd5;
  color: #c2410c;
}
.c-sky {
  border-top-color: var(--sky);
}
.c-sky .feature-icon {
  background: #e0f2fe;
  color: #0369a1;
}
.c-gold {
  border-top-color: var(--gold);
}
.c-gold .feature-icon {
  background: #fef9c3;
  color: #a16207;
  font-family: var(--font-ar);
}
.c-mint {
  border-top-color: var(--mint);
}
.c-mint .feature-icon {
  background: #ccfbf1;
  color: #0f766e;
}
.c-rose {
  border-top-color: var(--rose);
}
.c-rose .feature-icon {
  background: #ffe4e6;
  color: #be123c;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.shot-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(13, 148, 136, 0.12);
  box-shadow: 0 14px 32px rgba(4, 47, 46, 0.1);
  transition: transform 0.25s ease;
}

.shot-card:hover {
  transform: translateY(-5px);
}

.shot-card figcaption {
  padding: 0.85rem 1rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.shot-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(145deg, #134e4a, #0d9488 45%, #f59e0b);
  overflow: hidden;
}

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.shot-frame .placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  color: #ecfdf5;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.92), rgba(245, 158, 11, 0.85)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.05) 12px,
      rgba(255, 255, 255, 0.05) 24px
    );
}

.shot-frame .placeholder small {
  display: block;
  margin-top: 0.35rem;
  font-weight: 500;
  font-size: 0.75rem;
  opacity: 0.85;
}

/* Reports */
.reports {
  background: linear-gradient(145deg, #042f2e 0%, #0f766e 48%, #115e59 100%);
  color: #ecfdf5;
  border-radius: 2rem;
  margin: 0 1rem;
  box-shadow: var(--shadow);
}

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

.report-card {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 0.75rem;
  backdrop-filter: blur(8px);
  color: inherit;
  transition: transform 0.25s ease, background 0.25s ease;
}

.report-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}

.pdf-tile {
  aspect-ratio: 16 / 10;
  border-radius: 0.9rem;
  margin-bottom: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background:
    linear-gradient(145deg, rgba(15, 118, 110, 0.55), rgba(245, 158, 11, 0.45)),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.05) 12px,
      rgba(255, 255, 255, 0.05) 24px
    );
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.pdf-icon {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 0.55rem 0.85rem;
  border-radius: 0.55rem;
  background: #fff;
  color: #b91c1c;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pdf-cta {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ecfdf5;
}

.report-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.report-card p {
  font-size: 0.88rem;
  color: rgba(236, 253, 250, 0.8);
}

/* Zoomable screenshots */
.zoomable {
  cursor: zoom-in;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(4, 47, 46, 0.88);
  backdrop-filter: blur(6px);
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-img {
  max-width: min(96vw, 1400px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  background: #fff;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.lightbox-close:hover {
  background: #fff;
}

.report-card:nth-child(4),
.report-card:nth-child(5) {
  grid-column: span 1;
}

/* Trust */
.trust {
  padding-top: 3rem;
}

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

.trust-strip > div {
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  border: 1px solid rgba(13, 148, 136, 0.15);
}

.trust-strip h3 {
  margin-bottom: 0.4rem;
  color: var(--teal-deep);
}

.trust-strip p {
  color: #3f6864;
  font-size: 0.92rem;
}

/* Contact */
.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  background: linear-gradient(135deg, #fff 0%, #ecfdf5 50%, #fff7ed 100%);
  border: 2px solid rgba(13, 148, 136, 0.18);
  border-radius: 2rem;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.03em;
  margin: 0.25rem 0 0.35rem;
}

.contact-role {
  font-weight: 700;
  color: var(--teal-deep);
  margin-bottom: 0.85rem;
}

.contact-blurb {
  color: #3f6864;
  margin-bottom: 1.25rem;
  max-width: 42ch;
}

.contact-numbers {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.contact-numbers li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-numbers span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5b807c;
}

.contact-numbers a {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
}

.contact-numbers a:hover {
  color: var(--teal-deep);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  justify-content: center;
}

/* Footer */
.footer {
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(13, 148, 136, 0.15);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #3f6864;
  font-size: 0.9rem;
}

.footer .brand-text {
  display: block;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.footer a:hover {
  color: var(--teal-deep);
}

/* Mobile sticky CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 60;
  gap: 0.6rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(240, 253, 250, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(13, 148, 136, 0.2);
}

.mobile-cta .btn {
  flex: 1;
}

/* Responsive */
@media (max-width: 980px) {
  .hero-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-shot {
    transform: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 5.75rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-tools {
    margin-inline-start: auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(240, 253, 250, 0.98);
    border-bottom: 1px solid rgba(13, 148, 136, 0.15);
    padding: 0.5rem 1rem 1rem;
    margin-inline-start: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0.25rem;
    border-bottom: 1px solid rgba(13, 148, 136, 0.08);
  }

  .nav-links .btn {
    margin-top: 0.5rem;
    width: 100%;
  }

  .feature-grid,
  .gallery-grid,
  .report-grid {
    grid-template-columns: 1fr;
  }

  .reports {
    margin: 0;
    border-radius: 0;
  }

  .mobile-cta {
    display: flex;
  }

  .hero {
    padding-top: 2rem;
  }
}
