:root {
  --bg: #ffffff;
  --text: #1e1f22;
  --muted: #6b7078;
  --hairline: rgba(15, 16, 18, 0.12);
  --accent: #f4b400;

  --container: 1180px;
  --pad-x: 24px;
  --pad-y: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #0f1012;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid var(--hairline);
  z-index: 2000;
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--pad-y) var(--pad-x);
  padding-left: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}

.brand {
  display: inline-flex;
  text-decoration: none;
  color: inherit;
  line-height: 1;
}

.brand__logo {
  display: block;
  height: 64px;
  width: auto;
}

.brand__title {
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.2px;
}

.brand__subtitle {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--muted);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: flex-start;
  margin-left: 32px;
}

.nav__item {
  position: relative;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #003366;
  color: #ffffff;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.header-phone__icon {
  display: inline-flex;
}

.header-phone__text {
  letter-spacing: 0.02em;
}

.header-action {
  appearance: none;
  border: none;
  background: transparent;
  padding: 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(15, 16, 18, 0.80);
}

.header-action:hover {
  background: rgba(15, 16, 18, 0.04);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: none;
  z-index: 3000;
}

body.nav-overlay-open .nav-overlay {
  display: block;
}

.nav-overlay__panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(320px, 80vw);
  background: #ffffff;
  padding: 24px 22px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.22),
    0 2px 8px rgba(0, 0, 0, 0.18);
}

.nav-overlay__close {
  align-self: flex-end;
  appearance: none;
  border: none;
  background: transparent;
  padding: 6px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.nav-overlay__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nav-overlay__link {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: rgba(15, 16, 18, 0.9);
  font-size: 16px;
  font-weight: 500;
}

.nav-overlay__link.is-active {
  color: var(--accent);
}

.nav__toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(15, 16, 18, 0.12);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.nav__toggle:focus-visible {
  outline: 3px solid rgba(15, 16, 18, 0.18);
  outline-offset: 2px;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  text-decoration: none;
  color: #00409d;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: color 140ms ease;
  white-space: nowrap;
}

.nav__caret {
  font-size: 11px;
  margin-top: 1px;
}

.nav__item--services .nav__link {
  padding-right: 4px;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  min-width: 280px;
  z-index: 2500;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
}

.nav__dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12px;
}

