/* ===== Athar Educational Services =====
   Palette aliases the live EduHive / Athar public theme tokens. */
:root {
  --athar-svc-ink: var(--eduhive-primary, #584530);
  --athar-svc-muted: #7a6a56;
  --athar-svc-line: rgba(125, 104, 79, 0.18);
  --athar-svc-sand: var(--eduhive-light3, #FFF7EF);
  --athar-svc-paper: var(--eduhive-light, #FFFAEF);
  --athar-svc-copper: var(--eduhive-base, #7D684F);
  --athar-svc-copper-deep: var(--eduhive-primary, #584530);
  --athar-svc-forest: var(--eduhive-primary, #584530);
  --athar-svc-accent: var(--eduhive-yellow2, #EF802B);
  --athar-svc-accent-soft: var(--eduhive-secondary, #ffcc80);
  --athar-svc-dark: var(--eduhive-black2, #181818);
  --athar-svc-dark-mid: #3d3228;
  --athar-svc-dark-soft: #2a231c;
  --athar-svc-whatsapp: #1fa855;
  --athar-svc-whatsapp-deep: #188a45;
  --athar-svc-radius: 22px;
}

@keyframes atharSvcRise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes atharSvcSoftPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.athar-svc-page {
  background:
    radial-gradient(1200px 480px at 10% -10%, rgba(239, 128, 43, 0.12), transparent 60%),
    radial-gradient(900px 420px at 100% 8%, rgba(88, 69, 48, 0.1), transparent 55%),
    linear-gradient(180deg, #FFF7EF 0%, #fff 42%, #FFF7EF 100%);
  overflow: hidden;
}

.athar-svc-intro {
  padding: 28px 0 10px;
}

.athar-svc-intro__panel {
  display: grid;
  gap: 18px;
  padding: 28px 30px;
  border-radius: var(--athar-svc-radius);
  background: linear-gradient(135deg, rgba(255, 250, 239, 0.98), rgba(243, 235, 226, 0.95));
  border: 1px solid var(--athar-svc-line);
  box-shadow: 0 18px 40px rgba(24, 24, 24, 0.06);
  animation: atharSvcRise 0.7s ease both;
}

.athar-svc-intro__eyebrow {
  margin: 0;
  color: var(--athar-svc-copper);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.athar-svc-intro__title {
  margin: 0;
  color: var(--athar-svc-ink);
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
  line-height: 1.25;
  max-width: 18ch;
}

.athar-svc-intro__text {
  margin: 0;
  color: var(--athar-svc-muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 58ch;
}

.athar-svc-intro__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.athar-svc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none !important;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.athar-svc-btn:hover {
  transform: translateY(-2px);
}

.athar-svc-btn--primary {
  background: var(--athar-svc-copper);
  color: #fff !important;
}

.athar-svc-btn--primary:hover {
  background: var(--athar-svc-copper-deep);
  color: #fff !important;
}

.athar-svc-btn--ghost {
  background: transparent;
  color: var(--athar-svc-ink) !important;
  border-color: var(--athar-svc-line);
}

.athar-svc-btn--whatsapp {
  background: #1fa855;
  color: #fff !important;
}

.athar-svc-btn--whatsapp:hover {
  background: #188a45;
  color: #fff !important;
}

.athar-svc-list {
  padding: 20px 0 80px;
  display: grid;
  gap: 28px;
}

.athar-svc-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 340px;
  border-radius: calc(var(--athar-svc-radius) + 4px);
  overflow: hidden;
  background: var(--athar-svc-paper);
  border: 1px solid var(--athar-svc-line);
  box-shadow: 0 22px 50px rgba(24, 24, 24, 0.07);
  animation: atharSvcRise 0.75s ease both;
}

.athar-svc-row:nth-child(even) {
  grid-template-columns: 0.95fr 1.05fr;
}

.athar-svc-row:nth-child(even) .athar-svc-row__media {
  order: 2;
}

.athar-svc-row__media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.athar-svc-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.7s ease;
}

.athar-svc-row:hover .athar-svc-row__media img {
  transform: scale(1.09);
}

.athar-svc-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(24, 24, 24, 0.35));
  pointer-events: none;
}

.athar-svc-row__index {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 250, 239, 0.92);
  color: var(--athar-svc-copper);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.athar-svc-row__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 34px 36px;
  position: relative;
}

.athar-svc-row__body::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(239, 128, 43, 0.08);
  top: -30px;
  inset-inline-end: -20px;
  animation: atharSvcSoftPulse 5s ease-in-out infinite;
}

.athar-svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(88, 69, 48, 0.08);
  color: var(--athar-svc-forest);
  font-size: 0.82rem;
  font-weight: 700;
  width: fit-content;
}

.athar-svc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.athar-svc-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--athar-svc-muted);
  font-size: 0.9rem;
}

.athar-svc-row__title {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.3;
  color: var(--athar-svc-ink);
  position: relative;
  z-index: 1;
}

.athar-svc-row__title a {
  color: inherit;
  text-decoration: none;
}

.athar-svc-row__title a:hover {
  color: var(--athar-svc-copper);
}

.athar-svc-row__excerpt {
  margin: 0;
  color: var(--athar-svc-muted);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.athar-svc-row__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.athar-svc-empty {
  text-align: center;
  padding: 48px 20px;
  border-radius: var(--athar-svc-radius);
  background: var(--athar-svc-paper);
  border: 1px dashed var(--athar-svc-line);
  color: var(--athar-svc-muted);
}

/* ===== Detail page ===== */
.athar-svc-detail {
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(239, 128, 43, 0.12), transparent 55%),
    linear-gradient(180deg, #FFF7EF 0%, #fff 40%, #FFF7EF 100%);
}

.athar-svc-hero {
  position: relative;
  min-height: clamp(320px, 48vh, 520px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.athar-svc-hero__media {
  position: absolute;
  inset: 0;
}

.athar-svc-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.athar-svc-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.18) 0%, rgba(24, 24, 24, 0.72) 100%),
    linear-gradient(90deg, rgba(24, 24, 24, 0.55), transparent 70%);
}

.athar-svc-hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 0 42px;
  color: #fff;
  animation: atharSvcRise 0.7s ease both;
}

.athar-svc-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.athar-svc-hero__crumb a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.athar-svc-hero__title {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.2;
  max-width: 16ch;
}

.athar-svc-hero__lead {
  margin: 0;
  max-width: 54ch;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.92;
}

.athar-svc-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.75fr);
  gap: 28px;
  padding: 34px 0 80px;
}

