/* =========================
   ACTION PAINTING PAGE
   services.css
   layout.css ortak header/footer yapısını yönetir
========================= */

/* =========================
   RESET + TOKENS
========================= */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ap-primary: #f15a25;
  --ap-primary-dark: #d94d1b;
  --ap-primary-soft: #fff1ea;

  --ap-orange-50: #fff8f3;
  --ap-orange-100: #fff1ea;
  --ap-orange-200: #ffe1d3;

  --ap-yellow: #fdb818;
  --ap-yellow-soft: #fff6db;

  --ap-pink: #c01d79;
  --ap-pink-soft: #fde8f3;

  --ap-indigo: #4957a6;
  --ap-indigo-soft: #edf0fb;

  --ap-green: #80c343;
  --ap-green-soft: #f1f9e7;

  --ap-bg: #ffffff;
  --ap-bg-soft: #fffaf6;
  --ap-bg-cream: #fff6ef;
  --ap-surface: #ffffff;
  --ap-border: #eee1d6;

  --ap-text: #1f2430;
  --ap-text-muted: #5f6875;
  --ap-dark: #030404;

  --ap-shadow-soft: 0 18px 46px rgba(241, 90, 37, 0.09);
  --ap-shadow-card: 0 16px 38px rgba(241, 90, 37, 0.11);
  --ap-shadow-fun: 0 16px 34px rgba(241, 90, 37, 0.18);
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: var(--ap-text-muted);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(241, 90, 37, 0.08), transparent 20%),
    radial-gradient(
      circle at 92% 16%,
      rgba(253, 184, 24, 0.1),
      transparent 18%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--ap-bg-soft) 100%);
}

img,
picture,
video,
svg {
  max-width: 100%;
  display: block;
}

:where(a, button, summary):focus-visible {
  outline: 3px solid rgba(241, 90, 37, 0.35);
  outline-offset: 3px;
  border-radius: 1.2rem;
}

/* =========================
   ACTIVE NAV
========================= */
.layout-nav__link[href="action-painting.html"],
.layout-nav__link[aria-current="page"] {
  color: var(--ap-primary);
}

/* =========================
   REUSABLES
========================= */
.ap-container {
  max-width: 120rem;
  padding: 0 3.2rem;
  margin: 0 auto;
}

.ap-grid {
  display: grid;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.ap-grid--2-cols {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ap-mb-md {
  margin-bottom: 4.8rem !important;
}

.ap-hero__title,
.ap-heading-secondary,
.ap-heading-tertiary {
  font-weight: 800;
  color: var(--ap-text);
  letter-spacing: -0.5px;
}

.ap-subheading {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ap-primary-soft), #fff8f3);
  border: 1px solid rgba(241, 90, 37, 0.22);
  box-shadow: 0 10px 22px rgba(241, 90, 37, 0.08);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ap-primary);
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  letter-spacing: 0.14em;
}

.ap-heading-secondary {
  font-size: clamp(3.2rem, 3.6vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 1.6rem;
}

.ap-heading-tertiary {
  font-size: clamp(2.2rem, 2.2vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

/* =========================
   BUTTONS
========================= */
.ap-btn:link,
.ap-btn:visited {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 1.6rem 3.2rem;
  border-radius: 999px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.ap-btn--primary:link,
.ap-btn--primary:visited {
  background: linear-gradient(135deg, var(--ap-primary), #ff7e47);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(241, 90, 37, 0.25);
}

.ap-btn--primary:hover,
.ap-btn--primary:active {
  background: linear-gradient(
    135deg,
    var(--ap-primary-dark),
    var(--ap-primary)
  );
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(241, 90, 37, 0.34);
}

.ap-btn--outline:link,
.ap-btn--outline:visited {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
}

.ap-btn--outline:hover,
.ap-btn--outline:active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* =========================
   LISTS + ICONS
========================= */
.ap-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.ap-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  font-size: 1.8rem;
  line-height: 1.5;
  color: var(--ap-text);
}

.ap-list__item span {
  flex: 1;
  line-height: 1.45;
}

.ap-icon,
.ap-icon--list {
  flex: 0 0 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  min-width: 2.4rem;
  min-height: 2.4rem;
  margin-top: 0.15rem;
  color: var(--ap-primary);
}

/* =========================
   WAVES
========================= */
.ap-wave {
  line-height: 0;
  width: 100%;
}

.ap-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* =========================
   HERO
========================= */
.ap-hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #111827;
}

.ap-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ap-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.ap-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 78% 24%,
      rgba(255, 193, 69, 0.2),
      transparent 24%
    ),
    radial-gradient(
      circle at 16% 82%,
      rgba(241, 90, 37, 0.24),
      transparent 26%
    ),
    linear-gradient(
      105deg,
      rgba(12, 18, 34, 0.76) 0%,
      rgba(24, 32, 51, 0.52) 46%,
      rgba(241, 90, 37, 0.2) 100%
    );
}

.ap-hero__wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 8rem 3.2rem 12rem clamp(4.8rem, 6vw, 8rem);
}