.nav__dropdown-list {
  padding: 10px 8px;
  border-radius: 16px;
  background: #003366;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 16px 40px rgba(0, 51, 102, 0.45),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav__item--services:hover .nav__dropdown,
.nav__item--services:focus-within .nav__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__dropdown-link {
  display: block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #ffffff;
  white-space: nowrap;
  transition: background 140ms ease, color 140ms ease;
}

.nav__dropdown-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.nav__icon {
  display: inline-flex;
  color: rgba(15, 16, 18, 0.70);
}

.nav__link.is-active .nav__icon,
.nav__link:hover .nav__icon {
  color: rgba(15, 16, 18, 0.92);
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 3px;
  width: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav__link:hover {
  color: #00409d;
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__link.is-active {
  color: #00409d;
  font-weight: 600;
}

.nav__link.is-active::after {
  transform: scaleX(1);
}

.nav__link:focus-visible {
  outline: none;
}

.nav__link:focus-visible::after {
  transform: scaleX(1);
}

.main {
  max-width: var(--container);
  margin: 96px auto 0;
  padding: 40px var(--pad-x);
}

/* Hero slider */
.hero {
  padding-top: 32px;
  padding-bottom: 40px;
}

.hero--glow {
  position: relative;
  isolation: isolate;
}

.hero--glow::before {
  content: "";
  position: absolute;
  inset: -80px 0 40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.18), transparent 55%),
    radial-gradient(circle at 90% 10%, rgba(248, 113, 113, 0.12), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.hero__slides {
  position: relative;
}

.hero-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
  opacity: 0;
  transform: translateX(12px);
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 420ms ease, transform 420ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.hero-slide__eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
}

.hero-slide__title {
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #003366;
}

.hero-slide__subtitle {
  font-size: 15px;
  color: var(--muted);
  max-width: 420px;
  margin: 0 0 22px;
}

.hero-slide__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(120deg, #ff7a5a, #ff4f8b);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(255, 127, 90, 0.35);
}

.hero-slide__media {
  position: relative;
  display: flex;
  justify-content: flex-end;

}

.hero-slide__shape {
  position: absolute;
  right: -40px;
  top: -60px;
  width: 220px;
  height: 260px;
  background: linear-gradient(180deg, #ff9f3f, #ff7a5a);
  border-radius: 999px;
  z-index: 0;
}

.hero-slide__image {
  position: relative;
  z-index: 1;
  max-width: 440px;
  width: 100%;
  border-radius: 26px;
  box-shadow:
    0 34px 80px rgba(15, 16, 18, 0.35),
    0 6px 20px rgba(15, 16, 18, 0.18);
}

.hero__pagination {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  padding: 0;
  cursor: pointer;
  background: rgba(15, 16, 18, 0.16);
}

.hero-dot.is-active {
  width: 22px;
  background: var(--accent);
}

/* About section */
.about {
  padding: 40px 0 56px;
}

.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.about__media {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
}

.about__shape {
  position: absolute;
  inset: 4% 0;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.95)),
    linear-gradient(140deg, #f97316, #facc15);
  mix-blend-mode: multiply;
}

.about__image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 430px;
  border-radius: 999px;
  object-fit: cover;
}

.about__content {
  max-width: 520px;
}

.about__eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.about__title {
  font-size: 28px;
  margin: 0 0 10px;
  color: #003366;
}

.about__lead {
  font-size: 18px;
  font-weight: 500;
  color: #ea580c;
  margin: 0 0 16px;
}

.about__body {
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 10px;
}

/* Services section */
.services {
  padding: 56px 0 64px;
  background: #ffffff;
}

.services__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.services__header {
  text-align: center;
  margin-bottom: 26px;
}

.services__title {
  font-size: 26px;
  margin: 0 0 6px;
  color: #003366;
}

.services__subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.services-card {
  position: relative;
  padding: 22px 18px 18px;
  border-radius: 18px;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  transform: translateY(0);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.services-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 16, 18, 0.25);
}

.services-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.services-card__title {
  font-size: 18px;
  margin: 0 0 8px;
}

.services-card__summary {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 260px;
}

.services-card__footer {
  margin-top: auto;
}

.services-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  font-size: 12px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(120deg, #ff7a5a, #ff4f8b);
  box-shadow: 0 10px 24px rgba(255, 127, 90, 0.35);
}

.services-card__image-wrapper {
  position: absolute;
  right: -10px;
  bottom: -6px;
  width: 120px;
  opacity: 0.85;
}