.athar-svc-panel {
  background: rgba(255, 250, 239, 0.92);
  border: 1px solid var(--athar-svc-line);
  border-radius: var(--athar-svc-radius);
  padding: 28px;
  box-shadow: 0 16px 36px rgba(24, 24, 24, 0.05);
}

.athar-svc-panel + .athar-svc-panel {
  margin-top: 18px;
}

.athar-svc-panel__title {
  margin: 0 0 14px;
  color: var(--athar-svc-ink);
  font-size: 1.35rem;
}

.athar-svc-panel__body {
  color: var(--athar-svc-muted);
  line-height: 1.8;
}

.athar-svc-panel__body p:last-child {
  margin-bottom: 0;
}

.athar-svc-timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: athar-unit;
}

.athar-svc-timeline li {
  position: relative;
  padding: 16px 16px 16px 64px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--athar-svc-line);
  counter-increment: athar-unit;
}

.athar-svc-timeline li::before {
  content: counter(athar-unit, decimal-leading-zero);
  position: absolute;
  top: 16px;
  inset-inline-start: 14px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(239, 128, 43, 0.12);
  color: var(--athar-svc-copper);
  font-weight: 800;
  font-size: 0.82rem;
}

.athar-svc-timeline strong {
  display: block;
  color: var(--athar-svc-ink);
  margin-bottom: 4px;
}