.ap-hero__content {
  max-width: 56rem;
  margin-left: 0;
  margin-top: 12rem;
  padding: 3.2rem 3.4rem;
  border-radius: 2.6rem;
  background: rgba(20, 28, 48, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 64px rgba(12, 18, 34, 0.28);
}

.ap-hero__title {
  font-size: clamp(3.4rem, 4.2vw, 5.2rem);
  line-height: 1.04;
  color: #ffffff;
  margin-bottom: 1.1rem;
}

.ap-hero__manifest {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.65rem;
  line-height: 1.6;
  margin-bottom: 2.4rem;
}

.ap-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.ap-hero .ap-btn:link,
.ap-hero .ap-btn:visited {
  font-size: 1.55rem;
  padding: 1.25rem 2.35rem;
}

.ap-wave--hero-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 12rem;
  z-index: 1;
}

.ap-wave--hero-bottom path {
  fill: #ffffff;
}

/* =========================
   FEATURES
========================= */
.ap-features {
  position: relative;
  padding: 8rem 0 18rem;
  overflow: hidden;
  background:
    radial-gradient(
      circle at top left,
      rgba(241, 90, 37, 0.08),
      transparent 20%
    ),
    radial-gradient(
      circle at top right,
      rgba(253, 184, 24, 0.11),
      transparent 18%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--ap-bg-soft) 100%);
}

.ap-features .ap-container {
  position: relative;
  z-index: 2;
}

.ap-features__header {
  text-align: center;
  margin-bottom: 6.4rem;
}

.ap-features__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ap-primary-soft), #fff8f3);
  border: 1px solid rgba(241, 90, 37, 0.22);
  box-shadow: 0 10px 22px rgba(241, 90, 37, 0.08);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ap-primary);
  margin-bottom: 1.4rem;
}

.ap-features__title {
  font-size: clamp(3.2rem, 3.6vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--ap-text);
  line-height: 1.1;
}

.ap-features__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4.8rem;
  align-items: start;
  justify-items: center;
  padding-bottom: 3rem;
}

.ap-feature-card {
  min-height: 24rem;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ap-feature-card__circle {
  width: 16.4rem;
  height: 16.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 1.6rem;
  overflow: hidden;
  background: linear-gradient(180deg, var(--ap-primary-soft) 0%, #fff8f3 100%);
  border: 1px solid rgba(241, 90, 37, 0.12);
  box-shadow: 0 14px 30px rgba(241, 90, 37, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.ap-feature-card__circle img {
  width: 16.4rem;
  height: 16.4rem;
  object-fit: cover;
  border-radius: 50%;
  border: 0.5rem solid rgba(255, 255, 255, 0.85);
  filter: none !important;
  image-rendering: auto;
}

.ap-feature-card__text {
  min-height: 4.6rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--ap-text);
  transition: color 0.3s ease;
}

.ap-feature-card:hover .ap-feature-card__circle {
  transform: translateY(-6px);
  box-shadow: var(--ap-shadow-fun);
}

.ap-features__grid .ap-feature-card:hover .ap-feature-card__text {
  color: var(--ap-primary);
}

.ap-feature-card:hover .ap-feature-card__circle img {
  filter: none !important;
}

.ap-wave--features-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 14rem;
  z-index: 1;
  pointer-events: none;
}

.ap-wave--features-bottom rect {
  fill: var(--ap-primary-soft) !important;
}

.ap-wave--features-bottom path {
  fill: #ffffff !important;
}

/* =========================
   HOW IT WORKS
========================= */
.ap-how {
  position: relative;
  padding: 10rem 0 6rem;
  background:
    radial-gradient(
      circle at 85% 12%,
      rgba(241, 90, 37, 0.08),
      transparent 16%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(253, 184, 24, 0.08),
      transparent 18%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--ap-bg-soft) 100%);
}

.ap-how .ap-wave--top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 16rem;
  pointer-events: none;
}

