/* ===== RESET & VARIABLES ===== */
/* ===== RESET & VARIABLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a3c6e;
  --primary-dark: #0f2847;
  --primary-light: #2a5a9e;
  --accent: #e8a023;
  --accent-hover: #d4901a;
  --text-dark: #1f2937;
  --text-medium: #555555;
  --text-light: #888888;
  --bg-light: #f7f8fa;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --radius: 8px;
  --transition: 0.3s ease;
}

::selection {
  background: var(--accent);
  color: #fff;
}
::-moz-selection {
  background: var(--accent);
  color: #fff;
}

/* Scrollbar — brand renkli */
html { scrollbar-color: var(--accent) var(--bg, #f5f5f5); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg, #f5f5f5); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; border: 2px solid var(--bg, #f5f5f5); }
::-webkit-scrollbar-thumb:hover { background: var(--primary, #1a3c6e); }

::-moz-selection {
  background: var(--primary-dark);
  color: var(--accent);
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title span {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.section-title p {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--primary-dark);
  color: #fff;
  font-size: 13px;
  padding: 10px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-left a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
}

.topbar-left a:hover {
  color: var(--accent);
}

.topbar-left i {
  font-size: 12px;
  color: var(--accent);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-right a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition);
}

.topbar-right a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== HEADER ===== */
.header {
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--border-color);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.logo {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  max-height: 55px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-menu>a,
.nav-dropdown>.nav-dropdown-toggle {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 5px 0;
  cursor: pointer;
}

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

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

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

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

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  font-family: inherit;
}

.nav-dropdown-toggle i {
  font-size: 10px;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.nav-dropdown:hover .nav-dropdown-toggle {
  color: var(--primary);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -15px;
  min-width: 220px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 100;
  margin-top: 12px;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 12px;
}

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

.nav-dropdown-menu {
  --indicator-top: 0px;
  --indicator-height: 0px;
}

.nav-dropdown-menu-indicator {
  position: absolute;
  left: 10px;
  top: var(--indicator-top);
  width: 2px;
  height: var(--indicator-height);
  background: var(--accent);
  border-radius: 2px;
  transition:
    top 0.25s ease,
    height 0.25s ease,
    opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.nav-dropdown-menu.has-hover .nav-dropdown-menu-indicator {
  opacity: 1;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  margin: 0 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  transition:
    color var(--transition),
    background var(--transition);
  position: relative;
}

.nav-dropdown-menu a::after {
  display: none;
}

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

/* Mega Menu */
.nav-mega {
  position: static;
}

.nav-mega .nav-dropdown-toggle {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.35s ease;
  z-index: 100;
  padding: 30px 0;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

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

.nav-mega:hover .nav-dropdown-toggle {
  color: var(--primary);
}

.nav-mega:hover .nav-dropdown-toggle i {
  transform: rotate(180deg);
}

.mega-menu-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 20px;
}

.mega-menu-items {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

/* Kategorize edilmiş mega menü */
.mega-menu-items--categorized {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px 24px;
  align-items: start;
}

.mega-menu-items--categorized .mega-hover-bg { display: none; }

.mega-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.mega-col-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  padding: 4px 0 8px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 4px;
  text-decoration: none;
  transition: color var(--transition);
}

.mega-col-title:hover { color: var(--primary); }

.mega-col-title i {
  font-size: 13px;
}

.mega-col-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu-items--categorized .mega-item {
  flex: unset;
  padding: 10px 12px 10px 0;
}

.mega-menu-items--categorized .mega-item:hover {
  background: transparent;
  border-color: transparent;
}

.mega-menu-items--categorized .mega-item:hover .mega-item-text h4 {
  color: var(--accent);
}

.mega-menu-items--categorized .mega-item-img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  font-size: 16px;
}

.mega-menu-items--categorized .mega-item-text h4 {
  font-size: 13.5px;
  margin-bottom: 2px;
}

.mega-menu-items--categorized .mega-item-text p {
  font-size: 11.5px;
}

.mega-hover-bg {
  position: absolute;
  border-radius: 10px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  transition:
    top 0.3s ease,
    left 0.3s ease,
    width 0.3s ease,
    height 0.3s ease,
    opacity 0.2s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.mega-menu-items.has-hover .mega-hover-bg {
  opacity: 1;
}

.mega-item {
  flex: 1 1 calc(33.333% - 7px);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: border-color var(--transition);
  text-decoration: none;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.mega-item-img {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 10px;
  object-fit: cover;
}
.mega-item-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-light);
  color: var(--accent);
  font-size: 20px;
}

.mega-item-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
  transition: color var(--transition);
}

.mega-item:hover .mega-item-text h4 {
  color: var(--primary);
}

.mega-item-text p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-menu-cta {
  width: 260px;
  min-width: 260px;
  background: var(--primary-dark);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #fff;
}

.mega-menu-cta h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.mega-menu-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 12px;
}

.mega-menu-cta .btn-primary {
  font-size: 13px;
  padding: 10px 22px;
  align-self: flex-start;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 13px;
  color: var(--primary);
}

.header-phone i {
  font-size: 14px;
  color: var(--accent);
}

.header-cta {
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  transition: all var(--transition);
}

.header-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-dark);
  cursor: pointer;
  padding: 5px;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: var(--bg-white);
  z-index: 2000;
  padding: 30px;
  transition: right 0.4s ease;
  border-left: 1px solid var(--border-color);
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-nav-menu {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav-menu a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

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

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  color: var(--text-dark);
  cursor: pointer;
}

.mobile-dropdown-toggle i {
  font-size: 11px;
  transition: transform var(--transition);
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.mobile-dropdown-toggle:hover {
  color: var(--accent);
}

.mobile-sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-sub-menu.open {
  max-height: 800px;
}

.mobile-sub-menu a {
  padding: 10px 0 10px 15px;
  font-size: 14px;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-sub-menu a:last-child {
  border-bottom: 1px solid var(--border-color);
}

.mobile-sub-menu a i {
  font-size: 13px;
  color: var(--accent);
  width: 18px;
  text-align: center;
}

.mobile-nav-contact {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-medium);
  font-size: 14px;
}

.mobile-nav-contact i {
  color: var(--accent);
  width: 18px;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ===== HERO SLIDER ===== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-slider {
  width: 100%;
  height: 620px;
  position: relative;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease;
}

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

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
}

.hero-slide.is-active .hero-slide-bg {
  animation: kenBurns 6s ease forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.06);
  }
}

/* Dark overlay */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(10, 15, 26, 0.88) 0%,
      rgba(10, 15, 26, 0.5) 60%,
      rgba(10, 15, 26, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-top-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-size: 68px;
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-content h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub-title {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 550px;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  padding: 13px 30px;
  font-size: 15px;
}

.hero-buttons .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  padding: 13px 30px;
  font-size: 15px;
}

.hero-buttons .btn-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

/* Hero Slide Animations */
.hero-slide .hero-top-title,
.hero-slide h1,
.hero-slide .hero-sub-title,
.hero-slide .hero-buttons {
  opacity: 0;
  transform: translateY(25px);
}

.hero-slide.is-active .hero-top-title {
  animation: heroFadeUp 0.6s 0.15s ease forwards;
}

.hero-slide.is-active h1 {
  animation: heroFadeUp 0.6s 0.3s ease forwards;
}

.hero-slide.is-active .hero-sub-title {
  animation: heroFadeUp 0.6s 0.45s ease forwards;
}

.hero-slide.is-active .hero-buttons {
  animation: heroFadeUp 0.6s 0.6s ease forwards;
}

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


/* Slider Tabs */
.slider-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 5;
}

.slider-tab {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 10px;
  border: none;
  border-top: 3px solid transparent;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.5);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
}

.slider-tab::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.slider-tab:last-child::after {
  display: none;
}

.slider-tab i {
  font-size: 18px;
  transition: all var(--transition);
}

.slider-tab:hover {
  background: rgba(0, 0, 0, 0.55);
  color: rgba(255, 255, 255, 0.8);
}

.slider-tab.active {
  border-top-color: var(--accent);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.slider-tab.active i {
  color: var(--accent);
}

/* ===== FEATURES BAR ===== */
.features-bar {
  position: relative;
  z-index: 10;
  margin-top: 0;
  padding: 25px 0 0;
}

.features-bar .container {
  display: flex;
  gap: 12px;
}

.feature-item {
  flex: 1;
  padding: 28px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  cursor: default;
  transition:
    flex 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    transform 0.4s ease;
}

.features-bar .container:hover .feature-item {
  flex: 1;
}

.features-bar .container:hover .feature-item:hover {
  flex: 1.4;
  background: var(--primary);
  border-color: var(--primary);
}

.features-bar .container:hover .feature-item:not(:hover) {
  flex: 0.87;
  opacity: 0.75;
}

.feature-item:hover .feature-icon,
.feature-item:hover h4,
.feature-item:hover p {
  color: #fff;
}

.feature-item:hover .feature-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(26, 60, 110, 0.06);
  border: 1px solid rgba(26, 60, 110, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--primary);
  transition: all 0.4s ease;
}

.feature-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
  transition: color 0.4s ease;
  white-space: nowrap;
}

.feature-text p {
  font-size: 12px;
  color: var(--text-light);
  transition:
    color 0.4s ease,
    opacity 0.4s ease;
  white-space: nowrap;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 110px 0;
  overflow: hidden;
}

.about-wrapper {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.about-left {
  flex: 1;
  min-width: 0;
  position: relative;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  width: 80%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  position: relative;
  z-index: 1;
  animation: floatMain 6s ease-in-out infinite;
}

@keyframes floatMain {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-img-float {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid var(--bg-white);
  z-index: 2;
  animation: floatSecond 5s ease-in-out infinite;
}

@keyframes floatSecond {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-6px, -8px);
  }
}

.about-exp-badge {
  position: absolute;
  top: 50%;
  right: 42%;
  transform: translateY(-50%);
  z-index: 3;
  background: var(--accent);
  color: #fff;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px solid var(--bg-white);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(232, 160, 35, 0.25);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(232, 160, 35, 0);
  }
}

.about-exp-badge .badge-number {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-exp-badge .badge-text {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-top: 2px;
}

.about-right {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-right .label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.about-right h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 18px;
}

.about-right>p,
.about-right>.about-desc {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 30px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 35px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.about-feature:last-child {
  border-bottom: none;
}

.about-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: var(--bg-light);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
  border-radius: 6px;
}

.about-feature:hover::before {
  width: 100%;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  background: rgba(26, 60, 110, 0.06);
  border: 1px solid rgba(26, 60, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--primary);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.about-feature:hover .about-feature-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.about-feature-text {
  position: relative;
  z-index: 1;
}

.about-feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.about-feature-text span {
  font-size: 13px;
  color: var(--text-light);
}

.about-stats {
  display: flex;
  gap: 20px;
}

.about-stat-item {
  flex: 1;
  text-align: center;
  padding: 22px 10px;
  border-radius: 12px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  cursor: default;
}

.about-stat-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.about-stat-item strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
  transition: color 0.4s ease;
}

.about-stat-item:hover strong {
  color: var(--accent);
}

.about-stat-item span {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== SERVICES SECTION (Stacking Cards) ===== */
.services-section {
  padding: 100px 0 60px;
  background: var(--bg-light);
}

.services-stack {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stack-card {
  position: sticky;
  top: 100px;
  perspective: 800px;
}

.stack-card:nth-child(1) {
  --index: 0;
}

.stack-card:nth-child(2) {
  --index: 0;
}

.stack-card:nth-child(3) {
  --index: 1;
}

.stack-card:nth-child(4) {
  --index: 1;
}

.stack-card:nth-child(5) {
  --index: 2;
}

.stack-card:nth-child(6) {
  --index: 2;
}

.stack-card {
  padding-top: calc(var(--index) * 18px);
}

.stack-card-inner {
  padding: 36px 32px;
  border-radius: 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transform-origin: 50% 0%;
  will-change: transform;
  transition:
    transform 0.4s ease,
    border-color 0.4s ease;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stack-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent);
  border-radius: 0 4px 4px 0;
  transition: height 0.5s ease;
}

.stack-card:hover .stack-card-inner::before {
  height: 100%;
}

.stack-card:hover .stack-card-inner {
  border-color: rgba(26, 60, 110, 0.12);
}

.stack-card-number {
  position: absolute;
  top: -8px;
  right: 20px;
  font-size: 80px;
  font-weight: 800;
  color: rgba(26, 60, 110, 0.04);
  line-height: 1;
  pointer-events: none;
}

.stack-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(26, 60, 110, 0.06);
  border: 1px solid rgba(26, 60, 110, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--primary);
  margin-bottom: 18px;
  transition: all 0.4s ease;
}

.stack-card:hover .stack-card-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.stack-card-inner h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.stack-card-inner p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 16px;
}

.stack-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.stack-card-link i {
  font-size: 12px;
  transition: transform var(--transition);
}

.stack-card-link:hover {
  color: var(--accent);
}

.stack-card-link:hover i {
  transform: translateX(4px);
}

/* Scroll-driven animation for cards that scroll away */
@supports (animation-timeline: view()) {
  .stack-card-inner {
    animation: stackOut linear forwards;
    animation-timeline: view();
    animation-range: exit-crossing 0% exit-crossing 100%;
  }

  @keyframes stackOut {
    to {
      transform: scale(0.92) rotateX(-8deg);
      filter: brightness(0.85);
    }
  }
}

/* ===== COUNTER SECTION ===== */
.counter-section {
  padding: 70px 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232, 160, 35, 0.06);
}

.counter-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.counter-item {
  text-align: center;
  color: #fff;
}

.counter-item .counter-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}

.counter-item .counter-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== WHY US SECTION ===== */
.why-section {
  padding: 100px 0;
  background: var(--bg-white);
}

.why-header {
  text-align: center;
  margin-bottom: 65px;
}

.why-header span {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.why-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.why-header p {
  font-size: 16px;
  color: var(--text-medium);
  max-width: 500px;
  margin: 0 auto;
}

/* Steps */
.why-steps {
  display: flex;
  position: relative;
  gap: 0;
}

/* Connecting line */
.why-steps::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: var(--border-color);
  z-index: 0;
}

/* Animated pulse running along the line */
.why-steps::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 50px;
  width: 60px;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 1;
  animation: linePulse 3s ease-in-out infinite;
}

@keyframes linePulse {
  0% {
    left: 50px;
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    left: calc(100% - 110px);
    opacity: 0;
  }
}

.why-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 12px;
}

/* Step number circle */
.why-step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: all 0.5s ease;
}

.why-step-num i {
  font-size: 24px;
  color: var(--primary);
  transition: all 0.5s ease;
}

.why-step-num span {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Looping pulse ring on each step */
.why-step-num::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: stepPulse 3s ease-out infinite;
}

.why-step:nth-child(1) .why-step-num::before {
  animation-delay: 0s;
}

.why-step:nth-child(2) .why-step-num::before {
  animation-delay: 0.75s;
}

.why-step:nth-child(3) .why-step-num::before {
  animation-delay: 1.5s;
}

.why-step:nth-child(4) .why-step-num::before {
  animation-delay: 2.25s;
}