.athar-svc-timeline span {
  color: var(--athar-svc-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.athar-svc-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.athar-svc-flow__item {
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--athar-svc-line);
}

.athar-svc-flow__item strong {
  display: block;
  color: var(--athar-svc-ink);
  margin-bottom: 6px;
}

.athar-svc-flow__item span {
  color: var(--athar-svc-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.athar-svc-contact {
  position: sticky;
  top: 110px;
  background:
    linear-gradient(160deg, rgba(88, 69, 48, 0.96), rgba(24, 24, 24, 0.94));
  color: #fff;
  border-radius: calc(var(--athar-svc-radius) + 2px);
  padding: 28px 24px;
  box-shadow: 0 24px 50px rgba(24, 24, 24, 0.22);
}

.athar-svc-contact h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  color: #fff;
}

.athar-svc-contact p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.athar-svc-contact__facts {
  display: grid;
  gap: 10px;
  margin-bottom: 20px;
}

.athar-svc-contact__facts div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.athar-svc-contact__facts span:first-child {
  opacity: 0.8;
}

.athar-svc-contact__facts strong {
  color: #fff;
  font-weight: 700;
}

.athar-svc-contact__actions {
  display: grid;
  gap: 10px;
}

.athar-svc-contact__form {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.athar-svc-contact__form h4 {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: #fff;
}

/* Dark contact panel: light labels + readable cream fields */
.athar-svc-contact .athar-field__label,
.athar-svc-contact label {
  color: #fff !important;
}

.athar-svc-contact .athar-field__hint {
  color: rgba(255, 250, 239, 0.62);
}

.athar-svc-contact .athar-field__control,
.athar-svc-contact .athar-form input[type="text"],
.athar-svc-contact .athar-form input[type="email"],
.athar-svc-contact .athar-form input[type="tel"],
.athar-svc-contact .athar-form input[type="number"],
.athar-svc-contact .athar-form textarea,
.athar-svc-contact .athar-phone .iti__tel-input,
.athar-svc-contact .athar-phone input.js-phone-input.iti__tel-input {
  background: #FFFAEF !important;
  border-color: rgba(255, 250, 239, 0.42) !important;
  color: #181818 !important;
  caret-color: #181818;
}

.athar-svc-contact .athar-field__control::placeholder,
.athar-svc-contact .athar-form input::placeholder,
.athar-svc-contact .athar-form textarea::placeholder,
.athar-svc-contact .athar-phone .iti__tel-input::placeholder {
  color: rgba(24, 24, 24, 0.48) !important;
  opacity: 1;
}

.athar-svc-contact .athar-field__control:focus,
.athar-svc-contact .athar-form input:focus,
.athar-svc-contact .athar-form textarea:focus,
.athar-svc-contact .athar-phone .iti__tel-input:focus {
  background: #FFFFFF !important;
  border-color: #ffcc80 !important;
  box-shadow: 0 0 0 4px rgba(255, 204, 128, 0.22) !important;
  color: #181818 !important;
}

.athar-svc-contact .athar-phone .iti__selected-dial-code {
  color: #181818 !important;
}

.athar-svc-contact .athar-phone .iti__selected-country {
  color: #181818;
}

.athar-svc-contact .athar-field__error,
.athar-svc-contact .athar-phone__feedback.is-invalid {
  color: #ffb4a8 !important;
}

.athar-svc-contact .athar-phone__feedback.is-valid {
  color: #9de0b8 !important;
}

.athar-svc-contact .athar-form__btn,
.athar-svc-contact .athar-form .eduhive-btn,
.athar-svc-contact .athar-svc-btn--primary {
  color: #fff !important;
}

.athar-svc-contact .athar-form__btn span,
.athar-svc-contact .athar-form .eduhive-btn span,
.athar-svc-contact .athar-svc-btn span {
  color: inherit !important;
}

.athar-inline-contact--compact .athar-form__grid {
  gap: 10px;
}

.athar-inline-contact--compact .athar-field__control,
.athar-inline-contact--compact .athar-textarea {
  min-height: 42px;
  font-size: 0.9rem;
}

.athar-inline-contact--compact .athar-form__btn {
  width: 100%;
  min-height: 42px;
}

.athar-svc-contact .athar-svc-btn--ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28);
}

.athar-svc-contact .athar-svc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.athar-svc-contact__note {
  margin-top: 14px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
  .athar-svc-row,
  .athar-svc-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .athar-svc-row:nth-child(even) .athar-svc-row__media {
    order: 0;
  }

  .athar-svc-row__media {
    min-height: 230px;
  }

  .athar-svc-detail__grid {
    grid-template-columns: 1fr;
  }

  .athar-svc-contact {
    position: static;
  }

  .athar-svc-flow {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .athar-svc-intro__panel,
  .athar-svc-row__body,
  .athar-svc-panel {
    padding: 22px 18px;
  }

  .athar-svc-hero__title {
    max-width: none;
  }
}

/* Hide legacy price on home service cards */
.course-card__price {
  display: none !important;
}

/* ===== Bold listing gallery ===== */
@keyframes atharSvcMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes atharSvcFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.athar-svc-page--gallery {
  position: relative;
}

.athar-svc-stage {
  position: relative;
  padding: 28px 0 18px;
  overflow: hidden;
}

.athar-svc-stage__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
  animation: atharSvcFloat 7s ease-in-out infinite;
}

.athar-svc-stage__glow--one {
  width: 240px;
  height: 240px;
  background: rgba(239, 128, 43, 0.14);
  top: -60px;
  inset-inline-start: -40px;
}

.athar-svc-stage__glow--two {
  width: 200px;
  height: 200px;
  background: rgba(88, 69, 48, 0.12);
  bottom: -70px;
  inset-inline-end: -30px;
  animation-delay: 1.2s;
}

.athar-svc-stage__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 22px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.athar-svc-stage__crumb {
  display: flex;
  gap: 8px;
  margin: 0 0 8px;
  color: var(--athar-svc-muted);
  font-size: 0.84rem;
}

.athar-svc-stage__crumb a {
  color: var(--athar-svc-copper);
}

.athar-svc-stage__title {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  line-height: 1.2;
  color: var(--athar-svc-ink);
  max-width: 18ch;
  animation: atharSvcRise 0.8s ease both;
}

.athar-svc-stage__text {
  margin: 0 0 16px;
  color: var(--athar-svc-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 46ch;
}

.athar-svc-stage__aside {
  display: grid;
  gap: 12px;
}

.athar-svc-stage__stat {
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--athar-svc-forest), #181818);
  color: #fff;
  animation: atharSvcRise 0.85s ease both;
}

.athar-svc-stage__stat strong {
  display: block;
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 6px;
  color: #ffcc80;
}

.athar-svc-stage__stat span {
  font-size: 0.88rem;
  line-height: 1.4;
  opacity: 0.9;
}

.athar-svc-stage__ribbon {
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid var(--athar-svc-line);
  background: rgba(255, 250, 239, 0.8);
  padding: 8px 0;
}

.athar-svc-stage__ribbon-track {
  display: none;
}

.athar-svc-stage .athar-svc-intro__eyebrow {
  margin-bottom: 6px;
  font-size: 0.75rem;
}

.athar-svc-stage .athar-svc-btn {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}


.athar-svc-gallery {
  padding: 10px 0 40px;
}

.athar-svc-feature {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 0;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #181818;
  margin-bottom: 24px;
  box-shadow: 0 30px 60px rgba(24, 24, 24, 0.18);
  animation: atharSvcRise 0.75s ease both;
}

.athar-svc-feature__media {
  position: relative;
  min-height: 320px;
}

.athar-svc-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.athar-svc-feature:hover .athar-svc-feature__media img {
  transform: scale(1.06);
}

.athar-svc-feature__badge {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 239, 0.94);
  color: var(--athar-svc-copper);
  font-weight: 800;
  font-size: 0.8rem;
}

.athar-svc-feature__body {
  padding: 36px 34px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(239, 128, 43, 0.28), transparent 60%),
    linear-gradient(160deg, #2a231c, #181818);
}

.athar-svc-feature__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.25;
}

.athar-svc-feature__title a {
  color: #fff;
  text-decoration: none;
}

.athar-svc-feature__excerpt {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.athar-svc-feature .athar-svc-meta span {
  color: rgba(255, 255, 255, 0.72);
}

.athar-svc-feature .athar-svc-btn--ghost {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28);
}

.athar-svc-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 18px;
  gap: 18px;
}

