/* ==========================================================================
   Kujtime Magjike — Design System
   Palette:  Purple #4B2E83 · Light Purple #7B4DFF · Gold #FFD166
             Cream #FFF8EC · Dark Text #2B1B4A
   Type:     Fraunces (display) · Inter (body) · Caveat (script accent)
   ========================================================================== */

:root {
  --purple: #4B2E83;
  --purple-deep: #331f5c;
  --lilac: #7B4DFF;
  --gold: #FFD166;
  --gold-deep: #E8AC2E;
  --gold-text: #B8791A;
  --cream: #FFF8EC;
  --cream-shade: #F7EEDD;
  --lavender-tint: #F4F0FF;
  --ink: #2B1B4A;
  --ink-soft: #5B4E7A;
  --white: #FFFFFF;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-script: "Caveat", cursive;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;

  --shadow-soft: 0 10px 30px rgba(43, 27, 74, 0.10);
  --shadow-card: 0 14px 40px rgba(75, 46, 131, 0.14);
  --shadow-glow: 0 0 60px rgba(255, 209, 102, 0.35);

  --ease-story: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--purple);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 500;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

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

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

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.script {
  font-family: var(--font-script);
  font-size: 1.5em;
  color: var(--lilac);
  font-weight: 600;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lilac);
  font-weight: 700;
  margin-bottom: 14px;
}

.eyebrow::before {
  content: "✦";
  color: var(--gold-text);
}

.section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 36px;
  }
}

.section--tint {
  background: var(--lavender-tint);
}

.section--purple {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 209, 102, 0.14) 0%, transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(123, 77, 255, 0.35) 0%, transparent 50%),
    radial-gradient(rgba(255, 255, 255, 0.10) 1.4px, transparent 1.4px),
    var(--purple);
  background-size: auto, auto, 26px 26px, auto;
  color: var(--cream);
}

.section--purple h2,
.section--purple h3 {
  color: var(--cream);
}

.section--purple p {
  color: rgba(255, 248, 236, 0.78);
}

.section-head {
  max-width: 640px;
  margin: 0 0 52px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease-story), box-shadow 0.25s var(--ease-story), background 0.25s;
}

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

.btn:active {
  transform: translateY(0) scale(0.97);
}

.btn:focus-visible {
  outline: 3px solid var(--lilac);
  outline-offset: 3px;
}

.btn--primary {
  background: linear-gradient(135deg, var(--lilac), var(--purple));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(123, 77, 255, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 14px 34px rgba(123, 77, 255, 0.45);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--purple-deep);
  box-shadow: 0 10px 24px rgba(232, 172, 46, 0.35);
}

.btn--gold:hover {
  box-shadow: 0 14px 34px rgba(232, 172, 46, 0.45);
}

.btn--ghost {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}

.btn--ghost:hover {
  background: var(--purple);
  color: var(--white);
}

.section--purple .btn--ghost {
  color: var(--cream);
  border-color: rgba(255, 248, 236, 0.5);
}

