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

:root {
  --red: #C8102E;
  --red-dark: #a50e26;
  --dark: #1a1a2e;
  --text: #3d3d3d;
  --light-gray: #f5f5f5;
  --mid-gray: #e8e8e8;
  --white: #ffffff;
  --font-main: 'DM Sans', sans-serif;
  --font-heading: 'Red Hat Display', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
  width: 100%;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  width: 100%;
  overflow-x: hidden !important;
  position: relative;
}

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

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

ul {
  list-style: none;
}

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

/* ─── HEADER TOP BAR ─── */
.header-top {
  background: #1f272c;
  color: #ccc;
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 1001;
}

@media (max-width: 992px) {
  .header-top {
    display: none !important;
  }
}

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

.header-top-left, .header-top-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-top a, .header-top span {
  color: #ccc;
  transition: color .2s;
  font-size: 11px;
}

.header-top a:hover {
  color: #fff;
}

.top-info-group {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-info-group a, .top-info-group span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-info-group i {
  color: var(--red);
  font-size: 13px;
}

.top-pills {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-pills .btn-pill {
  background: var(--red);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.top-pills .btn-pill:hover {
  background: #a00;
  color: #fff;
}

.header-top .social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  padding: 0 15px;
}

.header-top .social-icons a {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #ccc;
  background: rgba(255,255,255,0.05);
  transition: all .2s;
}

.header-top .social-icons a:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* Lang Dropdown */
.lang-dropdown {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  z-index: 100;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
  font-weight: 500;
  font-size: 12px;
  transition: color 0.2s;
}

.lang-dropdown:hover .lang-current {
  color: #fff;
}

.lang-list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  padding: 4px;
  display: none;
  flex-direction: column;
  min-width: 80px;
}

/* Kapanmayı önlemek için boşluğu dolduran görünmez köprü */
.lang-list::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 8px;
}

.lang-dropdown:hover .lang-list {
  display: flex;
}

.lang-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  color: #333;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
}

.lang-list a:hover {
  background: #f0f0f0;
  color: #000;
}

/* ─── MAIN HEADER ─── */
.header-main {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease;
  width: 100%;
}

.header-wrapper {
  position: relative;
  z-index: 1000;
  width: 100%;
}

.header-wrapper.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.35s ease-out;
}

.service-struct-icon {
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.service-struct-icon img,
.service-struct-icon i {
  width: 140px !important;
  height: 140px !important;
  font-size: 140px !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* Animated Logo Transition */
.logo.has-anim-logo {
  position: relative;
}

.logo.has-anim-logo .logo-secondary {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: logoFadeSecondary 4s infinite;
}

.logo.has-anim-logo .logo-primary {
  animation: logoFadePrimary 4s infinite;
}

@keyframes logoFadePrimary {
  0%, 35% { opacity: 1; }
  50%, 85% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes logoFadeSecondary {
  0%, 35% { opacity: 0; }
  50%, 85% { opacity: 1; }
  100% { opacity: 0; }
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav li {
  position: relative;
}

.main-nav>li>a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all .2s;
}

.main-nav>li>a:hover,
.main-nav>li>a.active {
  color: var(--red);
}

.main-nav>li>a i {
  font-size: 10px;
  transition: transform .2s;
}

.main-nav>li:hover>a i {
  transform: rotate(180deg);
}

.mobile-only-contact {
  display: none;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: calc(100% + 15px);
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, .15);
  min-width: 230px;
  padding: 12px 0;
  border-top: 4px solid var(--red);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateY(20px);
}

.main-nav li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  top: 100%;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 14px;
  color: var(--text);
  transition: all .15s;
}

.dropdown-menu li a:hover {
  color: var(--red);
  background: #fafafa;
  padding-left: 24px;
}

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

.btn-search {
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid var(--mid-gray);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all .2s;
  font-size: 15px;
}

.btn-search:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-contact {
  background: var(--dark);
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  font-family: var(--font-main);
}

.btn-contact:hover {
  background: var(--red);
}

.hamburger-btn {
  width: 40px;
  height: 40px;
  background: var(--light-gray);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--dark);
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0a0a0a;
  text-align: center;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  /*background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);*/
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/main-slider.webp') center/cover no-repeat;
  /*filter: brightness(0.5);*/
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 20px 140px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 16, 46, .85);
  backdrop-filter: blur(4px);
  color: white;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  padding: 10px 30px;
  border-radius: 6px;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero h1 strong {
  font-weight: 900;
  display: block;
}

.hero p {
  color: rgba(255, 255, 255, .85);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── QUICK LINKS ─── */
.quick-links {
  position: relative;
  z-index: 10;
  margin-top: -70px;
  padding: 0 20px;
}

.quick-links .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.quick-link-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 35px 10px 25px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: all .25s;
  cursor: pointer;
  text-decoration: none;
  color: var(--dark);
  border-bottom: 14px solid var(--red);
  aspect-ratio: 1 / 1.05;
  flex: 0 1 calc(16.666% - 14px);
  min-width: 160px;
}

.quick-link-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
}

.ql-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: #0c1a3b;
  transition: transform .25s, color .25s;
}

.quick-link-item:hover .ql-icon {
  transform: scale(1.05);
}

.ql-label {
  font-size: 17px;
  font-weight: 500;
  color: #0c1a3b;
  text-align: center;
  transition: color .25s;
  font-family: var(--font-heading);
}

.quick-link-item:hover .ql-label {
  color: var(--red);
}

/* ─── SECTION COMMONS ─── */
.section {
  padding: 100px 0;
}

.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
}

.check-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text);
}

.check-list li i {
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--red);
  color: var(--red);
  padding: 12px 26px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all .2s;
  cursor: pointer;
  background: transparent;
  font-family: var(--font-main);
}

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

.btn-outline .arrow-circle {
  width: 28px;
  height: 28px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all .2s;
}

.btn-outline:hover .arrow-circle {
  background: white;
  color: var(--red);
}

.img-box {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  position: relative;
}

.img-box img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* ─── ABOUT SECTION ─── */
.about-section {
  background: white;
  position: relative;
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  position: relative;
}

.about-img-side {
  position: relative;
  min-height: 600px;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  mask-composite: intersect;
}

.about-img-side img {
  width: calc(100% + 80px);
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}

.about-text-side {
  padding: 80px 60px 80px 40px;
  position: relative;
  z-index: 3;
}