.athar-svc-tile {
  position: relative;
  grid-column: span 4;
  grid-row: span 16;
  display: grid;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--athar-svc-dark, #181818);
  border: 1px solid rgba(24, 24, 24, 0.2);
  box-shadow: 0 22px 44px rgba(24, 24, 24, 0.14);
  animation: atharSvcRise 0.7s ease both;
  isolation: isolate;
}

.athar-svc-tile--hero {
  grid-column: span 8;
  grid-row: span 20;
}

.athar-svc-tile--tall {
  grid-column: span 4;
  grid-row: span 22;
}

.athar-svc-tile--wide {
  grid-column: span 8;
  grid-row: span 16;
}

.athar-svc-tile--square {
  grid-column: span 4;
  grid-row: span 16;
}

.athar-svc-tile--compact {
  grid-column: span 4;
  grid-row: span 16;
}

.athar-svc-tile__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.athar-svc-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 0.85s ease;
}

.athar-svc-tile:hover .athar-svc-tile__media img {
  transform: scale(1.12);
}

.athar-svc-tile__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.08) 10%, rgba(24, 24, 24, 0.78) 72%, rgba(24, 24, 24, 0.92) 100%),
    linear-gradient(90deg, rgba(88, 69, 48, 0.22), transparent 55%);
  z-index: 1;
  transition: background 0.35s ease;
}

.athar-svc-tile:hover .athar-svc-tile__shade {
  background:
    linear-gradient(180deg, rgba(24, 24, 24, 0.05) 5%, rgba(24, 24, 24, 0.7) 68%, rgba(24, 24, 24, 0.9) 100%),
    linear-gradient(90deg, rgba(239, 128, 43, 0.28), transparent 60%);
}

.athar-svc-tile__index {
  position: absolute;
  top: auto;
  bottom: auto;
  inset-inline-end: 10px;
  inset-inline-start: auto;
  top: 8px;
  z-index: 2;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 250, 239, 0.14);
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.04em;
  pointer-events: none;
  display: block;
}

.athar-svc-tile__body {
  position: relative;
  z-index: 3;
  align-self: end;
  padding: 22px 20px 24px;
  display: grid;
  gap: 10px;
  color: #fff;
}

.athar-svc-tile__title {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  line-height: 1.3;
  color: #fff;
  max-width: 16ch;
}

.athar-svc-tile__title a {
  color: inherit;
  text-decoration: none;
}

.athar-svc-tile__title a:hover {
  color: #ffcc80;
}

.athar-svc-tile__excerpt {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.6;
  max-width: 36ch;
}

.athar-svc-tile .athar-svc-chip {
  background: rgba(255, 250, 239, 0.14);
  color: #ffcc80;
  backdrop-filter: blur(6px);
}

.athar-svc-meta--lite span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.athar-svc-tile .athar-svc-btn--primary {
  background: #FFFAEF;
  color: var(--athar-svc-ink) !important;
}

.athar-svc-tile .athar-svc-btn--primary:hover {
  background: #ffcc80;
  color: #181818 !important;
}

.athar-svc-tile--hero .athar-svc-tile__title {
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  max-width: 14ch;
}

.athar-svc-tile--tall .athar-svc-tile__body {
  padding-bottom: 28px;
}

.athar-svc-bottom-cta {
  padding: 10px 0 70px;
}

.athar-svc-bottom-cta__panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 30px;
  border-radius: 28px;
  background: linear-gradient(120deg, var(--athar-svc-forest), #3d3228 55%, #181818);
  color: #fff;
  box-shadow: 0 24px 48px rgba(24, 24, 24, 0.16);
}

.athar-svc-bottom-cta__panel h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
}

.athar-svc-bottom-cta__panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.athar-svc-btn--ghost-light {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Detail: visible image */
.athar-svc-hero--split {
  min-height: auto;
  padding: 36px 0 10px;
  background:
    radial-gradient(700px 280px at 0% 0%, rgba(239, 128, 43, 0.14), transparent 60%),
    linear-gradient(180deg, #FFF7EF, transparent);
}

.athar-svc-hero__split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.athar-svc-hero__content--light {
  color: var(--athar-svc-ink);
  padding: 12px 0;
}

.athar-svc-hero__content--light .athar-svc-hero__crumb,
.athar-svc-hero__content--light .athar-svc-hero__crumb a {
  color: var(--athar-svc-muted);
}

.athar-svc-hero__content--light .athar-svc-hero__crumb a {
  color: var(--athar-svc-copper);
}

.athar-svc-hero__content--light .athar-svc-hero__title {
  color: var(--athar-svc-ink);
  max-width: 14ch;
}

.athar-svc-hero__content--light .athar-svc-hero__lead {
  color: var(--athar-svc-muted);
  opacity: 1;
}

.athar-svc-hero__portrait {
  margin: 0;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 28px 50px rgba(24, 24, 24, 0.16);
  animation: atharSvcRise 0.75s ease both;
}

.athar-svc-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.athar-svc-hero__portrait figcaption {
  position: absolute;
  bottom: 16px;
  inset-inline-start: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 239, 0.94);
  color: var(--athar-svc-forest);
  font-weight: 700;
  font-size: 0.84rem;
}

.athar-svc-visual {
  margin: 0 0 18px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--athar-svc-line);
  box-shadow: 0 16px 36px rgba(24, 24, 24, 0.08);
}

.athar-svc-visual img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}

