@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #050505;
  --white: #ffffff;
  --accent: #000000;
  --gray: #666666;
  --light-bg: #f4f4f4;
  --transition: 0.4s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--light-bg);
  color: var(--black);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 90px;
  background: transparent;
  transition: background var(--transition), padding var(--transition);
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  height: 72px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
}

/* ── BURGER ── */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 200;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
  width: 100%;
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background: var(--white);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background: var(--white);
}

nav.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav.desktop-nav a {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

nav.desktop-nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.3s;
}

nav.desktop-nav a:hover {
  color: var(--black);
}

nav.desktop-nav a:hover::after {
  width: 100%;
}

.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  color: var(--black);
  text-decoration: none;
}

/* Simulate the logo graphic layout */
.logo-img {
  height: 30px;
  /* Adjust if actually using an image */
}

.logo-text {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.logo-text strong {
  font-weight: 700;
}

.logo-text .sub-logo {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.randevu-btn {
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  padding: 10px 24px;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.randevu-btn:hover {
  background: transparent;
  color: var(--black);
}

.randevu-btn svg {
  transition: transform 0.3s;
}

.randevu-btn:hover svg {
  transform: translateX(4px);
}

/* ── MENU BACKDROP ── */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

/* ── MOBILE OVERLAY MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 450px;
  max-width: 100%;
  z-index: 150;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 48px 48px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.top-controls {
  position: absolute;
  top: 40px;
  left: 48px;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

.mobile-menu-close svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 60px;
}

.mobile-menu nav a {
  font-family: "Poppins", sans-serif;
  font-size: clamp(24px, 5vw, 36px);
  font-weight: 300;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  padding-bottom: 8px;
  display: inline-block;
  align-self: flex-start;
  position: relative;
  transition: color 0.3s;
}

.mobile-menu nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.mobile-menu nav a:hover::after {
  transform: scaleX(1);
}

/* ── SLIDER ── */
.slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: var(--light-bg);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide.prev {
  opacity: 0;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  transform: scale(1.03);
  transition: transform 6s ease;
}

/* Using object-fit for background image to behave better on mobile */
.slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-content {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10%;
  max-width: 500px;
  z-index: 5;
}

.slide-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  max-width: 420px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.4s, transform 0.6s 0.4s;
}

.slide.active .slide-sub {
  opacity: 1;
  transform: translateY(0);
}

.slide-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--black);
  border: 1px solid var(--black);
  padding: 12px 32px;
  border-radius: 30px;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s 0.5s, transform 0.6s 0.5s, background 0.3s, color 0.3s;
}

.slide.active .slide-btn {
  opacity: 1;
  transform: translateY(0);
}

.slide-btn:hover {
  background: var(--black);
  color: var(--white);
}

.slide-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s;
}

.slide-btn:hover svg {
  transform: translateX(4px);
}

/* ── SLIDER CONTROLS ── */
.slider-arrows {
  display: none;
  /* hidden for clean look as in references, but can be enabled if requested */
}

/* Progress bar */
.slide-progress {
  position: absolute;
  bottom: 100px;
  /* above brand bar */
  left: 0;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  z-index: 10;
}

.slide-progress-bar {
  height: 100%;
  background: var(--black);
  width: 0%;
  transition: width linear;
}

/* ── CAR BRAND BAR ── */
.brands-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 96px;
  z-index: 10;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 128px;
  padding: 0 48px;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.3s;
  cursor: default;
}

.brand-logo svg,
.brand-logo img {
  height: 90px;
  width: auto;
  fill: var(--white);
}

.brand-logo:hover {
  opacity: 1;
}

/* ── SERVICES MODULE ── */
.services-module {
  background: var(--white);
  padding: 100px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

.services-module::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--module-bg, url("/img/engine.jpg")) no-repeat left center;
  background-size: auto 100%;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
  transition: background 0.5s ease;
}

.services-title {
  font-family: "Poppins", sans-serif;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 60px;
}

.services-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: block;
}

.services-module .services-carousel,
.blog-module .services-carousel {
  max-width: 100%;
}

.svc-track-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.svc-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Hide all slides by default so left side stays empty */
.svc-slide {
  flex: 0 0 60%;
  max-width: 600px;
  padding: 0 20px;
  opacity: 0;
  visibility: hidden;
  transform: scale(1);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Active slide visible, center */
.svc-slide.active {
  opacity: 1;
  visibility: visible;
}

/* Next siblings visible fully */
.svc-slide.active ~ .svc-slide {
  opacity: 1;
  visibility: visible;
}

.svc-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  background: transparent;
  margin-bottom: 30px;
}