@keyframes stepPulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.why-step:hover .why-step-num {
  border-color: var(--primary);
  background: var(--primary);
  transform: scale(1.08);
}

.why-step:hover .why-step-num i {
  color: #fff;
}

.why-step h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: color 0.4s ease;
}

.why-step:hover h4 {
  color: var(--primary);
}

.why-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 200px;
  margin: 0 auto;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: var(--bg-light);
  overflow: hidden;
}

.tc-slider-wrap {
  padding: 10px 0 55px;
  overflow: hidden;
  margin: 0 -40px;
  padding-left: 40px;
  padding-right: 40px;
}

.tc-track {
  display: flex;
  align-items: stretch;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tc-slide {
  height: auto;
  flex-shrink: 0;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  filter: blur(1px) grayscale(20%);
  opacity: 0.5;
  transform: scale(0.88);
}

.tc-slide.is-adjacent {
  filter: blur(0) grayscale(10%);
  opacity: 0.65;
  transform: scale(0.93);
}

.tc-slide.is-active {
  filter: blur(0) grayscale(0%);
  opacity: 1;
  transform: scale(1);
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
  height: 100%;
}

/* Snake border animation */
.testimonial-card::before,
.testimonial-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1.5px;
  background: conic-gradient(from var(--border-angle, 0deg),
      transparent 0%,
      transparent 65%,
      var(--accent) 80%,
      var(--primary) 95%,
      transparent 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card::after {
  filter: blur(8px);
}

.tc-slide.is-active .testimonial-card::before,
.tc-slide.is-active .testimonial-card::after {
  opacity: 1;
  animation: snakeBorder 3s linear infinite;
}

@property --border-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes snakeBorder {
  to {
    --border-angle: 360deg;
  }
}

.tc-slide.is-active .testimonial-card {
  border-color: transparent;
}

.testimonial-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 60px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  overflow: hidden;
}

.testimonial-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-body {
  flex: 1;
  min-width: 0;
}

.testimonial-body .testimonial-text {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 500;
  position: relative;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.testimonial-info h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testimonial-info span {
  font-size: 13px;
  color: var(--text-light);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 13px;
  display: flex;
  gap: 2px;
}

.testimonial-stars .inactive {
  color: var(--border-color);
}

.tc-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 28px;
}

.tc-dot {
  width: 8px;
  height: 8px;
  background: var(--border-color);
  opacity: 1;
  transition: all var(--transition);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  padding: 0;
}

.tc-dot.is-active {
  background: var(--primary);
  width: 28px;
  border-radius: 4px;
}

@media (max-width: 480px) {
  .testimonial-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .testimonial-left {
    flex-direction: row;
    gap: 12px;
  }

  .testimonial-body .testimonial-text {
    font-size: 14px;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ===== BLOG SECTION ===== */
.blog-section {
  padding: 100px 0;
}

.blog-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  perspective: 1200px;
}

.blog-card-wrap {
  flex: 0 0 calc(33.333% - 16px);
  max-width: 400px;
}

.blog-card-wrap:nth-child(1) .blog-card {
  transform: rotateY(6deg);
}

.blog-card-wrap:nth-child(3) .blog-card {
  transform: rotateY(-6deg);
}

.blog-card-wrap:nth-child(1):hover .blog-card,
.blog-card-wrap:nth-child(3):hover .blog-card {
  transform: rotateY(0);
}

.blog-card {
  background: var(--bg-white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transform-style: preserve-3d;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  border-color: rgba(26, 60, 110, 0.15);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #e8edf5 0%, #c8d4e8 100%);
  flex-shrink: 0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.blog-card-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
}

.blog-card-body {
  padding: 24px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-date {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-date i {
  color: var(--accent);
  font-size: 11px;
}

.blog-card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}

.blog-card:hover .blog-card-body h3 {
  color: var(--primary);
}

.blog-card-body p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition);
  margin-top: auto;
}

.blog-card-link i {
  font-size: 11px;
  transition: transform var(--transition);
}

.blog-card-link:hover {
  color: var(--accent);
}

.blog-card-link:hover i {
  transform: translateX(4px);
}

.blog-more {
  text-align: center;
  margin-top: 48px;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 80px 0;
}

.cta-card {
  background: var(--primary-dark);
  border-radius: 20px;
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 35px;
}

/* Animated gradient mesh bg */
.cta-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-mesh span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}

.cta-mesh span:nth-child(1) {
  width: 300px;
  height: 300px;
  background: var(--primary-light);
  top: -60px;
  left: -60px;
  animation: meshOrbit1 4s linear infinite;
}

.cta-mesh span:nth-child(2) {
  width: 250px;
  height: 250px;
  background: var(--accent);
  bottom: -60px;
  right: -60px;
  animation: meshOrbit2 5s linear infinite;
}

.cta-mesh span:nth-child(3) {
  width: 200px;
  height: 200px;
  background: var(--primary);
  top: 20%;
  left: 40%;
  animation: meshOrbit3 3.5s linear infinite;
}

@keyframes meshOrbit1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(calc(100vw - 400px), 60px) scale(1.2);
  }

  50% {
    transform: translate(calc(50vw - 200px), -40px) scale(0.8);
  }

  75% {
    transform: translate(200px, 80px) scale(1.1);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes meshOrbit2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-300px, -60px) scale(0.9);
  }

  50% {
    transform: translate(calc(-50vw + 100px), 40px) scale(1.15);
  }

  75% {
    transform: translate(-150px, -80px) scale(1);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

@keyframes meshOrbit3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(200px, 50px) scale(1.3);
  }

  50% {
    transform: translate(-200px, -30px) scale(0.85);
  }

  75% {
    transform: translate(100px, -60px) scale(1.1);
  }

  100% {
    transform: translate(0, 0) scale(1);
  }
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text span.label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

.cta-text h2 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 550px;
  margin: 0 auto;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 14px;
}

.cta-action-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: all 0.4s ease;
  text-decoration: none;
}

.cta-action-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.cta-action-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.cta-action-btn:nth-child(1) .cta-action-icon {
  background: var(--accent);
  color: #fff;
}

.cta-action-btn:nth-child(2) .cta-action-icon {
  background: #2563eb;
  color: #fff;
}

.cta-action-btn:nth-child(3) .cta-action-icon {
  background: #25d366;
  color: #fff;
}

.cta-action-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 1px;
}

.cta-action-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
  .cta-card {
    padding: 45px 24px;
    gap: 28px;
  }

  .cta-text h2 {
    font-size: 28px;
  }

  .cta-card {
    align-items: flex-start;
    text-align: left;
  }

  .cta-text p {
    margin: 0;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-action-btn {
    justify-content: flex-start;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 0;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-icon {
  width: 36px;
  height: 36px;
  font-size: 15px;
}
.footer-logo .logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-main {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  padding: 50px 0;
}

.footer-col {
  flex: 1;
  min-width: 180px;
}

.footer-col:first-child {
  flex: 1.6;
  min-width: 260px;
}

.footer-col>p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: all var(--transition);
  padding: 2px 0;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item i {
  margin-top: 4px;
  color: var(--accent);
  font-size: 13px;
  width: 16px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.35);
  font-size: 13px;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ===== STICKY FOOTER BAR (Mobil 5'li) ===== */
.sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-dark);
  z-index: 999;
  display: none;
  border-top: 1px solid rgba(232, 160, 35, 0.3);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.sticky-footer .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  padding: 8px 6px 10px;
  position: relative;
  overflow: visible;
}

.sticky-footer .sf-item,
.sticky-footer .sf-fab {
  color: #fff;
  font-size: 10.5px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  text-align: center;
  padding: 6px 2px;
  text-decoration: none;
  transition: color .25s ease;
  line-height: 1.1;
}

.sticky-footer .sf-item i {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  transition: color .25s ease, transform .25s ease;
}

.sticky-footer .sf-item:hover,
.sticky-footer .sf-item:active,
.sticky-footer .sf-fab:hover,
.sticky-footer .sf-fab:active {
  color: var(--accent);
}

.sticky-footer .sf-item:hover i,
.sticky-footer .sf-item:active i {
  color: var(--accent);
  transform: translateY(-2px);
}

/* Ortadaki WhatsApp — bar yüksekliğini etkilemez, sadece ikon yukarı taşar */
.sticky-footer .sf-fab {
  position: relative;
  font-weight: 600;
}

.sticky-footer .sf-fab-circle {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-dark);
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), color .25s ease, background .25s ease;
}

.sticky-footer .sf-fab-label {
  margin-top: 32px;
}

.sticky-footer .sf-fab:hover .sf-fab-circle,
.sticky-footer .sf-fab:active .sf-fab-circle {
  transform: translateX(-50%) scale(1.08);
  background: var(--accent);
  color: var(--primary-dark);
}

.sticky-footer .sf-fab--disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ===== SCROLL TO TOP ===== */
/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 54px;
  height: 54px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  z-index: 998;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn::before,
.whatsapp-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: whatsappPulse 2.5s ease-out infinite;
}

.whatsapp-btn::after {
  animation-delay: 1.25s;
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 {
  transition-delay: 0.05s;
}

.stagger-2 {
  transition-delay: 0.1s;
}

.stagger-3 {
  transition-delay: 0.15s;
}

.stagger-4 {
  transition-delay: 0.2s;
}

.stagger-5 {
  transition-delay: 0.25s;
}

.stagger-6 {
  transition-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .header-phone {
    display: none;
  }

  .nav-menu {
    gap: 16px;
  }

  .nav-menu>a,
  .nav-dropdown>.nav-dropdown-toggle {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .mega-menu-cta {
    display: none;
  }

  .mega-item {
    flex: 1 1 calc(50% - 5px);
  }

  .hero-content h1 {
    font-size: 52px;
  }

  .hero-swiper {
    height: 520px;
  }

  .slider-tab {
    padding: 14px 10px;
    font-size: 11px;
  }

  .features-bar .container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .feature-item {
    flex: 1 1 calc(50% - 5px);
  }

  .features-bar .container:hover .feature-item:hover {
    flex: 1 1 calc(50% - 5px);
  }

  .features-bar .container:hover .feature-item:not(:hover) {
    flex: 1 1 calc(50% - 5px);
    opacity: 0.65;
  }

  .about-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .about-images {
    height: 380px;
  }

  .about-img-main {
    height: 320px;
  }

  .about-img-float {
    height: 200px;
    width: 50%;
  }

  .about-right h2 {
    font-size: 30px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .about-stat-item {
    flex: 1 1 calc(50% - 6px);
  }

  .why-steps::before,
  .why-steps::after {
    display: none;
  }

  .why-steps {
    flex-wrap: wrap;
    gap: 30px;
  }

  .why-step {
    flex: 1 1 calc(50% - 15px);
  }

  .section-title h2,
  .about-right h2,
  .why-header h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .topbar-left a:last-child {
    display: none;
  }

  .nav-menu,
  .header-actions .header-phone,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .hero-swiper {
    height: 420px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-sub-title {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .slider-tab span {
    display: none;
  }

  .slider-tab {
    padding: 12px 10px;
    gap: 0;
  }

  .slider-tab i {
    font-size: 18px;
  }

  .features-bar {
    margin-top: 0;
    padding: 15px 20px 0;
  }

  .features-bar .container {
    flex-direction: column;
    gap: 8px;
  }

  .feature-item {
    flex: none;
    width: 100%;
    padding: 20px 18px;
  }

  .features-bar .container:hover .feature-item:hover {
    flex: none;
  }

  .features-bar .container:hover .feature-item:not(:hover) {
    flex: none;
    opacity: 0.6;
  }

  .about-images {
    height: 320px;
  }

  .about-img-main {
    height: 260px;
    width: 75%;
  }

  .about-img-float {
    height: 180px;
    width: 55%;
  }

  .about-exp-badge {
    width: 90px;
    height: 90px;
    right: 38%;
  }

  .about-exp-badge .badge-number {
    font-size: 26px;
  }

  .about-exp-badge .badge-text {
    font-size: 8px;
  }

  .services-stack {
    grid-template-columns: 1fr;
  }

  .stack-card {
    padding-top: calc(var(--index) * 12px);
  }

  .stack-card:nth-child(1) {
    --index: 0;
  }

  .stack-card:nth-child(2) {
    --index: 1;
  }

  .stack-card:nth-child(3) {
    --index: 2;
  }

  .stack-card:nth-child(4) {
    --index: 3;
  }

  .stack-card:nth-child(5) {
    --index: 4;
  }

  .stack-card:nth-child(6) {
    --index: 5;
  }

  .blog-grid {
    flex-direction: column;
    perspective: none;
  }

  .blog-card-wrap {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .blog-card-wrap:nth-child(1) .blog-card,
  .blog-card-wrap:nth-child(3) .blog-card {
    transform: rotateY(0);
  }

  .counter-grid {
    gap: 20px;
  }

  .counter-item .counter-number {
    font-size: 36px;
  }

  .about-section,
  .services-section,
  .why-section,
  .testimonials-section,
  .blog-section {
    padding: 60px 0;
  }

  .why-step {
    flex: 1 1 100%;
  }

  .section-title {
    margin-bottom: 35px;
  }

  .footer-main {
    flex-direction: column;
    gap: 30px;
  }

  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: left;
  }

  .footer-top-left {
    flex-direction: column;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: left;
    align-items: flex-start;
  }

  .sticky-footer {
    display: block;
  }

  .whatsapp-btn {
    bottom: 75px;
  }

  .footer {
    padding-bottom: 60px;
  }
}

@media (max-width: 480px) {
  .topbar {
    display: none;
  }

  .hero-swiper {
    height: 360px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-top-title {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hero-sub-title {
    display: none;
  }

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

  .hero-buttons .btn-primary,
  .hero-buttons .btn-outline {
    justify-content: center;
    width: 100%;
    padding: 10px 20px;
    font-size: 13px;
  }

  .slider-tab {
    padding: 10px 8px;
  }

  .slider-tab i {
    font-size: 16px;
  }

  .about-stats {
    gap: 8px;
  }

  .about-stat-item {
    flex: 1 1 calc(50% - 4px);
  }

  .counter-grid {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== PAGE SPECIFIC: BLOG ===== */
.page-hero {
  position: relative;
  background: var(--primary-dark);
  padding: 40px 0 30px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: -30% 0;
  background-image: url("https://images.unsplash.com/photo-1499750310107-5fef28a66643?w=1600&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  z-index: 0;
  will-change: transform;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-content ul.links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  font-size: 14px;
}

.page-hero-content ul.links li {
  display: flex;
  align-items: center;
}

.page-hero-content ul.links li + li::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.page-hero-content ul.links a {
  color: rgba(255, 255, 255, 0.55);
}

.page-hero-content ul.links a:hover {
  color: var(--accent);
}

.page-hero-content ul.links li:last-child {
  color: var(--accent);
  font-weight: 600;
}

.page-hero-content h1 em {
  font-style: normal;
  color: var(--accent);
}

.page-hero-content h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.page-hero-content h1 em {
  font-style: normal;
  color: var(--accent);
}

.page-hero-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Blog liste şablonu (template-blog): .blog-layout varken — anasayfa kartlarından ayrı */
.blog-section:has(.blog-layout) {
  padding: 90px 0;
}

.blog-layout {
  display: flex;
  gap: 40px;
}

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

.blog-sidebar {
  width: 340px;
  min-width: 340px;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.blog-layout .blog-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-layout .blog-card {
  display: flex;
  flex-direction: row;
  gap: 0;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-layout .blog-card:hover {
  border-color: rgba(26, 60, 110, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 40, 71, 0.08);
}

.blog-layout .blog-card-image {
  width: 320px;
  min-width: 320px;
  height: auto !important;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}

.blog-layout .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-layout .blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-layout .blog-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-layout .blog-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-layout .blog-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--text-light);
}

.blog-layout .blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-layout .blog-card-meta i {
  font-size: 11px;
  color: var(--accent);
}

.blog-layout .blog-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color var(--transition);
}

.blog-layout .blog-card:hover .blog-card-body h3 {
  color: var(--primary);
}

.blog-layout .blog-card-body p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-layout .blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: all var(--transition);
}

.blog-layout .blog-card-link i {
  font-size: 11px;
  transition: transform var(--transition);
}

.blog-layout .blog-card-link:hover {
  color: var(--accent);
}

.blog-layout .blog-card-link:hover i {
  transform: translateX(5px);
}


.sidebar-widget {
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  margin-bottom: 24px;
}

.sidebar-widget h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

.sidebar-widget h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.sidebar-search {
  display: flex;
  border: 1px solid var(--border-color);
  border-radius: 50px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.sidebar-search:focus-within {
  border-color: var(--primary);
}

.sidebar-search input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  background: transparent;
}

.sidebar-search button {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 12px 18px;
  cursor: pointer;
  transition: background var(--transition);
}

.sidebar-search button:hover {
  background: var(--primary-dark);
}

.sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-categories a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  transition: all var(--transition);
}

.sidebar-categories a:last-child {
  border-bottom: none;
}

.sidebar-categories a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.sidebar-categories a span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg-light);
  padding: 2px 10px;
  border-radius: 50px;
  transition: all var(--transition);
}

.sidebar-categories a:hover span {
  background: var(--primary);
  color: #fff;
}

.sidebar-recent {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-recent-item {
  display: flex;
  gap: 14px;
  align-items: center;
  transition: all var(--transition);
}

.sidebar-recent-item:hover {
  transform: translateX(4px);
}

.sidebar-recent-img {
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 10px;
  object-fit: cover;
}

.sidebar-recent-text {
  flex: 1;
  min-width: 0;
}

.sidebar-recent-text h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.sidebar-recent-item:hover .sidebar-recent-text h5 {
  color: var(--primary);
}

.sidebar-recent-text span {
  font-size: 12px;
  color: var(--text-light);
}

.sidebar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sidebar-tags a {
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
  transition: all var(--transition);
}

.sidebar-tags a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}

.blog-pagination a,
.blog-pagination span {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  color: var(--text-medium);
  transition: all var(--transition);
}

.blog-pagination a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.blog-pagination span.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  cursor: default;
}

.blog-pagination span:not(.active) {
  cursor: default;
  pointer-events: none;
  border-color: transparent;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .blog-layout {
    flex-direction: column;
  }

  .blog-sidebar {
    width: 100%;
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .sidebar-widget {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 28px 0 24px;
  }

  .page-hero-content h1 {
    font-size: 32px;
  }

  .blog-section {
    padding: 60px 0;
  }

  .blog-layout .blog-card {
    flex-direction: column;
  }

  .blog-layout .blog-card-image {
    width: 100%;
    min-width: 100%;
    height: 220px;
  }

  .blog-layout .blog-card-body {
    padding: 24px;
  }

  .blog-layout .blog-card-body h3 {
    font-size: 18px;
  }



  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .whatsapp-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .page-hero-content h1 {
    font-size: 26px;
  }

  .blog-layout .blog-card-image {
    height: 180px;
  }
}

/* ===== PAGE SPECIFIC: BLOG DETAIL ===== */
.blog-hero {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.blog-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 40, 71, 0.3) 0%, rgba(15, 40, 71, 0.85) 100%);
  z-index: 1;
}

.blog-hero-content {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  z-index: 2;
}

.blog-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 14px;
}

.blog-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
}

.blog-hero-breadcrumb a:hover {
  color: var(--accent);
}

.blog-hero-breadcrumb i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.blog-hero-breadcrumb span {
  color: rgba(255, 255, 255, 0.75);
}

.blog-hero-content ul.links {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  gap: 0;
  font-size: 14px;
}

.blog-hero-content ul.links li {
  display: flex;
  align-items: center;
}

.blog-hero-content ul.links li + li::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 10px;
}