.athar-svc-contact__thumb {
  margin: -8px 0 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.athar-svc-contact__thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

/* Home services + CTAs */
.athar-home-svc {
  position: relative;
  padding: 70px 0 40px;
  overflow: hidden;
  background:
    radial-gradient(800px 320px at 100% 0%, rgba(239, 128, 43, 0.12), transparent 55%),
    linear-gradient(180deg, #FFF7EF 0%, #fff 55%, #FFF7EF 100%);
}

.athar-home-svc__glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(88, 69, 48, 0.12);
  top: 40px;
  inset-inline-start: -80px;
  animation: atharSvcFloat 8s ease-in-out infinite;
}

.athar-home-svc__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.athar-home-svc__title {
  margin: 8px 0 0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  color: var(--athar-svc-ink);
  max-width: 16ch;
  line-height: 1.2;
}

.athar-home-svc__rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow-x: hidden;
  padding-bottom: 4px;
  position: relative;
  z-index: 1;
}

.athar-home-svc__card {
  min-width: 0;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--athar-svc-paper);
  border: 1px solid var(--athar-svc-line);
  box-shadow: 0 18px 36px rgba(24, 24, 24, 0.07);
  animation: atharSvcRise 0.7s ease both;
}

.athar-home-svc__media {
  position: relative;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 0;
}

.athar-home-svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.athar-home-svc__num {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 250, 239, 0.94);
  color: var(--athar-svc-copper);
  font-weight: 800;
}

.athar-home-svc__body {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.athar-home-svc__body h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
}

.athar-home-svc__body h3 a {
  color: var(--athar-svc-ink);
  text-decoration: none;
}

.athar-home-svc__body p {
  margin: 0;
  color: var(--athar-svc-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.athar-home-svc__body .athar-svc-meta {
  gap: 8px;
}

.athar-home-svc__body .athar-svc-meta span {
  font-size: 0.8rem;
}

.athar-home-svc__body .athar-svc-row__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
  margin-top: 4px;
}

.athar-home-svc__body .athar-svc-row__actions .athar-svc-btn {
  flex: 1 1 0;
  min-width: 0;
  padding: 0 10px;
  font-size: 0.82rem;
  white-space: nowrap;
}

@media (max-width: 1199px) {
  .athar-home-svc__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .athar-home-svc__rail {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 360px) {
  .athar-home-svc__body .athar-svc-row__actions {
    flex-wrap: wrap;
  }
}

.athar-home-cta {
  padding: 24px 0;
}

.athar-home-cta--band {
  padding: 10px 0 30px;
}

.athar-home-cta__band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(500px 220px at 100% 0%, rgba(255, 204, 128, 0.22), transparent 60%),
    linear-gradient(125deg, #181818, #584530);
  color: #fff;
  box-shadow: 0 24px 48px rgba(24, 24, 24, 0.16);
  animation: atharSvcRise 0.75s ease both;
}

.athar-home-cta__band .athar-svc-intro__eyebrow {
  color: #ffcc80;
}

.athar-home-cta__band h2 {
  margin: 6px 0 10px;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  max-width: 18ch;
  line-height: 1.25;
}

.athar-home-cta__band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 46ch;
}

.athar-home-cta--split {
  padding: 10px 0 50px;
}

.athar-home-cta--finale {
  padding: 20px 0 70px;
}

.athar-home-cta__finale {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(239, 128, 43, 0.28), transparent 55%),
    radial-gradient(700px 360px at 100% 100%, rgba(88, 69, 48, 0.35), transparent 50%),
    linear-gradient(145deg, #181818 0%, #2a231c 48%, #2a1a10 100%);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.athar-home-cta__finale-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 204, 128, 0.12);
  top: -140px;
  inset-inline-end: -80px;
  animation: atharSvcFloat 9s ease-in-out infinite;
  pointer-events: none;
}

.athar-home-cta__finale-inner {
  position: relative;
  z-index: 1;
  padding: 56px 0;
}

.athar-home-cta__finale-copy {
  max-width: 760px;
  margin-bottom: 28px;
  animation: atharSvcRise 0.75s ease both;
}

.athar-home-cta__finale-eyebrow {
  margin: 0 0 10px;
  color: #ffcc80;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.athar-home-cta__finale-copy h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  line-height: 1.2;
  max-width: 16ch;
}

.athar-home-cta__finale-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 48ch;
}

.athar-home-cta__finale-doors {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

.athar-home-cta__door {
  position: relative;
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 220px;
  padding: 28px 26px 30px;
  border-radius: 26px;
  text-decoration: none !important;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  animation: atharSvcRise 0.8s ease both;
}

.athar-home-cta__door:hover {
  transform: translateY(-6px);
}

.athar-home-cta__door--explore {
  background:
    linear-gradient(160deg, rgba(255, 250, 239, 0.98), rgba(240, 226, 210, 0.95));
  color: var(--athar-svc-ink);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 22px 40px rgba(24, 24, 24, 0.18);
  animation-delay: 0.05s;
}

.athar-home-cta__door--talk {
  background:
    linear-gradient(150deg, rgba(31, 168, 85, 0.95), rgba(239, 128, 43, 0.92));
  color: #fff;
  box-shadow: 0 22px 44px rgba(31, 168, 85, 0.22);
  animation-delay: 0.12s;
}

.athar-home-cta__door-num {
  position: absolute;
  top: 8px;
  inset-inline-end: 14px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
}

.athar-home-cta__door-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--athar-svc-copper);
}

.athar-home-cta__door--talk .athar-home-cta__door-kicker {
  color: rgba(255, 255, 255, 0.82);
}