.about-watermark {
  font-family: var(--font-heading);
  font-size: clamp(120px, 15vw, 240px);
  font-weight: 900;
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, .15);
  line-height: .8;
  pointer-events: none;
  margin-bottom: 20px;
}

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

.about-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.about-features li i {
  color: var(--red);
  font-size: 16px;
}

.about-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.phone-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}

.phone-badge .phone-icon {
  width: 50px;
  height: 50px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.phone-badge .phone-text small {
  display: block;
  font-size: 11px;
  color: #999;
}

.phone-badge .phone-text strong {
  font-size: 16px;
  color: var(--dark);
}

/* ─── GREEN SECTION ─── */
.green-section {
  background: white;
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}


.green-layout {
  position: relative;
  z-index: 2;
}

.green-layout>div {
  max-width: 620px;
}

.green-bg-wrap {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  mask-composite: intersect;
}

.green-bg-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── STATS SECTION ─── */
.stats-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: #f8f8f8;
}

.stats-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%), linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  mask-composite: intersect;
}

.stats-content {
  position: relative;
  z-index: 2;
}

.stats-content .section-title,
.stats-content .section-desc {
  max-width: 620px;
}

.stats-content .section-title span {
  font-weight: 500;
  color: #555;
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 30px 24px;
  border-bottom: 6px solid var(--red);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 20px;
  align-items: center;
}

.stat-card .stat-icon {
  grid-row: 1 / -1;
  width: 70px;
  height: 70px;
  border: 2px solid var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 30px;
  background: #f0f4f8;
}

.stat-card .stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  align-self: end;
}

.stat-card .stat-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  margin: 4px 0;
  font-variant-numeric: tabular-nums;
}

.stat-card .stat-value small {
  font-size: 16px;
  font-weight: 600;
  opacity: .8;
}

.stat-card .stat-unit {
  color: #666;
  font-size: 13px;
  font-weight: 500;
  align-self: start;
}

/* ─── STILLO SECTION ─── */
.stillo-section {
  background: var(--light-gray);
  padding: 100px 0;
  overflow: hidden;
}

.stillo-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.stillo-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

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


.stillo-logo-icon {
  width: 56px;
  height: 56px;
  border: 2px solid #b5986a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #b5986a;
}

.stillo-logo-text {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 2px;
}

.stillo-logo-text small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.stillo-features {
  margin: 26px 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.stillo-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.stillo-feature-icon {
  width: 50px;
  height: 50px;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--dark);
  flex-shrink: 0;
}

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

.stillo-feature p {
  font-size: 13px;
  color: #888;
  line-height: 1.6;
}

.stillo-images {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.stillo-img-main {
  position: absolute;
  left: 0;
  top: 30px;
  width: 55%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
  z-index: 2;
  transform: rotate(-2deg);
}

.stillo-img-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.stillo-img-secondary {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  z-index: 1;
}

.stillo-img-secondary img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

/* ─── MINI SECTION ─── */
.mini-section {
  background: white;
  padding: 100px 0;
  overflow: hidden;
}

.mini-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.mini-logo-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.mini-logo-circle {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b6b, var(--red));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-heading);
}

.mini-logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
}

.mini-logo-text span {
  color: var(--red);
}

.mini-images {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mini-img-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
  z-index: 1;
}

.mini-img-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-img-fg {
  position: absolute;
  left: 0;
  top: 100px;
  width: 55%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  border: 8px solid white;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
  z-index: 2;
}

.mini-img-fg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-check-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mini-check-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.mini-check-icon {
  width: 56px;
  height: 56px;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 22px;
  flex-shrink: 0;
}

.mini-check-content h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}

.mini-check-content p {
  font-size: 14px;
  color: #667085;
  line-height: 1.5;
}

/* ─── BLOG SECTION ─── */
.blog-section {
  background: white;
  padding: 90px 0;
  overflow: hidden;
}

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

.blog-card {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}

.blog-card-body {
  padding: 0 0 30px 0;
}

.blog-date {
  font-size: 13px;
  color: #999;
  font-weight: 500;
  margin-bottom: 12px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 0;
  min-height: 50px;
}

.blog-card-img-wrap {
  position: relative;
  background: var(--red);
  border-radius: 24px;
  margin-top: 10px;
  margin-left: 10px;
}

.blog-card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  transform: translate(-12px, -12px);
  border: 1.5px solid #eee;
  transition: transform .3s;
}

.blog-card:hover .blog-card-img {
  transform: translate(-10px, -10px);
}

.blog-swiper {
  overflow: hidden;
}

.swiper-pagination-bullet {
  background: var(--red);
}

.swiper-pagination-bullet-active {
  background: var(--red);
}

/* ─── SOCIAL SECTION ─── */
.social-section {
  background-color: #fafafa;
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}

.social-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1.5px, transparent 1.5px);
  background-size: 25px 25px;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.social-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.social-bg-text {
  position: relative;
}

.social-bg-label {
  font-family: var(--font-heading);
  font-size: clamp(80px, 11vw, 140px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(0, 0, 0, .15);
  line-height: 1.0;
  text-transform: uppercase;
  pointer-events: none;
  display: block;
  margin-top: 10px;
  margin-bottom: 30px;
  text-align: right;
}

.social-content {
  position: relative;
  z-index: 1;
}

.social-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 0;
}

.social-icons-big {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  transition: transform .2s, box-shadow .2s;
}

.social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
}

.social-btn.instagram,
.social-btn.facebook,
.social-btn.linkedin,
.social-btn.twitter,
.social-btn.google-plus,
.social-btn.youtube {
  background: var(--red);
}

.social-phone-mockup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes floatPhone {
  0% {
    transform: translateY(0px);
  }

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

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

.social-phone-img {
  width: 100%;
  max-width: 580px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .15));
  animation: floatPhone 6s ease-in-out infinite;
}

