/* Kanarya Matbaası - Kurumsal Tasarım */
/* Domain: kanaryamatbaasi.com */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary: #0f3d2b;
  --color-primary-light: #1a5c3e;
  --color-primary-dark: #0a291c;
  --color-accent: #b8860b;
  --color-accent-hover: #c99510;
  --color-accent-soft: rgba(184, 134, 11, 0.12);
  --color-dark: #1a1a1a;
  --color-text: #2c3e2e;
  --color-text-muted: #5a6b5c;
  --color-bg: #f5f5f0;
  --color-bg-warm: #faf9f6;
  --color-white: #fff;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 2px 8px rgba(15, 61, 43, 0.06);
  --shadow: 0 4px 24px rgba(15, 61, 43, 0.1);
  --shadow-lg: 0 12px 40px rgba(15, 61, 43, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--color-primary-light);
}

/* Header - Kurumsal */
.site-header {
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(15, 61, 43, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  min-width: 0;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--color-accent);
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand .logo img {
  height: 36px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  padding: 0.5rem 0;
}

.nav-menu a:hover {
  color: var(--color-primary);
}

/* Hizmetler Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  font-size: 0.7em;
  opacity: 0.8;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  list-style: none;
  padding: 0.5rem 0;
  margin-top: 0.25rem;
  border: 1px solid rgba(15, 61, 43, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 200;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  background: var(--color-accent-soft);
  color: var(--color-primary);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--color-white);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(15, 61, 43, 0.06);
}

.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

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

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

.breadcrumb span {
  color: var(--color-text-muted);
  margin: 0 0.5rem;
  opacity: 0.7;
}

.breadcrumb .current {
  color: var(--color-text);
  font-weight: 600;
}

/* Hero - Etkileyici */
.hero {
  position: relative;
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-with-image {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
}

.hero-with-image .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  z-index: 0;
}


.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  transform: translateY(-60%);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero .tagline {
  font-size: 1.15rem;
  opacity: 0.92;
  font-weight: 500;
}

.quick-access {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

/* Main Content */
.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  min-width: 0;
}

.content-section {
  margin-bottom: 2.5rem;
}

.content-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--color-text);
  overflow-wrap: break-word;
}

.content-section ul {
  margin: 1rem 0 1rem 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

/* Feature/Image Card - Anasayfa */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.feature-card-img {
  height: 200px;
  overflow: hidden;
}

.feature-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-body {
  padding: 1.5rem;
}

.feature-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.feature-card-body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem 0;
}

.feature-card-body .btn {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

/* Local Proof / Map Section */
.local-proof {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.local-proof h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 320px;
  margin-top: 1rem;
  max-width: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  max-width: 100%;
}

/* İletişim sayfası */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}

.contact-side {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 6rem;
  border: 1px solid rgba(15, 61, 43, 0.06);
}

.contact-side h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(15, 61, 43, 0.08);
  transition: color var(--transition);
}

.contact-card:last-of-type {
  border-bottom: none;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.35rem;
}

.contact-card-icon.whatsapp { background: rgba(37, 211, 102, 0.12); }
.contact-card-icon.phone { background: var(--color-accent-soft); }
.contact-card-icon.location { background: rgba(26, 92, 62, 0.1); }

.contact-card-content h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.contact-card-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.contact-card-link.whatsapp {
  background: #25D366;
  color: white !important;
}

.contact-card-link.whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-1px);
}

.contact-card-link.phone {
  background: var(--color-primary);
  color: white !important;
}

.contact-card-link.phone:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
}

.map-side {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 61, 43, 0.06);
}

.map-side .map-container {
  height: 400px;
  margin: 0;
}

.map-side-header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid rgba(15, 61, 43, 0.08);
}

.map-side-header h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-primary);
  margin: 0 0 0.25rem 0;
}

.map-side-header p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin: 0;
}

.map-side-footer {
  padding: 1rem 1.75rem;
  background: var(--color-bg-warm);
}

.map-side-footer a {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-side { position: static; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* FAQ Section */
.faq-section {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  border: 1px solid rgba(15, 61, 43, 0.06);
}

.faq-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--color-accent);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  padding: 1.25rem 1.25rem 1.25rem 1.25rem;
  border-left: 3px solid rgba(15, 61, 43, 0.12);
  margin-bottom: 0.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: border-color var(--transition), background var(--transition);
}