.blog-hero-content ul.links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.blog-hero-content ul.links a:hover {
  color: var(--accent);
}

.blog-hero-content ul.links li:last-child {
  color: var(--accent);
  font-weight: 600;
}

.blog-hero-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.blog-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 750px;
}

.blog-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.blog-hero-meta span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.blog-hero-meta i {
  color: var(--accent);
  font-size: 13px;
}

.article-section {
  padding: 70px 0 90px;
}

.article-layout {
  display: flex;
  gap: 50px;
}

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

.article-sidebar {
  width: 340px;
  min-width: 340px;
}

.article-highlight {
  margin: 36px 0;
  padding: 28px 32px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
}

.article-highlight-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--accent);
}

.article-highlight p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.article-highlight strong {
  color: #fff;
}

.article-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.article-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.article-tags span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-right: 4px;
}

.article-tags a {
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--text-medium);
  transition: all var(--transition);
}

.article-tags a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 10px;
}

.article-share span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.article-share a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-medium);
  transition: all var(--transition);
}

.article-share a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.author-box {
  margin-top: 40px;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  display: flex;
  gap: 24px;
  align-items: center;
}

.author-avatar {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 26px;
}

.author-info h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.author-info small {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

.author-info p {
  font-size: 14px;
  color: var(--text-medium);
  margin-top: 8px;
  line-height: 1.7;
}

.article-faq {
  margin: 40px 0;
}

.article-faq h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.article-faq .faq-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-faq .faq-item {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-white);
  overflow: hidden;
  transition: all 0.4s ease;
}

.article-faq .faq-item.active {
  border-color: rgba(26, 60, 110, 0.15);
  box-shadow: 0 6px 24px rgba(15, 40, 71, 0.05);
}

.article-faq .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: none;
  border: none;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.article-faq .faq-item.active .faq-question {
  color: var(--primary);
}

.article-faq .faq-question i {
  font-size: 13px;
  color: var(--accent);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.article-faq .faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.article-faq .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.article-faq .faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.8;
}

.article-nav {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.article-nav-item {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.article-nav-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(15, 40, 71, 0.06);
}

.article-nav-item small {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.article-nav-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  transition: color var(--transition);
}

.article-nav-item:hover h5 {
  color: var(--primary);
}

.article-nav-item.next {
  text-align: right;
}

.article-sidebar .sidebar-widget {
  padding: 24px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.article-sidebar .sidebar-widget h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

.article-sidebar .sidebar-widget h4::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.sidebar-toc {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sidebar-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  transition: all var(--transition);
}

.sidebar-toc a:last-child {
  border-bottom: none;
}

.sidebar-toc a::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--border-color);
  transition: all var(--transition);
}

.sidebar-toc a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.sidebar-toc a:hover::before {
  background: var(--accent);
}

.sidebar-related {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-related-item {
  display: flex;
  gap: 12px;
  align-items: center;
  transition: transform var(--transition);
}

.sidebar-related-item:hover {
  transform: translateX(4px);
}

.sidebar-related-img {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 10px;
  object-fit: cover;
}

.sidebar-related-text h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color var(--transition);
}

.sidebar-related-item:hover .sidebar-related-text h5 {
  color: var(--primary);
}

.sidebar-related-text span {
  font-size: 12px;
  color: var(--text-light);
}

.sidebar-sticky {
  position: sticky;
  top: 90px;
}

.sidebar-toc {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toc-item {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  text-decoration: none;
  padding: 6px 10px;
  border-left: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.2s;
  line-height: 1.4;
}

.toc-item:hover {
  color: var(--primary);
  border-left-color: var(--primary);
  background: rgba(var(--primary-rgb, 0,0,0), 0.05);
}

.toc-item.toc-h3 {
  padding-left: 22px;
  font-size: 12px;
}
@keyframes tocHeadingHighlight {
  0%   { color: var(--accent); }
  60%  { color: var(--accent); }
  100% { color: inherit; }
}
.toc-highlight {
  animation: tocHeadingHighlight 1.8s ease forwards;
}

@media (max-width: 1024px) {
  .article-layout {
    flex-direction: column;
  }

  .article-sidebar {
    width: 100%;
    min-width: 100%;
  }

  .sidebar-sticky {
    position: static;
  }

  .blog-hero-content h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    height: 380px;
  }

  .blog-hero-content h1 {
    font-size: 28px;
  }

  .blog-hero-content {
    bottom: 30px;
  }

  .blog-hero-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .article-section {
    padding: 50px 0 60px;
  }

  .article-highlight {
    flex-direction: column;
    text-align: center;
  }

  .article-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-nav {
    grid-template-columns: 1fr;
  }

  .article-nav-item.next {
    text-align: left;
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    height: 320px;
  }

  .blog-hero-content h1 {
    font-size: 23px;
  }
}

/* ===== PAGE SPECIFIC: REFERANSLAR ===== */
.page-referanslar .page-hero {
  position: relative;
  background: var(--primary-dark);
  padding: 40px 0 30px;
  overflow: hidden;
}

.page-referanslar .page-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-referanslar .page-hero::after {
  content: "";
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 90, 158, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.page-referanslar .page-hero-bg {
  position: absolute;
  inset: -30% 0;
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.page-referanslar .page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-referanslar .page-hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; font-size: 14px; }
.page-referanslar .page-hero-breadcrumb a { color: rgba(255, 255, 255, 0.55); }
.page-referanslar .page-hero-breadcrumb a:hover { color: var(--accent); }
.page-referanslar .page-hero-breadcrumb i { color: rgba(255, 255, 255, 0.3); font-size: 10px; }
.page-referanslar .page-hero-breadcrumb span { color: var(--accent); font-weight: 600; }
.page-referanslar .page-hero-content h1 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.page-referanslar .page-hero-content h1 em { font-style: normal; color: var(--accent); }
.page-referanslar .page-hero-content p { font-size: 17px; color: rgba(255, 255, 255, 0.55); max-width: 560px; margin: 0 auto; line-height: 1.8; }

.page-referanslar .page-hero-stats { display: flex; justify-content: center; gap: 50px; margin-top: 50px; position: relative; z-index: 2; }
.page-referanslar .page-hero-stat { text-align: center; }
.page-referanslar .page-hero-stat strong { display: block; font-size: 40px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.page-referanslar .page-hero-stat span { font-size: 13px; color: rgba(255, 255, 255, 0.5); font-weight: 500; }
.page-referanslar .page-hero-stat + .page-hero-stat { position: relative; padding-left: 50px; }
.page-referanslar .page-hero-stat + .page-hero-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

.page-referanslar .marquee-section { padding: 22px 0; background: var(--bg-light); border-bottom: 1px solid var(--border-color); overflow: hidden; }
.page-referanslar .marquee-track { display: flex; width: max-content; animation: marqueeScroll 30s linear infinite; }
.page-referanslar .marquee-item { display: flex; align-items: center; gap: 12px; padding: 0 32px; white-space: nowrap; font-size: 15px; font-weight: 600; color: var(--text-medium); }
.page-referanslar .marquee-item:hover { color: var(--primary); }
.page-referanslar .marquee-item::before { content: ""; width: 6px; height: 6px; min-width: 6px; border-radius: 50%; background: var(--accent); }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.page-referanslar .featured-section { padding: 100px 0; background: var(--bg-light); }
.page-referanslar .featured-wrapper { display: flex; gap: 50px; align-items: center; }
.page-referanslar .featured-gallery { flex: 1.2; min-width: 0; }
.page-referanslar .proj-slider { border-radius: 16px; overflow: hidden; }
.page-referanslar .proj-track { display: flex; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.page-referanslar .proj-slide { min-width: 100%; flex-shrink: 0; }
.page-referanslar .proj-slide img { width: 100%; height: 480px; object-fit: cover; }
.page-referanslar .featured-swiper-nav { display: flex; gap: 8px; margin-top: 16px; align-items: center; }
.page-referanslar .featured-nav-btn { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--border-color); background: var(--bg-white); color: var(--primary); }
.page-referanslar .featured-nav-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.page-referanslar .featured-progress { flex: 1; height: 3px; background: var(--border-color); border-radius: 3px; overflow: hidden; margin-left: 16px; margin-right: 8px; }
.page-referanslar .featured-progress-bar { height: 100%; width: 0%; background: var(--accent); }
.page-referanslar .featured-counter { margin-left: auto; display: flex; gap: 4px; align-items: center; font-weight: 600; color: var(--text-medium); }
.page-referanslar .featured-counter .current { font-size: 24px; font-weight: 800; color: var(--primary); }
.page-referanslar .featured-content { flex: 1; min-width: 0; }
.page-referanslar .featured-panels-stack { display: grid; }
.page-referanslar .featured-text-panel { grid-area: 1 / 1; opacity: 0; transform: translateY(30px); pointer-events: none; transition: opacity 0.55s ease, transform 0.55s ease; }
.page-referanslar .featured-text-panel.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.page-referanslar .featured-content .label { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 14px; }
.page-referanslar .featured-content h2 { font-size: 34px; font-weight: 700; color: var(--primary-dark); margin-bottom: 18px; }
.page-referanslar .featured-content .featured-desc { font-size: 16px; color: var(--text-medium); line-height: 1.8; margin-bottom: 30px; }
.page-referanslar .featured-details { display: flex; flex-direction: column; gap: 0; margin-bottom: 30px; }
.page-referanslar .featured-detail { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--border-color); }
.page-referanslar .featured-detail:last-child { border-bottom: none; }
.page-referanslar .featured-detail-icon { width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: rgba(26, 60, 110, 0.06); border: 1px solid rgba(26, 60, 110, 0.08); display: flex; align-items: center; justify-content: center; font-size: 15px; color: var(--primary); }
.page-referanslar .featured-detail-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 1px; }
.page-referanslar .featured-detail-text span { font-size: 13px; color: var(--text-light); }