.ap-how .ap-wave--top rect {
  fill: var(--ap-primary-soft) !important;
}

.ap-how .ap-wave--top path {
  fill: #ffffff !important;
}

.ap-how__head {
  padding-top: 10.4rem;
  margin-bottom: 3.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ap-how__head .ap-subheading,
.ap-how__head .ap-heading-secondary {
  margin-left: auto;
  margin-right: auto;
}

.ap-how__head .ap-heading-secondary {
  max-width: 90rem;
}

.ap-how__lead {
  max-width: 72ch;
  margin: 1.2rem auto 0;
  color: var(--ap-text-muted);
  font-size: 1.8rem;
  line-height: 1.75;
}

.ap-how__stack {
  display: grid;
  gap: 3.2rem;
}

.ap-step {
  padding: 3.6rem 0;
}

.ap-step__frame {
  position: relative;
  max-width: 118rem;
  margin: 0 auto;
  padding: 3.2rem;
  isolation: isolate;
}

.ap-step__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    135deg,
    rgba(241, 90, 37, 0.28),
    rgba(255, 126, 71, 0.18) 55%,
    rgba(253, 184, 24, 0.18)
  );
  filter: drop-shadow(0 24px 54px rgba(241, 90, 37, 0.13));

  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 520'%3E%3Cpath d='M70 70c35-35 90-45 135-25 35 15 70 10 100-10 35-25 85-25 120 0 30 22 70 28 105 15 55-20 115-5 145 40 18 28 50 45 84 45h271c44 0 80 36 80 80v180c0 44-36 80-80 80H154c-44 0-80-36-80-80V156c0-33-13-64-4-86z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  -webkit-mask-position: center;

  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 520'%3E%3Cpath d='M70 70c35-35 90-45 135-25 35 15 70 10 100-10 35-25 85-25 120 0 30 22 70 28 105 15 55-20 115-5 145 40 18 28 50 45 84 45h271c44 0 80 36 80 80v180c0 44-36 80-80 80H154c-44 0-80-36-80-80V156c0-33-13-64-4-86z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  mask-position: center;
}

.ap-step__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5.2rem;
  align-items: center;
  overflow: hidden;
  padding: clamp(2.2rem, 2.2vw, 3.2rem);
  border-radius: 2.8rem;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf7 100%);
  border: 1px solid rgba(241, 90, 37, 0.11);
  box-shadow: var(--ap-shadow-card);
}

.ap-step--left .ap-step__inner {
  grid-template-columns: 0.85fr 1.15fr;
}

.ap-how__step-text {
  min-width: 0;
}

.ap-step__badge {
  display: inline-grid;
  place-items: center;
  width: 4.8rem;
  height: 4.8rem;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ap-primary), #ff7e47);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.8rem;
  box-shadow: 0 12px 24px rgba(241, 90, 37, 0.24);
}

.ap-how__step-desc {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
  color: var(--ap-text-muted);
}

.ap-step__list {
  margin: 0;
  padding-left: 1.8rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: var(--ap-text);
}

.ap-step__list li {
  margin-bottom: 0.6rem;
}

.ap-step__list li::marker {
  color: var(--ap-primary);
}

.ap-how__step-imgbox {
  display: grid;
  place-items: center;
}

.ap-how__step-img {
  width: min(340px, 90%);
  height: auto;
  filter: none !important;
  image-rendering: auto;
}

/* =========================
   TESTIMONIALS + GALLERY
========================= */
.ap-testimonials {
  background:
    radial-gradient(
      circle at 10% 12%,
      rgba(241, 90, 37, 0.07),
      transparent 18%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--ap-bg-cream) 100%);
  padding: 0;
}

.ap-testimonials__wrap {
  max-width: 132rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  column-gap: 3.2rem;
  align-items: start;
}

.ap-testimonials__content {
  max-width: 58rem;
  padding: 9.6rem 0;
}

.ap-testimonials__list {
  display: block;
}

.ap-testimonial {
  margin: 0;
}

.ap-testimonial__text {
  max-width: 70ch;
  margin-bottom: 2.2rem;
  font-size: 1.95rem;
  line-height: 1.75;
  color: var(--ap-text);
}