/* ─── FOOTER ─── */
footer {
  background: radial-gradient(rgba(0, 0, 0, 0.02) 1.5px, transparent 1.5px) 0 0 / 25px 25px,
    linear-gradient(to bottom, #ffffff 0%, #f4f7fa 100%);
  color: var(--text);
  padding: 80px 0 0;
  border-top: 2px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-bottom: 80px;
}

.footer-col {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.footer-brand .logo-image {
  max-height: 50px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-top: 15px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45px;
  height: 2.5px;
  background: var(--red);
  border-radius: 2px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  font-size: 15px;
  color: #444;
  transition: all .2s;
}

.footer-col ul li a:hover {
  color: var(--red);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #444;
  margin-bottom: 18px;
}

.footer-contact-item i {
  color: #777;
  font-size: 18px;
  width: 20px;
}

.footer-social {
  display: grid;
  grid-template-columns: repeat(3, 44px);
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: #f1f3f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #666;
  transition: all .2s;
}

.footer-social a:hover {
  background: var(--red);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  background: #1f272c;
  padding: 25px 0;
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, .7);
  transition: color .2s;
}

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

.footer-bottom-links span {
  opacity: .3;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .footer-bottom .container {
    justify-content: center;
    text-align: center;
  }
}

.menu-overlay {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

@media (max-width: 768px) {
  .menu-overlay {
    display: block;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .header-top .right .social-icons {
    display: flex;
  }

  .main-nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #f0f0f0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav>li>a {
    padding: 14px 0;
    border-bottom: 1px solid #f5f5f5;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 15px;
    min-width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    display: block;
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
  }

  .main-nav li.open .dropdown-menu {
    max-height: 400px;
    opacity: 1;
    padding: 10px 0 10px 15px;
  }

  .header-actions .btn-contact {
    display: none;
  }

  .header-actions .btn-search {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border: none;
    border-radius: 6px;
    color: var(--dark);
    font-size: 16px;
  }

  .mobile-only-contact {
    display: block;
    margin-top: 15px;
    width: 100%;
  }

  .btn-contact-mobile {
    display: block;
    background: var(--dark);
    color: white !important;
    text-align: left;
    padding: 15px;
    padding-left: 14px !important;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s;
  }

  .btn-contact-mobile:hover {
    background: var(--red);
  }

  .hamburger-btn {
    display: flex;
  }

  .green-layout,
  .social-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quick-links {
    margin-top: -40px;
    padding: 0 16px;
  }

  .quick-links .container {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .quick-link-item {
    padding: 20px 10px 15px;
    gap: 10px;
    aspect-ratio: 1 / 1;
  }

  .ql-icon {
    font-size: 36px;
  }

  .ql-label {
    font-size: 14px;
  }

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

  .hero {
    min-height: 500px;
  }

  .section,
  .green-section,
  .stillo-section,
  .mini-section {
    padding: 60px 0;
  }

  .about-text-side {
    padding: 40px 20px;
    order: 2;
  }

  .about-watermark {
    font-size: clamp(56px, 16vw, 100px);
  }

  .social-bg-label {
    font-size: clamp(60px, 14vw, 90px);
    text-align: center;
    margin-bottom: 20px;
  }

  .about-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-img-side {
    min-height: 350px;
    order: -1;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  }

  .about-text-side {
    padding: 40px 20px;
  }

  .stillo-layout,
  .mini-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stillo-images {
    height: 480px;
    order: -1;
    position: relative;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .mini-section [data-aos="fade-right"] {
    order: -1;
  }

  .mini-section .img-box {
    height: 350px;
    position: relative;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .stillo-section [data-aos],
  .mini-section [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }

  .stillo-img-main {
    width: 65% !important;
    left: 0 !important;
    top: 30px !important;
  }

  .stillo-img-secondary {
    width: 65% !important;
    right: 0 !important;
    top: 0 !important;
  }

  .mini-layout {
    direction: ltr !important;
  }

  .green-bg-wrap {
    position: relative;
    width: 100%;
    height: 350px;
    order: -1;
    -webkit-mask-image: linear-gradient(to top, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to top, transparent, black 20%, black 80%, transparent);
  }

  .green-layout {
    order: 2;
  }

  .stats-bg {
    width: 100%;
    opacity: .2;
    -webkit-mask-image: none;
    mask-image: none;
  }

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

  .stat-card {
    padding: 20px 16px;
    column-gap: 16px;
  }

  .stat-card .stat-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }

  .stat-card .stat-value {
    font-size: 28px;
  }

  .stat-card .stat-value small {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .quick-links .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .quick-link-item {
    padding: 15px 8px 12px;
  }

  .ql-icon {
    font-size: 32px;
  }

  .ql-label {
    font-size: 13px;
  }
}

@media (min-width: 769px) {
  .hamburger-btn {
    display: none;
  }
}

/* ─── PRELOADER ─── */
#preloader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  max-height: 80px;
  width: auto;
  margin-bottom: 30px;
  animation: logoPulse 2s infinite ease-in-out;
}

.preloader-line {
  width: 120px;
  height: 3px;
  background: #f0f0f0;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.preloader-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: var(--red);
  border-radius: 10px;
  animation: lineProgress 1.5s infinite ease-in-out;
}

@keyframes logoPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

@keyframes lineProgress {
  0% {
    left: -50%;
    width: 30%;
  }

  50% {
    left: 40%;
    width: 60%;
  }

  100% {
    left: 100%;
    width: 30%;
  }
}

/* ─── HABERLER SAYFASI ÖZEL ─── */
.page-wrapper {
  background: #fdfafb;
}

.haberler-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  margin-top: 0;
}

.haberler-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../images/main-slider.webp');
}

.haberler-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
}

.haberler-hero::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, #fdfafb 100%);
  z-index: 1;
}

.haberler-hero-title {
  font-family: var(--font-main);
  font-size: clamp(60px, 8vw, 100px);
  font-weight: 300;
  color: #2c3338;
  position: relative;
  z-index: 2;
  margin-top: -30px;
}

.featured-news-container {
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

.featured-news-card {
  display: flex;
  background: linear-gradient(135deg, #ffffff, #f9f5f7);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  align-items: stretch;
  min-height: 420px;
}

.featured-img-wrap {
  flex: 0 0 50%;
}

.featured-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  flex: 0 0 50%;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-tag {
  background: #b5294a;
  color: white;
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  align-self: flex-start;
  margin-bottom: 24px;
}

.featured-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.35;
}

.featured-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.featured-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.btn-featured {
  background: #b5294a;
  color: white;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all .2s;
  text-decoration: none;
}

.btn-featured:hover {
  background: var(--red);
  color: white;
}

.featured-pagination {
  display: flex;
  gap: 10px;
}

.featured-pagination .dot {
  width: 8px;
  height: 8px;
  background: #e2cdd5;
  border-radius: 50%;
  display: block;
}

.featured-pagination .dot.active {
  background: #b5294a;
}

.tum-haberler-section {
  padding: 80px 0 120px;
  background: #fdfafb;
}

.tum-haberler-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.title-with-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.title-with-line .line {
  width: 3px;
  height: 32px;
  background: #b5294a;
  border-radius: 3px;
}

.title-with-line h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  color: var(--dark);
}