.page-referanslar .sectors-section { padding: 100px 0; background: var(--bg-white); }
.page-referanslar .sectors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.page-referanslar .sector-card { padding: 32px 24px; border-radius: 14px; border: 1px solid var(--border-color); background: var(--bg-white); text-align: center; position: relative; overflow: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.page-referanslar .sector-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 0;
}
.page-referanslar .sector-card:hover::before { height: 100%; }
.page-referanslar .sector-card-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(26, 60, 110, 0.06); display: flex; align-items: center; justify-content: center; font-size: 24px; color: var(--primary); margin: 0 auto 18px; }
.page-referanslar .sector-card-icon,
.page-referanslar .sector-card h4,
.page-referanslar .sector-card p,
.page-referanslar .sector-count { position: relative; z-index: 1; transition: all 0.35s ease; }
.page-referanslar .sector-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.page-referanslar .sector-card p { font-size: 13px; color: var(--text-light); margin-bottom: 12px; }
.page-referanslar .sector-count { font-size: 12px; font-weight: 600; color: var(--accent); }
.page-referanslar .sector-card:hover { border-color: var(--primary); transform: translateY(-8px); box-shadow: 0 20px 50px rgba(15, 40, 71, 0.15); }
.page-referanslar .sector-card:hover .sector-card-icon { color: #fff; background: rgba(255, 255, 255, 0.16); }
.page-referanslar .sector-card:hover h4,
.page-referanslar .sector-card:hover p,
.page-referanslar .sector-card:hover .sector-count { color: #fff; }

.page-referanslar .counter-section { padding: 70px 0; background: var(--primary-dark); }
.page-referanslar .counter-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(232, 160, 35, 0.06);
}
.page-referanslar .counter-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
.page-referanslar .counter-item .counter-number { font-size: 48px; font-weight: 800; color: var(--accent); display: block; line-height: 1; margin-bottom: 8px; }
.page-referanslar .counter-item .counter-label { font-size: 15px; color: rgba(255, 255, 255, 0.75); }



@media (max-width: 1024px) {
  .page-referanslar .featured-wrapper { flex-direction: column; }
  .page-referanslar .sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== YORUMLAR PAGE ===== */
.page-yorumlar .testimonials-section { padding: 80px 0; }
.page-yorumlar .testimonials-slider-wrap { position: relative; padding-bottom: 48px; }
.page-yorumlar .tc-track-outer { overflow: hidden; padding: 10px 0; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%); }
.page-yorumlar .tc-track { display: flex; align-items: stretch; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
.page-yorumlar .tc-slide { height: auto; flex-shrink: 0; transition: opacity 0.4s ease, transform 0.4s ease; opacity: 0.45; transform: scale(0.95); }
.page-yorumlar .tc-slide.is-active { opacity: 1; transform: scale(1); }
.page-yorumlar .tc-slide.is-adjacent { opacity: 0.65; transform: scale(0.97); }
.page-yorumlar .testimonial-card { background: var(--bg-white); border-radius: 16px; border: 1px solid var(--border-color); padding: 36px; display: flex; gap: 28px; align-items: flex-start; height: 100%; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.page-yorumlar .testimonial-left { display: flex; flex-direction: column; align-items: center; gap: 10px; min-width: 60px; }
.page-yorumlar .testimonial-avatar { width: 60px; height: 60px; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.page-yorumlar .testimonial-avatar-img img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.page-yorumlar .testimonial-body { flex: 1; min-width: 0; }
.page-yorumlar .testimonial-text { font-size: 16px; color: var(--text-dark); line-height: 1.85; margin-bottom: 20px; font-weight: 500; }
.page-yorumlar .testimonial-text p { margin: 0; }
.page-yorumlar .testimonial-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 16px; border-top: 1px solid var(--border-color); }
.page-yorumlar .testimonial-info h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.page-yorumlar .testimonial-info span { font-size: 13px; color: var(--text-light); }
.page-yorumlar .testimonial-stars { color: var(--accent); font-size: 13px; display: flex; gap: 2px; flex-shrink: 0; }
.page-yorumlar .testimonial-stars .inactive { color: var(--border-color); }
.page-yorumlar .tc-pagination { display: flex; justify-content: center; gap: 6px; padding-top: 20px; }
.page-yorumlar .tc-pagination .tc-dot { width: 8px; height: 8px; background: var(--border-color); opacity: 1; border-radius: 50%; transition: all var(--transition); cursor: pointer; border: none; padding: 0; }
.page-yorumlar .tc-pagination .tc-dot.is-active { background: var(--primary); width: 28px; border-radius: 4px; }
@media (max-width: 768px) {
  .page-yorumlar .testimonials-section { padding: 60px 0; }
  .page-yorumlar .tc-track-outer { -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%); }
  .page-yorumlar .testimonial-card { flex-direction: column; gap: 16px; padding: 24px; }
  .page-yorumlar .testimonial-left { flex-direction: row; min-width: unset; }
  .page-yorumlar .testimonial-text { font-size: 15px; }
}
@media (max-width: 480px) {
  .page-yorumlar .tc-track-outer { -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%); }
  .page-yorumlar .testimonial-card { padding: 20px; }
  .page-yorumlar .testimonial-text { font-size: 14px; }
}

@media (max-width: 768px) {
  .page-referanslar .page-hero-content h1 { font-size: 32px; }
  .page-referanslar .page-hero-stats { gap: 24px; flex-wrap: wrap; }
  .page-referanslar .page-hero-stat + .page-hero-stat { padding-left: 0; }
  .page-referanslar .page-hero-stat + .page-hero-stat::before { display: none; }
  .page-referanslar .featured-gallery { width: 100%; }
  .page-referanslar .proj-slide img { height: 360px; }
  .page-referanslar .testimonial-card { padding: 28px 22px; gap: 18px; flex-direction: column; }
  .page-referanslar .testimonial-left { align-items: flex-start; }
  .page-referanslar .testimonial-footer { flex-direction: column; align-items: flex-start; }
  .page-referanslar .sectors-grid { grid-template-columns: 1fr; }
}

/* ===== PAGE SPECIFIC: ILETISIM ===== */
.page-iletisim .page-hero { position: relative; background: var(--primary-dark); padding: 40px 0 30px; overflow: hidden; }
.page-iletisim .page-hero-bg { position: absolute; inset: -30% 0; background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80"); background-size: cover; background-position: center; opacity: 0.07; z-index: 0; }
.page-iletisim .page-hero::before { content: ""; position: absolute; top: -50%; right: -15%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(232, 160, 35, 0.08) 0%, transparent 70%); z-index: 1; }
.page-iletisim .page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-iletisim .page-hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; font-size: 14px; }
.page-iletisim .page-hero-breadcrumb a { color: rgba(255, 255, 255, 0.55); }
.page-iletisim .page-hero-breadcrumb a:hover { color: var(--accent); }
.page-iletisim .page-hero-breadcrumb i { color: rgba(255, 255, 255, 0.3); font-size: 10px; }
.page-iletisim .page-hero-breadcrumb span { color: var(--accent); font-weight: 600; }
.page-iletisim .page-hero-content h1 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.page-iletisim .page-hero-content h1 em { font-style: normal; color: var(--accent); }
.page-iletisim .page-hero-content p { font-size: 17px; color: rgba(255, 255, 255, 0.55); max-width: 520px; margin: 0 auto; line-height: 1.8; }