.services-card__image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.services-card--accent-turuncu {
  background: linear-gradient(135deg, #fb923c, #ea580c);
}

.services-card--accent-mor {
  background: linear-gradient(135deg, #a855f7, #7e22ce);
}

.services-card--accent-pembe {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.services-card--accent-sari {
  background: linear-gradient(135deg, #facc15, #eab308);
}

.services-card--accent-su-yesili {
  background: linear-gradient(135deg, #34d399, #059669);
}

.services-card--accent-mavi {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
}

/* Services archive page */
.services-archive-hero {
  padding: 40px 0 18px;
}

.services-archive-hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}

.services-archive-hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}

.services-archive-hero__title {
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 32px;
  margin: 0 0 10px;
}

.services-archive-hero__subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.services-archive {
  padding: 10px 0 60px;
}

.services-archive__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.services-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(15, 16, 18, 0.06);
  box-shadow: 0 14px 30px rgba(15, 16, 18, 0.04);
  transform: translateY(0);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease,
    background 200ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 200ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(15, 16, 18, 0.14);
  border-color: rgba(15, 16, 18, 0.08);
  background: radial-gradient(circle at top, rgba(251, 191, 36, 0.04), #ffffff 55%);
}

.service-card__media {
  position: relative;
  overflow: hidden;
  max-height: 220px;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 220ms ease;
}

.service-card:hover .service-card__media img {
  transform: scale(1.06);
}

.service-card__body {
  padding: 16px 18px 18px;
}

.service-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 600;
}

.service-card__summary {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f97316;
}

.service-card__cta::after {
  content: "→";
  font-size: 13px;
}

/* Accent variations (border glow) */
.service-card--accent-mor::before {
  border-color: rgba(168, 85, 247, 0.6);
}

.service-card--accent-mavi::before {
  border-color: rgba(37, 99, 235, 0.6);
}

.service-card--accent-pembe::before {
  border-color: rgba(219, 39, 119, 0.6);
}

.service-card--accent-sari::before {
  border-color: rgba(234, 179, 8, 0.7);
}

.service-card--accent-su-yesili::before {
  border-color: rgba(16, 185, 129, 0.7);
}

.service-card--accent-turuncu::before {
  border-color: rgba(234, 88, 12, 0.7);
}

/* Testimonials */
.testimonials {
  padding: 72px 0 80px;
  background: #ffffff;
  /* main container dışına taş */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.testimonials__inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 48px;
}

.testimonials__header {
  text-align: center;
  margin: 0 0 40px;
}

.reveal-on-scroll {
  /* JS bozulsa bile içerik gizlenmesin diye
     varsayılan görünürlüğü açık tutuyoruz. */
  opacity: 1;
  transform: none;
  transition: opacity 380ms ease, transform 380ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

/* SEO Zigzag section */
.seo-zigzag {
  padding: 72px 0 90px;
  background: #ffffff;
}

.seo-zigzag__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.seo-zigzag__item {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: center;
}

.seo-zigzag__item--image-right {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
}

.seo-zigzag__item--image-right .seo-zigzag__media {
  order: 2;
}

.seo-zigzag__item--image-right .seo-zigzag__content {
  order: 1;
}

.seo-zigzag__media {
  position: relative;
}

.seo-zigzag__media-frame {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(15, 16, 18, 0.16);
}

.seo-zigzag__media-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.seo-zigzag__content {
  position: relative;
}

.seo-zigzag__title {
  margin: 0 0 14px;
  font-size: 26px;
  line-height: 1.25;
  color: #003366;
}

.seo-zigzag__body {
  position: relative;
  max-height: 180px;
  overflow: hidden;
  transition: max-height 280ms ease;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.seo-zigzag__body.is-expanded {
  max-height: 9999px;
}

.seo-zigzag__body p {
  margin: 0 0 10px;
}

.seo-zigzag__toggle {
  margin-top: 8px;
  border: none;
  background: none;
  color: #f97316;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 960px) {

  .seo-zigzag__item,
  .seo-zigzag__item--image-right {
    grid-template-columns: minmax(0, 1fr);
  }

  .seo-zigzag__media,
  .seo-zigzag__content {
    order: initial;
  }
}

/* FAQ section */
.faq {
  padding: 72px 0 90px;
  background: #ffffff;
}

.faq__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 16px;
}

.faq__header {
  text-align: center;
  margin-bottom: 32px;
}

.faq__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f97316;
  margin: 0 0 8px;
}

.faq__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  color: #003366;
}

.faq__list {
  border-radius: 24px;
  border: 1px solid rgba(15, 16, 18, 0.06);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 16, 18, 0.06);
  overflow: hidden;
}

.faq-item+.faq-item {
  border-top: 1px solid rgba(15, 16, 18, 0.06);
}

.faq-item__button {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: none;
  background: #ffffff;
  cursor: pointer;
}

.faq-item__question {
  font-size: 16px;
  font-weight: 600;
  color: #003366;
  text-align: left;
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(15, 16, 18, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #4b5563;
  flex-shrink: 0;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  background: #111827;
  color: #ffffff;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 220ms ease;
}

.faq-item.is-open .faq-item__answer {
  padding-bottom: 16px;
}

.faq-item__answer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

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

  .faq__title {
    font-size: 26px;
  }
}

/* Contact section */
.contact {
  padding: 72px 0 90px;
  background: #ffffff;
}

.contact__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px 40px;
}

.contact__header {
  text-align: center;
  margin-bottom: 26px;
}

.contact__heading {
  margin: 0 0 4px;
  font-size: 32px;
  font-weight: 600;
  color: #003366;
}

.contact__sub {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}

.contact__card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: stretch;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #003366;
  border-radius: 32px;
  padding: 26px 26px 28px;
  color: #e5e7eb;
  box-shadow: 0 22px 60px rgba(15, 16, 18, 0.6);
}

.contact__title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: #111827;
}

.contact__info-title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #f9fafb;
}