.filter-pills-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-pill-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #efeef2;
  border-radius: 50px;
  padding: 8px 16px;
  gap: 14px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.tumu-text {
  font-weight: 700;
  color: var(--dark);
  font-size: 15px;
}

.filter-btn {
  font-size: 14px;
  color: #666;
  font-weight: 500;
  transition: color .2s;
  text-decoration: none;
}

.filter-btn:hover {
  color: var(--red);
}

.filter-btn.active-red {
  background: #b5294a;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
}

.filter-btn.active-red:hover {
  color: white;
}

.slash {
  color: #dfdbe2;
}

.year-pill-box {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #efeef2;
  border-radius: 30px;
  padding: 8px 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
}

.year-pill-box select {
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  padding-right: 18px;
  appearance: none;
  outline: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%226%22%20viewBox%3D%220%200%2010%206%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M0%200l5%206%205-6z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}

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

.news-card {
  background: #e9e9e9da;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 28px -6px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  border: 1px solid #ebebeb;
  padding-bottom: 10px;
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 34px -8px rgba(0, 0, 0, 0.18);
}

.news-card-img-wrap {
  width: 100%;
  height: 200px;
  position: relative;
}

.news-card-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 6px;
  height: 100%;
  background: var(--red);
}

.news-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-img-wrap img {
  transform: scale(1.04);
}

.news-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-content h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.news-card-content p {
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.read-more {
  color: var(--red);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}

.read-more i {
  font-size: 11px;
}

.read-more:hover {
  color: var(--red);
}

@media (max-width: 992px) {
  .featured-news-card {
    flex-direction: column;
  }

  .featured-img-wrap {
    flex: auto;
    height: 250px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .haberler-hero-title {
    font-size: 48px;
  }

  .filter-pills-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .filter-pill-box {
    flex-wrap: wrap;
  }
}

/* ─── YONETIM KURULU SAYFASI ÖZEL ─── */

.yonetim-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
  background: white;
  margin-top: 0;
  overflow: hidden;
}

.yonetim-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: url('../images/main-slider.webp') left center/cover no-repeat;
}

.yonetim-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253, 250, 251, 0) 0%, rgba(253, 250, 251, 0.4) 30%, rgba(253, 250, 251, 1) 80%, rgba(253, 250, 251, 1) 100%);
}

.yonetim-hero::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, #fdfafb 100%);
  z-index: 1;
}

.yonetim-hero-title {
  font-family: var(--font-main);
  font-size: clamp(48px, 6vw, 70px);
  font-weight: 300;
  color: #2c3338;
  position: relative;
  z-index: 2;
  margin-top: 0;
}

.yonetim-section {
  padding: 0 0 120px;
  background: transparent;
  position: relative;
  z-index: 10;
  margin-top: 0;
}

.baskan-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.board-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.baskan-card .board-img-container {
  width: 100%;
  max-width: 340px;
  height: auto;
  aspect-ratio: 320 / 440;
}

.board-img-container {
  position: relative;
  width: 100%;
  max-width: 260px;
  aspect-ratio: 260 / 360;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
}

.board-card-bg {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 100%;
  height: 100%;
  background: #C8102E;
  border-radius: 36px;
  z-index: 1;
}

.board-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  overflow: hidden;
  z-index: 2;
  border: none !important;
  background: transparent;
}

.board-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.board-info h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.board-info p {
  font-size: 15px;
  color: #777;
  font-weight: 500;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.yonetim-section .board-card {
  padding: 0 !important;
  width: 100% !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  max-width: none !important;
}

.yonetim-section .board-img-container {
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
  border: none !important;
  box-shadow: none !important;
}

.yonetim-section .baskan-card {
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .board-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .board-grid {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .baskan-card .board-img-container {
    width: 280px;
    height: 350px;
  }
}

/* ─── DOKUMANLAR SAYFASI ÖZEL ─── */
.dokumanlar-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  margin-top: 0;
}

.dokumanlar-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url('../images/main-slider.webp');
}

.dokumanlar-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

.dokumanlar-hero::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, #f4f6fa 100%);
  z-index: 1;
}

.dokumanlar-hero-title {
  font-family: var(--font-main);
  font-size: clamp(48px, 6vw, 70px);
  font-weight: 300;
  color: #2c3338;
  position: relative;
  z-index: 2;
  margin-top: -40px;
}

.dokuman-search-section {
  position: relative;
  z-index: 10;
  margin-top: -120px;
}

.dokuman-search-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.d-search-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.breadcrumbs {
  font-size: 15px;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs .light {
  color: #999;
}

.breadcrumbs i.fa-chevron-right {
  font-size: 10px;
  color: #ccc;
}

.clear-filter {
  font-size: 14px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: .2s;
}

.clear-filter:hover {
  color: var(--red);
}

.d-search-mid {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.search-input-wrap {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 20px;
  color: #999;
}

.search-input-wrap input {
  width: 100%;
  height: 54px;
  border: 1px solid #efeef2;
  border-radius: 8px;
  padding-left: 50px;
  padding-right: 20px;
  font-size: 15px;
  color: var(--dark);
  outline: none;
  background: white;
}

.search-input-wrap input::placeholder {
  color: #aaa;
  font-style: italic;
}

.btn-search-red {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #de3151;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0 30px;
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
}

.btn-search-red:hover {
  background: var(--red);
}

.btn-search-red .outline-icon {
  font-size: 12px;
  margin-left: 5px;
}

.d-search-bottom {
  margin-bottom: 30px;
}

.d-search-bottom .select-group {
  display: flex;
  gap: 15px;
}

.select-wrap {
  position: relative;
  width: 250px;
}

.select-wrap.flex-grow {
  flex-grow: 1;
  width: auto;
}

.select-wrap select {
  width: 100%;
  height: 48px;
  border: 1px solid #efeef2;
  border-radius: 6px;
  padding: 0 40px 0 20px;
  font-size: 14px;
  color: var(--dark);
  appearance: none;
  background: white;
  outline: none;
  cursor: pointer;
}

.select-wrap i.fa-chevron-down {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 12px;
  pointer-events: none;
}




.dokuman-tabs-section {
  position: relative;
  z-index: 10;
  margin-top: 20px;
  margin-bottom: 50px;
}

.dokuman-tabs-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  padding: 0 30px;
  border-bottom: none;
}

.d-tabs-overflow {
  overflow-x: auto;
  overflow-y: hidden;
  /* removing margin and padding that was for internal scroll if any */
}

.d-tabs-overflow::-webkit-scrollbar {
  height: 0px;
  /* hide scrollbar completely for pristine look if preferred, or extremely thin */
}

.d-tabs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  min-width: 800px;
  gap: 20px;
}