.faq-item:hover {
  border-left-color: var(--color-accent);
  background: var(--color-accent-soft);
}

.faq-item h3 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.faq-q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
}

.faq-item p {
  color: var(--color-text-muted);
  margin: 0.5rem 0 0 2.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .faq-item p {
    margin-left: 0;
  }
}

.faq-cta {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 61, 43, 0.08);
  text-align: center;
}

.faq-cta .btn {
  display: inline-flex;
}

/* Footer */
.site-footer {
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 3rem 1.5rem;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .site-footer {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: max(3rem, env(safe-area-inset-bottom));
  }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  min-width: 0;
}

.footer-brand .logo {
  color: var(--color-white);
  font-size: 1.4rem;
}

.footer-brand .logo span {
  color: var(--color-accent);
}

.footer-nap {
  font-size: 0.95rem;
  line-height: 1.9;
}

.footer-nap address {
  font-style: normal;
}

.footer-nap a {
  color: var(--color-accent);
}

.footer-nap a:hover {
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  opacity: 0.85;
  text-align: center;
}

/* Mobile Floating Bar */
.mobile-floating-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.12);
  padding: 0.75rem 1rem;
  z-index: 999;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
}

.mobile-floating-bar.show { display: flex; }

.mobile-floating-bar .btn {
  flex: 1;
  max-width: 160px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
}