.section--purple .btn--ghost:hover {
  background: var(--cream);
  color: var(--purple);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

/* Header ------------------------------------------------------------------ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 248, 236, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(75, 46, 131, 0.08);
  transition: box-shadow 0.3s;
  animation: header-drop 0.7s var(--ease-story);
}

.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(43, 27, 74, 0.08);
}

@keyframes header-drop {
  from {
    margin-top: -100px;
    opacity: 0;
  }

  to {
    margin-top: 0;
    opacity: 1;
  }
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  height: 80px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: background 0.2s, color 0.2s;
  position: relative;
}

.main-nav a:hover {
  background: rgba(123, 77, 255, 0.10);
  color: var(--purple);
}

.main-nav a.is-active {
  color: var(--purple);
  background: rgba(255, 209, 102, 0.35);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: flex;
  border: 1.5px solid rgba(75, 46, 131, 0.25);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 700;
}

.lang-toggle button {
  background: transparent;
  border: none;
  padding: 7px 13px;
  color: var(--ink-soft);
}

.lang-toggle button.is-active {
  background: var(--purple);
  color: var(--white);
}

.nav-toggle {
  display: none;
  position: relative;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  cursor: pointer;
}

.nav-toggle__bar {
  position: absolute;
  left: 9px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.35s var(--ease-story), opacity 0.25s ease, top 0.35s var(--ease-story);
}

.nav-toggle__bar:nth-child(1) {
  top: 14px;
}

.nav-toggle__bar:nth-child(2) {
  top: 19px;
}

.nav-toggle__bar:nth-child(3) {
  top: 24px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  top: 19px;
  transform: rotate(-45deg);
}

/* Dimmed backdrop behind the mobile drawer -------------------------------- */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(43, 27, 74, 0.5);
  z-index: 480;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-backdrop.is-open {
  display: block;
  opacity: 1;
}

/* Mobile-nav social row: hidden by default, shown only inside the drawer -- */
.main-nav__social {
  display: none;
}

/* Mobile-nav language switch: hidden by default, shown only inside the drawer,
   above the social row's divider line. */
.main-nav__lang {
  display: none;
}

/* Mobile menu — swings open from the right edge like a book page --------- */
@media (max-width: 920px) {
  body.nav-open {
    overflow: hidden;
  }

  .main-nav {
    display: flex;
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: auto;
    width: min(300px, 80vw);
    height: calc(100vh - var(--header-h));
    background: linear-gradient(165deg, var(--cream) 0%, var(--lavender-tint) 100%);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    padding: 30px 20px 20px;
    box-shadow: -12px 0 40px rgba(43, 27, 74, 0.2);
    transform-origin: right center;
    transform: translateX(100%) scaleX(0.4);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s var(--ease-story), opacity 0.4s ease, visibility 0.5s;
    z-index: 600;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .main-nav.is-open {
    transform: translateX(0) scaleX(1);
    opacity: 1;
    visibility: visible;
  }

  .main-nav::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(-90deg, rgba(43, 27, 74, 0.16), transparent);
    opacity: 0;
    transition: opacity 0.4s ease 0.15s;
    pointer-events: none;
  }

  .main-nav.is-open::before {
    opacity: 1;
  }

  .main-nav > a {
    position: relative;
    z-index: 1;
    padding: 10px 15px;
    font-size: 1.05rem;
    border-radius: 12px;
    opacity: 0;
    transform: translateX(16px);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-story), background 0.2s, color 0.2s;
  }

  .main-nav.is-open > a {
    opacity: 1;
    transform: translateX(0);
  }

  .main-nav.is-open > a:nth-of-type(1) {
    transition-delay: 0.15s;
  }

  .main-nav.is-open > a:nth-of-type(2) {
    transition-delay: 0.25s;
  }

  .main-nav.is-open > a:nth-of-type(3) {
    transition-delay: 0.35s;
  }

  .main-nav.is-open > a:nth-of-type(4) {
    transition-delay: 0.45s;
  }

  .main-nav.is-open > a:nth-of-type(5) {
    transition-delay: 0.55s;
  }

  .main-nav.is-open > a:nth-of-type(6) {
    transition-delay: 0.65s;
  }

  .main-nav > a::after {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    width: 3px;
    height: 0;
    background: var(--gold-deep);
    border-radius: 3px;
    transform: translateY(-50%);
    transition: height 0.25s var(--ease-story);
  }

  .main-nav > a:hover,
  .main-nav > a:active {
    background: rgba(123, 77, 255, 0.12);
    color: var(--purple);
  }

  .main-nav > a:hover::after,
  .main-nav > a:active::after,
  .main-nav > a.is-active::after {
    height: 55%;
  }

  /* Language switch, pinned to the bottom of the drawer, above the social
     row's divider line. --------------------------------------------------- */
  .main-nav__lang {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 14px 20px 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease 0.6s;
  }

  .main-nav.is-open .main-nav__lang {
    opacity: 1;
  }

  .main-nav__lang .lang-toggle {
    font-size: 0.9rem;
  }

  /* Social row, pinned to the bottom of the drawer -------------------------- */
  .main-nav__social {
    position: relative;
    z-index: 1;
    padding: 10px 20px;
    border-top: 1px solid rgba(75, 46, 131, 0.14);
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease 0.7s;
  }

  .main-nav.is-open .main-nav__social {
    opacity: 1;
  }

  .main-nav__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    transition: color 0.2s, transform 0.2s;
  }

  .main-nav__social a .icon {
    width: 28px;
    height: 28px;
  }

  .main-nav__social a:hover {
    color: var(--lilac);
    transform: translateY(-2px) scale(1.08);
  }

  .nav-toggle {
    display: inline-flex;
    z-index: 601;
  }
}