.d-tabs li a {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #6a7485;
  font-weight: 600;
  text-decoration: none;
  padding: 18px 0;
  display: block;
  position: relative;
  transition: 0.2s;
  white-space: nowrap;
}

.d-tabs li a:hover {
  color: #17243b;
}

.d-tabs li.active a {
  color: #17243b;
  font-weight: 700;
}

.d-tabs li.active a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #de3151;
  border-radius: 4px 4px 0 0;
}


.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.doc-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.doc-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.doc-icon {
  width: 50px;
  height: 60px;
  border-radius: 6px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 10px;
  align-items: center;
  color: white;
  flex-shrink: 0;
}

.doc-icon.pdf {
  background: #e63946;
}

.doc-icon.word {
  background: #4361ee;
}

.doc-icon.excel {
  background: #2a9d8f;
}

.doc-icon .icon-text {
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 8px;
}

.doc-icon .lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 60%;
  background: white;
  padding: 4px;
  border-radius: 2px;
  height: 20px;
}

.doc-icon .lines span {
  width: 100%;
  height: 2px;
  background: #e0e0e0;
  border-radius: 2px;
}

.doc-icon .lines span.sh {
  width: 60%;
}

.doc-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  text-transform: uppercase;
}

.doc-desc {
  font-size: 13px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
  flex-grow: 1;
}

.doc-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.btn-outline-red {
  flex-grow: 1;
  text-align: center;
  border: 1px solid #de3151;
  color: #de3151;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 30px;
  transition: .2s;
  background: white;
}

.btn-outline-red:hover {
  background: #de3151;
  color: white;
}

.btn-download {
  flex-grow: 1;
  text-align: center;
  background: #f4f5f8;
  color: #666;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 0;
  border-radius: 30px;
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-download:hover {
  background: #e1e4ec;
  color: var(--dark);
}

.d-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.d-pagination .dot-sm {
  font-size: 16px;
  color: #ccc;
}

.d-pagination .page {
  font-size: 15px;
  color: #888;
  font-weight: 500;
  cursor: pointer;
}

.d-pagination .page.active {
  color: var(--dark);
  font-weight: 800;
}

/* WIDGETS */
.widget-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.widget-not-found {
  background: linear-gradient(135deg, white, white);
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.widget-not-found::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/main-slider.webp') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.not-found-icon {
  width: 60px;
  height: 80px;
  background: #e6ebf5;
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 15px 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.not-found-icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: #b2bedc;
  border-radius: 6px 0 6px 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.doc-ill .line {
  height: 4px;
  background: white;
  width: 100%;
  margin-bottom: 6px;
  border-radius: 2px;
}

.doc-ill .line.half {
  width: 50%;
}

.widget-not-found h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.widget-not-found p {
  color: #666;
  font-size: 15px;
  margin-bottom: 25px;
}

.btn-red-pill {
  background: #de3151;
  color: white;
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: .2s;
}

.btn-red-pill:hover {
  background: var(--dark);
  color: white;
}

.widget-popular {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.widget-popular h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.pop-doc-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pop-doc {
  background: white;
  border: 1px solid #efeef2;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: .2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.pop-doc:hover {
  border-color: #ddd;
}

.pop-icon {
  width: 35px;
  height: 42px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 5px;
  align-items: center;
  color: white;
  flex-shrink: 0;
}

.pop-icon.pdf {
  background: #e63946;
}

.pop-icon.word {
  background: #4361ee;
}

.pop-icon .icon-text {
  font-size: 8px;
  font-weight: 800;
  margin-bottom: 5px;
}

.pop-icon .lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 60%;
  background: white;
  padding: 2px;
  border-radius: 2px;
  height: 12px;
}

.pop-icon .lines span {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
}

.pop-content {
  flex-grow: 1;
}

.pop-content h4 {
  font-size: 12px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
  gap: 5px;
}

.btn-download:hover {
  background: #e1e4ec;
  color: var(--dark);
}

.d-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.d-pagination .dot-sm {
  font-size: 16px;
  color: #ccc;
}

.d-pagination .page {
  font-size: 15px;
  color: #888;
  font-weight: 500;
  cursor: pointer;
}

.d-pagination .page.active {
  color: var(--dark);
  font-weight: 800;
}

/* WIDGETS */
.widget-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.widget-not-found {
  background: linear-gradient(135deg, white, white);
  border-radius: 12px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.widget-not-found::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/main-slider.webp') center/cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.not-found-icon {
  width: 60px;
  height: 80px;
  background: #e6ebf5;
  border-radius: 6px;
  margin-bottom: 20px;
  padding: 15px 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.not-found-icon::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  background: #b2bedc;
  border-radius: 6px 0 6px 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.doc-ill .line {
  height: 4px;
  background: white;
  width: 100%;
  margin-bottom: 6px;
  border-radius: 2px;
}

.doc-ill .line.half {
  width: 50%;
}

.widget-not-found h2 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.widget-not-found p {
  color: #666;
  font-size: 15px;
  margin-bottom: 25px;
}

.btn-red-pill {
  background: #de3151;
  color: white;
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  transition: .2s;
}

.btn-red-pill:hover {
  background: var(--dark);
  color: white;
}

.widget-popular {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.widget-popular h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.pop-doc-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.pop-doc {
  background: white;
  border: 1px solid #efeef2;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: .2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.pop-doc:hover {
  border-color: #ddd;
}

.pop-icon {
  width: 35px;
  height: 42px;
  border-radius: 4px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 5px;
  align-items: center;
  color: white;
  flex-shrink: 0;
}

.pop-icon.pdf {
  background: #e63946;
}

.pop-icon.word {
  background: #4361ee;
}

.pop-icon .icon-text {
  font-size: 8px;
  font-weight: 800;
  margin-bottom: 5px;
}

.pop-icon .lines {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 60%;
  background: white;
  padding: 2px;
  border-radius: 2px;
  height: 12px;
}

.pop-icon .lines span {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
}

.pop-content {
  flex-grow: 1;
}

.pop-content h4 {
  font-size: 12px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}

.pop-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #999;
}

.pop-stats .dl-count {
  color: #b2b9c5;
}

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

  .widget-layout {
    grid-template-columns: 1fr;
  }

  .d-search-mid,
  .d-search-bottom {
    margin-bottom: 30px;
  }

  .d-search-bottom .select-group {
    flex-direction: column;
  }

  .select-wrap {
    width: 100%;
  }
}

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

  .dokumanlar-hero-title {
    font-size: 40px;
  }
}


/* ─── SÜRDÜRÜLEBİLİRLİK SAYFASI ─── */
.surdurulebilirlik-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.surdurulebilirlik-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 300px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  z-index: 2;
  pointer-events: none;
}

