/* ==========================================================================
   İzmir Baskı ve Reklam | Ana Stil Dosyası
   --------------------------------------------------------------------------
   Renk Paleti
   Koyu Teal   : #2F7F7A  → başlıklar, koyu metin, footer
   Zeytin      : #6D7B4B  → ikincil metin
   Bal Sarısı  : #F5D675  → kenarlıklar, koyu zeminde vurgular
   White       : #FFFFFF  → genel arka plan
   Turuncu     : #DD7443  → vurgu zeminleri, butonlar, CTA
   ========================================================================== */

/* 1) Değişkenler
   ========================================================================== */
:root {
  /* Palet */
  --jet-black:  #2F7F7A;
  --blue-slate: #6D7B4B;
  --silver:     #F5D675;
  --white:      #FFFFFF;
  --coral-glow: #DD7443;

  /* Türetilmiş tonlar */
  --text-main:  var(--jet-black);
  --text-muted: var(--blue-slate);
  --border:     var(--silver);
  --bg-soft:    #F1F4E6;
  --coral-dark: #C05E2E;
  --coral-soft: rgba(221, 116, 67, 0.16);

  /* Tipografi */
  --font-base: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Yerleşim */
  --container: 1000px;
  --radius:    14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 3px rgba(45, 49, 66, 0.08);
  --shadow-md: 0 10px 30px rgba(45, 49, 66, 0.12);
  --transition: 0.25s ease;
}

/* 2) Sıfırlama ve temel stiller
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-main);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--jet-black);
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 0.6em;
}

p {
  margin-bottom: 1em;
}

a {
  color: var(--jet-black);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-slate);
}

ul {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--jet-black);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--jet-black);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
}

.skip-link:focus {
  left: 0;
  color: var(--white);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* 3) Butonlar
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary {
  background: var(--coral-glow);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(221, 116, 67, 0.35);
}

.btn-primary:hover {
  background: var(--coral-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--jet-black);
  border-color: var(--silver);
}

.btn-secondary:hover {
  border-color: var(--jet-black);
  color: var(--jet-black);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--jet-black);
}

.btn-light:hover {
  background: var(--jet-black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--coral-glow);
  border-color: var(--white);
}

/* 4) Üst alan
   ========================================================================== */
.site-header {
  position: relative;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--jet-black);
  flex-shrink: 0;
}

.brand:hover {
  color: var(--jet-black);
}

.brand-name {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.35rem;
  line-height: 1.1;
  font-weight: 800;
  font-size: 2.625rem;
}

.brand-name small {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

/* Gezinti */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.primary-nav a {
  position: relative;
  color: var(--jet-black);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.4rem 0;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--jet-black);
  transition: width var(--transition);
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--jet-black);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  width: 100%;
}

.header-cta {
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
}

/* Mobil menü düğmesi */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--jet-black);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

/* 5) Hero
   ========================================================================== */
.hero {
  position: relative;
  padding: 90px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(221, 116, 67, 0.06), transparent 70%),
    var(--white);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--jet-black);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  margin-bottom: 0.55em;
  max-width: 22ch;
  margin-inline: auto;
}

.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  color: var(--text-muted);
  max-width: 60ch;
  margin: 0 auto 1rem;
}

.hero-text {
  max-width: 52ch;
  margin: 0 auto 1.8rem;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 2.2rem;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-chips svg {
  width: 15px;
  height: 15px;
  color: var(--jet-black);
}

/* 6) Bölüm başlıkları
   ========================================================================== */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral-glow);
  margin-bottom: 0.6rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  margin-bottom: 0.5em;
}

.section-desc {
  color: var(--text-muted);
  margin-bottom: 0;
}

.section-head-light h2 {
  color: var(--white);
}

.section-head-light .section-eyebrow {
  color: var(--silver);
}

.section-head-light .section-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* 7) Hizmetler
   ========================================================================== */