.page-iletisim .contact-cards-section { margin-top: 20px; position: relative; z-index: 10; padding-bottom: 30px; }
.page-iletisim .contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.page-iletisim .contact-card { background: var(--bg-white); border: 1px solid var(--border-color); border-radius: 16px; padding: 32px 24px; text-align: center; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); position: relative; overflow: hidden; }
.page-iletisim .contact-card::after { content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 0; height: 3px; background: var(--accent); transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.page-iletisim .contact-card:hover::after { width: 50px; }
.page-iletisim .contact-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(15, 40, 71, 0.08); border-color: rgba(26, 60, 110, 0.12); }
.page-iletisim .contact-card-icon { width: 58px; height: 58px; border-radius: 50%; background: rgba(26, 60, 110, 0.06); border: 1px solid rgba(26, 60, 110, 0.08); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--primary); margin: 0 auto 16px; transition: all 0.4s ease; }
.page-iletisim .contact-card:hover .contact-card-icon { background: var(--primary); border-color: var(--primary); color: #fff; transform: scale(1.08); }
.page-iletisim .contact-card h4 { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.page-iletisim .contact-card p { font-size: 14px; color: var(--text-medium); line-height: 1.6; }
.page-iletisim .contact-card a { color: var(--primary); font-weight: 600; }
.page-iletisim .contact-card a:hover { color: var(--accent); }

.page-iletisim .contact-section { padding: 80px 0 100px; }
.page-iletisim .contact-wrapper { display: flex; gap: 40px; align-items: flex-start; }
.page-iletisim .contact-form-wrap, .page-iletisim .contact-map-wrap { flex: 1; min-width: 0; }
.page-iletisim .contact-form-wrap .label { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 12px; }
.page-iletisim .contact-form-wrap h2 { font-size: 32px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.page-iletisim .contact-form-wrap > p { font-size: 15px; color: var(--text-medium); margin-bottom: 32px; line-height: 1.7; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .form-row { display: flex; gap: 18px; }
.contact-form .form-group { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.contact-form .form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.contact-form .form-group input, .contact-form .form-group textarea { width: 100%; padding: 14px 18px; border: 1px solid var(--border-color); border-radius: 10px; font-size: 14px; outline: none; font-family: inherit; }
.contact-form .form-group input:focus, .contact-form .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.08); }
.contact-form .form-group textarea { resize: vertical; min-height: 140px; }
.contact-form .form-submit { align-self: flex-start; margin-top: 6px; }

/* Captcha fake_error tooltip: sola hizalı */
.contact-form .g-recaptcha .fake_error { left: 0 !important; transform: translate(0, 15px) !important; }
.contact-form .g-recaptcha .fake_error::before { left: 30px !important; }

/* Sidebar form widget */
.sidebar-form-widget { padding: 22px 18px; }
.sidebar-form-widget h4 { margin-bottom: 6px; }
.sidebar-form-widget .sidebar-form-intro { font-size: 14px; color: var(--text-medium); margin-bottom: 18px; line-height: 1.6; }
.sidebar-contact-form { gap: 14px; }
.sidebar-contact-form .form-group input,
.sidebar-contact-form .form-group textarea { padding: 11px 14px; font-size: 13.5px; }
.sidebar-contact-form .form-group textarea { min-height: 100px; }
.sidebar-contact-form .g-recaptcha { transform-origin: left top; }
.sidebar-contact-form .form-submit { align-self: stretch; }
.sidebar-contact-form .form-submit .btn-primary { width: 100%; justify-content: center; }

.page-iletisim .contact-map { width: 100%; height: 480px; border-radius: 16px; overflow: hidden; border: 1px solid var(--border-color); }
.page-iletisim .contact-map iframe { width: 100%; height: 100%; border: none; }
.page-iletisim .contact-map-info { margin-top: 20px; padding: 24px; border-radius: 14px; background: var(--bg-light); border: 1px solid var(--border-color); display: flex; align-items: center; gap: 16px; }
.page-iletisim .contact-map-info-icon { width: 44px; height: 44px; min-width: 44px; border-radius: 12px; background: var(--primary); display: flex; align-items: center; justify-content: center; color: #fff; }
.page-iletisim .contact-map-info-text strong { display: block; font-size: 14px; color: var(--text-dark); margin-bottom: 2px; }
.page-iletisim .contact-map-info-text span { font-size: 13px; color: var(--text-light); }

.page-iletisim .faq-section { padding: 90px 0; background: var(--bg-light); }
.page-iletisim .faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.page-iletisim .faq-item { border: 1px solid var(--border-color); border-radius: 12px; background: var(--bg-white); overflow: hidden; transition: all 0.4s ease; }
.page-iletisim .faq-item.active { border-color: rgba(26, 60, 110, 0.15); box-shadow: 0 6px 24px rgba(15, 40, 71, 0.05); }
.page-iletisim .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; background: none; border: none; width: 100%; font-size: 15px; font-weight: 600; color: var(--text-dark); cursor: pointer; text-align: left; gap: 16px; }
.page-iletisim .faq-item.active .faq-question { color: var(--primary); }
.page-iletisim .faq-question i { font-size: 14px; color: var(--accent); transition: transform 0.4s ease; }
.page-iletisim .faq-item.active .faq-question i { transform: rotate(180deg); }
.page-iletisim .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.page-iletisim .faq-answer-inner { padding: 0 24px 20px; font-size: 14px; color: var(--text-medium); line-height: 1.8; }

@media (max-width: 1024px) {
  .page-iletisim .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .page-iletisim .contact-wrapper { flex-direction: column; }
  .page-iletisim .contact-map { height: 360px; }
}

@media (max-width: 768px) {
  .page-iletisim .page-hero { padding: 70px 0 80px; }
  .page-iletisim .page-hero-content h1 { font-size: 32px; }
  .page-iletisim .contact-cards { grid-template-columns: 1fr; }
  .page-iletisim .contact-cards-section { margin-top: 16px; }
  .page-iletisim .contact-section { padding: 50px 0 60px; }
  .page-iletisim .form-row { flex-direction: column; }
  .page-iletisim .contact-map { height: 300px; }
  .page-iletisim .faq-section { padding: 60px 0; }
}

/* ===== CMS FLY ALERT ===== */
.contact-form button[type="submit"]:disabled { opacity: 0.6; cursor: not-allowed; pointer-events: none; filter: grayscale(0.3); }
@media (max-width: 480px) { .cms_fly-alert { bottom: 16px; right: 16px; } }

/* ===== PAGE SPECIFIC: SIRKET PROFILI (1-1 from mockup) ===== */
.page-sirket-profili .page-hero { position: relative; background: var(--primary-dark); padding: 40px 0 30px; overflow: hidden; }
.page-sirket-profili .page-hero-bg { position: absolute; inset: -30% 0; background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80"); background-size: cover; background-position: center; opacity: 0.07; z-index: 0; }
.page-sirket-profili .page-hero::before { content: ""; position: absolute; top: -50%; right: -15%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(232,160,35,0.08) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.page-sirket-profili .page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-sirket-profili .page-hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; font-size: 14px; }
.page-sirket-profili .page-hero-breadcrumb a { color: rgba(255,255,255,0.55); }
.page-sirket-profili .page-hero-breadcrumb a:hover { color: var(--accent); }
.page-sirket-profili .page-hero-breadcrumb i { color: rgba(255,255,255,0.3); font-size: 10px; }
.page-sirket-profili .page-hero-breadcrumb span { color: var(--accent); font-weight: 600; }
.page-sirket-profili .page-hero-content h1 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.page-sirket-profili .page-hero-content h1 em { font-style: normal; color: var(--accent); }
.page-sirket-profili .page-hero-content p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; line-height: 1.8; }
.page-sirket-profili .page-hero-stats { position: relative; z-index: 2; display: flex; justify-content: center; gap: 48px; margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.page-sirket-profili .page-hero-stat { text-align: center; }
.page-sirket-profili .page-hero-stat strong { display: block; font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.page-sirket-profili .page-hero-stat span { font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }

.page-sirket-profili .story-section { padding: 112px 0; overflow: hidden; }
.page-sirket-profili .story-editorial { display: flex; gap: 80px; align-items: center; }
.page-sirket-profili .story-visual { flex: 0 0 520px; position: relative; }
.page-sirket-profili .story-img-main { border-radius: 20px; overflow: hidden; box-shadow: 0 32px 80px rgba(15,40,71,0.15); width: 100%; }
.page-sirket-profili .story-img-float { position: absolute; bottom: -32px; right: -40px; width: 220px; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(15,40,71,0.18); border: 4px solid #fff; }
.page-sirket-profili .story-text {
  flex: 1;
  min-width: 0;
  position: relative;
  padding-bottom: 72px;
}
.page-sirket-profili .wm-since {
  position: absolute;
  bottom: 20px;
  right: -20px;
  font-size: 52px;
  font-weight: 900;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 8px;
  line-height: 1;
  opacity: 0.06;
  transform: rotate(-12deg);
  transform-origin: bottom right;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.page-sirket-profili .story-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 16px; }
.page-sirket-profili .story-text h2 { font-size: 38px; font-weight: 800; color: var(--primary-dark); line-height: 1.2; margin-bottom: 20px; }
.page-sirket-profili .story-text h2 em { font-style: normal; color: var(--accent); }
.page-sirket-profili .story-lead { font-size: 17px; color: var(--primary-dark); line-height: 1.7; margin-bottom: 16px; font-weight: 500; }
.page-sirket-profili .story-text p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.page-sirket-profili .story-signatures { display: flex; flex-direction: column; gap: 12px; }
.page-sirket-profili .story-sig { display: flex; align-items: center; gap: 12px; }
.page-sirket-profili .story-sig-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(232,160,35,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 14px; flex-shrink: 0; }
.page-sirket-profili .story-sig-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--primary-dark); }
.page-sirket-profili .story-sig-text span { font-size: 12px; color: var(--text-light); }

.page-sirket-profili .video-section { padding: 96px 0; background: var(--bg-light); }
.page-sirket-profili .video-wrapper { position: relative; border-radius: 20px; overflow: hidden; cursor: pointer; }
.page-sirket-profili .video-wrapper img { width: 100%; height: 500px; object-fit: cover; display: block; transition: transform 0.5s ease; }
.page-sirket-profili .video-wrapper:hover img { transform: scale(1.03); }
.page-sirket-profili .video-overlay { position: absolute; inset: 0; background: rgba(10,22,50,0.45); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; transition: background 0.3s ease; }
.page-sirket-profili .video-wrapper:hover .video-overlay { background: rgba(10,22,50,0.55); }
.page-sirket-profili .video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(232,160,35,0.5);
  transition: transform 0.3s ease;
  animation: videoPulse 2s infinite;
  cursor: pointer;
}
.page-sirket-profili .video-wrapper:hover .video-play-btn { transform: scale(1.15); animation: none; box-shadow: 0 12px 40px rgba(232,160,35,0.6); }
.page-sirket-profili .video-play-btn i { margin-left: 4px; }
.page-sirket-profili .video-caption { position: absolute; bottom: 24px; left: 0; right: 0; text-align: center; font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; z-index: 2; }
.page-sirket-profili .video-side-text { display: none; }
.page-sirket-profili .video-side-text h4 { font-size: 34px; font-weight: 800; color: var(--primary-dark); margin: 12px 0 16px; line-height: 1.2; }
.page-sirket-profili .video-side-text p { font-size: 15px; color: var(--text-light); line-height: 1.8; }
.page-sirket-profili .video-modal { position: fixed; inset: 0; background: rgba(0,0,0,0); z-index: 9999; display: flex; align-items: center; justify-content: center; pointer-events: none; visibility: hidden; transition: background 0.4s ease, visibility 0s 0.4s; }
.page-sirket-profili .video-modal.open { background: rgba(0,0,0,0.92); pointer-events: auto; visibility: visible; transition: background 0.4s ease, visibility 0s 0s; }
.page-sirket-profili .video-modal-content { position: relative; width: 90%; max-width: 900px; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; transform: scale(0.85) translateY(30px); opacity: 0; transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease; }
.page-sirket-profili .video-modal.open .video-modal-content { transform: scale(1) translateY(0); opacity: 1; }
.page-sirket-profili .video-modal-content iframe { width: 100%; height: 100%; border: none; }
.page-sirket-profili .video-modal-close { position: fixed; top: 24px; right: 24px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10000; transition: all 0.25s ease; backdrop-filter: blur(8px); }
.page-sirket-profili .video-modal-close:hover { background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }

@keyframes videoPulse {
  0% { box-shadow: 0 0 0 0 rgba(232,160,35,0.5); }
  70% { box-shadow: 0 0 0 20px rgba(232,160,35,0); }
  100% { box-shadow: 0 0 0 0 rgba(232,160,35,0); }
}

.page-sirket-profili .values-section { padding: 96px 0; }
.page-sirket-profili .values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 56px; }
.page-sirket-profili .value-card { padding: 32px 28px 32px 36px; border-radius: 16px; border: 1px solid var(--border-color); border-left: 4px solid var(--accent); background: #fff; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; align-items: flex-start; gap: 20px; position: relative; overflow: hidden; }
.page-sirket-profili .value-card::after { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 100%; background: linear-gradient(135deg, rgba(232,160,35,0.04) 0%, transparent 70%); transition: width 0.5s ease; }
.page-sirket-profili .value-card:hover::after { width: 100%; }
.page-sirket-profili .value-card:hover { border-left-color: var(--primary); box-shadow: 0 16px 48px rgba(15,40,71,0.1); transform: translateY(-6px) translateX(4px); }
.page-sirket-profili .value-icon { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), #f0b429); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; flex-shrink: 0; position: relative; z-index: 1; box-shadow: 0 6px 20px rgba(232,160,35,0.3); }
.page-sirket-profili .value-card:hover .value-icon { transform: rotate(10deg) scale(1.05); transition: transform 0.4s ease; }
.page-sirket-profili .value-card-text { position: relative; z-index: 1; }
.page-sirket-profili .value-card h4 { font-size: 17px; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.page-sirket-profili .value-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; margin: 0; }

.page-sirket-profili .counter-section { padding: 70px 0; background: var(--primary-dark); }
.page-sirket-profili .counter-grid { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px; }
.page-sirket-profili .counter-item .counter-number { font-size: 48px; font-weight: 800; color: var(--accent); display: block; }
.page-sirket-profili .counter-item .counter-label { color: rgba(255,255,255,0.75); }

@media (max-width: 992px) {
  .page-sirket-profili .story-editorial { flex-direction: column; gap: 48px; }
  .page-sirket-profili .story-visual { flex: none; width: 100%; }
  .page-sirket-profili .story-img-float { right: 0; }
  .page-sirket-profili .values-grid { grid-template-columns: 1fr; }
  .page-sirket-profili .page-hero-stats { gap: 24px; }
}

@media (max-width: 600px) {
  .page-sirket-profili .page-hero-content h1 { font-size: 32px; }
  .page-sirket-profili .page-hero-stats { flex-wrap: wrap; gap: 20px; }
  .page-sirket-profili .page-hero-stat { flex: 1 1 40%; }
  .page-sirket-profili .values-grid { grid-template-columns: 1fr; }
  .page-sirket-profili .story-img-float { display: none; }
}

/* ===== PAGE SPECIFIC: NEDEN BIZ ===== */
.page-neden-biz .page-hero { position: relative; background: var(--primary-dark); padding: 40px 0 30px; overflow: hidden; }
.page-neden-biz .page-hero-bg { position: absolute; inset: -30% 0; background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80"); background-size: cover; background-position: center; opacity: 0.07; z-index: 0; }
.page-neden-biz .page-hero::before { content: ""; position: absolute; top: -50%; right: -15%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(232,160,35,0.08) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.page-neden-biz .page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-neden-biz .page-hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; font-size: 14px; }
.page-neden-biz .page-hero-breadcrumb a { color: rgba(255,255,255,0.55); }
.page-neden-biz .page-hero-breadcrumb a:hover { color: var(--accent); }
.page-neden-biz .page-hero-breadcrumb i { color: rgba(255,255,255,0.3); font-size: 10px; }
.page-neden-biz .page-hero-breadcrumb span { color: var(--accent); font-weight: 600; }
.page-neden-biz .page-hero-content h1 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.page-neden-biz .page-hero-content h1 em { font-style: normal; color: var(--accent); }
.page-neden-biz .page-hero-content p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; line-height: 1.8; }
.page-neden-biz .big-numbers { padding: 80px 0; background: var(--bg-light); }
.page-neden-biz .numbers-grid { display: flex; justify-content: center; }
.page-neden-biz .number-item { flex: 1; text-align: center; padding: 40px 32px; border-right: 1px solid var(--border-color); }
.page-neden-biz .number-item:last-child { border-right: none; }
.page-neden-biz .number-value { display: flex; align-items: baseline; justify-content: center; gap: 4px; margin-bottom: 10px; }
.page-neden-biz .counter-num { font-size: 56px; font-weight: 800; color: var(--accent); line-height: 1; }
.page-neden-biz .number-suffix { font-size: 32px; font-weight: 700; color: var(--accent); }
.page-neden-biz .number-label { font-size: 15px; font-weight: 600; color: var(--primary-dark); margin-bottom: 8px; }
.page-neden-biz .number-desc { font-size: 13px; color: var(--text-light); line-height: 1.5; max-width: 180px; margin: 0 auto; }
.page-neden-biz .advantages-section { padding: 96px 0; }
.page-neden-biz .advantages-wrapper { display: flex; gap: 80px; align-items: flex-start; }
.page-neden-biz .advantages-left { flex: 0 0 300px; position: sticky; top: 100px; }
.page-neden-biz .advantages-left .section-label { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px; }
.page-neden-biz .advantages-left .section-label::before { content: ""; width: 30px; height: 2px; background: var(--accent); }
.page-neden-biz .advantages-left h2 { font-size: 32px; font-weight: 800; color: var(--primary-dark); margin: 0 0 16px; line-height: 1.2; }
.page-neden-biz .advantages-left h2 em { font-style: normal; color: var(--accent); }
.page-neden-biz .advantages-left p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 28px; }
.page-neden-biz .advantages-right { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.page-neden-biz .adv-card { display: flex; gap: 20px; align-items: flex-start; padding: 24px 28px; border-radius: 14px; border: 1px solid var(--border-color); background: var(--bg-white); transition: all 0.3s ease; }
.page-neden-biz .adv-card:hover { border-color: var(--accent); box-shadow: 0 8px 32px rgba(15,40,71,0.08); transform: translateX(6px); }
.page-neden-biz .adv-num { font-size: 28px; font-weight: 800; color: var(--accent); opacity: 0.35; line-height: 1; flex-shrink: 0; width: 48px; transition: opacity 0.3s; }
.page-neden-biz .adv-card:hover .adv-num { opacity: 1; }
.page-neden-biz .adv-content h4 { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 6px; }
.page-neden-biz .adv-content p { font-size: 14px; color: var(--text-light); line-height: 1.6; margin: 0; }
.page-neden-biz .process-section { padding: 96px 0; background: var(--primary-dark); overflow: hidden; }
.page-neden-biz .process-section .section-title h2 { color: #fff; }
.page-neden-biz .process-section .section-title span { color: var(--accent); }
.page-neden-biz .process-section .section-title p { color: rgba(255,255,255,0.5); }
.page-neden-biz .process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.page-neden-biz .process-step { padding: 32px 24px; border-radius: 14px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); transition: all 0.3s ease; text-align: center; }
.page-neden-biz .process-step:hover { border-color: var(--accent); background: rgba(232,160,35,0.05); transform: translateY(-4px); }
.page-neden-biz .process-step-num { font-size: 42px; font-weight: 800; color: var(--accent); opacity: 0.25; line-height: 1; margin-bottom: 16px; transition: opacity 0.3s; }
.page-neden-biz .process-step:hover .process-step-num { opacity: 1; }
.page-neden-biz .process-icon { width: 52px; height: 52px; border-radius: 12px; background: rgba(232,160,35,0.12); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 20px; color: var(--accent); }
.page-neden-biz .process-step h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.page-neden-biz .process-step p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin: 0; }
@media (max-width: 992px) {
  .page-neden-biz .advantages-wrapper { flex-direction: column; gap: 48px; }
  .page-neden-biz .advantages-left { position: static; flex: none; width: 100%; }
  .page-neden-biz .process-grid { grid-template-columns: repeat(2, 1fr); }
  .page-neden-biz .numbers-grid { flex-wrap: wrap; }
  .page-neden-biz .number-item { flex: 1 1 40%; border-right: none; border-bottom: 1px solid var(--border-color); }
}
@media (max-width: 600px) {
  .page-neden-biz .process-grid { grid-template-columns: 1fr; }
  .page-neden-biz .page-hero-content h1 { font-size: 32px; }
  .page-neden-biz .counter-num { font-size: 40px; }
  .page-neden-biz .number-item { flex: 1 1 100%; }
}

/* ===== PAGE SPECIFIC: SERTIFIKALAR ===== */
.page-sertifikalar .page-hero { position: relative; background: var(--primary-dark); padding: 40px 0 30px; overflow: hidden; }
.page-sertifikalar .page-hero-bg { position: absolute; inset: -30% 0; background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&q=80"); background-size: cover; background-position: center; opacity: 0.08; z-index: 0; will-change: transform; }
.page-sertifikalar .page-hero::before { content: ""; position: absolute; top: -50%; right: -15%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(232,160,35,0.08) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.page-sertifikalar .page-hero::after { content: ""; position: absolute; bottom: -40%; left: -10%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(42,90,158,0.1) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.page-sertifikalar .page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-sertifikalar .page-hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; font-size: 14px; }
.page-sertifikalar .page-hero-breadcrumb a { color: rgba(255,255,255,0.55); }
.page-sertifikalar .page-hero-breadcrumb a:hover { color: var(--accent); }
.page-sertifikalar .page-hero-breadcrumb i { color: rgba(255,255,255,0.3); font-size: 10px; }
.page-sertifikalar .page-hero-breadcrumb span { color: var(--accent); font-weight: 600; }
.page-sertifikalar .page-hero-content h1 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 16px; letter-spacing: -0.5px; }
.page-sertifikalar .page-hero-content h1 em { font-style: normal; color: var(--accent); }
.page-sertifikalar .page-hero-content p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto; line-height: 1.8; }
.page-sertifikalar .cert-intro { padding: 60px 0 80px; }
.page-sertifikalar .cert-intro-text { max-width: 780px; margin: 0 auto; text-align: center; }
.page-sertifikalar .cert-intro-text h2 { font-size: 34px; font-weight: 800; color: var(--primary-dark); line-height: 1.25; margin-bottom: 20px; }
.page-sertifikalar .cert-intro-text h2 em { font-style: normal; color: var(--accent); }
.page-sertifikalar .cert-intro-text p { font-size: 15px; color: var(--text-medium); line-height: 1.85; margin-bottom: 14px; }
.page-sertifikalar .certificates-section { padding: 80px 0 100px; }
.page-sertifikalar .cert-grid { display: flex; flex-wrap: wrap; gap: 24px; }
.page-sertifikalar .cert-card { flex: 1 1 calc(33.333% - 16px); min-width: 280px; cursor: pointer; transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.page-sertifikalar .cert-card:hover { transform: translateY(-6px); }
.page-sertifikalar .cert-card-image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 14px; }
.page-sertifikalar .cert-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.page-sertifikalar .cert-card:hover .cert-card-image img { transform: scale(1.06); }
.page-sertifikalar .cert-card-zoom { position: absolute; inset: 0; background: rgba(15,40,71,0); display: flex; align-items: center; justify-content: center; transition: all 0.4s ease; }
.page-sertifikalar .cert-card-zoom i { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.9); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 16px; opacity: 0; transform: scale(0.7); transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.page-sertifikalar .cert-card:hover .cert-card-zoom { background: rgba(15,40,71,0.2); }
.page-sertifikalar .cert-card:hover .cert-card-zoom i { opacity: 1; transform: scale(1); }
.page-sertifikalar .cert-card-body { padding: 16px 4px 0; }
.page-sertifikalar .cert-card-body h3 { font-size: 16px; font-weight: 700; color: var(--primary-dark); transition: color var(--transition); }
.page-sertifikalar .cert-card:hover .cert-card-body h3 { color: var(--accent); }
.page-sertifikalar .cert-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 3000; align-items: center; justify-content: center; padding: 40px; cursor: zoom-out; }
.page-sertifikalar .cert-lightbox.active { display: flex; }
.page-sertifikalar .cert-lightbox-close { position: absolute; top: 25px; right: 30px; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; transition: transform var(--transition); z-index: 3001; }
.page-sertifikalar .cert-lightbox-close:hover { transform: rotate(90deg); }
.page-sertifikalar .cert-lightbox-content { max-width: 700px; max-height: 85vh; animation: lbIn 0.4s ease; }
.page-sertifikalar .cert-lightbox-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.page-sertifikalar .cert-lightbox-info { text-align: center; margin-top: 18px; color: #fff; }
.page-sertifikalar .cert-lightbox-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.page-sertifikalar .cert-lightbox-info p { font-size: 14px; color: rgba(255,255,255,0.5); }
.page-sertifikalar .cert-lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: #fff; font-size: 18px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition); z-index: 3002; }
.page-sertifikalar .cert-lightbox-nav:hover { background: var(--accent); border-color: var(--accent); }
.page-sertifikalar .cert-lightbox-prev { left: 20px; }
.page-sertifikalar .cert-lightbox-next { right: 20px; }

@media (max-width: 1024px) {
  .page-sertifikalar .page-hero-content h1 { font-size: 40px; }
  .page-sertifikalar .cert-card { flex: 1 1 calc(50% - 12px); }
}
@media (max-width: 768px) {
  .page-sertifikalar .page-hero { padding: 28px 0 24px; }
  .page-sertifikalar .page-hero-content h1 { font-size: 32px; }
  .page-sertifikalar .page-hero-content p { font-size: 15px; }
  .page-sertifikalar .cert-intro { padding: 40px 0 60px; }
  .page-sertifikalar .cert-intro-text h2 { font-size: 28px; }
  .page-sertifikalar .certificates-section { padding: 60px 0 70px; }
  .page-sertifikalar .cert-card { flex: 1 1 100%; }
  .page-sertifikalar .cert-card-image { height: 200px; }
  .page-sertifikalar .cert-lightbox-nav { width: 40px; height: 40px; font-size: 14px; }
  .page-sertifikalar .cert-lightbox-prev { left: 10px; }
  .page-sertifikalar .cert-lightbox-next { right: 10px; }
}
@media (max-width: 480px) {
  .page-sertifikalar .page-hero-content h1 { font-size: 26px; }
  .page-sertifikalar .cert-lightbox { padding: 20px; }
  .page-sertifikalar .cert-card-image { height: 180px; padding: 20px; }
}

/* ===== PAGE SPECIFIC: HIZMETLER ===== */
.page-hizmetler .page-hero { position: relative; background: var(--primary-dark); padding: 40px 0 30px; overflow: hidden; }
.page-hizmetler .page-hero-bg { position: absolute; inset: -30% 0; background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80"); background-size: cover; background-position: center; opacity: 0.07; z-index: 0; will-change: transform; }
.page-hizmetler .page-hero::before { content: ""; position: absolute; top: -50%; right: -15%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(232, 160, 35, 0.08) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.page-hizmetler .page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hizmetler .page-hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; font-size: 14px; }
.page-hizmetler .page-hero-breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hizmetler .page-hero-breadcrumb a:hover { color: var(--accent); }
.page-hizmetler .page-hero-breadcrumb i { color: rgba(255,255,255,0.3); font-size: 10px; }
.page-hizmetler .page-hero-breadcrumb span { color: var(--accent); font-weight: 600; }
.page-hizmetler .page-hero-content h1 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.page-hizmetler .page-hero-content h1 em { font-style: normal; color: var(--accent); }
.page-hizmetler .page-hero-content p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; line-height: 1.8; }
.page-hizmetler .page-hero-stats { position: relative; z-index: 2; display: flex; justify-content: center; gap: 48px; margin-top: 52px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.page-hizmetler .page-hero-stat { text-align: center; }
.page-hizmetler .page-hero-stat strong { display: block; font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.page-hizmetler .page-hero-stat span { font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.page-hizmetler .services-section { padding: 96px 0; }
.page-hizmetler .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.page-hizmetler .service-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; display: block; text-decoration: none; cursor: pointer; }
.page-hizmetler .service-card-backdrop { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); z-index: 0; }
.page-hizmetler .service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10, 22, 50, 0.92) 0%, rgba(10, 22, 50, 0.3) 55%, transparent 100%); z-index: 1; transition: background 0.4s ease; }
.page-hizmetler .service-card:hover .service-card-backdrop { transform: scale(1.07); }
.page-hizmetler .service-card:hover::after { background: linear-gradient(to top, rgba(10, 22, 50, 0.96) 0%, rgba(10, 22, 50, 0.55) 60%, rgba(10, 22, 50, 0.15) 100%); }
.page-hizmetler .service-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; z-index: 2; }
.page-hizmetler .service-card-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 18px; color: #fff; }
.page-hizmetler .service-card-category { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 8px; }
.page-hizmetler .service-card-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 0; transition: margin-bottom 0.3s ease; }
.page-hizmetler .service-card-excerpt { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.78); margin: 10px 0 12px; }