.ap-testimonial__item {
  position: relative;
  max-width: 70ch;
  padding-left: 2rem;
  margin-bottom: 1.4rem;
  font-size: 1.8rem;
  line-height: 1.75;
  color: var(--ap-text-muted);
}

.ap-testimonial__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--ap-primary);
}

.ap-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  padding: 1.6rem 0 1.6rem 1.6rem;
}

.ap-gallery__item {
  overflow: hidden;
  border-radius: 2rem;
  border: 0 solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(241, 90, 37, 0.1);
  background: #ffffff;
}

.ap-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none !important;
  image-rendering: auto;
}

/* =========================
   PLANS
========================= */
.ap-plans {
  position: relative;
  overflow: hidden;
  padding: 9.6rem 0 18rem;
  background:
    radial-gradient(
      circle at 88% 14%,
      rgba(241, 90, 37, 0.08),
      transparent 18%
    ),
    radial-gradient(
      circle at 12% 82%,
      rgba(253, 184, 24, 0.08),
      transparent 18%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--ap-bg-soft) 100%);
}

.ap-plans > *:not(.ap-wave) {
  position: relative;
  z-index: 2;
}

.ap-plans .ap-grid {
  align-items: stretch;
}

.ap-plan {
  width: 75%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 2.8rem;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
  border: 1px solid rgba(241, 90, 37, 0.14);
  box-shadow: var(--ap-shadow-card);
}

.ap-plan--starter {
  justify-self: end;
  padding: 4.6rem;
}

.ap-plan--complete {
  position: relative;
  overflow: hidden;
  padding: 4.8rem;
  background: linear-gradient(180deg, var(--ap-primary-soft) 0%, #fff8f3 100%);
  border-color: rgba(241, 90, 37, 0.2);
}

.ap-plan--complete::after {
  display: none;
}

.ap-plan__header {
  text-align: center;
  margin-bottom: 4.8rem;
}

.ap-plan__name {
  margin-bottom: 1.2rem;
  font-size: 4.2rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.04em;
  text-transform: none;
  color: var(--ap-text);
}

.ap-plan__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 1.6rem;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--ap-primary);
  background: var(--ap-primary-soft);
  border: 1px solid rgba(241, 90, 37, 0.16);
}

.ap-plan__text {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--ap-text-muted);
}

.ap-plan .ap-list {
  margin-bottom: 3.2rem;
}

.ap-plan__signup {
  margin-top: auto;
  display: flex;
  justify-content: center;
  text-align: center;
}

.ap-plan__signup .ap-btn {
  min-width: 28rem;
  text-align: center;
}

.ap-wave--plans-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 10rem;
  z-index: 1;
  pointer-events: none;
}