/* Header — compact mobile layout (prevents the "Bëj Porosi" pill wrapping
   to two lines and blowing out the fixed header height). ------------------- */
@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  .brand img {
    height: 60px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .lang-toggle {
    display: none;
  }

  .header-actions .btn {
    padding: 5px 14px;
    font-size: 0.8rem;
  }
}

@media (max-width: 400px) {
  .brand img {
    height: 46px;
  }

  .site-header .container {
    gap: 10px;
  }

  .header-actions .btn {
    padding: 5px 11px;
    font-size: 0.76rem;
  }
}

.btn {
  white-space: nowrap;
}

/* Starfield / sparkle atmosphere ------------------------------------------- */
.starfield {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.starfield .star {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.7;
  animation: twinkle 3.6s ease-in-out infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.15;
    transform: scale(0.7);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.15);
  }
}

/* Falling sparkles — a .starfield variant that drifts downward instead of
   twinkling in place (mobile nav drawer, reviews section, etc.) ----------- */
.starfield--fall .star {
  box-shadow: 0 0 5px rgba(255, 209, 102, 0.8);
  animation-name: sparkle-fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  top: -6%;
}

@keyframes sparkle-fall {
  0% {
    top: -6%;
    opacity: 0;
    transform: translateX(0);
  }
  12% {
    opacity: 0.9;
  }
  85% {
    opacity: 0.55;
  }
  100% {
    top: 106%;
    opacity: 0;
    transform: translateX(10px);
  }
}

@keyframes drift {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-14px);
  }
}

/* Hero ---------------------------------------------------------------------- */
.hero {
  margin-top: 80px;
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 90px;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(255, 248, 236, 0.92) 32%, rgba(255, 248, 236, 0.55) 55%, rgba(255, 248, 236, 0.15) 75%),
    url('../img/index-hero.webp') right top / cover no-repeat;
  overflow: hidden;
}

.hero--services {
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(255, 248, 236, 0.92) 32%, rgba(255, 248, 236, 0.55) 55%, rgba(255, 248, 236, 0.15) 75%),
    url('../img/services-hero.webp') right top / cover no-repeat;
}

.hero--about {
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(255, 248, 236, 0.92) 32%, rgba(255, 248, 236, 0.55) 55%, rgba(255, 248, 236, 0.15) 75%),
    url('../img/about-hero.webp') right top / cover no-repeat;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  margin-bottom: 22px;
}

.hero__accent {
  position: relative;
  color: var(--lilac);
}

.hero__accent::after {
  content: "✦";
  position: absolute;
  top: -0.3em;
  right: -0.55em;
  font-size: 0.5em;
  color: var(--gold-text);
}

.hero__lead {
  font-size: 1.15rem;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__trust {
  display: flex;
  gap: 26px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__trust-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--purple);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-story);
}

.hero__trust-item:hover .hero__trust-icon {
  transform: scale(1.12) rotate(-4deg);
}