.services {
  padding: 84px 0;
  background: var(--bg-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 1.9rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--jet-black);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--coral-soft);
  color: var(--coral-glow);
  transition: background var(--transition), color var(--transition);
}

.service-icon svg {
  width: 26px;
  height: 26px;
}

.service-card:hover .service-icon {
  background: var(--jet-black);
  color: var(--silver);
}

.service-title {
  display: inline-block;
  align-self: flex-start;
  padding: 0.4rem 0.95rem;
  background: var(--coral-soft);
  border-radius: 999px;
  font-size: 1rem;
  margin-bottom: 0.9em;
}

.service-desc {
  flex-grow: 1;
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* 8) Neden Biz
   ========================================================================== */
.features {
  padding: 84px 0;
  background: var(--jet-black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.feature {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  transition: background var(--transition), transform var(--transition);
}

.feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--silver);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature h3 {
  color: var(--white);
  font-size: 1.08rem;
  margin-bottom: 0.4em;
}

.feature p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* 9) CTA
   ========================================================================== */
.cta {
  padding: 72px 0;
  background: var(--coral-glow);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-text h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.3em;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* 10) Alt alan
   ========================================================================== */
.site-footer {
  background: var(--jet-black);
  color: rgba(255, 255, 255, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 60px 20px 40px;
}

.footer-brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1rem;
}


.footer-title {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.1rem;
  position: relative;
  padding-bottom: 0.55rem;
}

.footer-title a {
  color: var(--white);
}

.footer-title a:hover {
  color: var(--silver);
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  background: var(--silver);
}

.footer-links li + li,
.footer-contact li + li {
  margin-top: 0.55rem;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.93rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--silver);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.93rem;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--silver);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 0;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* 11) 404 sayfası
   ========================================================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background:
    radial-gradient(ellipse 50% 40% at 50% 20%, rgba(221, 116, 67, 0.06), transparent 70%),
    var(--white);
}

.error-content {
  max-width: 520px;
}

.error-code {
  font-size: clamp(4.5rem, 14vw, 7rem);
  font-weight: 800;
  line-height: 1;
  color: var(--jet-black);
  margin-bottom: 0.3em;
}

.error-content h1 {
  margin-bottom: 0.5em;
}

.error-content p {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* 12) Duyarlı tasarım
   ========================================================================== */
@media (max-width: 960px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .primary-nav.is-open {
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
  }

  .primary-nav a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border);
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    padding: 70px 0 60px;
  }

  .services,
  .features {
    padding: 64px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    padding-top: 48px;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }

  .cta {
    text-align: center;
  }

  .cta-inner {
    justify-content: center;
    flex-direction: column;
  }

  .cta-actions {
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* 13) Erişilebilirlik: azaltılmış hareket
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* 14) İletişim sayfası
   ========================================================================== */
.contact-section {
  padding: 56px 0 84px;
  background:
    radial-gradient(ellipse 55% 45% at 85% 0%, rgba(111, 123, 75, 0.08), transparent 65%),
    var(--white);
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.6rem;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--jet-black);
}

.breadcrumb span[aria-hidden="true"] {
  margin: 0 0.45rem;
  color: var(--silver);
}

.contact-head h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.4em;
}

.contact-head p {
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 2.4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1.8rem;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h2 {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}

.contact-info-list {
  display: grid;
  gap: 1.1rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--text-main);
}

.contact-info-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--coral-glow);
}

.contact-info-list a {
  color: var(--text-main);
  font-weight: 600;
}

.contact-info-list a:hover {
  color: var(--coral-glow);
}

