:root {
  --bg: #f5f1ea;
  --surface: #ffffff;
  --surface-soft: #ebe4d9;
  --section: #eef1f4;
  --text: #2f3842;
  --muted: #55606d;
  --muted-light: #7f8792;
  --accent: #7d8ea3;
  --border: #d9d2c7;
  --shadow: 0 24px 70px rgba(47, 56, 66, 0.08);
  --radius-lg: 32px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--border);
  background: rgba(245, 241, 234, 0.94);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: grid;
  gap: 6px;
}

.brand span,
.eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.brand strong {
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.08em;
  font-size: 18px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  color: #52606d;
}

.site-nav a {
  transition: 0.2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

/* GENERAL LAYOUT */

.section {
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}

.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 70px;
  align-items: center;
}

.hero h1,
.section-heading h2,
.split-grid h2,
.contact h2 {
  margin: 18px 0 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.lead {
  max-width: 680px;
  margin: 28px 0 0;
  font-size: 20px;
  line-height: 1.8;
  color: var(--muted);
}

.small-lead {
  font-size: 18px;
}

/* HERO */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 14px 30px rgba(125, 142, 163, 0.22);
}

.button.primary:hover {
  transform: translateY(-1px);
  opacity: 0.94;
}

.button.secondary {
  border-color: #b9b2a7;
  color: #4f5b68;
}

.hero-card {
  padding: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff 0%, var(--surface-soft) 100%);
  box-shadow: var(--shadow);
}

.hero-card p {
  margin: 0 0 20px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: #7d7a74;
}

.hero-card h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.22;
}

.hero-card span {
  display: block;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.quote-line {
  margin-top: 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  max-width: 500px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  letter-spacing: 0.3px;
}

/* ABOUT */

.about {
  background: rgba(255, 255, 255, 0.34);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.about-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-title .name {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  color: #1f2a35;
  letter-spacing: -0.015em;
  line-height: 1.05;
  white-space: nowrap;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

.about-title .title {
  margin-top: 10px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  color: #6b7c8c;
  opacity: 0.9;
}

.content-block {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.content-block p {
  margin-top: 0;
}

/* SERVICES */

.section-heading {
  max-width: 720px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.service-card {
  min-height: 270px;
  padding: 34px;
  border: 1px solid #d8d0c4;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
}

.service-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.service-link {
  display: inline-flex;
  margin-top: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
}

.service-link:hover {
  opacity: 0.75;
}

/* CONTACT */

.contact {
  background: var(--section);
}

.info-list {
  margin-top: 36px;
  color: #5b6673;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.8;
}

.contact-form {
  padding: 34px;
  border: 1px solid #d6dce2;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #44515e;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfd6dd;
  border-radius: 14px;
  background: #fafafa;
  padding: 15px 16px;
  font: 16px Arial, Helvetica, sans-serif;
  color: var(--text);
  outline: none;
  transition: 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(125, 142, 163, 0.16);
}

textarea {
  resize: vertical;
}

.full {
  width: 100%;
}

.form-note {
  margin: 12px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  color: var(--muted-light);
  line-height: 1.6;
}

.kvkk-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
}

.kvkk-check input {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--accent);
}

.kvkk-check span {
  display: block;
}

/* FOOTER */

.site-footer {
  padding: 28px 0;
  background: var(--bg);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #66717d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
}

/* ANIMATIONS */

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.9s ease forwards;
}

.fade-in-delay {
  animation-delay: 0.25s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

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

/* HYT PAGE */

.hyt-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.hyt-menu {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 120px;
}

.hyt-tab {
  display: block;
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  transition: 0.25s ease;
}

.hyt-tab::before {
  content: "•";
  margin-right: 8px;
  color: var(--accent);
  opacity: 0.75;
}

.hyt-tab:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: var(--accent);
}

.hyt-tab.active {
  border-color: var(--accent);
  border-left-color: #2e2e2e;
  background: var(--surface-soft);
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.hyt-tab.active::before {
  opacity: 1;
}

.hyt-content {
  max-width: 760px;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  font-size: 16px;
  color: #2e2e2e;
  transition: all 0.35s ease;
}

.hyt-content h1 {
  position: relative;
  margin-top: 0;
  margin-bottom: 26px;
  padding-bottom: 18px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.hyt-content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  background: var(--accent);
  opacity: 0.75;
}

.hyt-content h2,
.hyt-content h3 {
  color: var(--text);
}

.hyt-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  padding-top: 8px;
  font-size: 22px;
}

.hyt-content h3 {
  margin-top: 28px;
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.4;
}

.hyt-content p {
  max-width: 700px;
  margin-bottom: 18px;
  color: #444;
  font-size: 18px;
  line-height: 1.75;
}

.hyt-content p + p {
  margin-top: 10px;
}

.hyt-content p + h2,
.hyt-content p + h3 {
  margin-top: 34px;
}

.hyt-content p strong {
  color: #000;
  font-weight: 600;
}

.hyt-content ul {
  padding-left: 18px;
  margin-top: 12px;
}

.hyt-content li {
  margin-bottom: 6px;
}

.fade-content {
  animation: fadeSlide 0.45s ease;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media (max-width: 860px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--bg);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 13px 8px;
  }

  .section {
    padding: 64px 0;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .about-grid,
  .hyt-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero h1,
  .section-heading h2,
  .split-grid h2,
  .contact h2 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    padding: 30px;
  }

  .hero-card h2 {
    font-size: 28px;
  }

  .service-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .hyt-menu {
    position: static;
  }

  .hyt-content {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
  }
}
/* =========================
   HYT TEXT PREMIUM FORMAT
========================= */

.hyt-content {
  max-width: 760px;
}

/* Paragraf */
.hyt-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #444;
  text-align: justify;
  hyphens: auto;
  margin-bottom: 18px;
}