.hero__trust-item span:last-child {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

@media (max-width: 860px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.5) 0%, rgba(255, 248, 236, 0.5) 35%, rgba(255, 248, 236, 0.75) 65%, var(--cream) 100%),
      url('../img/index-hero.webp') right top / cover no-repeat;
  }

  .hero--services {
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.5) 0%, rgba(255, 248, 236, 0.5) 35%, rgba(255, 248, 236, 0.75) 65%, var(--cream) 100%),
      url('../img/services-hero.webp') right top / cover no-repeat;
  }

  .hero--about {
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.5) 0%, rgba(255, 248, 236, 0.5) 35%, rgba(255, 248, 236, 0.75) 65%, var(--cream) 100%),
      url('../img/about-hero.webp') right top / cover no-repeat;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__trust {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: calc(var(--header-h) + 34px) 0 48px;
  }

  .hero__trust {
    gap: 18px 24px;
    margin-top: 32px;
  }
}

/* CTA banner (photo background, shared across every page's call-to-action) ------ */
.cta-banner {
  position: relative;
  padding: 88px 0;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(255, 248, 236, 0.93) 30%, rgba(255, 248, 236, 0.6) 55%, rgba(255, 248, 236, 0.12) 75%),
    url('../img/ctabg.webp') right top / cover no-repeat;
  overflow: hidden;
}

.cta-banner--intro {
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(255, 248, 236, 0.93) 30%, rgba(255, 248, 236, 0.6) 55%, rgba(255, 248, 236, 0.12) 75%),
    url('../img/bg2.webp') right top / cover no-repeat;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.cta-banner .spots-badge {
  margin-bottom: 18px;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  margin-bottom: 28px;
}

.cta-banner .hero__ctas {
  margin-top: 0;
}

@media (max-width: 760px) {
  .cta-banner {
    padding: 56px 0;
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.5) 0%, rgba(255, 248, 236, 0.5) 35%, rgba(255, 248, 236, 0.75) 65%, var(--cream) 100%),
      url('../img/ctabg.webp') right top / cover no-repeat;
  }

  .cta-banner--intro {
    background:
      linear-gradient(180deg, rgba(255, 248, 236, 0.5) 0%, rgba(255, 248, 236, 0.5) 35%, rgba(255, 248, 236, 0.75) 65%, var(--cream) 100%),
      url('../img/bg2.webp') right top / cover no-repeat;
  }

  .cta-banner__inner {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }

  .cta-banner .eyebrow {
    justify-content: center;
  }

  .cta-banner .hero__ctas {
    justify-content: center;
  }
}

/* Page hero (inner pages) --------------------------------------------------- */
.page-hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: radial-gradient(120% 100% at 50% 0%, #EFE6FF 0%, var(--cream) 60%);
  text-align: center;
  overflow: hidden;
}

.page-hero .eyebrow {
  justify-content: center;
}

.page-hero p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .page-hero {
    padding: calc(var(--header-h) + 30px) 0 40px;
  }
}

/* Cards ---------------------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: 26px;
  position: relative;
  z-index: 1;
}

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

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

@media (max-width: 900px) {

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {

  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .card-grid {
    gap: 18px;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-story), box-shadow 0.3s var(--ease-story);
}

@media (max-width: 640px) {

  .card,
  .service-card {
    padding: 20px;
  }
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.card__icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: var(--purple-deep);
  margin-bottom: 18px;
  font-size: 1.9rem;
  transition: transform 0.3s var(--ease-story), box-shadow 0.3s var(--ease-story);
}

.card__icon:hover {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 18px rgba(232, 172, 46, 0.4);
}

/* Service cards with bookmark ribbon ----------------------------------------- */
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s var(--ease-story), box-shadow 0.3s var(--ease-story);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.service-card__ribbon {
  position: absolute;
  top: 0;
  right: 24px;
  background: linear-gradient(180deg, var(--lilac), var(--purple));
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 10px 14px 14px;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 6px 14px rgba(75, 46, 131, 0.3);
}