.svc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-info {
  /* blog uses these styles but inside the slider it's overridden by text-slider context if moved */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease 0.2s, transform 0.5s ease 0.2s;
  pointer-events: none;
}

.svc-slide.active .svc-info {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.svc-text-slider {
  position: relative;
  width: 100%;
  height: 180px;
  margin-top: 10px;
}

.svc-text-slider .svc-info {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 600px;
  padding: 0 40px;
  text-align: center;
  transition: none;
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
}

.svc-text-slider .svc-info.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.5s ease 0.15s, transform 0.5s ease 0.15s;
}

.svc-text-slider .svc-info.leave-up {
  transform: translateY(-30px);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.svc-info h3 {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.svc-info h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--black);
}

.svc-info p {
  font-size: 13px;
  color: var(--gray);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.hizmet-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap 0.3s;
}

.hizmet-link:hover {
  gap: 16px;
}

.hizmet-link svg {
  width: 16px;
  height: 16px;
}

.svc-arrow {
  position: absolute;
  bottom: 80px;
  /* roughly centered vertically with the text area */
  transform: translateY(50%);
  background: transparent;
  border: none;
  color: #999;
  width: auto;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  transition: all 0.3s;
  z-index: 10;
  padding: 10px;
}

.services-module .svc-arrow.prev,
.blog-module .svc-arrow.prev {
  left: 5%;
}
@media (min-width: 800px) {
  .services-module .svc-arrow.prev,
  .blog-module .svc-arrow.prev {
    left: calc(50% - 350px);
  }
}

.services-module .svc-arrow.next,
.blog-module .svc-arrow.next {
  right: 5%;
}
@media (min-width: 800px) {
  .services-module .svc-arrow.next,
  .blog-module .svc-arrow.next {
    right: calc(50% - 350px);
  }
}

.blog-module .svc-arrow {
  bottom: 130px;
  /* Offset for the 'Tüm yazıları oku' button */
}

.svc-arrow:hover {
  background: transparent;
  color: var(--black);
  transform: translateY(50%) scale(1.1);
}

.svc-arrow svg {
  width: 48px;
  height: 48px;
  stroke-width: 1;
}

/* ── BLOG MODULE ── */
.blog-module {
  background: var(--white);
  padding: 100px 0 60px;
  position: relative;
  text-align: center;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 16px;
}

.blog-meta svg {
  width: 14px;
  height: 14px;
  margin-right: -2px;
}

.meta-sep {
  width: 4px;
  height: 4px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 4px;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: #EBEBEB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

.img-placeholder svg {
  width: 48px;
  height: 48px;
}

.all-posts-container {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 48px;
  display: flex;
  justify-content: flex-end;
}

.all-posts-btn {
  display: inline-flex;
  align-items: center;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 2px;
  transition: opacity 0.3s;
}

.all-posts-btn:hover {
  opacity: 0.8;
}

/* ── GALLERY MODULE ── */
.gallery-module {
  background: var(--white);
  padding: 100px 0 0;
  text-align: center;
}

.gallery-carousel-wrap {
  position: relative;
  width: 100%;
  margin-top: 40px;
}

.gallery-item-slide {
  flex: 0 0 25%;
  aspect-ratio: 16/9;
  height: auto;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: background 0.5s ease;
  pointer-events: none;
}

.gallery-item-slide:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.gallery-item-slide:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0);
}

/* ── FOOTER ── */
.main-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 48px 0;
  font-size: 13px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
}

.invert-logo {
  filter: invert(1) brightness(200%);
  height: 48px;
  margin-bottom: 24px;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--white);
  color: var(--black);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-col h3 {
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.links-col ul,
.contact-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.links-col a,
.contact-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.links-col a:hover,
.contact-col a:hover {
  color: var(--white);
}

.contact-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
}

.contact-col svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ── ABOUT PAGE ── */
.about-hero {
  display: flex;
  min-height: 70vh;
  margin-top: 90px;
  /* offset for fixed header */
  background: var(--black);
}