.ap-wave--plans-bottom svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ap-wave--plans-bottom path {
  fill: #ffffff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
  .ap-features__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

@media (max-width: 900px) {
  html {
    font-size: 56.25%;
  }

  .ap-hero__wrap {
    padding: 9rem 3.2rem 13rem;
    text-align: center;
  }

  .ap-hero__content {
    max-width: 100%;
    margin: 8rem auto 0;
    padding: 3.4rem 3rem;
  }

  .ap-hero__actions {
    justify-content: center;
  }

  .ap-features__grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .ap-step__inner,
  .ap-step--left .ap-step__inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .ap-testimonials__wrap {
    grid-template-columns: 1fr;
    padding: 0 3.2rem;
    row-gap: 4rem;
  }

  .ap-testimonials__content {
    max-width: 100%;
    padding: 7.2rem 0 0;
  }

  .ap-gallery {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 0 7.2rem;
  }
}

@media (max-width: 700px) {
  .ap-grid--2-cols {
    grid-template-columns: 1fr;
  }

  .ap-plan {
    width: 100%;
  }

  .ap-plan--starter {
    justify-self: stretch;
  }
}

@media (max-width: 600px) {
  .ap-wave--hero-bottom {
    height: 10rem;
  }

  .ap-wave--features-bottom {
    height: 12rem;
  }

  .ap-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

@media (max-width: 34em) {
  html {
    font-size: 50%;
  }

  .ap-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .ap-hero__content {
    padding: 3rem 2.4rem;
    border-radius: 2.6rem;
  }

  .ap-hero__title {
    font-size: 3.4rem;
  }

  .ap-hero__manifest {
    font-size: 1.8rem;
  }

  .ap-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ap-hero .ap-btn:link,
  .ap-hero .ap-btn:visited {
    width: 100%;
  }

  .ap-step__frame {
    padding: 2rem 0;
  }

  .ap-plan--starter,
  .ap-plan--complete {
    padding: 3.6rem 2.8rem;
  }

  .ap-plan__name {
    font-size: 3.4rem;
  }

  .ap-plan__signup .ap-btn {
    min-width: 100%;
  }
}

/* =========================
   ACTION PAINTING FEATURES MOBILE FIX
   Neler Dahil bölümü mobil kompakt grid
========================= */
@media (max-width: 900px) {
  .ap-features {
    padding: 6.4rem 0 11rem;
  }

  .ap-features__header {
    margin-bottom: 4rem;
  }

  .ap-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.4rem 1.6rem;
    align-items: start;
    justify-items: center;
  }

  .ap-feature-card {
    min-height: auto;
    max-width: 100%;
  }

  .ap-feature-card__circle {
    width: 12.8rem;
    height: 12.8rem;
    margin-bottom: 1.2rem;
  }

  .ap-feature-card__circle img {
    width: 12.8rem;
    height: 12.8rem;
    border-width: 0.4rem;
  }

  .ap-feature-card__text {
    min-height: auto;
    font-size: 1.25rem;
    line-height: 1.35;
  }
}

@media (max-width: 520px) {
  .ap-features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.6rem 1.4rem;
  }

  .ap-feature-card__circle {
    width: 12rem;
    height: 12rem;
  }

  .ap-feature-card__circle img {
    width: 12rem;
    height: 12rem;
  }

  .ap-feature-card__text {
    font-size: 1.2rem;
  }
}

@media (max-width: 380px) {
  .ap-feature-card__circle {
    width: 10.8rem;
    height: 10.8rem;
  }

  .ap-feature-card__circle img {
    width: 10.8rem;
    height: 10.8rem;
  }
} /* Sokak hayvanları kartını mobilde ortaya al */
@media (max-width: 520px) {
  .ap-features__grid > .ap-feature-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
  }
}
/* =========================
   ACTION PAINTING GALLERY MOBILE FIX
   Galeri mobilde 3'lü kompakt grid
========================= */
@media (max-width: 520px) {
  .ap-testimonials__wrap {
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    row-gap: 3rem;
  }

  .ap-testimonials__content {
    padding-bottom: 0;
  }

  .ap-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.9rem;
    padding: 0 0 5.6rem;
  }

  .ap-gallery__item {
    aspect-ratio: 1 / 1;
    border-radius: 1.4rem;
    overflow: hidden;
  }

  .ap-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* =========================
   ACTION PAINTING - MOBILE STEP RESPONSIVE FIX
   Mobilde sağlı-sollu akışı tek kolon yapar
========================= */
@media (max-width: 700px) {
  .ap-how {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

  .ap-how__head {
    padding-top: 5rem;
    margin-bottom: 2rem;
  }

  .ap-how__stack {
    gap: 2.4rem;
  }

  .ap-step {
    padding: 1.8rem 0;
  }

  .ap-step__frame {
    padding: 1.4rem;
  }

  .ap-step__inner,
  .ap-step--left .ap-step__inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 2rem;
    border-radius: 2.4rem;
  }

  /* Mobilde tüm adımlarda önce metin, sonra video gelsin */
  .ap-how__step-text {
    order: 1;
  }

  .ap-how__step-imgbox {
    order: 2;
    width: 100%;
  }

  .ap-how__step-img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 1.8rem;
  }

  .ap-heading-tertiary {
    font-size: 2rem;
    line-height: 1.2;
  }

  .ap-how__step-desc {
    font-size: 1.6rem;
    line-height: 1.7;
  }

  .ap-step__list {
    font-size: 1.45rem;
    line-height: 1.75;
  }
}
/* =========================
   ACTION PAINTING RESERVATION PAGE
========================= */
.ap-res-page {
  position: relative;
  min-height: calc(100vh - var(--header-h, 8.8rem));
  padding: 9rem 0 10rem;
  background:
    radial-gradient(
      circle at 10% 14%,
      rgba(241, 90, 37, 0.09),
      transparent 20%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(253, 184, 24, 0.12),
      transparent 18%
    ),
    radial-gradient(
      circle at 18% 88%,
      rgba(192, 29, 121, 0.08),
      transparent 18%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--ap-bg-soft) 100%);
}