.contact-info-list small {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

/* Form */
.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.form-group label small {
  font-weight: 400;
  color: var(--text-muted);
}

.form-group .required {
  color: var(--coral-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.95rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background: var(--white);
  border: 1px solid var(--silver);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--jet-black);
  box-shadow: 0 0 0 3px rgba(221, 116, 67, 0.25);
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.form-note .required {
  color: var(--coral-dark);
}

/* Bal küpü (honeypot) — kullanıcılar görmez */
.hp-field {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Form durum mesajları */
.form-notice {
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  margin-bottom: 1.4rem;
  border: 1px solid transparent;
}

.form-notice[hidden] {
  display: none;
}

.form-notice a {
  font-weight: 600;
}

.form-notice-success {
  background: #F0F8F2;
  border-color: #BFE3C8;
  color: #2E7D4F;
}

.form-notice-error {
  background: #FDF3F1;
  border-color: #F2C9C0;
  color: #A33A2E;
}

/* Form içinde, gönder butonunun üstünde görünen durum mesajları:
   mesaj görününce butonu aşağı iter */
.contact-form .form-notice {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

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

/* 15) WhatsApp butonu
   ========================================================================== */
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1DA851;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* 16) İletişim formu çapa hedefi — "Mesaj Gönderin" başlığı üstte boşlukla görünsün */
#form {
  scroll-margin-top: 24px;
}

/* 17) Logo — küçük ekranlarda taşmasın diye ölçek */
@media (max-width: 480px) {
  .brand-name {
    font-size: 2rem;
  }

  .brand-name small {
    font-size: 1.4rem;
  }
}

/* 18) Matematik sorusu (captcha) — cevap kutusu kısa */
.captcha-group input[type="text"] {
  max-width: 140px;
}

.captcha-group input.is-invalid {
  border-color: #E0A79B;
  box-shadow: 0 0 0 3px rgba(163, 58, 46, 0.15);
}

/* 19) Sayfa şablonu (hizmetler, ürün sayfaları)
   ========================================================================== */
.page-section {
  padding: 56px 0 84px;
  background:
    radial-gradient(ellipse 55% 45% at 85% 0%, rgba(221, 116, 67, 0.05), transparent 65%),
    var(--white);
}

.page-head {
  max-width: 640px;
  margin-bottom: 2.4rem;
}

.page-head h1 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin-bottom: 0.4em;
}

.page-head p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Metin sayfaları (Gizlilik Politikası vb.) */
.page-text {
  max-width: 720px;
}

.page-text h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.page-text p {
  color: var(--text-main);
  line-height: 1.7;
}

.page-text ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1em;
}

.page-text ul li {
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

/* Hizmet listesi — çizgi kutular (yatay satırlar, alt çizgi ayraçlı) */
.service-lines {
  display: grid;
  gap: 0;
}

.service-line {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 0.5rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
  text-decoration: none;
  transition: background var(--transition), padding-left var(--transition), border-color var(--transition);
}

.service-line:last-child {
  border-bottom: 1px solid var(--border);
}

a.service-line:hover {
  background: var(--bg-soft);
  padding-left: 1.1rem;
  border-color: var(--coral-glow);
}

.service-line-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral-glow);
}

.service-line-icon svg {
  width: 24px;
  height: 24px;
}

.service-line-body {
  flex-grow: 1;
  min-width: 0;
}

.service-line-title {
  display: block;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.15em;
}

.service-line-desc {
  display: block;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.service-line-arrow {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--coral-glow);
  transition: transform var(--transition);
}

a.service-line:hover .service-line-arrow {
  transform: translateX(5px);
}

/* Ürün sayfası (folyo baskı vb.) */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 2.2rem;
  align-items: start;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.product-content p {
  color: var(--text-main);
  margin-bottom: 1em;
}

.product-list {
  display: grid;
  gap: 0.6rem;
  margin: 1.4rem 0;
}

.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--text-main);
  font-size: 0.95rem;
}

.product-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--coral-glow);
}

.product-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

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

/* 20) İletişim kartı — telefon önde ve büyük, WhatsApp butonu */
.contact-phone a {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--jet-black);
}

.contact-phone svg {
  width: 26px;
  height: 26px;
  margin-top: 4px;
}

.contact-phone a:hover {
  color: var(--coral-glow);
}

.contact-whatsapp {
  margin-top: 1.4rem;
}