/* Görselsiz sade kart (kategori + fotoğrafsız hizmet) */
.page-hizmetler .service-card--plain {
  aspect-ratio: auto;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.page-hizmetler .service-card--plain::after { content: none; }
.page-hizmetler .service-card--plain:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 40, 71, 0.08);
}
.page-hizmetler .service-card--plain .service-card-content {
  position: static;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-hizmetler .service-card--plain .service-card-title {
  color: var(--text-dark);
  margin: 0;
}
.page-hizmetler .service-card--plain .service-card-excerpt {
  color: var(--text-medium);
  margin: 4px 0 0;
}
.page-hizmetler .service-card--plain .service-card-icon {
  margin-bottom: 4px;
}
.page-hizmetler .service-card--plain:hover .service-card-title { margin-bottom: 0; }
.page-hizmetler .service-card-desc { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.page-hizmetler .service-card:hover .service-card-title { margin-bottom: 12px; }
.page-hizmetler .service-card:hover .service-card-desc { max-height: 120px; }
.page-hizmetler .service-card-desc p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 12px; }
.page-hizmetler .service-card-arrow { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--accent); }
.page-hizmet-detay-1 .page-hero,
.page-hizmet-detay-2 .page-hero { position: relative; background: var(--primary-dark); padding: 40px 0 30px; overflow: hidden; }
.page-hizmet-detay-1 .page-hero-bg { position: absolute; inset: -30% 0; background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80"); background-size: cover; background-position: center; opacity: 0.07; z-index: 0; }
.page-hizmet-detay-2 .page-hero-bg { position: absolute; inset: -30% 0; background-image: url("https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1600&q=80"); background-size: cover; background-position: center; opacity: 0.07; z-index: 0; will-change: transform; }
.page-hizmet-detay-1 .page-hero::before,
.page-hizmet-detay-2 .page-hero::before { content: ""; position: absolute; top: -50%; right: -15%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(232,160,35,0.08) 0%, transparent 70%); pointer-events: none; z-index: 1; }
.page-hizmet-detay-1 .page-hero-content,
.page-hizmet-detay-2 .page-hero-content { position: relative; z-index: 2; text-align: center; }
.page-hizmet-detay-1 .page-hero-breadcrumb,
.page-hizmet-detay-2 .page-hero-breadcrumb { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; font-size: 14px; }
.page-hizmet-detay-1 .page-hero-content h1,
.page-hizmet-detay-2 .page-hero-content h1 { font-size: 52px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.page-hizmet-detay-1 .page-hero-content p,
.page-hizmet-detay-2 .page-hero-content p { font-size: 17px; color: rgba(255,255,255,0.55); max-width: 520px; margin: 0 auto; line-height: 1.8; }
.page-hizmet-detay-1 .sd-intro,
.page-hizmet-detay-1 .sd-tabs,
.page-hizmet-detay-1 .sd-skills,
.page-hizmet-detay-1 .sd-related { padding: 96px 0; }
.page-hizmet-detay-1 .sd-tabs,
.page-hizmet-detay-1 .sd-related { background: var(--bg-light); }
.page-hizmet-detay-1 .sd-intro-grid,
.page-hizmet-detay-1 .sd-tab-panel.active,
.page-hizmet-detay-1 .sd-skills-grid { display: flex; gap: 64px; align-items: center; }
.page-hizmet-detay-1 .sd-intro-images { flex: 0 0 480px; }
.page-hizmet-detay-1 .sd-intro-row { display: grid; gap: 12px; }
.page-hizmet-detay-1 .sd-intro-row--1 { grid-template-columns: 1fr; }
.page-hizmet-detay-1 .sd-intro-row--1 .sd-intro-img-wrap { aspect-ratio: 4/3; }
.page-hizmet-detay-1 .sd-intro-row--2 { grid-template-columns: 1fr 1fr; }
.page-hizmet-detay-1 .sd-intro-row--2 .sd-intro-img-wrap { aspect-ratio: 3/4; }
.page-hizmet-detay-1 .sd-intro-row--3 { grid-template-columns: 1fr 1fr; }
.page-hizmet-detay-1 .sd-intro-row--3 .sd-intro-img-wrap { aspect-ratio: 1; }
.page-hizmet-detay-1 .sd-intro-row--3 .sd-intro-img-wrap:first-child { grid-column: 1 / -1; aspect-ratio: 16/7; }
.page-hizmet-detay-1 .sd-intro-row--4 { grid-template-columns: 1fr 1fr; }
.page-hizmet-detay-1 .sd-intro-row--4 .sd-intro-img-wrap { aspect-ratio: 1; }
.page-hizmet-detay-1 .sd-intro-img-wrap { border-radius: 12px; overflow: hidden; }
.page-hizmet-detay-1 .sd-intro-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.page-hizmet-detay-1 .sd-intro-img-wrap:hover img { transform: scale(1.06); }
/* hizmet-detay-1: Hizmet Detayı (sd-intro) — mockup hizmet-detay-1.html */
.page-hizmet-detay-1 .sd-intro-text { flex: 1; min-width: 0; }
.page-hizmet-detay-1 .sd-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-hizmet-detay-1 .sd-intro-text h2,
.page-hizmet-detay-1 .sd-skills-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-hizmet-detay-1 .sd-intro-text p,
.page-hizmet-detay-1 .sd-skills-content > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}
.page-hizmet-detay-1 .sd-skills-content { flex: 1; min-width: 0; }
.page-hizmet-detay-1 .sd-skills-grid { margin-top: 56px; }
.page-hizmet-detay-1 .sd-skill-bar { margin-bottom: 4px; }
.page-hizmet-detay-1 .sd-skill-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 6px;
}
.page-hizmet-detay-1 .sd-tabs-nav { display: flex; gap: 8px; margin: 48px 0 32px; flex-wrap: wrap; }
.page-hizmet-detay-1 .sd-tab-btn { display: flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 50px; border: 1.5px solid var(--border-color); background: #fff; font-size: 14px; font-weight: 600; color: var(--text-light); cursor: pointer; transition: all 0.25s ease; font-family: inherit; }
.page-hizmet-detay-1 .sd-tab-btn:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: #fff; }
.page-hizmet-detay-1 .sd-tab-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
@keyframes sdTabFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-hizmet-detay-1 .sd-tab-panel { display: none; gap: 64px; align-items: center; }
.page-hizmet-detay-1 .sd-tab-panel.active {
  animation: sdTabFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.page-hizmet-detay-1 .sd-tab-content { flex: 1; }
.page-hizmet-detay-1 .sd-tab-img { flex: 0 0 420px; align-self: stretch; border-radius: 16px; overflow: hidden; box-shadow: 0 24px 64px rgba(15,40,71,0.12); }
.page-hizmet-detay-1 .sd-tab-img img { width: 100%; height: 100%; object-fit: cover; }
.page-hizmet-detay-1 .sd-skill-bars { display: flex; flex-direction: column; gap: 16px; }
.page-hizmet-detay-1 .sd-skill-bar-track { height: 6px; border-radius: 3px; background: var(--bg-light); overflow: hidden; }
.page-hizmet-detay-1 .sd-skill-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--accent), #f0b429); width: 0; transition: width 1s ease; }
.page-hizmet-detay-1 .sd-parallax { position: relative; padding: 96px 0; overflow: hidden; }
.page-hizmet-detay-1 .sd-parallax-bg { position: absolute; inset: -30% 0; background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1600&q=80"); background-size: cover; background-position: center; z-index: 0; }
.page-hizmet-detay-1 .sd-parallax::after { content: ""; position: absolute; inset: 0; background: rgba(10,22,50,0.88); z-index: 1; }
.page-hizmet-detay-1 .sd-parallax-content { position: relative; z-index: 2; text-align: center; }
.page-hizmet-detay-1 .sd-parallax-content h2 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.page-hizmet-detay-1 .sd-parallax-content h2 em { font-style: normal; color: var(--accent); }
.page-hizmet-detay-1 .sd-parallax-content > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 56px;
}
.page-hizmet-detay-1 .sd-counter-row { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.page-hizmet-detay-1 .sd-counter-item { text-align: center; }
.page-hizmet-detay-1 .sd-counter-num { display: block; font-size: 54px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.page-hizmet-detay-1 .sd-counter-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}
.page-hizmet-detay-1 .sd-related-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.page-hizmet-detay-1 .sd-related-card { padding: 28px; border-radius: 14px; border: 1px solid var(--border-color); background: #fff; display: flex; flex-direction: column; gap: 14px; transition: all 0.3s ease; }
.page-hizmet-detay-1 .sd-related-card:hover { border-color: var(--accent); box-shadow: 0 12px 32px rgba(15,40,71,0.08); transform: translateY(-4px); }
@keyframes sd2Card1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  25% { transform: rotate(-1deg) translateY(-12px); }
  50% { transform: rotate(-4deg) translateY(6px); }
  75% { transform: rotate(-2deg) translateY(-8px); }
}
@keyframes sd2Card2 {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  25% { transform: rotate(3deg) translateY(10px); }
  50% { transform: rotate(6deg) translateY(-8px); }
  75% { transform: rotate(4deg) translateY(5px); }
}
@keyframes sd2Card3 {
  0%, 100% { transform: rotate(-2deg) translate(0, 0); }
  25% { transform: rotate(0deg) translate(8px, -10px); }
  50% { transform: rotate(-3deg) translate(-5px, 6px); }
  75% { transform: rotate(-1deg) translate(4px, -6px); }
}
@keyframes sd2ArrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
.page-hizmet-detay-2 .sd2-about,
.page-hizmet-detay-2 .sd2-services,
.page-hizmet-detay-2 .sd2-accordion-section,
.page-hizmet-detay-2 .sd2-timeline {
  padding: 100px 0;
}
.page-hizmet-detay-2 .sd2-related {
  padding: 90px 0;
  margin-bottom: 80px;
  background: var(--primary-dark);
  overflow: hidden;
}
.page-hizmet-detay-2 .sd2-about {
  overflow: hidden;
}
.page-hizmet-detay-2 .sd2-about-grid {
  display: flex;
  gap: 70px;
  align-items: center;
}
.page-hizmet-detay-2 .sd2-acc-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-top: 10px;
}
.page-hizmet-detay-2 .sd2-about-visual {
  width: 480px;
  min-width: 480px;
  height: 440px;
  position: relative;
  perspective: 1000px;
}
.page-hizmet-detay-2 .sd2-about-card {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}
.page-hizmet-detay-2 .sd2-about-card-inner {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  transition: filter 0.6s ease, box-shadow 0.6s ease,
    transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-hizmet-detay-2 .sd2-about-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hizmet-detay-2 .sd2-about-card:nth-child(1) {
  width: 300px;
  height: 360px;
  top: 40px;
  left: 0;
  z-index: 3;
  animation: sd2Card1 8s ease-in-out infinite;
}
.page-hizmet-detay-2 .sd2-about-card:nth-child(2) {
  width: 240px;
  height: 300px;
  top: 10px;
  right: 20px;
  z-index: 2;
  animation: sd2Card2 8s ease-in-out infinite 0.5s;
}
.page-hizmet-detay-2 .sd2-about-card:nth-child(3) {
  width: 180px;
  height: 220px;
  bottom: 0;
  right: 80px;
  z-index: 4;
  animation: sd2Card3 8s ease-in-out infinite 1s;
}
.page-hizmet-detay-2 .sd2-about-visual:hover .sd2-about-card {
  animation-play-state: paused;
}
.page-hizmet-detay-2 .sd2-about-visual:hover .sd2-about-card:not(:hover) .sd2-about-card-inner {
  filter: brightness(0.5);
  transform: scale(0.9);
}
.page-hizmet-detay-2 .sd2-about-card:hover {
  z-index: 10 !important;
}
.page-hizmet-detay-2 .sd2-about-card:hover .sd2-about-card-inner {
  transform: scale(1.1) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  filter: brightness(1);
}
.page-hizmet-detay-2 .sd2-about-text {
  flex: 1;
  min-width: 0;
}
.page-hizmet-detay-2 .sd2-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}
.page-hizmet-detay-2 .sd2-about-text h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
  margin-bottom: 20px;
}
.page-hizmet-detay-2 .sd2-about-text p {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 16px;
}
.page-hizmet-detay-2 .sd2-about-text .btn-primary {
  margin-top: 16px;
}
.page-hizmet-detay-2 .sd2-services {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}
.page-hizmet-detay-2 .sd2-services::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 160, 35, 0.06) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}
.page-hizmet-detay-2 .sd2-services .section-title span {
  color: rgba(255, 255, 255, 0.5);
}
.page-hizmet-detay-2 .sd2-services .section-title h2 {
  color: #fff;
}
.page-hizmet-detay-2 .sd2-services .section-title p {
  color: rgba(255, 255, 255, 0.45);
}
.page-hizmet-detay-2 .sd2-services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  justify-content: center;
}
.page-hizmet-detay-2 .sd2-service-card {
  flex: 1 1 calc(20% - 12px);
  min-width: 200px;
  padding: 30px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 260px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: blur(0px) brightness(1);
  color: #fff;
}
.page-hizmet-detay-2 .sd2-service-card:hover ~ .sd2-service-card,
.page-hizmet-detay-2 .sd2-service-card:has(~ .sd2-service-card:hover) {
  filter: blur(3px) brightness(0.6);
  transform: scale(0.96);
}
.page-hizmet-detay-2 .sd2-service-card:hover {
  filter: blur(0px) brightness(1);
  transform: scale(1.06);
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.page-hizmet-detay-2 .sd2-service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-hizmet-detay-2 .sd2-service-card:hover::after {
  transform: scaleX(1);
}
.page-hizmet-detay-2 .sd2-service-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(232, 160, 35, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}
.page-hizmet-detay-2 .sd2-service-card:hover .sd2-service-icon {
  background: var(--accent);
  color: #fff;
}
.page-hizmet-detay-2 .sd2-service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.page-hizmet-detay-2 .sd2-service-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
}
.page-hizmet-detay-2 .sd2-acc-left {
  flex: 1;
  min-width: 0;
}
.page-hizmet-detay-2 .sd2-acc-right {
  width: 480px;
  min-width: 480px;
  border-radius: 18px;
  overflow: hidden;
  height: 440px;
}
.page-hizmet-detay-2 .sd2-acc-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
  display: block;
}
.page-hizmet-detay-2 .sd2-acc-right:hover img {
  transform: scale(1.1);
}
.page-hizmet-detay-2 .sd2-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-hizmet-detay-2 .sd2-acc-item {
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}
.page-hizmet-detay-2 .sd2-acc-item:first-child {
  border-top: 1px solid var(--border-color);
}
.page-hizmet-detay-2 .sd2-acc-header {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: all var(--transition);
}
.page-hizmet-detay-2 .sd2-acc-header:hover {
  padding-left: 8px;
}
.page-hizmet-detay-2 .sd2-acc-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.page-hizmet-detay-2 .sd2-acc-header-num {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
  width: 32px;
  min-width: 32px;
}
.page-hizmet-detay-2 .sd2-acc-header-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-dark);
  transition: color var(--transition);
}
.page-hizmet-detay-2 .sd2-acc-item.active .sd2-acc-header-text {
  color: var(--primary);
}
.page-hizmet-detay-2 .sd2-acc-arrow {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-light);
  transition: all 0.3s ease;
}
.page-hizmet-detay-2 .sd2-acc-item.active .sd2-acc-arrow {
  background: var(--primary);
  color: #fff;
  transform: rotate(180deg);
}
.page-hizmet-detay-2 .sd2-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.page-hizmet-detay-2 .sd2-acc-body-inner {
  padding: 0 0 22px 46px;
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
}
.page-hizmet-detay-2 .sd2-stats {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.page-hizmet-detay-2 .sd2-stats-bg {
  position: absolute;
  inset: -50% 0;
  background-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}
.page-hizmet-detay-2 .sd2-stats::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 40, 71, 0.88);
  z-index: 1;
}
.page-hizmet-detay-2 .sd2-stats-grid {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
}
.page-hizmet-detay-2 .sd2-stat {
  text-align: center;
  flex: 1;
  padding: 0 20px;
  position: relative;
}
.page-hizmet-detay-2 .sd2-stat::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.page-hizmet-detay-2 .sd2-stat:last-child::after {
  display: none;
}
.page-hizmet-detay-2 .sd2-stat-icon {
  font-size: 24px;
  color: var(--accent);
  margin-bottom: 14px;
}
.page-hizmet-detay-2 .sd2-stat-num {
  display: block;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.page-hizmet-detay-2 .sd2-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}