.contact__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: #ffffff;
}

.contact__rows {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(248, 187, 89, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fbbf24;
  flex-shrink: 0;
}

.contact__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffffff;
}

.contact__value {
  margin: 0;
  font-size: 14px;
  color: #f9fafb;
}

.contact__link {
  text-decoration: none;
  color: #f9fafb;
}

.contact__link:hover {
  color: #fbbf24;
}

.contact__form-wrap {
  border-radius: 24px;
  border: 1px solid rgba(15, 16, 18, 0.06);
  padding: 20px 20px 22px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 16, 18, 0.08);
}

.contact__form-title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.contact__alert {
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
}

.contact__alert--success {
  background: rgba(22, 163, 74, 0.08);
  color: #166534;
}

.contact__alert--error {
  background: rgba(220, 38, 38, 0.08);
  color: #b91c1c;
}

.contact-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.contact-form__actions {
  margin-top: 10px;
  display: flex;
  justify-content: flex-end;
}

.contact-form__button {
  border-radius: 999px;
  border: none;
  padding: 9px 18px;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  color: #111827;
  background: #fbbf24;
  box-shadow: 0 14px 30px rgba(250, 204, 21, 0.45);
}

.contact .field {
  margin-bottom: 8px;
}

.contact .field label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
}

.contact .field input,
.contact .field textarea {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(15, 16, 18, 0.08);
  padding: 8px 12px;
  font: inherit;
  font-size: 14px;
  background: #f9fafb;
}

.contact .field textarea {
  border-radius: 16px;
  resize: vertical;
  min-height: 90px;
}

.contact .field input:focus,
.contact .field textarea:focus {
  outline: none;
  border-color: rgba(248, 113, 113, 0.7);
  box-shadow: 0 0 0 1px rgba(248, 113, 113, 0.15);
  background: #ffffff;
}