.surdurulebilirlik-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/7756-elektrik-birimi.webp') center top/cover no-repeat;
  z-index: 1;
}

.surdurulebilirlik-hero-title {
  color: white;
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 600;
  position: relative;
  z-index: 3;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* POLICY SECTION */
.policy-section {
  background: #ffffff;
  padding: 60px 0 100px;
}

.policy-layout {
  display: flex;
  gap: 80px;
  align-items: center;
}

.policy-content {
  flex: 1.2;
}

.policy-content h2 {
  font-size: 42px;
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 20px;
}

.policy-content h4 {
  font-size: 20px;
  color: #333;
  font-weight: 500;
  margin-bottom: 30px;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.policy-list li {
  font-size: 17px;
  color: #555;
  margin-bottom: 18px;
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
}

.policy-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 20px;
}

.btn-red-wide {
  background: #C8102E;
  color: white;
  padding: 12px 60px;
  border-radius: 40px;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  transition: .3s;
}

.btn-red-wide:hover {
  background: #a50e26;
  color: white;
}

.policy-image-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.president-card-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.red-bg-card {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 90%;
  height: 80%;
  background: #C8102E;
  border-radius: 30px;
  z-index: 1;
}

.president-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.president-photo img {
  width: 100%;
  display: block;
}

.president-info-text {
  text-align: center;
  margin-top: 25px;
}

.president-info-text h3 {
  font-size: 32px;
  color: #333;
  font-weight: 500;
  margin-bottom: 5px;
}

.president-info-text p {
  font-size: 18px;
  color: #666;
}

/* RULES SECTION */
.rules-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  text-align: center;
}

.rules-bg-nature {
  position: absolute;
  inset: 0;
  background: url('../images/mini-section.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0) 100%);
}

.rules-title-main {
  font-size: 36px;
  color: #333;
  font-weight: 600;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.rules-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.rule-item-card {
  background: white;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.rule-item-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
}

.rule-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rule-item-card h4 {
  font-size: 18px;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 10px;
}

.rule-item-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

.rules-summary-text {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* STATS SECTION */
.s-stats-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  text-align: center;
}

.s-stats-bg-fade {
  position: absolute;
  inset: 0;
  background: url('../images/image-sec.webp') center/cover no-repeat;
  opacity: 0.15;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
}

.s-stats-title-main {
  font-size: 36px;
  color: #333;
  font-weight: 600;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.s-stats-row {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.s-stat-block {
  flex: 1;
}

.s-stat-number {
  font-size: 64px;
  font-weight: 700;
  color: #C8102E;
  margin-bottom: 15px;
}

.s-stat-label-text {
  font-size: 20px;
  color: #333;
  font-weight: 500;
}

@media (max-width: 992px) {
  .policy-layout {
    flex-direction: column;
    gap: 50px;
  }

  .policy-image-side {
    order: -1;
  }

  .rules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .s-stats-row {
    flex-wrap: wrap;
  }

  .s-stat-block {
    flex: 1 1 45%;
    margin-bottom: 40px;
  }
}

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

/* ─── HİZMETLER SAYFASI ─── */
.hizmetler-hero {
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  padding-top: 80px; /* Space for fixed header */
}

.hizmetler-hero-container {
  width: 100%;
  padding: 0 5%;
  margin: 0;
  display: flex;
  justify-content: center;
}

.hizmetler-hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto !important;
  text-align: center;
}

.hizmetler-hero-content h1 {
  font-size: 80px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  letter-spacing: -3px;
}

.hizmetler-hero-content p {
  font-size: 22px;
  color: #444;
  line-height: 1.4;
  font-weight: 400;
}

/* SERVICES GRID SECTION */
.services-structure-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  text-align: center;
}

.services-bg-decor {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 1) 90%, rgba(0, 0, 0, 0) 100%);
}

.services-header {
  max-width: 900px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 2;
}

.services-header h2 {
  font-size: 42px;
  color: #333;
  font-weight: 600;
  margin-bottom: 25px;
}

.services-header p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.services-main-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.service-struct-card {
  background: white;
  border-radius: 25px;
  padding: 45px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: .3s;
  height: 100%;
}

.service-struct-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.service-struct-icon {
  height: 100px !important;
  width: 100% !important;
  margin: 0 auto 25px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: none !important;
  border: none !important;
  overflow: visible !important;
  /* İkonun taşmasına izin veriyoruz ama kartı büyütmez */
}

.service-struct-icon i {
  font-size: 90px !important;
  color: #C8102E !important;
  line-height: 1 !important;
}

.service-struct-icon img {
  height: 100px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  transition: transform 0.3s ease;
}

.service-struct-card:hover .service-struct-icon img {
  transform: scale(1.1) !important;
}

.service-struct-card h3 {
  font-size: 24px;
  color: #C8102E;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-struct-list {
  list-style: none;
  padding: 0;
  text-align: center;
  display: block;
}

.service-struct-list li {
  font-size: 18px;
  color: #444;
  margin-bottom: 6px;
  position: relative;
  font-weight: 400;
}

/* SERVICES BANNER */
.services-info-banner {
  background: rgba(200, 16, 46, 0.7);
  border-radius: 0;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: none;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 15%, rgba(0, 0, 0, 1) 85%, rgba(0, 0, 0, 0) 100%);
}

.s-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  flex: 1;
  justify-content: center;
  position: relative;
}

.s-info-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.s-info-icon {
  font-size: 50px;
}

.s-info-text strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}