.page-hizmet-detay-2 .sd2-timeline {
  background: var(--bg-light);
}
.page-hizmet-detay-2 .sd2-timeline-wrap {
  position: relative;
  margin-top: 10px;
  padding: 20px 0;
}
.page-hizmet-detay-2 .sd2-timeline-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}
.page-hizmet-detay-2 .sd2-tl-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.page-hizmet-detay-2 .sd2-tl-item:last-child {
  margin-bottom: 0;
}
.page-hizmet-detay-2 .sd2-tl-item:nth-child(odd) {
  flex-direction: row;
}
.page-hizmet-detay-2 .sd2-tl-item:nth-child(even) {
  flex-direction: row-reverse;
}
.page-hizmet-detay-2 .sd2-tl-content {
  width: calc(50% - 40px);
  padding: 28px;
  border-radius: 14px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}
.page-hizmet-detay-2 .sd2-tl-content:hover {
  border-color: rgba(26, 60, 110, 0.15);
  box-shadow: 0 12px 40px rgba(26, 60, 110, 0.06);
  transform: translateY(-3px);
}
.page-hizmet-detay-2 .sd2-tl-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hizmet-detay-2 .sd2-tl-content h3 i {
  color: var(--accent);
  font-size: 16px;
}
.page-hizmet-detay-2 .sd2-tl-content p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.7;
}
.page-hizmet-detay-2 .sd2-tl-dot {
  position: absolute;
  left: 50%;
  top: 30px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--accent);
  transform: translateX(-50%);
  z-index: 2;
  transition: all 0.4s ease;
}
.page-hizmet-detay-2 .sd2-tl-item:hover .sd2-tl-dot {
  background: var(--accent);
  transform: translateX(-50%) scale(1.3);
  box-shadow: 0 0 0 6px rgba(232, 160, 35, 0.15);
}
.page-hizmet-detay-2 .sd2-tl-spacer {
  width: calc(50% - 40px);
}
.page-hizmet-detay-2 .sd2-related .section-title span {
  color: rgba(255, 255, 255, 0.5);
}
.page-hizmet-detay-2 .sd2-related .section-title h2 {
  color: #fff;
}
.page-hizmet-detay-2 .sd2-related .section-title p {
  color: rgba(255, 255, 255, 0.45);
}
.page-hizmet-detay-2 .sd2-panels {
  list-style: none;
  display: flex;
  gap: 6px;
  height: 320px;
  margin-top: 10px;
}
.page-hizmet-detay-2 .sd2-panel {
  flex: 1;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-hizmet-detay-2 .sd2-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.page-hizmet-detay-2 .sd2-panel:hover .sd2-panel-bg {
  transform: scale(1.08);
}
.page-hizmet-detay-2 .sd2-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 40, 71, 0.2) 0%, rgba(15, 40, 71, 0.9) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}
.page-hizmet-detay-2 .sd2-panel:hover::after {
  background: linear-gradient(180deg, rgba(15, 40, 71, 0.1) 0%, rgba(15, 40, 71, 0.85) 100%);
}
.page-hizmet-detay-2 .sd2-panels:hover .sd2-panel {
  flex: 0.6;
}
.page-hizmet-detay-2 .sd2-panels:hover .sd2-panel:hover {
  flex: 3;
}
.page-hizmet-detay-2 .sd2-panel-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.page-hizmet-detay-2 .sd2-panel-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(232, 160, 35, 0.2);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 4px;
  transition: all 0.4s ease;
}
.page-hizmet-detay-2 .sd2-panel:hover .sd2-panel-icon {
  background: var(--accent);
  color: #fff;
}
.page-hizmet-detay-2 .sd2-panel-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  transition: all 0.4s ease;
}
.page-hizmet-detay-2 .sd2-panel:hover .sd2-panel-content h3 {
  font-size: 20px;
}
.page-hizmet-detay-2 .sd2-panel-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease 0.1s;
}
.page-hizmet-detay-2 .sd2-panel:hover .sd2-panel-content p {
  max-height: 120px;
  opacity: 1;
}
.page-hizmet-detay-2 .sd2-panel-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease 0.2s;
}
.page-hizmet-detay-2 .sd2-panel:hover .sd2-panel-arrow {
  max-height: 40px;
  opacity: 1;
}
.page-hizmet-detay-2 .sd2-panel-arrow i {
  font-size: 11px;
  transition: transform 0.3s ease;
}
.page-hizmet-detay-2 .sd2-panel:hover .sd2-panel-arrow i {
  animation: sd2ArrowBounce 1s ease infinite;
}