@media (max-width: 960px) {
  .main {
    padding: 24px 16px;
  }

  .site-header__inner {
    padding: 14px 12px;
  }

  .header-phone {
    padding: 4px 8px;
    font-size: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand__title {
    font-size: 22px;
  }

  .nav__list {
    display: none;
  }

  /* Hero */
  .hero {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .hero__inner {
    padding: 0 16px;
  }

  .hero__slides {
    position: static;
  }

  .hero-slide {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: flex-start;
    transform: none;
  }

  .hero-slide.is-active {
    display: grid;
  }

  .hero-slide__title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .hero-slide__subtitle {
    max-width: none;
    margin-bottom: 18px;
  }

  .hero-slide__media {
    order: -1;
    justify-content: center;
  }

  .hero-slide__shape {
    right: 6px;
    top: -18px;
    width: 150px;
    height: 170px;
  }

  .hero-slide__image {
    max-width: 100%;
    width: 100%;
    border-radius: 20px;
  }

  /* About */
  .about {
    padding: 32px 0 42px;
  }

  .about__inner {
    padding: 0 16px;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .about__media {
    order: -1;
    max-width: 280px;
  }

  .about__image {
    max-width: 260px;
    margin: 0 auto;
  }

  /* Services */
  .services {
    padding: 40px 0 50px;
  }

  .services__inner {
    padding: 0 16px;
  }

  .services__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-card {
    padding: 18px 16px 18px;
  }

  .services-card__image-wrapper {
    width: 100px;
  }

  .services-archive-hero {
    padding: 30px 0 10px;
  }

  .services-archive-hero__inner {
    padding: 0 16px;
  }

  .services-archive-hero__title {
    font-size: 26px;
  }

  .services-archive-hero__subtitle {
    font-size: 13px;
  }

  .services-archive {
    padding: 8px 0 42px;
  }

  .services-archive__inner {
    padding: 0 16px;
  }

  .services-archive__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  /* Testimonials */
  .testimonials {
    padding: 40px 0 50px;
  }

  .testimonials__inner {
    padding: 0 16px;
  }

  .testimonials__header {
    margin-bottom: 24px;
  }

  .testimonials__title {
    font-size: 24px;
  }

  .testimonials__carousel {
    gap: 8px;
  }

  .testimonials__nav {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .testimonials__nav svg {
    width: 8px;
    height: 14px;
  }

  .testimonial-card {
    flex: 0 0 100%;
    padding: 18px 16px 20px;
  }

  /* SEO Zigzag */
  .seo-zigzag {
    padding: 48px 0 56px;
  }

  .seo-zigzag__inner {
    padding: 0 16px;
    gap: 40px;
  }

  .seo-zigzag__item,
  .seo-zigzag__item--image-right {
    grid-template-columns: minmax(0, 1fr);
  }

  .seo-zigzag__media,
  .seo-zigzag__content {
    order: initial !important;
  }

  .seo-zigzag__title {
    font-size: 22px;
  }

  .seo-zigzag__media-frame {
    border-radius: 20px;
  }

  /* FAQ */
  .faq {
    padding: 48px 0 60px;
  }

  .faq__inner {
    padding: 0 16px;
  }

  .faq__title {
    font-size: 24px;
  }

  .faq-item__button {
    padding: 16px 16px;
  }

  .faq-item__answer {
    padding: 0 16px;
  }

  .faq-item.is-open .faq-item__answer {
    padding-bottom: 14px;
  }

  /* Contact */
  .contact {
    padding: 48px 0 60px;
  }

  .contact__inner {
    padding: 0 16px 32px;
  }

  .contact__heading {
    font-size: 24px;
  }

  .contact__card {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .contact__info {
    border-radius: 22px;
    padding: 22px 20px 24px;
  }

  .contact__form-wrap {
    border-radius: 22px;
    padding: 18px 16px 20px;
  }

  .contact-form__row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .contact-form__button {
    width: 100%;
  }

  .contact-form__actions {
    justify-content: stretch;
  }
}

.testimonials__eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 10px;
}

.testimonials__dash {
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: #f97316;
}

.testimonials__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f97316;
  font-weight: 600;
  margin: 0;
}

.testimonials__title {
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 36px;
  font-weight: 600;
  color: #003366;
  margin: 0 0 12px;
}

.testimonials__rating-label {
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: #1e1f22;
  margin: 0 0 6px;
}

.testimonials__stars {
  color: #fbbf24;
  font-size: 22px;
  margin-bottom: 8px;
}

.testimonials__stars span {
  margin: 0 1px;
}

.testimonials__count {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}

/* Google logo as colored text */
.testimonials__google-logo {
  font-family: 'Product Sans', 'Arial', sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.5px;
  user-select: none;
}

.g-blue {
  color: #4285F4;
}

.g-red {
  color: #EA4335;
}

.g-yellow {
  color: #FBBC05;
}

.g-green {
  color: #34A853;
}

/* Carousel layout */
.testimonials__carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}

.testimonials__nav {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 999px;
  border: 1px solid #e2e5e9;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7078;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  flex-shrink: 0;
}

.testimonials__nav:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  color: #1e1f22;
}

.testimonials__nav:active {
  transform: scale(0.95);
}

.testimonials__viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.testimonials__track {
  display: flex;
  gap: 24px;
  transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Testimonial card */
.testimonial-card {
  flex: 0 0 calc((100% - 3 * 24px) / 4);
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 22px 24px;
  border: 1px solid #e0e3e7;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.testimonial-card:hover {
  border-color: #cbd0d5;
  box-shadow: 0 10px 26px rgba(15, 16, 18, 0.12);
  transform: translateY(-4px);
}

.testimonial-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.testimonial-card__name {
  font-size: 15px;
  font-weight: 600;
  color: #003366;
}

.testimonial-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.testimonial-card__date {
  font-size: 12px;
  color: #9ca3af;
}

.testimonial-card__g-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.testimonial-card__stars {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card__content {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

@media (max-width: 960px) {
  .site-header__inner {
    padding: 18px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand__title {
    font-size: 24px;
  }

  .nav__list {
    display: none;
  }

  .hero {
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .hero__inner {
    padding: 0 18px;
  }

  .hero__slides {
    position: static;
  }

  .hero-slide {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: flex-start;
    transform: none;
  }

  .hero-slide.is-active {
    display: grid;
  }

  .hero-slide__title {
    font-size: 30px;
    margin-bottom: 12px;
  }

  .hero-slide__subtitle {
    max-width: none;
    margin-bottom: 18px;
  }

  .hero-slide__media {
    order: -1;
    justify-content: center;
  }

  .hero-slide__shape {
    right: 6px;
    top: -18px;
    width: 150px;
    height: 170px;
  }

  .hero-slide__image {
    max-width: 320px;
    width: 100%;
    border-radius: 20px;
  }

  .about {
    padding: 32px 0 42px;
  }

  .about__inner {
    padding: 0 18px;
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .about__media {
    order: -1;
    max-width: 320px;
  }

  .about__image {
    max-width: 260px;
    margin: 0 auto;
  }

  .services {
    padding: 40px 0 50px;
  }

  .services__inner {
    padding: 0 18px;
  }

  .services__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-card {
    padding: 18px 16px 18px;
  }

  .services-card__image-wrapper {
    width: 100px;
  }

  .testimonials {
    padding: 40px 0 54px;
  }

  .testimonials__inner {
    padding: 0 18px;
  }

  .testimonials__header {
    margin-bottom: 28px;
  }

  .testimonials__title {
    font-size: 26px;
  }

  .testimonials__carousel {
    gap: 10px;
  }

  .testimonials__nav {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }
}

/* Footer */
.site-footer {
  margin-top: 40px;
  background: #003366;
  color: #ffffff;
}

.footer__top {
  padding: 40px 0 46px;
  position: relative;
}

.footer__bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.4);
  padding: 14px 0 18px;
}

.footer__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.footer__top .footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr) minmax(0, 1.5fr);
  gap: 32px;
  align-items: flex-start;
}

.footer__brand-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.footer__logo {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
  background: #ffffff;
  padding: 4px;
}

.footer__brand-desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #ffffff;
  max-width: 320px;
}

.footer__socials {
  display: flex;
  gap: 10px;
  margin-top: 2px;
}

.footer__social {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.footer__social:hover {
  background: #fbbf24;
  color: #111827;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(250, 204, 21, 0.55);
}

.footer__col-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #facc15;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__link {
  font-size: 13px;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding-left: 0;
}

.footer__link::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #fbbf24, #fb7185);
  transition: width 160ms ease;
}

.footer__link:hover {
  color: #ffffff;
}

.footer__link:hover::before {
  width: 100%;
}

.footer__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #ffffff;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer__contact-icon {
  margin-top: 2px;
  color: #fbbf24;
  flex-shrink: 0;
}

