:root {
  --color-bg: #f7f3ea;
  --color-surface: #ffffff;
  --color-primary: #c89b3c;
  --color-primary-dark: #111111;
  --color-secondary: #e6b84d;
  --color-accent: #d7a83f;
  --color-text: #17140f;
  --color-muted: #706657;
  --shadow-soft: 0 16px 42px -24px rgba(17, 17, 17, 0.42);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Tajawal', sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  scroll-behavior: smooth;
}

.font-changa {
  font-family: 'Changa', sans-serif;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at 8% 8%, rgba(200, 155, 60, 0.16) 0, transparent 32%),
    radial-gradient(circle at 90% 18%, rgba(17, 17, 17, 0.08) 0, transparent 26%),
    radial-gradient(circle at 18% 88%, rgba(215, 168, 63, 0.12) 0, transparent 28%),
    linear-gradient(to bottom, #fffdf8, #f2eadb);
}

.nav-link {
  position: relative;
  font-weight: 700;
  color: #334155;
  transition: color 0.25s ease;
}

.site-logo {
  background: #0b0d0f;
  object-fit: cover;
  object-position: center;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.mobile-link {
  display: block;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
  color: #334155;
}

.mobile-link.is-active,
.mobile-link:hover {
  background: #f5ead0;
  color: var(--color-primary-dark);
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(6px);
}

.section-title {
  font-family: 'Changa', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.25;
  color: var(--color-primary-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stagger-1 {
  transition-delay: 0.08s;
}

.stagger-2 {
  transition-delay: 0.16s;
}

.stagger-3 {
  transition-delay: 0.24s;
}

.floating-actions {
  position: fixed;
  right: 14px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 24px -12px rgba(0, 0, 0, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.35);
}

.fab-wa-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 24px -12px rgba(10, 129, 56, 0.75);
}

.fab-wa-icon svg {
  width: 26px;
  height: 26px;
}

.fab-wa-label {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
  background: #ffffff;
  color: #1f2937;
  border-radius: 12px;
  border: 1px solid #dbe4ef;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.fab-wa:hover .fab-wa-label {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.interactive-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.interactive-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 36px -20px rgba(17, 17, 17, 0.35);
  border-color: rgba(200, 155, 60, 0.45);
}

.card-pointer {
  position: absolute;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--color-primary-dark);
  border: 1px solid rgba(200, 155, 60, 0.28);
  transform: translateX(-4px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.interactive-card:hover .card-pointer {
  opacity: 1;
  transform: translateX(0);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(200, 155, 60, 0.2), rgba(17, 17, 17, 0.18));
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-meta {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-muted);
}

.page-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #f5ead0;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 12px;
}

.contact-tile {
  border-radius: 14px;
  border: 1px solid #ead9ad;
  background: #ffffff;
  padding: 14px;
  box-shadow: 0 10px 20px -18px rgba(17, 17, 17, 0.45);
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.95;
  font-size: 1.1rem;
}

.why-item-dot {
  width: 9px;
  height: 9px;
  margin-top: 11px;
  border-radius: 999px;
  background: var(--color-accent);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(200, 155, 60, 0.18);
}

.why-stat {
  border: 1px solid #ead9ad;
  border-radius: 14px;
  background: #ffffff;
  padding: 10px 8px;
}

.why-stat-number {
  font-family: 'Changa', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-dark);
}

.why-stat-label {
  margin-top: 2px;
  font-size: 0.75rem;
  color: var(--color-muted);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 520px;
  box-shadow: var(--shadow-soft);
}

.hero-track {
  display: flex;
  direction: ltr;
  width: 100%;
  transition: transform 0.6s ease;
}

.hero-slide {
  flex: 0 0 100%;
  min-width: 100%;
  min-height: 520px;
  position: relative;
  background-size: cover;
  background-position: center;
  direction: rtl;
}

.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 10, 10, 0.92), rgba(17, 17, 17, 0.68) 55%, rgba(200, 155, 60, 0.42));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.35);
}

.slider-nav.next {
  right: 14px;
}

.slider-nav.prev {
  left: 14px;
}

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.slider-dot.active {
  width: 24px;
  background: #ffffff;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #fbf6e8 50%, #fffdf8 100%);
  border: 1px solid #ead9ad;
  box-shadow: 0 24px 48px -30px rgba(17, 17, 17, 0.35);
}

.testimonial-track {
  display: flex;
  direction: ltr;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 8px;
  box-sizing: border-box;
  direction: rtl;
}