.ap-res-page__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.ap-res-summary,
.ap-res-form-card {
  border-radius: 3.2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf6 100%);
  border: 1px solid rgba(241, 90, 37, 0.13);
  box-shadow: 0 18px 48px rgba(241, 90, 37, 0.1);
}

.ap-res-summary {
  position: sticky;
  top: calc(var(--header-h, 8.8rem) + 2.4rem);
  padding: 4rem;
}

.ap-res-summary__title {
  margin: 0 0 1.2rem;
  font-size: clamp(3.2rem, 3.4vw, 4.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ap-text);
}

.ap-res-summary__price {
  margin: 0 0 1.8rem;
  width: fit-content;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ap-primary), #ff7e47);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(241, 90, 37, 0.24);
}

.ap-res-summary__desc {
  margin: 0 0 2.4rem;
  font-size: 1.7rem;
  line-height: 1.75;
  color: var(--ap-text-muted);
}

.ap-res-summary__list {
  list-style: none;
  display: grid;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}

.ap-res-summary__list li {
  position: relative;
  padding-left: 3rem;
  font-size: 1.65rem;
  line-height: 1.65;
  color: var(--ap-text);
}

.ap-res-summary__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ap-primary), #ffb347);
  box-shadow: 0 0 0 0.45rem rgba(241, 90, 37, 0.1);
}

.ap-res-summary__note {
  margin-top: 2.8rem;
  padding: 1.8rem;
  border-radius: 2rem;
  background: var(--ap-primary-soft);
  font-size: 1.55rem;
  line-height: 1.7;
  color: var(--ap-text-muted);
}

.ap-res-summary__note strong {
  color: var(--ap-primary);
}

.ap-res-summary__back:link,
.ap-res-summary__back:visited {
  display: inline-flex;
  margin-top: 2.4rem;
  color: var(--ap-primary);
  font-size: 1.55rem;
  font-weight: 800;
  text-decoration: none;
}

.ap-res-summary__back:hover {
  text-decoration: underline;
}

.ap-res-form-card {
  padding: 4rem;
}

.ap-res-form-card__title {
  margin: 0 0 1rem;
  font-size: clamp(2.8rem, 3vw, 4rem);
  line-height: 1.12;
  color: var(--ap-text);
}

.ap-res-form-card__text {
  margin: 0 0 3rem;
  max-width: 62ch;
  font-size: 1.65rem;
  line-height: 1.7;
  color: var(--ap-text-muted);
}

.ap-res-form {
  display: grid;
  gap: 1.8rem;
}

.ap-res-form__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
}

.ap-res-form__row {
  display: grid;
  gap: 0.8rem;
}

.ap-res-form__row label {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--ap-text);
}