/* Micro parity fixes: hizmet-detay-1 */
.page-hizmet-detay-1 .sd-tab-content h3 { font-size: 26px; font-weight: 700; color: var(--primary-dark); margin-bottom: 14px; }
.page-hizmet-detay-1 .sd-tab-content p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.page-hizmet-detay-1 .sd-tab-highlights { display: flex; flex-direction: column; gap: 10px; }
.page-hizmet-detay-1 .sd-tab-highlight { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--primary-dark); font-weight: 500; }
.page-hizmet-detay-1 .sd-tab-highlight i { color: var(--accent); font-size: 12px; flex-shrink: 0; }
.page-hizmet-detay-1 .sd-skills-visual { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.page-hizmet-detay-1 .sd-skill-box { display: flex; gap: 16px; align-items: center; padding: 20px; border-radius: 12px; border: 1px solid var(--border-color); background: #fff; transition: all 0.25s ease; animation: sdBreathe 3s ease-in-out infinite; }
.page-hizmet-detay-1 .sd-skill-box:nth-child(2) { animation-delay: 0.4s; }
.page-hizmet-detay-1 .sd-skill-box:nth-child(3) { animation-delay: 0.8s; }
.page-hizmet-detay-1 .sd-skill-box:nth-child(4) { animation-delay: 1.2s; }
.page-hizmet-detay-1 .sd-skill-box:hover { border-color: var(--accent); box-shadow: 0 8px 24px rgba(15,40,71,0.07); }
.page-hizmet-detay-1 .sd-skill-box-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(232,160,35,0.1); display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 16px; flex-shrink: 0; }
.page-hizmet-detay-1 .sd-skill-box h4 { font-size: 14px; font-weight: 700; color: var(--primary-dark); margin: 0; }
.page-hizmet-detay-1 .sd-skill-box p { margin: 0; font-size: 13px; color: var(--text-light); }
.page-hizmet-detay-1 .sd-related-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(232,160,35,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--accent); }
.page-hizmet-detay-1 .sd-related-card h3 { font-size: 16px; font-weight: 700; color: var(--primary-dark); margin: 0; }
.page-hizmet-detay-1 .sd-related-card p { font-size: 13px; color: var(--text-light); line-height: 1.6; margin: 0; }
@keyframes sdBreathe { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 1024px) {
  .page-hizmet-detay-2 .page-hero-content h1 {
    font-size: 40px;
  }
  .page-hizmet-detay-2 .sd2-service-card {
    flex: 0 0 calc(33.333% - 10px);
    min-width: 0;
    min-height: 220px;
  }
  .page-hizmet-detay-2 .sd2-services-row:hover .sd2-service-card {
    filter: none;
    transform: none;
  }
  .page-hizmet-detay-2 .sd2-services-row:hover .sd2-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
  .page-hizmet-detay-2 .sd2-about-grid {
    flex-direction: column;
    gap: 50px;
  }
  .page-hizmet-detay-2 .sd2-about-visual {
    width: 100%;
    min-width: 0;
    height: 380px;
  }
  .page-hizmet-detay-2 .sd2-acc-grid {
    flex-direction: column;
    gap: 40px;
  }
  .page-hizmet-detay-2 .sd2-acc-right {
    width: 100%;
    min-width: 0;
    height: 320px;
  }
  .page-hizmet-detay-2 .sd2-timeline-wrap::before {
    left: 20px;
  }
  .page-hizmet-detay-2 .sd2-tl-item,
  .page-hizmet-detay-2 .sd2-tl-item:nth-child(even) {
    flex-direction: row !important;
  }
  .page-hizmet-detay-2 .sd2-tl-content {
    width: 100%;
  }
  .page-hizmet-detay-2 .sd2-tl-spacer {
    display: none;
  }
  .page-hizmet-detay-2 .sd2-tl-dot {
    left: 20px;
  }
  .page-hizmet-detay-2 .sd2-tl-item {
    padding-left: 55px;
  }
}
@media (max-width: 992px) {
  .page-hizmetler .services-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hizmetler .page-hero-stats { gap: 24px; }
  .page-hizmet-detay-1 .sd-intro-grid,
  .page-hizmet-detay-1 .sd-tab-panel.active,
  .page-hizmet-detay-1 .sd-skills-grid {
    flex-direction: column;
  }
  .page-hizmet-detay-1 .sd-intro-images { flex: none; width: 100%; }
  .page-hizmet-detay-1 .sd-tab-img { flex: none; width: 100%; }
  .page-hizmet-detay-1 .sd-related-stack { grid-template-columns: repeat(2, 1fr); }
  .page-hizmet-detay-1 .sd-counter-row { gap: 32px; }
}
@media (max-width: 768px) {
  .page-hizmet-detay-1 .page-hero-content h1,
  .page-hizmet-detay-2 .page-hero-content h1 {
    font-size: 34px;
  }
  .page-hizmet-detay-1 .sd-related-stack {
    grid-template-columns: 1fr;
  }
  .page-hizmet-detay-2 .page-hero {
    padding: 70px 0 80px;
  }
  .page-hizmet-detay-2 .sd2-about,
  .page-hizmet-detay-2 .sd2-services,
  .page-hizmet-detay-2 .sd2-accordion-section,
  .page-hizmet-detay-2 .sd2-timeline,
  .page-hizmet-detay-2 .sd2-related {
    padding: 60px 0;
  }
  .page-hizmet-detay-2 .sd2-about-text h2 {
    font-size: 28px;
  }
  .page-hizmet-detay-2 .sd2-service-card {
    flex: 0 0 calc(50% - 7px);
    min-width: 0;
  }
  .page-hizmet-detay-2 .sd2-stats-grid {
    flex-wrap: wrap;
    gap: 30px;
  }
  .page-hizmet-detay-2 .sd2-stat {
    flex: 0 0 calc(50% - 15px);
  }
  .page-hizmet-detay-2 .sd2-stat::after {
    display: none;
  }
  .page-hizmet-detay-2 .sd2-stat-num {
    font-size: 36px;
  }
  .page-hizmet-detay-2 .sd2-panels {
    height: 250px;
    gap: 4px;
  }
  .page-hizmet-detay-2 .sd2-panel-content {
    padding: 18px;
  }
  .page-hizmet-detay-2 .sd2-panel-content h3 {
    font-size: 13px;
  }
  .page-hizmet-detay-2 .sd2-panel:hover .sd2-panel-content h3 {
    font-size: 16px;
  }
  .page-hizmet-detay-2 .sd2-panel-content p {
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .page-hizmet-detay-2 .page-hero-content h1 {
    font-size: 26px;
  }
  .page-hizmet-detay-2 .sd2-about-visual {
    height: 320px;
  }
  .page-hizmet-detay-2 .sd2-about-card:nth-child(1) {
    width: 200px;
    height: 260px;
  }
  .page-hizmet-detay-2 .sd2-about-card:nth-child(2) {
    width: 160px;
    height: 210px;
  }
  .page-hizmet-detay-2 .sd2-about-card:nth-child(3) {
    width: 130px;
    height: 160px;
  }
  .page-hizmet-detay-2 .sd2-stat {
    flex: 0 0 100%;
  }
  .page-hizmet-detay-2 .sd2-stats-bg {
    background-attachment: scroll;
  }
  .page-hizmet-detay-2 .sd2-panels {
    flex-direction: column;
    height: auto;
  }
  .page-hizmet-detay-2 .sd2-panel {
    height: 70px;
    border-radius: 10px;
  }
  .page-hizmet-detay-2 .sd2-panels:hover .sd2-panel {
    flex: 1;
  }
  .page-hizmet-detay-2 .sd2-panels:hover .sd2-panel:hover {
    flex: 3;
  }
  .page-hizmet-detay-2 .sd2-panel-content {
    flex-direction: row;
    align-items: center;
    padding: 14px 18px;
  }
  .page-hizmet-detay-2 .sd2-panel-icon {
    margin-bottom: 0;
  }
  .page-hizmet-detay-2 .sd2-panel:hover .sd2-panel-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .page-hizmetler .services-grid { grid-template-columns: 1fr; }
  .page-hizmetler .page-hero-stats { flex-wrap: wrap; gap: 20px; }
  .page-hizmetler .page-hero-stat { flex: 1 1 40%; }
  .page-hizmetler .page-hero-content h1 { font-size: 32px; }
}
/* ===== Hizmet Detay ===== */
.hizmet-detay-icerik {
  padding: 80px 0;
}
.hizmet-detay-baslik {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--accent);
}

/* Responsive table scroll — wrapper injected via JS */
.table-scroll-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
  border-radius: 8px;
}
.table-scroll-wrapper table {
  margin-bottom: 0;
  border-radius: 0;
  min-width: 480px;
}

@media (max-width: 768px) {
  .hizmet-detay-icerik { padding: 48px 0; }
  .hizmet-detay-baslik { font-size: 24px; }
}

@media (max-width: 480px) {
  .hizmet-detay-icerik { padding: 36px 0; }
  .hizmet-detay-baslik { font-size: 20px; }
}

/* ===== LEGAL PAGES (single-page) ===== */
.content-section {
  padding: 70px 0 90px;
}

.content-body {
  max-width: 860px;
  margin: 0 auto;
  word-break: break-word;
  overflow-wrap: break-word;
}

.content-body p {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 24px;
}
.content-body h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 48px;
  margin-bottom: 16px;
  line-height: 1.3;
}
.content-body h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 40px;
  margin-bottom: 16px;
}
.content-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 32px;
  margin-bottom: 12px;
}
.content-body h5,
.content-body h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 24px;
  margin-bottom: 10px;
}
.content-body strong { font-weight: 700; color: var(--primary-dark); }
.content-body em { font-style: italic; }
.content-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s;
}
.content-body a:hover { opacity: 0.75; }

/* Lists */
.content-body ul,
.content-body ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.85;
}
.content-body ul { list-style: none; padding-left: 0; }
.content-body ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.content-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.content-body ol li { margin-bottom: 10px; }
.content-body ul ul,
.content-body ol ol,
.content-body ul ol,
.content-body ol ul { margin-top: 8px; margin-bottom: 0; }

/* Blockquote */
.content-body blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--accent);
  background: var(--bg-light);
  border-radius: 0 8px 8px 0;
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
}
.content-body blockquote p { margin-bottom: 0; }

/* Tables */
.content-body .table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(15,40,71,0.08);
}

.content-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}
.content-body th {
  background: var(--primary-dark);
  color: #fff;
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  font-size: 14px;
  white-space: nowrap;
}
.content-body td {
  padding: 11px 16px;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
  line-height: 1.6;
}
.content-body tr:last-child td { border-bottom: none; }
.content-body tr:nth-child(even) td { background: var(--bg-light); }

/* Images */
.content-body img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 8px 0 24px;
  display: block;
}

/* Iframes / video — responsive 16:9 */
.content-body iframe,
.content-body video {
  max-width: 100%;
  border-radius: 10px;
  margin: 8px 0 24px;
}
.content-body iframe[src*="youtube"],
.content-body iframe[src*="youtu.be"],
.content-body iframe[src*="vimeo"],
.content-body iframe[allowfullscreen] {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: none;
}

/* Code */
.content-body code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 14px;
  background: var(--bg-light);
  color: var(--primary-dark);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--border-color);
}
.content-body pre {
  background: var(--primary-dark);
  color: #e8f0fe;
  padding: 20px 24px;
  border-radius: 10px;
  overflow-x: auto;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.content-body pre code {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

/* Horizontal rule */
.content-body hr {
  border: none;
  border-top: 2px solid var(--border-color);
  margin: 40px 0;
}

@media (max-width: 1024px) {
  .content-section { padding: 50px 0 60px; }
  .content-body p,
  .content-body ul,
  .content-body ol { font-size: 15px; }
  .content-body h2 { font-size: 22px; margin-top: 36px; }
  .content-body h3 { font-size: 19px; margin-top: 28px; }
  .content-body h4 { font-size: 16px; }
  .content-body blockquote { padding: 16px 18px; font-size: 15px; }
  .content-body th,
  .content-body td { padding: 10px 12px; font-size: 14px; }
  .content-body pre { padding: 14px 16px; font-size: 13px; }
}

@media (max-width: 768px) {
  .content-section { padding: 40px 0 50px; }
  .content-body h2 { font-size: 20px; margin-top: 28px; }
  .content-body h3 { font-size: 17px; margin-top: 24px; }
  .content-body h4 { font-size: 15px; margin-top: 20px; }
  .content-body p,
  .content-body ul,
  .content-body ol { font-size: 14px; line-height: 1.75; }
  .content-body blockquote { font-size: 14px; border-left-width: 3px; }
  .content-body th { font-size: 13px; padding: 9px 10px; }
  .content-body td { font-size: 13px; padding: 8px 10px; }
  .content-body ul li { padding-left: 18px; }
  .content-body ul li::before { width: 6px; height: 6px; top: 8px; }
}

/* ===================================================
   404 / Error Sayfası
   =================================================== */
.error-section {
  padding: 120px 0;
  background: var(--bg-light);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.error-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.error-code {
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 8px;
}

.error-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 16px;
  line-height: 1.2;
}

.error-desc {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.7;
  margin: 0 auto 36px;
  max-width: 560px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-actions .btn-primary,
.error-actions .btn-outline {
  min-width: 200px;
  justify-content: center;
}

@media (max-width: 640px) {
  .error-section { padding: 72px 0; min-height: 55vh; }
  .error-title { font-size: 26px; }
  .error-desc { font-size: 15px; }
  .error-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .error-actions .btn-primary,
  .error-actions .btn-outline { width: 100%; min-width: 0; }
}

/* ===================================================
   Ürünler — kart grid + e-ticaret detay
   =================================================== */
.products-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color .35s ease, transform .35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .35s ease;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 40, 71, 0.08);
}

.product-card-media {
  aspect-ratio: 4/3;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-media img { transform: scale(1.05); }

.product-card-media-placeholder {
  font-size: 48px;
  color: var(--text-light);
  opacity: 0.5;
}

.product-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card-code {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
}

.product-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.product-card-desc {
  font-size: 13.5px;
  color: var(--text-medium);
  line-height: 1.55;
  margin: 2px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
}

.product-card-arrow {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== Ürün detay ===== */
.product-detail-section {
  padding: 80px 0 100px;
  background: var(--bg-white);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.product-gallery { display: flex; flex-direction: column; gap: 14px; }

.product-gallery-main {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-main #productMainImage {
  cursor: zoom-in;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  color: var(--primary-dark);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(15, 40, 71, 0.12);
  opacity: 0;
  transition: opacity .25s ease, background .25s ease, transform .25s ease;
}

.product-gallery-main:hover .product-gallery-nav,
.product-gallery-nav:focus-visible {
  opacity: 1;
}

.product-gallery-nav:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-50%) scale(1.05);
}

.product-gallery-nav-prev { left: 14px; }
.product-gallery-nav-next { right: 14px; }

@media (hover: none) {
  .product-gallery-nav { opacity: 1; }
}

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

.product-gallery-placeholder {
  font-size: 72px;
  color: var(--text-light);
  opacity: 0.4;
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: 10px;
}

.product-gallery-thumb {
  aspect-ratio: 1/1;
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color .25s ease, transform .25s ease;
}

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

.product-gallery-thumb:hover { transform: translateY(-2px); }
.product-gallery-thumb.is-active { border-color: var(--accent); }

.product-info { padding-top: 8px; }

.product-info-code {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 12px;
}
.product-info-code span { color: var(--text-light); font-weight: 500; margin-right: 4px; }

.product-info-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.2;
  margin: 0 0 14px;
}

.product-info-lead {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.6;
  margin: 0 0 24px;
}

.product-info-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 18px 22px;
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  margin-bottom: 24px;
}

.product-info-price-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  font-weight: 600;
}

.product-info-price-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-dark);
}

.product-info-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}

.product-info-features li {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.product-info-features li:last-child { border-bottom: none; }
.product-info-features li:nth-child(even) { background: var(--bg-light); }

.product-info-features .feature-label {
  flex: 0 0 40%;
  font-weight: 600;
  color: var(--text-dark);
}
.product-info-features .feature-value {
  flex: 1;
  color: var(--text-medium);
}

.product-info-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.product-info-actions .btn-primary,
.product-info-actions .btn-outline { min-width: 180px; justify-content: center; }

/* Tabs */
.product-tabs {
  margin-top: 64px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-white);
}

.product-tabs-head {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-light);
}

.product-tab {
  background: transparent;
  border: none;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  position: relative;
  transition: color .2s ease;
}

.product-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.product-tab:hover { color: var(--primary-dark); }
.product-tab.is-active { color: var(--primary-dark); }
.product-tab.is-active::after { transform: scaleX(1); }

.product-tab-panel {
  display: none;
  padding: 32px;
}
.product-tab-panel.is-active { display: block; }

.product-tab-panel .content-body {
  max-width: none;
  margin: 0;
  text-align: left;
}

.product-tab-panel .content-body > *:first-child { margin-top: 0; }
.product-tab-panel .content-body > *:last-child { margin-bottom: 0; }
.product-tab-panel .content-body h2:first-child,
.product-tab-panel .content-body h3:first-child,
.product-tab-panel .content-body h4:first-child { margin-top: 0; }

/* Related */
.product-related { margin-top: 80px; }
.product-related .section-title { margin-bottom: 32px; }
.product-related .section-title h2 {
  font-size: 24px;
  color: var(--primary-dark);
  margin: 0;
}

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-info-title { font-size: 26px; }
  .product-tabs-head { overflow-x: auto; }
  .product-tab { padding: 14px 18px; white-space: nowrap; }
  .product-tab-panel { padding: 22px; }
}

/* ===== Ürün Lightbox ===== */
.product-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 50, 0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 60px 72px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-lightbox.is-open {
  display: flex;
  opacity: 1;
}

.product-lightbox-stage {
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-lightbox-stage img {
  max-width: 100%;
  max-height: calc(100vh - 120px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: productLightboxIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes productLightboxIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}

.product-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.product-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

.product-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.25s ease;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.product-lightbox-nav:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.product-lightbox-nav-prev { left: 24px; }
.product-lightbox-nav-next { right: 24px; }

@media (max-width: 600px) {
  .product-lightbox { padding: 40px 16px; }
  .product-lightbox-nav { width: 42px; height: 42px; font-size: 16px; }
  .product-lightbox-nav-prev { left: 12px; }
  .product-lightbox-nav-next { right: 12px; }
  .product-lightbox-close { top: 12px; right: 12px; width: 40px; height: 40px; font-size: 16px; }
}