.testimonial-card {
  position: relative;
  height: 100%;
  border-radius: 22px;
  border: 1px solid #ead9ad;
  background: linear-gradient(170deg, #ffffff, #fbf6e8);
  padding: 22px;
  box-shadow: 0 12px 24px -18px rgba(17, 17, 17, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: #d7a83f;
  box-shadow: 0 18px 32px -18px rgba(200, 155, 60, 0.35);
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #f5ead0;
  color: #111111;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
}

.quote-mark {
  display: inline-block;
  margin-top: 6px;
  color: #b49a62;
  font-size: 32px;
  line-height: 1;
}

.slider-nav.prev,
.slider-nav.next {
  box-shadow: 0 8px 20px -14px rgba(15, 23, 42, 0.5);
}

@media (min-width: 768px) {
  .testimonial-slide {
    flex: 0 0 50%;
    min-width: 50%;
  }
}

.testimonial-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c89b3c, #d7a83f);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.stars {
  color: #f59e0b;
  letter-spacing: 2px;
}

.list-dot li {
  position: relative;
  padding-right: 1rem;
}

.list-dot li::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background-color: var(--color-accent);
}

.neo-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid #c89b3c;
  border-radius: 34px;
  padding: 30px 22px;
  background: linear-gradient(140deg, #141414 0%, #fbf6e8 42%, #f7ecd1 74%, #fffaf0 100%);
  background-size: 180% 180%;
  box-shadow: 0 26px 55px -36px rgba(17, 17, 17, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  isolation: isolate;
  animation: neoGradient 12s ease-in-out infinite;
}

.neo-cta::before {
  content: '';
  position: absolute;
  inset: -40% -10%;
  background: conic-gradient(from 0deg at 50% 50%, rgba(200, 155, 60, 0.24), rgba(255, 255, 255, 0.02), rgba(17, 17, 17, 0.18), rgba(200, 155, 60, 0.24));
  mix-blend-mode: soft-light;
  opacity: 0.7;
  animation: neoSpin 24s linear infinite;
  pointer-events: none;
}

.neo-cta > * {
  position: relative;
  z-index: 1;
}

.neo-cta-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
}

.neo-cta-orb-one {
  width: 200px;
  height: 200px;
  top: -72px;
  right: -56px;
  background: radial-gradient(circle at 30% 30%, rgba(200, 155, 60, 0.46), rgba(200, 155, 60, 0));
  animation: neoFloatA 10s ease-in-out infinite;
}

.neo-cta-orb-two {
  width: 170px;
  height: 170px;
  bottom: -70px;
  left: -42px;
  background: radial-gradient(circle at 30% 30%, rgba(17, 17, 17, 0.34), rgba(17, 17, 17, 0));
  animation: neoFloatB 11s ease-in-out infinite;
}

.neo-cta-line {
  position: absolute;
  width: 55%;
  height: 180%;
  top: -45%;
  right: -64%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0));
  transform: rotate(14deg);
  animation: neoLineSweep 7s ease-in-out infinite;
  pointer-events: none;
}

.neo-cta-badge {
  margin: 0 auto;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid #c89b3c;
  background: rgba(255, 255, 255, 0.86);
  color: #111111;
  font-size: 1.06rem;
  font-weight: 800;
  padding: 10px 18px;
  box-shadow: 0 12px 20px -16px rgba(17, 17, 17, 0.7);
}

.neo-cta-text {
  margin-top: 14px;
  color: #fff4d6;
  font-size: 1.22rem;
  line-height: 1.85;
}

.neo-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 999px;
  min-height: 54px;
  width: auto;
  min-width: 170px;
  padding: 12px 26px;
  background: linear-gradient(90deg, #c89b3c 0%, #e6b84d 50%, #b8862d 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
  text-align: center;
  box-shadow: 0 18px 32px -20px rgba(10, 10, 10, 0.92), 0 0 0 0 rgba(200, 155, 60, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: neoBtnGlow 2.8s ease-in-out infinite;
}

.neo-cta-btn::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(200, 155, 60, 0.45);
  opacity: 0;
  animation: neoBtnRing 2.8s ease-out infinite;
  pointer-events: none;
}

.neo-cta-btn:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 20px 34px -16px rgba(17, 17, 17, 1), 0 0 0 8px rgba(200, 155, 60, 0.14);
}

.neo-cta-btn-shine {
  position: absolute;
  inset: 0;
}

.neo-cta-btn-shine::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0));
  transform: skewX(-24deg);
  animation: neoButtonShine 3.2s ease-in-out infinite;
}

.neo-cta-btn-label {
  position: relative;
  z-index: 10;
  display: block;
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}

.neo-cta-foot {
  margin-top: 16px;
  color: #fff2c9;
  font-size: 1.12rem;
  font-weight: 800;
}

@keyframes neoGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes neoSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes neoFloatA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-15px, 10px); }
}

@keyframes neoFloatB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -12px); }
}

@keyframes neoLineSweep {
  0%, 68% { right: -70%; opacity: 0; }
  76% { opacity: 1; }
  100% { right: 132%; opacity: 0; }
}

@keyframes neoButtonShine {
  0%, 62% { left: -120%; }
  100% { left: 165%; }
}

@keyframes neoBtnGlow {
  0%,
  100% {
    box-shadow: 0 18px 32px -20px rgba(10, 10, 10, 0.92), 0 0 0 0 rgba(200, 155, 60, 0.25);
  }
  50% {
    box-shadow: 0 20px 36px -18px rgba(17, 17, 17, 1), 0 0 0 6px rgba(200, 155, 60, 0.14);
  }
}