.service-card__ribbon::after {
  content: "";
  position: absolute;
  bottom: -9px;
  right: 0;
  border-width: 9px 9px 0 0;
  border-style: solid;
  border-color: var(--purple-deep) transparent transparent transparent;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  flex-grow: 1;
  font-size: 0.96rem;
}

.service-card__cta {
  margin-top: 18px;
  font-weight: 700;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card__cta::after {
  content: "→";
  transition: transform 0.2s;
}

.service-card__cta:hover::after {
  transform: translateX(4px);
}

/* Process / constellation steps ---------------------------------------------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  z-index: 1;
}

.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold-deep) 0 8px, transparent 8px 16px);
  z-index: -1;
}

.step {
  text-align: center;
}

.step__dot {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--purple);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* Reveal on scroll ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease-story), transform 0.7s var(--ease-story);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer ----------------------------------------------------------------------- */
.site-footer {
  background: var(--purple-deep);
  color: rgba(255, 248, 236, 0.82);
  padding: 64px 0 26px;
  position: relative;
  overflow: hidden;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.footer-grid h4 {
  color: var(--cream);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid a:hover {
  color: var(--gold);
}

.footer-brand img {
  height: 70px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255, 248, 236, 0.65);
  font-size: 0.92rem;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: background 0.2s, transform 0.25s var(--ease-story);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--purple-deep);
  transform: translateY(-3px) scale(1.08);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 248, 236, 0.12);
  font-size: 0.85rem;
  text-align: center;
  color: rgba(255, 248, 236, 0.55);
}

@media (max-width: 780px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp floating button -------------------------------------------------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 400;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  animation: pulse-wa 2.6s ease-in-out infinite;
  transition: transform 0.25s var(--ease-story);
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.12);
  }
}

/* Skip link ------------------------------------------------------------------ */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--purple);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  z-index: 1000;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

/* Utility ---------------------------------------------------------------------- */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.tag {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(123, 77, 255, 0.12);
  color: var(--lilac);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ==========================================================================
   Magic layer — wave dividers, marquee, shine buttons, reveal variants,
   honest trust badges, richer hover states, cursor sparkle.
   ========================================================================== */

/* Slogan / script accent line ---------------------------------------------- */
.slogan {
  display: block;
  font-family: var(--font-script);
  color: var(--gold-text);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 4px;
}

.section--purple .slogan {
  color: var(--gold);
}

/* Wave section dividers ------------------------------------------------------ */
.wave-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 64px;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}

.wave-divider svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wave-divider path {
  fill: var(--cream);
}

.wave-divider.to-tint path {
  fill: var(--lavender-tint);
}

.wave-divider.to-purple path {
  fill: var(--purple);
}

.wave-divider.to-cream path {
  fill: var(--cream);
}

@media (max-width: 640px) {
  .wave-divider {
    height: 36px;
  }
}

/* Marquee ribbon -------------------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: linear-gradient(120deg, var(--purple), var(--purple-deep));
  padding: 18px 0;
  position: relative;
  z-index: 1;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__track span {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-right: 44px;
  white-space: nowrap;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.marquee__track span::after {
  content: "✦";
  color: var(--gold);
  font-size: 0.9rem;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .marquee {
    padding: 13px 0;
  }

  .marquee__track span {
    font-size: 0.88rem;
    padding-right: 28px;
  }
}

/* Shine-sweep buttons ---------------------------------------------------------- */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 35%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-18deg);
  transition: left 0.65s var(--ease-story);
  pointer-events: none;
}

.btn:hover::before {
  left: 130%;
}

/* Reveal variants + stagger ---------------------------------------------------- */
.reveal--left {
  transform: translateX(-32px);
}

.reveal--left.is-visible {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(32px);
}

.reveal--right.is-visible {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.92);
}

.reveal--scale.is-visible {
  transform: scale(1);
}

.card-grid>.reveal:nth-child(1),
.steps>.reveal:nth-child(1),
.values-grid>.reveal:nth-child(1) {
  transition-delay: 0.03s;
}