/* Paragraf arası boşluk (ritim) */
.hyt-content p + p {
  margin-top: 10px;
}

/* Vurgulu cümle */
.hyt-content p strong {
  font-weight: 600;
  color: #000;
}

/* Başlık */
.hyt-content h1 {
  margin-bottom: 26px;
  padding-bottom: 14px;
  position: relative;
}

/* Başlık alt çizgi */
.hyt-content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  background: #7d8ea3;
  opacity: 0.8;
}

/* Alt başlık */
.hyt-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
}

/* Soru başlıkları (en kritik) */
.hyt-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #2e2e2e;
}

/* Uzun metin daraltma (okunabilirlik) */
.hyt-content p,
.hyt-content h2,
.hyt-content h3 {
  max-width: 720px;
}
/* =========================
   HYT READING EXPERIENCE (BOOK STYLE)
========================= */

.hyt-content {
  max-width: 720px;
}

/* PARAGRAF */
.hyt-content p {
  font-size: 18px;
  line-height: 2;              /* daha nefesli */
  color: #3e3e3e;
  text-align: justify;
  hyphens: auto;
  margin-bottom: 20px;
}

/* PARAGRAF AKIŞ RİTMİ */
.hyt-content p + p {
  margin-top: 12px;
}

/* İLK PARAGRAF (başlık sonrası) */
.hyt-content h1 + p {
  margin-top: 22px;
}

/* VURGU (strong) */
.hyt-content p strong {
  font-weight: 600;
  color: #000;
  letter-spacing: 0.2px;
}

/* BAŞLIK */
.hyt-content h1 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 28px;
  padding-bottom: 16px;
  position: relative;
}

/* BAŞLIK ÇİZGİ */
.hyt-content h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 2px;
  background: #7d8ea3;
  opacity: 0.7;
}

/* ALT BAŞLIK */
.hyt-content h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.4;
}

/* SORU BAŞLIKLARI */
.hyt-content h3 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
}

/* PARAGRAF + BAŞLIK GEÇİŞLERİ */
.hyt-content p + h3,
.hyt-content p + h2 {
  margin-top: 36px;
}

/* OKUMA KONFORU */
.hyt-content {
  letter-spacing: 0.2px;
  word-spacing: 0.5px;
}

/* MOBİL OPTİMİZASYON */
@media (max-width: 768px) {
  .hyt-content p {
    font-size: 16px;
    line-height: 1.85;
  }
}
/* =========================
   PARAGRAPH INDENT SYSTEM
========================= */

/* İlk paragraf hariç diğerleri girintili */
.hyt-content p {
  text-indent: 0;
}

.hyt-content p + p {
  text-indent: 24px;   /* girinti */
  margin-top: 6px;     /* boşluk azalır (kitap hissi) */
}

/* Başlıktan sonra gelen ilk paragraf girintisiz */
.hyt-content h1 + p,
.hyt-content h2 + p,
.hyt-content h3 + p {
  text-indent: 0;
}
.hyt-content p {
  margin-bottom: 0;
}
.hyt-content a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
}

.hyt-content a:hover {
  opacity: 0.7;
}
/* =========================
   HYT ACADEMIC REFERENCE STYLE
========================= */

.hyt-content .source-note {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted);
  text-align: left;
}

.hyt-content .source-note strong {
  color: var(--text);
  font-weight: 600;
}

.hyt-content .source-note a {
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
}