.footer__contact-link {
  color: inherit;
  text-decoration: none;
}

.footer__contact-link:hover {
  color: #ffffff;
}

.footer__copy {
  margin: 0;
  font-size: 12px;
  color: #ffffff;
}

.footer__bottom {
  font-size: 12px;
}

.footer__credit {
  position: absolute;
  right: 16px;
  bottom: 16px;
  text-align: right;
  font-size: 13px;
  color: #e5e7eb;
}

.footer__credit-link {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

.footer__credit-link:hover {
  color: #fb7185;
}

.footer__credit-text {
  opacity: 0.9;
}

.footer__credit-brand {
  margin-left: 4px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fbbf24;
  font-size: 14px;
}

@media (max-width: 960px) {
  .footer__top .footer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }

  .footer__top {
    padding: 28px 0 18px;
  }

  .footer__credit {
    position: static;
    margin-top: 10px;
    text-align: center;
  }

  .footer__bottom .footer__inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}

/* Service detail page */
.service-title {
  padding: 24px 0 10px;
}

.service-title__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  text-align: center;
}

.service-title__heading {
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 34px;
  margin: 0;
  color: #0f172a;
}

/* Blog detail hero image (under H1) */
.blog-hero-image {
  margin-top: 18px;
  max-width: 400px;           /* Masaüstünde daha dar */
  margin-left: auto;
  margin-right: auto;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

.blog-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;          /* Çok uzun görsellerde yüksekliği kıs */
  object-fit: cover;
}

.service-hero {
  padding: 10px 0 28px;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.10), transparent 60%), #ffffff;
}

.service-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.2fr);
  gap: 32px;
  align-items: stretch;
}

.service-hero__content {
  max-width: 560px;
}

.service-hero__card {
  border-radius: 18px;
  background: #ffffff;
  padding: 16px 18px 18px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.25);
  min-height: 170px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.service-hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #60a5fa;
  margin: 0 0 6px;
}