.about-hero-text {
  flex: 1;
  padding: 80px 10%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.about-subtitle {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}

.about-hero-text p {
  color: #b0b0b0;
  font-size: 14px;
  line-height: 1.8;
  max-width: 500px;
}

.about-hero-image {
  flex: 1;
  position: relative;
}

.about-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about-details {
  background: var(--white);
  padding: 80px 48px 120px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.about-details h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
}

.about-details p {
  color: #666;
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.about-details ul {
  list-style: none;
  padding-left: 20px;
}

.about-details li {
  position: relative;
  font-size: 15px;
  color: #999;
  margin-bottom: 12px;
  line-height: 1.5;
}

.about-details li::before {
  content: "•";
  color: #ccc;
  position: absolute;
  left: -20px;
  font-size: 18px;
  line-height: 1;
  top: -2px;
}

.scroll-down-icon {
  position: absolute;
  bottom: 40px;
  right: 48px;
  color: var(--black);
}

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

/* ── BLOG INSIDE PAGE ── */
.blog-page-container {
  display: flex;
  min-height: 80vh;
  background: var(--white);
}

.blog-main {
  flex: 3;
  padding: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: var(--black);
  color: var(--white);
  transition: transform 0.3s;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.bc-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #EBEBEB;
  position: relative;
  overflow: hidden;
}

.hizmet-card .bc-image {
  aspect-ratio: 2/1;
}

.bc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .bc-image img {
  transform: scale(1.05);
}

.img-placeholder .img-badge {
  background: var(--black);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  margin-top: -16px;
  margin-left: -24px;
  letter-spacing: 0.1em;
}

.bc-content {
  padding: 30px 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.bc-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.bc-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  color: #999;
  margin-bottom: 16px;
}

.bc-meta svg {
  width: 12px;
  height: 12px;
  margin-right: -4px;
}

.bc-excerpt {
  font-size: 10px;
  color: #777;
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 90%;
  margin: 0 auto 24px;
}

.bc-read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  transition: gap 0.3s;
}

.blog-card:hover .bc-read-more {
  gap: 12px;
}

.bc-read-more svg {
  width: 14px;
  height: 14px;
}

.center-icon {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  color: var(--black);
}

.center-icon svg {
  width: 32px;
  height: 32px;
}

.blog-sidebar {
  flex: 1;
  background: #fdfdfd;
  color: var(--black);
  padding: 60px 40px;
  border-left: 1px solid #eaeaea;
}

.sidebar-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.1em;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 24px;
}

.category-list a {
  color: var(--black);
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 4px;
  background: #fdfdfd;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.category-list a:hover {
  background: #f4f4f4;
  color: var(--black);
}

/* ── CONTACT PAGE ── */
.contact-hero {
  display: flex;
  min-height: 90vh;
  /* slightly taller inside page */
  margin-top: 90px;
  background: var(--black);
}

.contact-left {
  flex: 1;
  padding: 80px 10%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
}

.contact-subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 40px;
}

.contact-info {
  margin-bottom: 48px;
}

.info-block {
  margin-bottom: 24px;
}

.info-block h4 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ccc;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.info-block p {
  font-size: 15px;
  color: #888;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form-section {
  margin-bottom: 40px;
}

.form-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #ccc;
  margin-bottom: 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-group {
  flex: 1;
  background: #252525;
  display: flex;
  align-items: center;
  position: relative;
}

.form-group .prefix {
  font-size: 12px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.05em;
  padding: 16px 12px 16px 16px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  padding: 16px 16px 16px 0;
  outline: none;
}

/* Target placeholder to match the aesthetic */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.textarea-group {
  align-items: flex-start;
  min-height: 140px;
}

.textarea-group .prefix {
  padding-top: 16px;
}

.textarea-group textarea {
  resize: none;
  /* Repeating lines similar to notebook */
  background: repeating-linear-gradient(transparent, transparent 31px, rgba(255, 255, 255, 0.1) 31px, rgba(255, 255, 255, 0.1) 32px);
  line-height: 32px;
  padding-top: 5px;
  border-bottom: none;
}

.submit-btn {
  align-self: flex-start;
  background: transparent;
  color: #ccc;
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 32px;
  cursor: pointer;
  margin-top: 8px;
  margin-left: 20%;
  transition: all 0.3s;
}

.submit-btn:hover {
  background: var(--white);
  color: var(--black);
}

.contact-footer-text {
  font-size: 10px;
  color: #666;
  font-style: italic;
  line-height: 1.4;
}