.card-grid>.reveal:nth-child(2),
.steps>.reveal:nth-child(2),
.values-grid>.reveal:nth-child(2) {
  transition-delay: 0.10s;
}

.card-grid>.reveal:nth-child(3),
.steps>.reveal:nth-child(3),
.values-grid>.reveal:nth-child(3) {
  transition-delay: 0.17s;
}

.card-grid>.reveal:nth-child(4),
.steps>.reveal:nth-child(4),
.values-grid>.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

.card-grid>.reveal:nth-child(5),
.steps>.reveal:nth-child(5),
.values-grid>.reveal:nth-child(5) {
  transition-delay: 0.31s;
}

.card-grid>.reveal:nth-child(6),
.steps>.reveal:nth-child(6),
.values-grid>.reveal:nth-child(6) {
  transition-delay: 0.38s;
}

/* Founding-families / limited-spots callout ------------------------------------ */
.spots-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 209, 102, 0.18);
  border: 1px solid rgba(255, 209, 102, 0.55);
  color: var(--purple-deep);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.spots-badge::before {
  content: "✦";
}

/* Service card media (mockup thumbnail) ----------------------------------------- */
.service-card__ribbon {
  z-index: 2;
}

.service-card__media {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 1;
  margin: -6px -4px 20px;
  box-shadow: 0 8px 20px rgba(75, 46, 131, 0.18);
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--ease-story);
}

.service-card:hover .service-card__media img {
  transform: scale(1.08) rotate(-0.5deg);
}

/* Richer hover glow on cards / gallery ------------------------------------------ */
.card:hover,
.service-card:hover {
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 209, 102, 0.15);
}

.gallery-item:hover {
  box-shadow: 0 22px 46px rgba(255, 209, 102, 0.28), var(--shadow-card);
}

/* Magic cursor sparkle ----------------------------------------------------------- */
.magic-zone {
  position: relative;
}

.cursor-spark {
  position: fixed;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  pointer-events: none;
  z-index: 9998;
  background: radial-gradient(circle, #fff 0%, var(--gold) 55%, rgba(255, 209, 102, 0) 78%);
  clip-path: polygon(50% 0%, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0% 50%, 37% 37%);
  filter: drop-shadow(0 0 6px rgba(255, 209, 102, 0.75));
  animation: spark-fade 0.9s ease-out forwards;
}

@keyframes spark-fade {
  0% {
    opacity: 1;
    transform: scale(0.3) rotate(0deg);
  }

  35% {
    opacity: 1;
    transform: scale(1.15) rotate(50deg);
  }

  100% {
    opacity: 0;
    transform: scale(0.3) rotate(100deg) translateY(-20px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cursor-spark {
    display: none;
  }
}

/* Click sparkle-burst ------------------------------------------------------------ */
.click-spark {
  position: fixed;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  background: var(--gold);
  box-shadow: 0 0 9px 2px rgba(255, 209, 102, 0.7);
  animation: click-spark-fly 0.7s cubic-bezier(0.15, 0.6, 0.3, 1) forwards;
}

@keyframes click-spark-fly {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy)) scale(0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .click-spark {
    display: none;
  }
}

/* Custom magic cursor -------------------------------------------------------------- */
body.has-magic-cursor {
  cursor: none;
}

body.has-magic-cursor input,
body.has-magic-cursor textarea,
body.has-magic-cursor select,
body.has-magic-cursor [contenteditable] {
  cursor: auto;
}

.magic-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transition: opacity 0.2s;
}

.magic-cursor__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 209, 102, 0.75);
  transition: transform 0.18s var(--ease-story), border-color 0.18s;
}

.magic-cursor__dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px 2px rgba(255, 209, 102, 0.65);
  transition: transform 0.15s var(--ease-story), background 0.15s;
}

.magic-cursor.is-hover .magic-cursor__ring {
  transform: scale(1.7);
  border-color: rgba(123, 77, 255, 0.75);
}