.btn-whatsapp { background: #25D366; color: white; }
.btn-whatsapp:hover { background: #20bd5a; }

.btn-call { background: var(--color-primary); color: white; }
.btn-call:hover { background: var(--color-primary-light); }

/* Contact Form */
.contact-form {
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 600px;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--color-dark); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(15, 61, 43, 0.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Page Title */
.page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Internal Link Highlight */
.internal-link-highlight {
  background: var(--color-accent-soft);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  border-left: 4px solid var(--color-accent);
}

.internal-link-highlight a { font-weight: 600; }

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

/* Mobile Menu */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-primary);
  padding: 0.5rem;
  margin: -0.5rem 0;
  transition: color 0.2s ease, transform 0.2s ease;
}
.nav-toggle.open {
  color: var(--color-accent);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; margin-left: auto; }
  .header-inner {
    padding: 0.75rem 1rem;
  }
  .header-inner nav {
    flex: 0 0 0;
    width: 0;
    min-width: 0;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0s 0.35s;
  }
  .header-inner nav:has(.nav-menu.open) {
    flex: 1 1 100%;
    width: 100%;
    max-height: 85vh;
    overflow: visible;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0s;
  }
  .logo img {
    height: 36px;
  }
  .nav-menu {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0.75rem 0 1.25rem;
    margin: 0.5rem 0 0;
    background: var(--color-bg-warm);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    box-shadow: 0 12px 32px rgba(15, 61, 43, 0.12);
    border-top: 1px solid rgba(15, 61, 43, 0.06);
    list-style: none;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.25s ease 0.1s, max-height 0s 0.4s, margin 0.35s ease, padding 0.35s ease;
  }
  .nav-menu.open {
    max-height: 82vh;
    opacity: 1;
    transition: opacity 0.25s ease 0.15s, max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), margin 0.35s ease, padding 0.35s ease;
  }
  .nav-menu.open li {
    opacity: 0;
    transform: translateY(-6px);
    animation: navItemIn 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }
  .nav-menu.open li:nth-child(1) { animation-delay: 0.05s; }
  .nav-menu.open li:nth-child(2) { animation-delay: 0.1s; }
  .nav-menu.open li:nth-child(3) { animation-delay: 0.15s; }
  .nav-menu.open li:nth-child(4) { animation-delay: 0.2s; }
  .nav-menu.open li:nth-child(5) { animation-delay: 0.25s; }
  .nav-menu.open li:nth-child(6) { animation-delay: 0.3s; }
  .nav-menu.open li:nth-child(7) { animation-delay: 0.35s; }
  .nav-menu a {
    display: block;
    padding: 0.85rem 1.25rem;
    font-weight: 500;
    font-size: 1rem;
    color: var(--color-text);
    transition: background 0.2s ease, color 0.2s ease;
  }
  .nav-menu > li:not(.nav-dropdown) > a {
    border-left: 3px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .nav-menu > li:not(.nav-dropdown) > a:hover {
    background: rgba(15, 61, 43, 0.05);
    border-left-color: var(--color-accent);
    color: var(--color-primary);
  }
  .nav-menu > li.nav-dropdown > a:hover {
    background: rgba(15, 61, 43, 0.05);
    color: var(--color-primary);
  }
  .nav-dropdown.open > a::after {
    content: ' ▴';
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    margin: 0;
    padding: 0 0 0.5rem 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(15, 61, 43, 0.04);
    border-radius: var(--radius);
    margin-left: 1.25rem;
    margin-top: 0.25rem;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    max-height: 320px;
  }
  .nav-dropdown-menu a {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    white-space: nowrap;
  }
  .nav-dropdown-menu a:hover {
    color: var(--color-primary);
    background: var(--color-accent-soft);
  }
  .mobile-floating-bar {
    display: flex;
    padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
  }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand {
    display: flex;
    justify-content: center;
  }
  .footer-brand .logo {
    display: flex;
    justify-content: center;
  }
  .main-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-with-image {
    min-height: 60vh;
    padding: 2rem 1rem;
  }
  .hero-inner {
    transform: none;
  }
  .breadcrumb {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .local-proof,
  .faq-section,
  .contact-form {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .article-body .article-content {
    padding: 1.25rem 1rem;
  }
  .product-detail {
    padding: 1.25rem 1rem;
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 769px) {
  .mobile-floating-bar { display: none !important; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 998;
  display: none;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

@media (min-width: 769px) { .whatsapp-float { display: block; } }
@media (max-width: 768px) { .whatsapp-float { display: none; } }

/* Service cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(15, 61, 43, 0.06);
}

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

.service-card-img {
  height: 180px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-body {
  padding: 1.75rem;
}

.service-card h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card h2 a { color: var(--color-primary); }

.service-card p {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Article Detail Page */
.article-page .main-content {
  max-width: 1100px;
  padding: 2rem 1.5rem 3rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2.5rem;
  align-items: start;
}

.article-body {
  min-width: 0;
}

.article-body .service-hero {
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

.article-body .service-hero-overlay .page-title {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.3;
}

.article-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(15, 61, 43, 0.1);
}

.article-meta-bar span {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.article-meta-bar .meta-dot {
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.article-back-link:hover {
  color: var(--color-primary);
}

/* Article Sidebar */
.article-sidebar {
  position: sticky;
  top: 6rem;
}

.article-sidebar-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(15, 61, 43, 0.06);
}

.article-sidebar-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-sidebar-links li {
  margin-bottom: 0.5rem;
}

.article-sidebar-links a {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--color-text);
}

.article-sidebar-links a:hover {
  color: var(--color-primary);
}

.article-cta-box {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

.article-cta-box p {
  margin: 0 0 1rem 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.article-cta-box .btn {
  width: 100%;
  justify-content: center;
  background: var(--color-accent);
  color: var(--color-dark);
}

.article-cta-box .btn:hover {
  background: var(--color-accent-hover);
}

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

  .article-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
}

/* Article Content */
.article-content { max-width: 100%; }

.article-body .article-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 61, 43, 0.06);
}

.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-primary);
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(15, 61, 43, 0.08);
}

.article-content h2:first-of-type { margin-top: 0; }

.article-content h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.article-content p {
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.article-content ul, .article-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-meta {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.article-footer-cta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(15, 61, 43, 0.1);
}

.article-list { list-style: none; }

.article-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(15, 61, 43, 0.1);
}

.article-list li:last-child { border-bottom: none; }

.article-list a { font-weight: 600; }

.article-list .excerpt {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
}

/* Article enhancements */
.article-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
}

.article-img img {
  width: 100%;
  height: auto;
}

.article-tip {
  background: var(--color-accent-soft);
  border-left: 4px solid var(--color-accent);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.article-tip strong {
  display: block;
  margin-bottom: 0.5rem;
}

.article-steps {
  counter-reset: step;
  list-style: none;
  margin: 1.5rem 0;
  padding-left: 0;
}

.article-steps li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.25rem;
}

.article-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.article-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.article-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.article-card-link:hover {
  color: inherit;
}

.article-card-link .article-card-body h3 {
  color: var(--color-primary);
}

.article-card-link:hover .article-card-body h3 {
  color: var(--color-primary-light);
}

.article-card-img {
  height: 180px;
  overflow: hidden;
}

.article-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-body {
  padding: 1.5rem;
}

.article-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.article-card-body h3 a {
  color: var(--color-primary);
}

.article-card-body .excerpt {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* About / Hakkımızda Image */
.about-hero {
  position: relative;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.about-hero-overlay h1 {
  color: white;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Service Page Hero */
.service-hero {
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}

.service-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 61, 43, 0.85) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 2rem;
}

.service-hero-overlay .page-title {
  color: white;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.service-hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin: 0.5rem 0 0 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Promosyon ürünleri grid - mini foto */
.promo-products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.promo-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 61, 43, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

.promo-product-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.promo-product-img {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg);
}

.promo-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-product-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
  padding: 0.75rem 0.5rem 0.25rem;
}

.promo-product-desc {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  padding: 0 0.5rem 0.75rem;
  line-height: 1.3;
}

@media (min-width: 600px) {
  .promo-products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 900px) {
  .promo-products-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

/* ===== Davetiye Katalogları ===== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.catalog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 61, 43, 0.06);
}

.catalog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.catalog-card-link:hover {
  color: inherit;
}

.catalog-card:hover {
  box-shadow: var(--shadow-lg);
}

.catalog-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.catalog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-card-body {
  padding: 1.5rem;
}

.catalog-card-body h2 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.catalog-card-body p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.catalog-card-count {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.catalog-card-body .btn {
  font-size: 0.9rem;
}

.content-cta {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 61, 43, 0.08);
}

/* Katalog sayfa başlık */
.catalog-header {
  margin-bottom: 2rem;
}

.catalog-header .page-title {
  margin-bottom: 0.5rem;
}

.catalog-desc {
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.catalog-back {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.catalog-back:hover {
  color: var(--color-primary);
}

/* Ürün grid (katalog içi) */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.25rem;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 61, 43, 0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card-link:hover {
  color: inherit;
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card-body {
  padding: 1rem;
}

.product-card-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.product-price {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-accent);
}

.product-price small {
  font-weight: 400;
  color: var(--color-text-muted);
}

.product-variants {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Katalog sayfalandırma */
.catalog-pagination {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 61, 43, 0.08);
  text-align: center;
}

.catalog-pagination ul {
  list-style: none;
  margin: 0 0 0.75rem 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem;
}

.catalog-pagination li a {
  display: inline-block;
  min-width: 2.25rem;
  padding: 0.5rem 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
  background: var(--color-white);
  border: 1px solid rgba(15, 61, 43, 0.12);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.catalog-pagination li a:hover {
  background: rgba(15, 61, 43, 0.06);
  border-color: var(--color-primary);
}

.catalog-pagination li a.active {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.catalog-pagination-info {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}

/* Ürün detay sayfası */
.product-detail-page {
  padding-bottom: 3rem;
}

.product-back {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.product-back:hover {
  color: var(--color-primary);
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 61, 43, 0.06);
}

@media (min-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr 1fr;
  }
}

.product-main-img {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
}

.product-main-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* Ürün galerisi (çoklu görsel) */
.product-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg);
  margin-bottom: 1rem;
}

.product-gallery-main img {
  width: 100%;
  height: auto;
  display: block;
}

.product-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.product-gallery-thumb {
  width: 60px;
  height: 60px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--color-bg);
  transition: border-color var(--transition);
}

.product-gallery-thumb:hover,
.product-gallery-thumb.active {
  border-color: var(--color-accent);
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-info h1 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.product-code {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.product-price-block {
  margin-bottom: 1rem;
}

.product-detail-info .product-price {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.product-unit {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.product-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.product-specs h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.product-specs ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.product-specs li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.product-detail-text {
  margin-bottom: 1rem;
}

.product-detail-text p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 0.5rem 0;
}

.product-source-link {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border, #eee);
}

.product-source-link a {
  font-size: 0.9rem;
  color: var(--color-primary);
}

.product-source-link a:hover {
  text-decoration: underline;
}

.product-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}