.s-info-text span {
  font-size: 16px;
  opacity: 1;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .services-main-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hizmetler-hero-content h1 {
    font-size: 50px;
  }

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

  .services-info-banner {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .s-info-item {
    flex-direction: column;
    text-align: center;
  }
}

/* İkon Yönetim Sistemi - Özel İkonlar */
.custom-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  display: block;
}

/* İkon kapsayıcılarının taşan içeriği göstermesi lazım (scale için) */
.mv-card-icon,
.mv-value-icon,
.mv-kys-icon,
.mv-scope-card-icon,
.h-icon-box,
.rule-item-icon {
  overflow: visible !important;
}

.mv-value-item:hover .custom-icon,
.mv-card:hover .custom-icon,
.mv-kys-item:hover .custom-icon {
  transform: scale(3.8) !important;
}

/* ─── HAKKIMIZDA SAYFASI ─── */
.about-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: #fff;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 65%;
  background: url('../images/main-slider.webp') center/cover no-repeat;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 75%);
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 35%, rgba(0, 0, 0, 0) 75%);
}

.about-hero-layout {
  display: flex;
  position: relative;
  z-index: 3;
  width: 100%;
}

.about-hero-spacer {
  flex: 1.6;
}

.about-hero-content {
  flex: 1;
  padding: 60px 80px 60px 0;
  text-align: left;
}

.about-hero-content h1 {
  font-size: 72px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  letter-spacing: -2px;
}

.about-hero-text {
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  font-weight: 400;
  text-align: justify;
}

/* BOARD SECTION */
.board-section {
  padding: 120px 0;
  background: #f4f7f9;
  position: relative;
  overflow: hidden;
}

.board-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../images/image-sec.webp') center/cover no-repeat fixed;
  opacity: 1;
  z-index: 1;
}

.board-main-title {
  font-size: 48px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
  color: #222;
  font-weight: 600;
}

.board-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.board-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  padding: 20px;
  text-align: left;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.8);
  position: relative;
  transition: transform 0.3s ease;
}

.board-card--left {
  align-self: center;
  text-align: left;
}

.board-card--right {
  align-self: center;
  text-align: right;
}

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

.board-card-inner {
  display: flex;
  gap: 40px;
  align-items: center;
}

.board-card--right .board-card-inner {
  text-align: right;
}

.board-img-container {
  position: relative;
  flex-shrink: 0;
  width: 280px;   /*280*/
  height: 350px; /*350*/
  z-index: 2;
}


.board-img-holder {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background: #fff;
  border: 1px solid #eee;
}

.board-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-card-info {
  flex-grow: 1;
}

.board-card-info h3 {
  font-size: 32px;
  margin-bottom: 5px;
  color: var(--dark);
  font-weight: 700;
  font-family: var(--font-heading);
}

.board-card-info .role {
  color: #888;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.board-card-info .divider {
  display: none;
}

.board-card-info .bio {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  max-width: 600px;
}

.board-card--right .board-card-info .bio {
  margin-left: auto;
}

.president-card {
  align-self: flex-start;
  margin-left: 0;
}

.vice-card {
  align-self: flex-end;
  margin-right: 0;
}

@media (max-width: 992px) {
  .about-hero-bg {
    width: 100%;
    opacity: 0.2;
  }

  .about-hero-layout {
    flex-direction: column;
  }

  .about-hero-content {
    text-align: center;
    padding: 40px 20px;
  }

  .board-card {
    padding: 30px 20px;
  }

  .board-card-inner {
    flex-direction: column !important;
    gap: 30px;
    text-align: center !important;
  }

  .board-card--right .board-card-info .bio {
    margin-left: auto;
    margin-right: auto;
  }

  .board-img-container {
    width: 220px;
    height: 280px;
  }
}


/* ─── CAREER PAGE ─── */
.career-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: #000;
}

.career-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  z-index: 1;
  pointer-events: none;
}

.career-hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/main-slider.webp') center/cover no-repeat;
  filter: brightness(0.6);
}

.career-hero .container {
  position: relative;
  z-index: 5;
}

.career-hero-content {
  max-width: 650px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.career-hero-content h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.career-hero-content .subtitle {
  font-size: 20px;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 20px;
}

.career-hero-content .desc {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-red {
  background: var(--red);
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  transition: .3s;
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-white {
  background: white;
  color: var(--dark);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: .3s;
}

.btn-white:hover {
  background: #f8f8f8;
}

/* Career Main Section with Watermark */
.career-main-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
}

.career-watermark {
  position: absolute;
  top: 0;
  /* Positioned at the very top of the section */
  left: 50%;
  transform: translate(-50%, -50%);
  /* Pull half of it up into the hero */
  font-family: var(--font-heading);
  font-size: clamp(120px, 20vw, 300px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px rgba(0, 0, 0, 0.04);
  line-height: .8;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

.career-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.career-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 60px 40px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: .4s;
  border: 1px solid #eee;
  position: relative;
}

.card-icon-wrap {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.card-icon-decor {
  display: none;
}

.card-icon {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.card-icon img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.career-card h3 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
}

.card-title-line {
  width: 240px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 30px;
}

.card-img {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 25px;
}

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

.card-text {
  margin-bottom: 30px;
}

.card-text p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.btn-card {
  background: var(--red);
  color: white;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: .3s;
}

.btn-card:hover {
  background: var(--red-dark);
  padding-right: 35px;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 0;
  background: #ffffff;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.how-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.how-header i {
  font-size: 48px;
  color: var(--red);
}

.how-header h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 1px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: .3s;
}

.step-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.step-item .num {
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--red);
  flex-shrink: 0;
  font-size: 18px;
}

.step-content h5 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 992px) {

  .career-cards-grid,
  .how-grid {
    grid-template-columns: 1fr;
  }

  .career-hero-content {
    padding: 30px;
  }

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

/* ─── HABER DETAY (NEWS DETAIL) ─── */
.detail-page-wrapper {
  background: #ffffff;
  min-height: 100vh;
}

.detail-hero {
  position: relative;
  padding: 100px 0 100px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 32, 44, 0.95), rgba(26, 32, 44, 0.7));
  z-index: 1;
}

.detail-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  z-index: 2;
  pointer-events: none;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

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

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

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

.detail-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.meta-item i {
  color: var(--red);
}

.detail-content-section {
  padding-bottom: 80px;
}