.magic-cursor.is-hover .magic-cursor__dot {
  transform: translate(-3px, -3px) scale(1.3);
  background: var(--lilac);
}

.magic-cursor.is-down .magic-cursor__dot {
  transform: translate(-3px, -3px) scale(0.6);
}

@media (pointer: coarse),
(prefers-reduced-motion: reduce) {
  .magic-cursor {
    display: none;
  }
}

/* Custom scrollbar ------------------------------------------------------------------ */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--lilac) var(--lavender-tint);
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: var(--lavender-tint);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--lilac), var(--purple));
  border-radius: 999px;
  border: 3px solid var(--lavender-tint);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple);
}

/* Custom icon set ------------------------------------------------------------------- */
.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.14em;
}

.icon--filled {
  fill: currentColor;
  stroke: none;
}

/* Mission split (homepage "Çdo fëmijë e meriton...") ------------------------------ */
.mission {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  align-items: stretch;
}

.mission__art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.mission__art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.mission__points {
  margin: 22px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission__points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.mission__point-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(123, 77, 255, 0.14);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

@media (max-width: 860px) {
  .mission {
    grid-template-columns: 1fr;
    gap: 56px 0;
  }

  .mission__art {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 640px) {
  .mission__art {
    aspect-ratio: 5 / 4;
  }
}

/* Showcase grid (homepage "Nga bota jonë magjike") --------------------------------- */
.showcase-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-soft);
  background: linear-gradient(160deg, var(--lilac), var(--purple));
  transition: transform 0.35s var(--ease-story), box-shadow 0.35s;
}

.showcase-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(255, 209, 102, 0.15);
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-story);
}

.showcase-item:hover img {
  transform: scale(1.06);
}

.showcase-item__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(255, 248, 236, 0.92);
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

.showcase-item__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 14px 12px;
  background: linear-gradient(0deg, rgba(43, 27, 74, 0.85) 0%, rgba(43, 27, 74, 0) 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Reviews carousel ------------------------------------------------------------------ */
.reviews-carousel {
  --reviews-visible: 3;
  display: flex;
  align-items: center;
  gap: 18px;
}

.reviews-viewport {
  flex: 1;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s var(--ease-story);
}

.review-slide {
  flex-shrink: 0;
  padding: 4px 12px;
  box-sizing: border-box;
}

.review-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 15px;
  position: relative;
  z-index: 1;
}

.review-card__stars {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}

.review-card__star {
  width: 18px;
  height: 18px;
  color: var(--gold-deep);
  filter: drop-shadow(0 0 3px rgba(255, 209, 102, 0.7));
  animation: star-shimmer 2.4s ease-in-out infinite;
}

.review-card__star:nth-child(2) { animation-delay: 0.12s; }
.review-card__star:nth-child(3) { animation-delay: 0.24s; }
.review-card__star:nth-child(4) { animation-delay: 0.36s; }
.review-card__star:nth-child(5) { animation-delay: 0.48s; }

@keyframes star-shimmer {
  0%, 100% { opacity: 0.65; transform: scale(0.9) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.12) rotate(8deg); }
}

.review-card__text {
  font-style: italic;
  color: var(--ink);
  flex-grow: 1;
  margin-bottom: 0;
  font-size: 0.96rem;
}

.reviews-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid rgba(75, 46, 131, 0.18);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.reviews-arrow:hover {
  background: var(--purple);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: var(--shadow-card);
}

.reviews-arrow:active {
  transform: scale(0.94);
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.reviews-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(75, 46, 131, 0.22);
  transition: background 0.2s, transform 0.2s;
}

.reviews-dot.is-active {
  background: var(--purple);
  transform: scale(1.25);
}

@media (max-width: 640px) {
  .reviews-carousel {
    gap: 10px;
  }

  .reviews-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.05rem;
  }

  .review-card {
    padding: 15px;
  }
}