.contact-right {
  flex: 1;
  position: relative;
  background: #111;
}

.contact-right iframe {
  /* Invert and grayscale Google Maps to create a natural Dark Mode look */
  filter: grayscale(100%) invert(90%) contrast(1.2);
  width: 100%;
  height: 100%;
}

.map-overlay-box {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  border-radius: 8px;
}

/* ── LEGAL PAGES ── */
.legal-page {
  padding: 140px 24px 80px;
  /* Offset for header + margin */
  background: var(--light-bg);
  min-height: 80vh;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px 80px;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.legal-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--black);
  padding-bottom: 24px;
  color: var(--black);
}

.legal-content h2 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--black);
}

.legal-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
}

.legal-content strong {
  color: var(--black);
}

/* ── POST PAGE ── */
.post-main {
  flex: 3;
  background: var(--white);
  padding: 0;
}

.post-hero {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background: #000;
}

.post-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

.post-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 60%);
}

.post-breadcrumb {
  position: absolute;
  top: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.post-breadcrumb a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s;
}

.post-breadcrumb a:hover {
  color: #aaa;
}

.post-breadcrumb svg {
  width: 14px;
  height: 14px;
}

.post-breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 300px;
}

.post-content-wrapper {
  padding: 48px 48px 80px;
  max-width: 900px;
}

.post-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 24px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

.post-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--black);
}

.post-meta .meta-item svg {
  width: 14px;
  height: 14px;
}

.post-meta .meta-item strong {
  font-weight: 700;
}

.post-body p {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  margin-bottom: 24px;
}

.post-body strong {
  color: var(--black);
  font-weight: 600;
}