.service-hero__title {
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 34px;
  margin: 0 0 10px;
  color: #0f172a;
}

.service-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.service-hero__pill {
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 12px;
  background: #1d4ed8;
  color: #eff6ff;
}

.service-hero__pill--soft {
  background: #e0f2fe;
  color: #1e3a8a;
}

.service-hero__lead {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

.service-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.service-hero__tag {
  border-radius: 12px;
  padding: 6px 10px;
  background: #eff6ff;
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.service-hero__tag-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
}

.service-hero__tag-value {
  display: block;
  font-size: 13px;
  color: #0f172a;
}

.service-hero__media {
  justify-self: flex-end;
  align-self: stretch;
  display: flex;
}

.service-hero__media-frame {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  height: 100%;
  width: 100%;
}

.service-hero__media-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.service-layout {
  padding: 20px 0 40px;
}

.service-layout__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: block;
}

.service-layout__main {
  min-width: 0;
}

.service-content {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}

.service-content h2,
.service-content h3 {
  margin-top: 18px;
  margin-bottom: 8px;
}

.service-content h2 {
  font-size: 22px;
  color: #ea580c;
}

.service-content h3 {
  font-size: 18px;
  color: #2563eb;
}

.service-content p {
  margin: 0 0 10px;
}

.service-content ul {
  padding-left: 20px;
  margin: 0 0 10px;
}

.service-content a {
  color: #1d4ed8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-layout__sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: flex-start;
}

.service-sidebar-sticky {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-sidebar-box {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #ffffff;
  padding: 14px 14px 16px;
}

.service-sidebar-box__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.service-sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-sidebar-list__item a {
  display: block;
  padding: 6px 8px;
  border-radius: 99px;
  font-size: 13px;
  text-decoration: none;
  color: #111827;
}

.service-sidebar-list__item.is-active a {
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 500;
}

.service-sidebar-list__item a:hover {
  background: #f1f5f9;
}

.service-gallery {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: linear-gradient(135deg, #eff6ff, #ffffff);
  padding: 14px 14px 16px;
  margin-top: 20px;
}

.service-gallery__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.service-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-gallery__item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transform: translateY(0);
  transition:
    transform 180ms ease-out,
    box-shadow 180ms ease-out,
    filter 180ms ease-out;
}

.service-gallery__item img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.service-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 180ms ease-out;
  pointer-events: none;
}

.service-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
  filter: brightness(1.02);
}

.service-gallery__item:hover::after {
  opacity: 1;
}

@media (max-width: 900px) {
  .service-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-gallery__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.service-facts {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: #ffffff;
  padding: 14px 14px 16px;
}

.service-facts__title {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.service-facts__list {
  margin: 0;
  padding: 0;
}

.service-facts__row {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.service-facts__row dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #6b7280;
}

.service-facts__row dd {
  margin: 0;
  font-size: 13px;
  color: #0f172a;
}

@media (max-width: 960px) {
  .service-title {
    padding: 18px 0 6px;
  }

  .service-title__heading {
    font-size: 26px;
  }

  .service-hero {
    padding: 16px 0 18px;
  }

  .service-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .service-hero__media {
    order: -1;
  }

  .service-layout {
    padding: 16px 0 30px;
  }

  .service-layout__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }
}

.service-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
}

.service-lightbox__backdrop {
  position: absolute;
  inset: 0;
}

.service-lightbox__figure {
  position: relative;
  max-width: 100vw;
  max-height: 100vh;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.service-lightbox__figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-lightbox__close {
  position: absolute;
  top: 8px;
  right: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(15, 23, 42, 0.75);
  color: #e5e7eb;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
}

.service-lightbox[hidden] {
  display: none;
}

/* About page */
.about-page-hero {
  padding: 40px 0 38px;
  background:
    radial-gradient(circle at 0% 0%, rgba(251, 191, 36, 0.16), transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.14), transparent 60%),
    #ffffff;
  border-bottom: 1px solid rgba(15, 16, 18, 0.06);
}

.about-page-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: 40px;
  align-items: center;
}

.about-page-hero__media {
  justify-self: flex-start;
}