.hyt-content .source-note a:hover {
  opacity: 0.75;
}
/* =========================
   HOMEPAGE FINAL VISUAL POLISH
========================= */

/* Hakkımda metni */
.about .content-block {
  max-width: 680px;
}

.about .content-block p {
  text-align: justify;
  hyphens: auto;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* Hizmet kartları */
.service-grid {
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 28px 76px rgba(47, 56, 66, 0.12);
}

.service-card h3 {
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.25;
  max-width: 95%;
}

.service-card p {
  display: inline-flex;
  width: fit-content;
  margin-top: 26px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(125, 142, 163, 0.12);
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* İletişim açıklama kutusu */
.contact-note {
  margin-top: 26px;
  max-width: 620px;
  padding: 22px 24px;
  border-left: 3px solid var(--accent);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
}

.contact-note p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-note p + p {
  margin-top: 14px;
}

/* Formu biraz daha rafine gösterir */
.contact-form {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 28px 76px rgba(47, 56, 66, 0.11);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-note {
  max-width: 520px;
}
.contact-form {
  width: 100%;
  max-width: 520px;
}
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
.contact-form {
  margin-left: auto;
}
/* CONTACT DESKTOP TWO COLUMN FIX */
@media (min-width: 861px) {
  .contact-grid {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
    gap: 80px;
    align-items: start;
  }

  .contact-grid > div {
    max-width: 520px;
  }

  .contact-form {
    max-width: 560px;
    width: 100%;
    justify-self: end;
    margin-left: auto;
  }
}
/* =========================
   CONTACT SECTION FINAL FIX
========================= */

@media (min-width: 700px) {
  .contact-grid {
    display: grid !important;
    grid-template-columns: 0.9fr 1.1fr !important;
    gap: 80px !important;
    align-items: start !important;
  }

  .contact-grid > div {
    max-width: 520px !important;
  }

  .contact-form {
    width: 100% !important;
    max-width: 560px !important;
    justify-self: end !important;
    margin-left: auto !important;
  }
}

@media (max-width: 699px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .contact-form {
    max-width: 100% !important;
  }
}
/* CONTACT FINAL LAYOUT - OVERRIDE */
.contact-layout-final {
  display: grid !important;
  grid-template-columns: minmax(320px, 0.85fr) minmax(460px, 1.15fr) !important;
  gap: 72px !important;
  align-items: start !important;
}

.contact-text-final {
  max-width: 520px !important;
}

.contact-form-final {
  width: 100% !important;
  max-width: 620px !important;
  justify-self: end !important;
}

@media (max-width: 900px) {
  .contact-layout-final {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .contact-form-final {
    max-width: 100% !important;
    justify-self: stretch !important;
  }
}
/* CONTACT FORM VERTICAL ALIGN FIX */
.contact-layout-final {
  align-items: start !important;
}

.contact-form-final {
  margin-top: 0 !important;
  transform: none !important;
}

.contact-text-final,
.contact-form-final {
  align-self: start !important;
}
.button.primary {
  letter-spacing: 0.04em;
}

.contact-form-final:hover {
  transform: translateY(-2px);
}

.service-card {
  cursor: pointer;
}
/* =========================
   SERVICE DETAIL PAGES
========================= */

.service-detail {
  max-width: 760px;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.service-detail h1 {
  position: relative;
  margin-top: 0;
  margin-bottom: 28px;
  padding-bottom: 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.service-detail h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 76px;
  height: 2px;
  background: var(--accent);
  opacity: 0.75;
}

.service-detail h2 {
  margin-top: 38px;
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.35;
}

.service-detail p {
  color: #444;
  font-size: 18px;
  line-height: 1.85;
  text-align: justify;
  hyphens: auto;
  margin-bottom: 18px;
}

.service-detail ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 24px;
  color: #444;
  font-size: 17px;
  line-height: 1.65;
}

.service-detail li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.service-detail .button {
  margin-top: 16px;
}

@media (max-width: 860px) {
  .service-detail {
    padding: 30px;
  }

  .service-detail p {
    font-size: 16px;
    line-height: 1.75;
  }
}
/* CONTACT DETAILS */
.contact-details {
  margin-top: 18px;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.7;
}

.contact-details strong {
  color: var(--text);
}

.contact-details a {
  color: var(--accent);
  font-weight: 600;
}
/* ABOUT PHOTO */
.about-photo {
  display: flex;
  justify-content: center;
  margin: 28px 0 18px;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.about-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.about-photo {
  display: flex;
  justify-content: center;
  margin: 28px 0 18px;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.about-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--border);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}
.hyt-cta {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