.post-body u {
  text-decoration-color: #ccc;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

/* Elegant Link Style */
.post-body a {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s, color 0.3s;
  padding-bottom: 2px;
}

.post-body a:hover {
  box-shadow: inset 0 -12px 0 0 rgba(0, 0, 0, 0.1);
}

/* CTA Banner */
.post-cta-banner {
  display: flex;
  background: var(--light-bg);
  border-radius: 4px;
  overflow: hidden;
  margin: 48px 0;
}

.cta-image {
  flex: 0 0 250px;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-content {
  flex: 1;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--black);
}

.cta-content p {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-name {
  font-size: 12px;
  color: #888;
}

.cta-name strong {
  display: block;
  font-size: 15px;
  color: var(--black);
  font-weight: 600;
  margin-top: 4px;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--white) !important;
  /* override post-body a */
  background: var(--black);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: none !important;
  transition: background 0.3s;
}

.cta-phone:hover {
  background: #333;
}

.cta-phone svg {
  width: 18px;
  height: 18px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  header {
    padding: 0 32px;
  }
  .slide-content {
    left: 8%;
    max-width: 480px;
  }
  .brands-bar {
    gap: 32px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .about-hero {
    flex-direction: column;
  }
  .about-hero-image {
    min-height: 40vh;
    position: relative;
  }
  .about-hero-image img {
    position: static;
  }
  .blog-page-container {
    flex-direction: column-reverse;
  }
  .blog-main {
    padding: 24px;
  }
  .blog-sidebar {
    flex: 1;
    background: #fdfdfd;
    color: var(--black);
    padding: 60px 40px;
    border-left: 1px solid #eaeaea;
  }
  .contact-hero {
    flex-direction: column;
  }
  .contact-right {
    min-height: 400px;
  }
  .legal-content {
    padding: 40px;
  }
  .blog-page-container {
    flex-direction: column-reverse;
  }
  .blog-main {
    padding: 24px;
  }
  .blog-sidebar {
    flex: 1;
    background: #fdfdfd;
    color: var(--black);
    padding: 60px 40px;
    border-left: 1px solid #eaeaea;
  }
  .post-cta-banner {
    flex-direction: column;
  }
  .cta-image {
    height: 180px;
    flex: none;
  }
  .cta-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  header {
    padding: 0 24px;
    height: 70px;
  }
  nav.desktop-nav {
    display: none;
  }
  .header-left {
    gap: 0;
  }
  .logo-text {
    font-size: 24px;
  }
  .logo-text .sub-logo {
    font-size: 6px;
  }
  .slide-bg img {
    object-position: 70% center;
  }
  .slide-content {
    left: 24px;
    right: 24px;
    top: auto;
    bottom: 120px;
    transform: none;
    max-width: none;
  }
  .slide-title {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 16px;
  }
  .slide-sub {
    font-size: 14px;
    margin-bottom: 24px;
  }
  .brands-bar {
    gap: 24px;
    padding: 0 24px;
    height: 64px;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .brands-bar::-webkit-scrollbar {
    display: none;
  }
  .mobile-menu {
    width: 100%;
    padding: 64px 24px 40px;
  }
  .top-controls {
    left: 24px;
    top: 24px;
  }
  .gallery-carousel-wrap {
    position: relative;
    width: 100%;
    margin-top: 40px;
  }
  .gallery-item-slide {
    flex: 0 0 50%;
    aspect-ratio: 16/9;
    height: auto;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .main-footer {
    padding: 60px 24px 0;
  }
  .about-hero-text {
    padding: 64px 24px;
  }
  .about-details {
    padding: 64px 24px;
  }
  .scroll-down-icon {
    right: 24px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .contact-left {
    padding: 48px 24px;
  }
  .form-row {
    flex-direction: column;
  }
  .submit-btn {
    margin-left: 0;
    align-self: center;
  }
  .legal-content {
    padding: 32px 24px;
  }
  .legal-content h1 {
    font-size: 24px;
  }
  .post-hero {
    height: 250px;
  }
  .post-breadcrumb {
    top: 24px;
    left: 24px;
    font-size: 11px;
  }
  .post-breadcrumb span {
    max-width: 120px;
  }
  .post-content-wrapper {
    padding: 32px 24px 40px;
  }
  .post-title {
    font-size: 24px;
  }
  .cta-content {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .randevu-btn span {
    display: none;
    /* Only show arrow or smaller text */
  }
  .randevu-btn {
    padding: 8px 16px;
    font-size: 10px;
  }
  .slide-content {
    bottom: 100px;
  }
  .post-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .cta-contact {
    width: 100%;
    padding: 16px 12px;
    box-sizing: border-box;
  }
  .cta-phone {
    padding: 10px 16px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .cta-content h4 {
    font-size: 18px;
  }
}
.service-row-item:hover {
  background: var(--black) !important;
  color: var(--white) !important;
  border-color: var(--black) !important;
}
.service-row-item:hover h3 {
  color: var(--white) !important;
}
.service-row-item:hover .bc-read-more {
  color: var(--white) !important;
  gap: 12px;
}

/* APPOINTMENT POPUP */
.appointment-popup {
  position: absolute;
  top: 60px;
  right: 0;
  width: 350px;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
  text-align: left;
  border: 1px solid #eaeaea;
}

.appointment-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ap-header {
  margin-bottom: 24px;
}

.ap-region {
  color: #e85d22;
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.ap-region-line {
  display: inline-block;
  width: 3px;
  height: 14px;
  background: #e85d22;
  border-radius: 2px;
}

.ap-dealer {
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--black);
  margin: 0;
  letter-spacing: -0.02em;
}

.ap-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.ap-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ap-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.ap-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

.ap-text strong {
  color: var(--black);
  font-weight: 600;
}

.ap-text a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}

.ap-text a:hover {
  color: #e85d22;
}

.ap-contact-card {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fafafa;
}

.ap-contact-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eaeaea;
  overflow: hidden;
}

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

.ap-contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-contact-info {
  display: flex;
  flex-direction: column;
}

.ap-ctitle {
  font-family: "Poppins", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.ap-cname {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2px;
}

.ap-cphone {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  color: #e85d22;
  text-decoration: none;
  font-weight: 500;
}

.header-right {
  align-items: center;
  gap: 16px;
}

.lang-selector {
  border: 1px solid var(--black);
  border-radius: 30px;
  height: 20px;
  overflow: hidden;
  position: relative;
  width: 28px;
  box-sizing: border-box;
}
.lang-selector .lang-slider {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.lang-selector:hover .lang-slider {
  transform: translateY(-20px);
}
.lang-selector .lang-item {
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  color: var(--black);
  flex-shrink: 0;
}
.lang-selector .lang-item:hover {
  font-weight: 700;
}

.floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
}
.floating-wa svg {
  width: 32px;
  height: 32px;
}
.floating-wa:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 16px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* Hizmetler Carousel (1-to-1 Match B&W Sharp) */
.hz-carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid #eaeaea;
  background: #fff;
  margin-bottom: 60px;
  display: block;
}

.hz-carousel-wrapper:hover .hz-nav-btn {
  opacity: 1;
}

.hz-track {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  margin: 0;
  padding: 0;
  align-items: stretch;
}

.hz-slide {
  flex: 0 0 100%;
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  background: #fff;
  margin: 0;
  padding: 0;
}

.hz-image {
  flex: 0 0 auto;
  width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.hz-image img {
  width: 100%;
  height: 100%;
  max-height: 450px;
  object-fit: cover;
  display: block;
}

.hz-content {
  flex: 0 0 auto;
  width: 100%;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  align-items: flex-start;
  text-align: left;
}

.hz-content h3 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  color: #111;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}

.hz-content .hz-sub {
  font-size: 1.05rem;
  color: #888;
  margin-bottom: 20px;
  display: block;
}

.hz-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 24px;
  max-width: 100%;
}

.hz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #111;
  color: #fff !important;
  padding: 12px 30px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
  border-radius: 0;
}

.hz-btn:hover {
  background: #333;
}

.hz-btn svg {
  transition: transform 0.3s ease;
}

.hz-btn:hover svg {
  transform: translateX(4px);
}

.hz-nav-btn {
  position: absolute;
  top: 180px; /* Vertically centered over a typical image crop */
  background: rgba(17, 17, 17, 0.9);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 0;
}

.hz-nav-btn:hover {
  background: #000;
}

#hzPrev {
  left: 0;
}

#hzNext {
  right: 0;
}

@media (max-width: 991px) {
  .hz-content {
    padding: 30px;
  }
  .hz-nav-btn {
    opacity: 1;
    top: 120px;
  }
  .hz-content h3 {
    font-size: 1.6rem;
  }
  .hz-content p {
    font-size: 0.9rem;
  }
}
/* Kurumsal & Galeri Layout */
.kurumsal-layout {
  display: flex;
  max-width: 1200px;
  margin: 60px auto;
  gap: 60px;
  padding: 0 40px;
  align-items: flex-start;
}

.k-sidebar {
  flex: 0 0 250px;
}

.k-nav {
  display: flex;
  flex-direction: column;
  border-top: 2px solid #111;
}

.k-link {
  padding: 20px 0;
  border-bottom: 1px solid #eaeaea;
  font-family: "Poppins", sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.k-link::after {
  content: "→";
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.k-link:hover, .k-link.active {
  color: #111;
  padding-left: 10px;
}

.k-link:hover::after, .k-link.active::after {
  opacity: 1;
  transform: translateX(0);
}

.k-main {
  flex: 1;
  min-width: 0;
}

/* Global Content Body Lists & Typography */
.content-body ul, .hz-content ul, .post-detail-content ul, .about-details ul, .hizmetler-metin ul {
  list-style: none;
  padding-left: 0;
  margin: 20px 0 30px 0;
}

.content-body ul li, .hz-content ul li, .post-detail-content ul li, .about-details ul li, .hizmetler-metin ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.8;
  color: #555;
  font-size: 1.05rem;
}

.content-body ul li::before, .hz-content ul li::before, .post-detail-content ul li::before, .about-details ul li::before, .hizmetler-metin ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2.5' stroke-linecap='square' stroke-linejoin='miter'%3E%3Cpolyline points='9 18 15 12 9 6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.2s ease;
}

.content-body ul li:hover::before, .hz-content ul li:hover::before, .post-detail-content ul li:hover::before, .about-details ul li:hover::before, .hizmetler-metin ul li:hover::before {
  transform: translateX(3px);
  stroke: #f14c1c; /* Accent color on hover */
}

/* Gallery Grid */
.k-gallery-section {
  border: 1px solid #eaeaea;
  background: #fff;
  padding: 40px;
}

.k-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.k-gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  background: #f9f9f9;
  border: 1px solid #eaeaea;
}

.k-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.k-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.k-gallery-item:hover img {
  transform: scale(1.05);
}

.k-gallery-item:hover .k-gallery-overlay {
  opacity: 1;
}

@media (max-width: 991px) {
  .kurumsal-layout {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }
  .k-sidebar {
    flex: none;
    width: 100%;
  }
  .k-gallery-section, .k-main .about-hero {
    padding: 20px !important;
  }
  .k-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
  }
}

/*# sourceMappingURL=styles.css.map */