.detail-main-img img {
  border-radius: 16px;
  margin: 40px auto 0;
  position: relative;
  z-index: 10;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 4px solid white;
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

.detail-body {
  background: white;
  padding: 40px;
  border-radius: 16px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.detail-body h2,
.detail-body h3,
.detail-body h4 {
  font-family: var(--font-heading);
  color: var(--dark);
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
}

.detail-body img {
  border-radius: 8px;
  margin: 20px 0;
  max-width: 100%;
  height: auto;
}

.detail-share {
  background: white;
  padding: 24px 40px;
  border-radius: 16px;
  margin-top: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 15;
}

.share-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.share-links {
  display: flex;
  gap: 12px;
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  color: white;
}

.share-btn.facebook {
  background: #1877F2;
}

.share-btn.twitter {
  background: #1DA1F2;
}

.share-btn.linkedin {
  background: #0A66C2;
}

.share-btn.whatsapp {
  background: #25D366;
}

/* Sidebar Widget */
.sidebar-widget {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

@media (max-width: 991px) {
  .sidebar-widget {
    margin-top: 40px;
  }
}

.widget-title-wrapper {
  position: relative;
  margin-bottom: 24px;
}

.widget-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin: 0;
}

.widget-title-line {
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-top: 10px;
  border-radius: 2px;
}

.widget-news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.widget-news-item {
  display: flex;
  gap: 15px;
  align-items: center;
  group: hover;
}

.w-news-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.w-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.widget-news-item:hover .w-news-img img {
  transform: scale(1.1);
}

.w-news-content {
  flex-grow: 1;
}

.w-news-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.widget-news-item:hover .w-news-title {
  color: var(--red);
}

.w-news-date {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── SEARCH MODAL ─── */
.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 21, 51, 0.95);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.search-modal.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-content {
  width: 100%;
  max-width: 800px;
  padding: 0 20px;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.search-modal.active .search-modal-content {
  transform: translateY(0);
}

.search-form {
  position: relative;
  display: flex;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
}

.search-form input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  padding: 15px 50px 15px 0;
  font-family: var(--font-heading);
}

.search-form input:focus {
  outline: none;
  border-bottom-color: var(--red);
}

.search-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-form button {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.search-form button:hover {
  color: var(--red);
}

.search-close-btn {
  position: absolute;
  top: -60px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}

.search-close-btn:hover {
  transform: rotate(90deg);
  color: var(--red);
}

@media (max-width: 768px) {
  .search-form input {
    font-size: 24px;
  }
}

/* ─── FAQ SECTION ─── */
.faq-section {
  position: relative;
  min-height: 100vh;
  background: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.faq-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.faq-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  position: relative;
  z-index: 2;
  width: 100%;
}

.faq-content {
  grid-column: 2;
  padding: 0;
}

.faq-header {
  margin-bottom: 40px;
}

.faq-header h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #888;
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 2px;
}

.faq-header h3 {
  font-family: var(--font-heading);
  font-size: 42px;
  color: #1a1a2e;
  font-weight: 800;
}

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

.faq-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
  transition: color 0.3s;
}

.faq-question h4 {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  margin: 0;
}

.faq-question .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question h4 {
  color: var(--red);
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer .inner {
  padding-bottom: 20px;
  padding-top: 5px;
}



@media (max-width: 992px) {
  .faq-section {
    min-height: auto;
    padding: 0 0 60px;
    flex-direction: column;
  }
  .faq-bg {
    position: relative;
    height: 350px;
    width: 100%;
    margin-bottom: 40px;
  }
  .faq-bg img {
    object-position: center;
    object-fit: cover;
  }
  .faq-content-wrapper {
    grid-template-columns: 1fr;
    padding: 0 20px;
    width: 100%;
  }
  .faq-content {
    grid-column: 1;
    text-align: left;
  }
  .faq-header {
    text-align: center;
    margin-bottom: 30px;
  }
  .faq-header h3 {
    font-size: 32px;
  }
  .faq-question h4 {
    font-size: 16px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: color 0.3s;
}

.search-form button:hover {
  color: var(--red);
}

.search-close-btn {
  position: absolute;
  top: -60px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
}

.search-close-btn:hover {
  transform: rotate(90deg);
  color: var(--red);
}

@media (max-width: 768px) {
  .search-form input {
    font-size: 24px;
  }
}

/* ─── FAQ SECTION ─── */
.faq-section {
  position: relative;
  min-height: 100vh;
  background: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.faq-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.faq-content-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  position: relative;
  z-index: 2;
  width: 100%;
}

.faq-content {
  grid-column: 2;
  padding: 0;
}

.faq-header {
  margin-bottom: 40px;
}

.faq-header h2 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: #888;
  margin-bottom: 5px;
  font-weight: 500;
  letter-spacing: 2px;
}

.faq-header h3 {
  font-family: var(--font-heading);
  font-size: 42px;
  color: #1a1a2e;
  font-weight: 800;
}

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

.faq-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 15px 0;
  transition: color 0.3s;
}

.faq-question h4 {
  font-size: 17px;
  font-weight: 600;
  color: #444;
  margin: 0;
}

.faq-question .icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question h4 {
  color: var(--red);
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer .inner {
  padding-bottom: 20px;
  padding-top: 5px;
}



@media (max-width: 992px) {
  .faq-section {
    min-height: auto;
    padding: 0 0 60px;
    flex-direction: column;
  }
  .faq-bg {
    position: relative;
    height: 350px;
    width: 100%;
    margin-bottom: 40px;
  }
  .faq-bg img {
    object-position: center;
    object-fit: cover;
  }
  .faq-content-wrapper {
    grid-template-columns: 1fr;
    padding: 0 20px;
    width: 100%;
  }
  .faq-content {
    grid-column: 1;
    text-align: left;
  }
  .faq-header {
    text-align: center;
    margin-bottom: 30px;
  }
  .faq-header h3 {
    font-size: 32px;
  }
  .faq-question h4 {
    font-size: 16px;
  }
  .faq-answer {
    font-size: 14px;
  }
}

/* ─── KURUMSAL HERO (PREMIUM) ─── */
.kurumsal-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #1a1a1a;
  margin-top: 0;
}

.kurumsal-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.kurumsal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(200, 16, 46, 0.5) 100%);
  z-index: 2;
}

.kurumsal-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.kurumsal-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  /*letter-spacing: 3px;*/
  text-transform: uppercase;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.kurumsal-subtitle {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #f8f9fa;
  font-weight: 400;
  /*letter-spacing: 2px;*/
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.kurumsal-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #d32f2f;
  border-radius: 2px;
}