.ap-res-form__row input,
.ap-res-form__row select,
.ap-res-form__row textarea {
  width: 100%;
  min-height: 5.2rem;
  padding: 1.3rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(241, 90, 37, 0.16);
  background: #ffffff;
  font-family: inherit;
  font-size: 1.6rem;
  color: var(--ap-text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ap-res-form__row textarea {
  resize: vertical;
  min-height: 12rem;
}

.ap-res-form__row input:focus,
.ap-res-form__row select:focus,
.ap-res-form__row textarea:focus {
  border-color: rgba(241, 90, 37, 0.48);
  box-shadow: 0 0 0 4px rgba(241, 90, 37, 0.1);
}

.ap-res-check {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: 1.6rem;
  background: #ffffff;
  border: 1px solid rgba(241, 90, 37, 0.12);
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--ap-text-muted);
  cursor: pointer;
}

.ap-res-check input {
  width: 1.9rem;
  height: 1.9rem;
  margin-top: 0.25rem;
  accent-color: var(--ap-primary);
  flex: 0 0 auto;
}

.ap-res-submit {
  margin-top: 1rem;
  border: 0;
  cursor: pointer;
}

.ap-res-form__status {
  margin: 0;
  min-height: 2.4rem;
  font-size: 1.55rem;
  line-height: 1.6;
  font-weight: 700;
}

.ap-res-form__status.is-loading {
  color: var(--ap-indigo);
}

.ap-res-form__status.is-success {
  color: var(--ap-green);
}

.ap-res-form__status.is-error {
  color: var(--ap-primary);
}

@media (max-width: 900px) {
  .ap-res-page {
    padding: 7rem 0 8rem;
  }

  .ap-res-page__grid {
    grid-template-columns: 1fr;
  }

  .ap-res-summary {
    position: static;
  }
}

@media (max-width: 600px) {
  .ap-res-summary,
  .ap-res-form-card {
    padding: 2.8rem 2.2rem;
    border-radius: 2.4rem;
  }

  .ap-res-form__split {
    grid-template-columns: 1fr;
  }

  .ap-res-summary__price {
    font-size: 1.8rem;
  }
}

/* =========================
   ACTION RESERVATION FORM BUTTON FIX
========================= */
.ap-res-form .ap-btn,
.ap-res-form button.ap-btn,
.ap-res-submit {
  width: fit-content;
  min-width: 26rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 0.8rem;
  padding: 1.45rem 2.8rem;
  border: 0;
  border-radius: 999px;
  font-family: inherit;
  font-size: 1.7rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.ap-res-form button.ap-btn--primary,
.ap-res-submit {
  background: linear-gradient(135deg, var(--ap-primary), #ff7e47);
  color: #ffffff;
  box-shadow: 0 16px 28px rgba(241, 90, 37, 0.25);
}

.ap-res-form button.ap-btn--primary:hover,
.ap-res-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(241, 90, 37, 0.34);
}

.ap-res-form button.ap-btn--primary:active,
.ap-res-submit:active {
  transform: translateY(0);
}

.ap-res-form__status {
  margin-top: 0.6rem;
  padding: 1.4rem 1.6rem;
  border-radius: 1.6rem;
  background: rgba(128, 195, 67, 0.1);
  border: 1px solid rgba(128, 195, 67, 0.18);
}

.ap-res-form__status:empty {
  display: none;
}

.ap-res-form__status.is-success {
  color: #5f982c;
}

.ap-res-form__status.is-error {
  background: rgba(241, 90, 37, 0.08);
  border-color: rgba(241, 90, 37, 0.18);
  color: var(--ap-primary);
}

@media (max-width: 600px) {
  .ap-res-form .ap-btn,
  .ap-res-form button.ap-btn,
  .ap-res-submit {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
}
.ap-res-check__link:link,
.ap-res-check__link:visited {
  color: var(--ap-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  transition: color 0.2s ease;
}

.ap-res-check__link:hover,
.ap-res-check__link:active {
  color: var(--ap-primary-dark);
}

.ap-res-field-hint {
  margin: 0.2rem 0 0;
  font-size: 1.35rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--ap-text-muted);
}

.ap-res-field-hint.is-closed {
  color: var(--ap-primary);
}

.ap-res-included {
  margin-top: 2.4rem;
  padding: 2rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, var(--ap-primary-soft) 100%);
  border: 1px solid rgba(241, 90, 37, 0.14);
}

.ap-res-included__title {
  margin: 0 0 1.4rem;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 900;
  color: var(--ap-text);
}

.ap-res-included__list {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.ap-res-included__list li {
  position: relative;
  padding-left: 2.8rem;
  font-size: 1.55rem;
  line-height: 1.55;
  color: var(--ap-text-muted);
}

.ap-res-included__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--ap-primary);
}

@media (max-width: 600px) {
  .ap-res-included {
    padding: 1.8rem;
    border-radius: 1.8rem;
  }

  .ap-res-included__title {
    font-size: 1.9rem;
  }

  .ap-res-included__list li {
    font-size: 1.5rem;
  }
}
.ap-res-included__list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: -0.1rem;
  width: 1.8rem;
  height: 1.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--ap-primary-soft);
  color: var(--ap-primary);
  font-size: 1.5rem;
  font-weight: 900;
}

/* =========================
   PACKAGE CARDS CHECK ICON FIX
   Paket kartlarındaki tikleri boya damlası noktasına çevirir
========================= */
.ap-plan .ap-list__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}

.ap-plan .ap-icon--list {
  display: none;
}

.ap-plan .ap-list__item::before {
  content: "";
  flex: 0 0 0.9rem;
  width: 0.9rem;
  height: 0.9rem;
  margin-top: 0.75em;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ap-primary), #ffb347);
  box-shadow: 0 0 0 0.45rem rgba(241, 90, 37, 0.1);
}