.about-page-hero__frame {
  position: relative;
  max-width: 380px;
  border-radius: 999px;
  overflow: hidden;
  box-shadow:
    0 26px 60px rgba(15, 23, 42, 0.35),
    0 0 0 6px rgba(248, 250, 252, 0.95);
}

.about-page-hero__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.75), transparent 60%),
    radial-gradient(circle at 90% 10%, rgba(251, 191, 36, 0.25), transparent 65%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.about-page-hero__frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-page-hero__content {
  max-width: 540px;
}

.about-page-hero__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00409d;
  margin: 0 0 10px;
}

.about-page-hero__title {
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 40px;
  margin: 0 0 10px;
  color: #0f172a;
}

.about-page-hero__subtitle {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
}

.about-page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.about-page-hero__pill {
  border-radius: 999px;
  padding: 8px 14px;
  background: #0f172a;
  color: #e5e7eb;
  min-width: 0;
}

.about-page-hero__pill--soft {
  background: #eff6ff;
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.about-page-hero__pill-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #9ca3af;
}

.about-page-hero__pill-value {
  display: block;
  font-size: 13px;
}

.about-page-body {
  padding: 26px 0 44px;
  background: #ffffff;
}

.about-page-body__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 36px;
  align-items: flex-start;
}

.about-page-body__heading {
  margin: 0 0 12px;
  font-size: 24px;
  color: #ea580c;
}

.about-page-body__block p {
  font-size: 14px;
  line-height: 1.8;
  color: #4b5563;
  margin: 0 0 10px;
}

.about-page-body__sidebar {
  align-self: stretch;
}

.about-page-bio-card {
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 1));
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.6);
  padding: 16px 18px 18px;
  color: #e5e7eb;
}

.about-page-bio-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 600;
  color: #facc15;
}

.about-page-bio-card__list {
  margin: 0;
  padding: 0;
}

.about-page-bio-card__row {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}

.about-page-bio-card__row dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

.about-page-bio-card__row dd {
  margin: 0;
  font-size: 13px;
  color: #f9fafb;
}

.about-page-training {
  padding: 14px 0 64px;
}

.about-page-training__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}

.about-page-training__header {
  text-align: center;
  margin-bottom: 26px;
}

.about-page-training__eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f97316;
  margin: 0 0 6px;
}

.about-page-training__title {
  margin: 0 0 6px;
  font-size: 26px;
  font-family: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", Times, serif;
  color: #0f172a;
}

.about-page-training__subtitle {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.about-page-training__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-page-training__card {
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.08), #ffffff);
  padding: 14px 14px 16px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.about-page-training__card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #0f172a;
}

.about-page-training__org {
  margin: 0 0 6px;
  font-size: 13px;
  color: #6b7280;
}

.about-page-training__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #4b5563;
}

@media (max-width: 960px) {
  .about-page-hero {
    padding: 24px 0 22px;
  }

  .about-page-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .about-page-hero__media {
    order: -1;
  }

  .about-page-hero__title {
    font-size: 30px;
  }

  .about-page-body__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .about-page-training__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Search Overlay */
.search-overlay {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 200ms ease, transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.search-overlay-open .search-overlay {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.search-overlay__panel {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--pad-x) 32px;
}

.search-overlay__container {
  position: relative;
}

.search-overlay__close {
  position: absolute;
  top: -8px;
  right: -8px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #6b7280;
  padding: 4px;
}

.search-overlay__close:hover {
  color: #111827;
}

.search-overlay__content {
  margin-top: 8px;
}

.search-overlay__form {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 8px;
  margin-bottom: 16px;
}

.search-overlay__input {
  flex: 1;
  border: none;
  font-size: 20px;
  padding: 8px 4px;
  outline: none;
  background: transparent;
  color: #1f2937;
}

.search-overlay__input::placeholder {
  color: #9ca3af;
}

.search-overlay__submit {
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-overlay__submit:hover {
  color: #f59e0b;
}

.search-overlay__results {
  max-height: 400px;
  overflow-y: auto;
}

.search-result-item {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  transition: background 150ms ease;
}

.search-result-item:hover {
  background: #f3f4f6;
}

.search-result-item h4 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #111827;
}

.search-result-item p {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-empty {
  padding: 24px 0;
  text-align: center;
  color: #6b7280;
  font-size: 15px;
}