.athar-home-cta__door strong {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  line-height: 1.25;
  max-width: 14ch;
  color: inherit;
}

.athar-home-cta__door em {
  font-style: normal;
  color: var(--athar-svc-muted);
  line-height: 1.55;
  max-width: 28ch;
}

.athar-home-cta__door--talk em {
  color: rgba(255, 255, 255, 0.84);
}

.athar-home-cta__door-arrow {
  margin-top: 10px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(24, 24, 24, 0.08);
  font-size: 1.1rem;
}

.athar-home-cta__door--talk .athar-home-cta__door-arrow {
  background: rgba(255, 255, 255, 0.18);
  font-size: 1.35rem;
}

.athar-home-cta__finale-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.athar-home-cta__finale-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 700;
}

.athar-home-cta__finale-links a:hover {
  color: #ffcc80;
}

.athar-home-cta__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.athar-home-cta__split-card {
  display: grid;
  gap: 8px;
  padding: 28px 26px;
  border-radius: 24px;
  text-decoration: none !important;
  min-height: 170px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: atharSvcRise 0.75s ease both;
}

.athar-home-cta__split-card:hover {
  transform: translateY(-4px);
}

.athar-home-cta__split-card--services {
  background: linear-gradient(145deg, #FFFAEF, #F5EBDD);
  border: 1px solid var(--athar-svc-line);
  box-shadow: 0 16px 34px rgba(24, 24, 24, 0.06);
}

.athar-home-cta__split-card--contact {
  background: linear-gradient(145deg, #EF802B, #584530);
  color: #fff;
  box-shadow: 0 16px 34px rgba(239, 128, 43, 0.25);
}

.athar-home-cta__split-kicker {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--athar-svc-copper);
}

.athar-home-cta__split-card--contact .athar-home-cta__split-kicker {
  color: rgba(255, 255, 255, 0.75);
}

.athar-home-cta__split-card strong {
  color: var(--athar-svc-ink);
  font-size: 1.35rem;
  line-height: 1.3;
}

.athar-home-cta__split-card--contact strong {
  color: #fff;
}

.athar-home-cta__split-card em {
  font-style: normal;
  color: var(--athar-svc-muted);
}

.athar-home-cta__split-card--contact em {
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1199px) {
  .athar-svc-tile,
  .athar-svc-tile--hero,
  .athar-svc-tile--tall,
  .athar-svc-tile--wide,
  .athar-svc-tile--square,
  .athar-svc-tile--compact {
    grid-column: span 6;
    grid-row: span 16;
  }

  .athar-svc-tile--hero,
  .athar-svc-tile--tall {
    grid-row: span 18;
  }
}

@media (max-width: 991px) {
  .athar-svc-stage__grid,
  .athar-svc-feature,
  .athar-svc-hero__split,
  .athar-home-cta__split,
  .athar-home-cta__finale-doors {
    grid-template-columns: 1fr;
  }

  .athar-svc-feature__body {
    min-height: auto;
  }

  .athar-svc-stage__title,
  .athar-svc-hero__content--light .athar-svc-hero__title,
  .athar-home-cta__finale-copy h2 {
    max-width: none;
  }
}

@media (max-width: 767px) {
  .athar-svc-tile,
  .athar-svc-tile--hero,
  .athar-svc-tile--tall,
  .athar-svc-tile--wide,
  .athar-svc-tile--square,
  .athar-svc-tile--compact {
    grid-column: span 12;
    grid-row: span 15;
    min-height: 320px;
  }

  .athar-svc-bottom-cta__panel,
  .athar-home-cta__band {
    padding: 24px 18px;
  }

  .athar-home-cta__finale-inner {
    padding: 42px 0;
  }

  .athar-home-cta__door {
    min-height: 190px;
  }
}

/* ===== Footer CTA (inside .athar-site-footer) + site footer ===== */
@keyframes atharBridgeMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.main-footer.athar-site-footer,
.athar-site-footer.main-footer {
  margin-top: 0 !important;
  padding-top: 0 !important;
  background:
    linear-gradient(180deg, #3d3228 0%, #2a231c 42%, #181818 100%) !important;
  color: rgba(255, 250, 239, 0.82);
  overflow: hidden;
}

.athar-site-footer__cta.athar-bridge-cta,
.athar-site-footer .athar-bridge-cta,
.athar-site-footer .athar-close-band {
  position: relative;
  z-index: 2;
  padding: 0 0 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.athar-bridge-cta__rail {
  overflow: hidden;
  margin-bottom: 0;
  border-block: 1px solid rgba(255, 204, 128, 0.12);
  background: rgba(24, 24, 24, 0.35);
  padding: 9px 0;
  -webkit-mask-image: none;
  mask-image: none;
}

.athar-bridge-cta__rail::before,
.athar-bridge-cta__rail::after,
.athar-marquee::before,
.athar-marquee::after {
  content: none !important;
  display: none !important;
}

.athar-bridge-cta__rail-track {
  display: none;
}

.athar-bridge-cta .athar-marquee__item {
  color: rgba(255, 204, 128, 0.78);
}

.athar-bridge-cta__shell,
.athar-bridge-cta__board {
  position: relative;
  overflow: visible;
  margin-top: 22px;
  margin-bottom: 0;
  border-radius: 24px;
  padding: 28px 28px 30px;
  background:
    radial-gradient(520px 240px at 0% 0%, rgba(239, 128, 43, 0.16), transparent 55%),
    linear-gradient(160deg, rgba(61, 50, 40, 0.92) 0%, rgba(42, 35, 28, 0.96) 55%, rgba(24, 24, 24, 0.9) 100%);
  border: 1px solid rgba(255, 204, 128, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.athar-bridge-cta__board::before,
.athar-bridge-cta__shell::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffcc80, #EF802B 55%, #7D684F);
}

.athar-bridge-cta__mark {
  display: none;
}

.athar-bridge-cta__intro {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin-bottom: 18px;
  animation: atharSvcRise 0.7s ease both;
}

.athar-bridge-cta__eyebrow {
  margin: 0 0 6px;
  color: var(--athar-svc-accent-soft, #ffcc80);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.athar-bridge-cta__title {
  margin: 0 0 8px;
  color: var(--eduhive-light, #FFFAEF);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.25;
}

.athar-bridge-cta__text {
  margin: 0;
  color: rgba(255, 250, 239, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

.athar-bridge-cta__lanes {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.athar-bridge-cta__lane {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-height: 78px;
  padding: 14px 14px;
  border-radius: 16px;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: atharSvcRise 0.75s ease both;
}

.athar-bridge-cta__lane:hover {
  transform: translateY(-3px);
}

.athar-bridge-cta__lane--wa {
  background: linear-gradient(145deg, #1fa855, #188a45);
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 168, 85, 0.28);
  animation-delay: 0.04s;
}

.athar-bridge-cta__lane--call {
  background: linear-gradient(145deg, var(--eduhive-base, #7D684F), var(--eduhive-primary, #584530));
  color: #fff;
  box-shadow: 0 12px 24px rgba(125, 104, 79, 0.32);
  animation-delay: 0.1s;
}

.athar-bridge-cta__lane--mail {
  background: rgba(255, 250, 239, 0.08);
  color: var(--eduhive-light, #FFFAEF);
  border-color: rgba(255, 204, 128, 0.22);
  box-shadow: none;
  animation-delay: 0.16s;
}

.athar-bridge-cta__lane-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.14);
}

.athar-bridge-cta__lane--mail .athar-bridge-cta__lane-icon {
  background: rgba(255, 204, 128, 0.14);
  color: var(--athar-svc-accent-soft, #ffcc80);
}

.athar-bridge-cta__lane-body {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.athar-bridge-cta__lane-body strong {
  font-size: 0.95rem;
  line-height: 1.25;
  color: inherit;
}

.athar-bridge-cta__lane-body em {
  font-style: normal;
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.86;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.athar-bridge-cta__lane--mail .athar-bridge-cta__lane-body em {
  color: rgba(255, 250, 239, 0.7);
  opacity: 1;
}

.athar-bridge-cta__lane-go {
  display: none;
}

.athar-site-footer__main {
  position: relative;
  z-index: 2;
  padding-top: 28px;
}

.athar-site-footer .main-footer__top {
  margin-bottom: 28px;
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 250, 239, 0.06);
  border: 1px solid rgba(255, 204, 128, 0.14);
}

.athar-site-footer .footer-widget__title {
  color: var(--athar-svc-accent-soft, #ffcc80) !important;
}

.athar-site-footer .footer-widget__about-text,
.athar-site-footer .footer-widget__links a,
.athar-site-footer .footer-widget__info a,
.athar-site-footer .footer-widget__info li {
  color: rgba(255, 250, 239, 0.78) !important;
}

.athar-site-footer .footer-widget__links a:hover,
.athar-site-footer .footer-widget__info a:hover {
  color: var(--athar-svc-accent-soft, #ffcc80) !important;
}

/* Compact copyright strip — no separator line above */
.athar-site-footer .main-footer__bottom {
  border-top: none;
  margin-top: 10px;
  padding-top: 0;
  padding-bottom: 8px;
}

.athar-site-footer .main-footer__bottom__inner {
  border-top: none !important;
  padding: 6px 0 6px;
  text-align: center;
}

.athar-site-footer .main-footer__copyright {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.28em;
  margin: 0 auto;
  padding: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: rgba(255, 250, 239, 0.58) !important;
}

/* Tiny centered accent under the credit — not a full-width border */
.athar-site-footer .main-footer__copyright::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2.4em;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #7d684f 18%,
    #ef802b 50%,
    #7d684f 82%,
    transparent 100%
  );
  transform: translateX(-50%);
  opacity: 0.85;
}

.athar-site-footer .main-footer__copyright-mark {
  color: #7d684f;
  font-size: 0.92em;
  line-height: 1;
}

.athar-site-footer .main-footer__copyright-year {
  color: #ef802b !important;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
}

.athar-site-footer .main-footer__copyright-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 0.12em;
  border-radius: 50%;
  background: #7d684f;
  opacity: 0.9;
  vertical-align: middle;
  flex-shrink: 0;
}

.athar-site-footer .main-footer__copyright-label {
  color: rgba(255, 250, 239, 0.52);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: none;
}

.athar-site-footer .main-footer__copyright-name {
  color: #fffaef !important;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(240, 215, 122, .45);
  transition: color .15s ease, border-color .15s ease;
}
.athar-site-footer a.main-footer__copyright-name:hover {
  color: #f0d77a !important;
  border-bottom-color: #f0d77a;
}
.athar-site-footer .athar-copyright__portfolio {
  color: #f0d77a !important;
  border-bottom-color: rgba(240, 215, 122, .7);
}

.athar-site-footer .main-footer__shape-one,
.athar-site-footer .main-footer__shape-two,
.athar-site-footer .main-footer__shape-three,
.athar-site-footer .main-footer__shape-four,
.athar-site-footer .main-footer__shape-five {
  display: none !important;
}

.athar-site-footer .main-footer__social a,
.athar-site-footer .social-links a {
  color: var(--athar-svc-accent-soft, #ffcc80);
}

.athar-site-footer .main-footer__logo {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 14px;
  background: var(--eduhive-light, #FFFAEF);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.athar-site-footer .main-footer__logo img {
  width: auto;
  max-width: 180px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

@media (max-width: 991px) {
  .athar-bridge-cta__lanes {
    grid-template-columns: 1fr;
  }

  .athar-site-footer__cta.athar-bridge-cta,
  .athar-site-footer .athar-bridge-cta,
  .athar-site-footer .athar-close-band {
    padding-bottom: 4px;
  }

  .athar-bridge-cta__board,
  .athar-bridge-cta__shell {
    padding: 22px 18px 26px;
    border-radius: 20px;
  }

  .athar-bridge-cta__mark {
    opacity: 0.55;
    font-size: 6rem;
  }

  .athar-site-footer__main {
    padding-top: 20px;
  }
}

/* ===== Seamless infinite marquee ===== */
@keyframes atharMarqueeScroll {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.athar-marquee {
  overflow: hidden;
  width: 100%;
  direction: ltr;
  -webkit-mask-image: none;
  mask-image: none;
}

.athar-marquee__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: atharMarqueeScroll 72s linear infinite;
  will-change: transform;
}

.athar-marquee__group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.75rem;
  padding-inline-end: 2.75rem;
}

.athar-marquee__item {
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--athar-svc-muted, #6a5a4b);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  text-transform: uppercase;
}

@media (prefers-reduced-motion: reduce) {
  .athar-marquee__track {
    animation: none;
  }
}

/* Detail hero (image + floating panel) */
.athar-detail-hero {
  padding: 28px 0 8px;
}

.athar-detail-hero__frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: clamp(360px, 58vh, 560px);
  box-shadow: 0 28px 56px rgba(24, 24, 24, 0.14);
  animation: atharSvcRise 0.75s ease both;
}

.athar-detail-hero__media {
  position: absolute;
  inset: 0;
}

.athar-detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.athar-detail-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(24, 24, 24, 0.72) 0%, rgba(24, 24, 24, 0.35) 48%, rgba(24, 24, 24, 0.12) 100%),
    linear-gradient(180deg, transparent 35%, rgba(24, 24, 24, 0.45) 100%);
}

.athar-detail-hero__panel {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  padding: 42px 36px;
  color: #fff;
  display: grid;
  gap: 12px;
  align-content: end;
  min-height: clamp(360px, 58vh, 560px);
}

.athar-detail-hero__crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
}

.athar-detail-hero__crumb a {
  color: #ffcc80;
  text-decoration: none;
}

.athar-detail-hero__panel .athar-svc-chip {
  background: rgba(255, 250, 239, 0.14);
  color: #ffcc80;
}

.athar-detail-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.15;
}

.athar-detail-hero__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 38ch;
}

.athar-svc-contact__thumb {
  display: none !important;
}

/* Services listing: cinematic story strips (compact) */
.athar-svc-reel {
  padding: 8px 0 36px;
}

.athar-svc-story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  min-height: 0;
  margin-bottom: 18px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--athar-svc-dark, #181818);
  box-shadow: 0 16px 36px rgba(24, 24, 24, 0.12);
  animation: atharSvcRise 0.75s ease both;
  align-items: stretch;
}

.athar-svc-story--flip .athar-svc-story__visual {
  order: 2;
}

.athar-svc-story__visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.athar-svc-story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 0.9s ease;
}

.athar-svc-story:hover .athar-svc-story__visual img {
  transform: scale(1.08);
}

.athar-svc-story__index {
  position: absolute;
  top: 8px;
  inset-inline-end: 10px;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 0.85;
  color: rgba(255, 250, 239, 0.14);
  pointer-events: none;
}

.athar-svc-story__copy {
  padding: 22px 24px;
  color: #fff;
  display: grid;
  gap: 10px;
  align-content: center;
  background:
    radial-gradient(320px 160px at 100% 0%, rgba(239, 128, 43, 0.22), transparent 60%),
    linear-gradient(165deg, #2a231c, #181818);
}

.athar-svc-story__title {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1.3;
}

.athar-svc-story__title a {
  color: #fff;
  text-decoration: none;
}

.athar-svc-story__title a:hover {
  color: #ffcc80;
}

.athar-svc-story__excerpt {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.athar-svc-story .athar-svc-meta {
  gap: 10px;
  font-size: 0.82rem;
}

.athar-svc-story .athar-svc-meta span {
  color: rgba(255, 255, 255, 0.72);
}

.athar-svc-story .athar-svc-chip {
  background: rgba(255, 250, 239, 0.12);
  color: #ffcc80;
  font-size: 0.72rem;
}

.athar-svc-story .athar-svc-btn {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.84rem;
}

.athar-svc-story .athar-svc-row__actions {
  gap: 8px;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .athar-svc-story,
  .athar-svc-story--flip {
    grid-template-columns: 1fr;
  }

  .athar-svc-story--flip .athar-svc-story__visual {
    order: 0;
  }

  .athar-svc-story__visual {
    aspect-ratio: 16 / 10;
  }

  .athar-detail-hero__panel {
    padding: 28px 20px;
    max-width: none;
  }
}