@keyframes neoBtnRing {
  0% {
    transform: scale(0.98);
    opacity: 0;
  }
  35% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.08);
    opacity: 0;
  }
}

.cta-panel {
  border: 1px solid #ead9ad;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff, #fbf6e8);
  box-shadow: 0 20px 42px -28px rgba(17, 17, 17, 0.28);
}

.cta-info {
  position: relative;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #334155;
  font-size: 0.97rem;
}

.cta-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #f5ead0;
  color: #111111;
  font-size: 12px;
}

.cta-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #ead9ad;
  background: #ffffff;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
}

.cta-form {
  border: 1px solid #ead9ad;
  border-radius: 18px;
  background: #ffffff;
  padding: 14px;
}

.cta-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  background: #fff;
  padding: 12px 14px;
  font-size: 0.95rem;
  color: #1e293b;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-input:focus {
  border-color: #c89b3c;
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.16);
}

.cta-submit {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, #c89b3c, #111111);
  color: #ffffff;
  padding: 12px 14px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -12px rgba(17, 17, 17, 0.62);
}

@media (max-width: 640px) {
  .neo-cta {
    border-radius: 22px;
    padding: 20px 14px;
  }

  .neo-cta-line {
    width: 70%;
  }

  .neo-cta-badge {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .neo-cta-text {
    font-size: 1rem;
    line-height: 1.8;
  }

  .neo-cta-btn {
    width: auto;
    min-width: 165px;
    font-size: 0.93rem;
    padding: 10px 14px;
    line-height: 1.6;
  }

  .neo-cta-foot {
    font-size: 1rem;
    line-height: 1.7;
  }

  .neo-cta-orb-one {
    width: 130px;
    height: 130px;
  }

  .neo-cta-orb-two {
    width: 110px;
    height: 110px;
  }

  .fab-wa-icon {
    width: 46px;
    height: 46px;
  }

  .fab-wa-label {
    display: none;
  }

  .hero-slider,
  .hero-slide {
    min-height: 500px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .neo-cta,
  .neo-cta::before,
  .neo-cta-orb,
  .neo-cta-line,
  .neo-cta-btn-shine::before,
  .neo-cta-btn,
  .neo-cta-btn::after {
    animation: none !important;
  }
}

/* =====================================================
   ANNOUNCEMENT BAR
   ===================================================== */
.announce-bar {
  background: var(--color-primary-dark);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 16px;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.announce-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: nowrap;
}

.announce-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.announce-sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
}

.announce-link {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  transition: color 0.2s ease;
}

.announce-link:hover {
  color: #fff;
  text-decoration: underline;
}

.announce-icon {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  opacity: 0.75;
}

.announce-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #4ade80;
  text-decoration: none;
  font-weight: 800;
  transition: color 0.2s ease;
}

.announce-wa:hover {
  color: #86efac;
}

@media (max-width: 640px) {
  .announce-hide-sm {
    display: none;
  }

  .announce-inner {
    gap: 10px;
  }
}

/* =====================================================
   BACK TO TOP BUTTON
   ===================================================== */
.back-to-top {
  position: fixed;
  left: 14px;
  bottom: 16px;
  z-index: 60;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--color-primary-dark);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(17, 17, 17, 0.7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary);
  transform: translateY(-3px) !important;
  box-shadow: 0 14px 26px -10px rgba(17, 17, 17, 0.85);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* =====================================================
   UI ENHANCEMENTS — card gradient border on hover
   ===================================================== */
.glass-card.interactive-card:hover {
  border-color: rgba(200, 155, 60, 0.4);
  background: rgba(255, 255, 255, 0.88);
}

/* Section title with subtle left accent line (RTL: right side) */
.section-title {
  position: relative;
  padding-right: 14px;
}

.section-title::before {
  content: '';
  position: absolute;
  right: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  border-radius: 4px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
}

/* Chips in footer link nicely */
.cta-chip a {
  color: inherit;
  text-decoration: none;
}

/* Page chip pulse subtle glow */
.page-chip {
  box-shadow: 0 0 0 0 rgba(200, 155, 60, 0.25);
  animation: chipPulse 3s ease-in-out infinite;
}

@keyframes chipPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 155, 60, 0.24); }
  50%       { box-shadow: 0 0 0 6px rgba(200, 155, 60, 0); }
}

/* Contact form submit button with WhatsApp styling */
.wa-form-submit {
  background: linear-gradient(90deg, #25d366, #20ba58) !important;
  color: #073f20 !important;
}

.wa-form-submit:hover {
  background: linear-gradient(90deg, #20ba58, #1aa84f) !important;
  box-shadow: 0 14px 24px -12px rgba(37, 211, 102, 0.55) !important;
}

/* =====================================================
   SCREEN-READER ONLY UTILITY
   ===================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  .back-to-top,
  .page-chip {
    animation: none !important;
    transition: none !important;
  }
}
