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

html,
body {
  height: 100%;
}

body {
  font-family: "Jost", sans-serif;
  background-color: #ffffff;
  color: #111827;
  line-height: 1.5;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

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

button {
  font-family: inherit;
  border: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
}

:root {
  --primary-500: #ff5e14;
  --primary-400: #ff7d3d;
  --primary-600: #e04d0f;
  --primary-700: #c43d0c;
  --primary-800: #a8320a;
  --gray-bg: #f1f1f1;
}
.loader-overlay {
    position: fixed;
    inset: 0;
    /*background-color: var(--primary-500);*/
    background-color: rgba(45,45,45,0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: #ffffff;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-overlay.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 10rem;
  height: 10rem;
  object-fit: contain;
}

.loader-text-wrapper {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
}

.loader-spinner {
  width: 2.5rem;
  height: 2.5rem;
  animation: spin 1s linear infinite;
}

.loader-spinner.small {
  width: 1.8rem;
  height: 1.8rem;
}

.spinner-track {
  fill: none;
  stroke: currentColor;
  opacity: 0.25;
}

.spinner-head {
  fill: currentColor;
  opacity: 0.75;
}

.loader-text {
  color: #ffffff;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}

.header-top {
  width: 100%;
  background-color: rgba(55, 65, 81, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.header-top-left,
.header-top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-top-item {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 0.875rem;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  background-color: transparent;
}

.header-top-item a {
  color: #ffffff;
  text-decoration: none;
  display: block;
}

.header-top-item:hover {
  background-color: #ffffff;
  border-color: #ffffff;
}

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

@media (max-width: 768px) {
  .header-top-inner {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.75rem;
  }
  
  .header-top-left,
  .header-top-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .header-top-item {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
}

.header-bottom {
    position: relative;
    overflow: visible;
    z-index: 99;
    width: 100%;
    /*background-color: rgba(255, 94, 20, 0.95);*/
    /*background-color: rgba(34,139,34,0.95);*/
    background-color: rgba(45,45,45,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  min-height: 3.5rem;
  position: relative;
  width: 100%;
}

.nav-group {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
}

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

.nav-item {
  padding: 0.5rem 0.75rem;
  margin: 0 0.75rem;
  position: relative;
}

.nav-link {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: -0.05em;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: block;
  position: relative;
}


.dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.nav-dropdown {
  position: relative;
}


.nav-item:hover .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.nav-dropdown:hover .nav-link {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 0.25rem;
}

.nav-dropdown:hover .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px 2px 0 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 101;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #4b5563;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #f9fafb;
  color: var(--primary-500);
}

.nav-mega {
  position: static;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 4rem);
  left: 0;
  right: 0;
  width: 100%;
  transform: translateY(-10px);
  background-color: transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem 0;
  margin-top: -4.5rem;
  padding-top: calc(2.5rem + 4.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-mega {
  position: static;
}

.nav-mega::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 4.5rem;
  z-index: 99;
  pointer-events: auto;
}

.mega-menu-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  box-sizing: border-box;
}

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

.mega-menu-container.mega-menu-3 {
  grid-template-columns: repeat(3, 1fr);
}

.mega-menu-block {
    /*background-color: var(--primary-500);*/
    background-color: rgba(45,45,45,0.95);
    border-radius: 0.875rem;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}


.mega-menu-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.mega-menu-title {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.mega-menu-list li {
  margin-bottom: 0.4rem;
}

.mega-menu-list a {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  transition: padding-left 0.2s ease, color 0.2s ease;
  position: relative;
  font-weight: 400;
}

.mega-menu-list a::before {
  content: ">";
  margin-right: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  transition: margin-right 0.2s ease;
}

.mega-menu-list a:hover {
  padding-left: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.mega-menu-list a:hover::before {
  margin-right: 0.5rem;
}

@media (max-width: 1024px) {
  .mega-menu-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .mega-menu-block {
    padding: 1.5rem 1.25rem;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .mega-menu {
    padding: 1rem 0;
  }
  
  .mega-menu-container {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .mega-menu-block {
    padding: 1.25rem 1rem;
  }
}

@media (max-width: 768px) {
  .nav-group {
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  .nav-item {
    padding: 0.4rem 0.5rem;
    margin: 0 0.25rem;
  }
  .nav-link {
    font-size: 0.85rem;
  }
  .dropdown-menu {
    min-width: 180px;
  }
}

.logo-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0.5rem;
  z-index: 1000;
  pointer-events: none;
}

.logo-circle {
  background-color: #ffffff;
  padding: 1.25rem 1.25rem 1.5rem;
  border-bottom-left-radius: 999px;
  border-bottom-right-radius: 999px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1001;
  pointer-events: auto;
}

.logo-circle img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

@media (min-width: 640px) {
  .logo-circle img {
    width: 7rem;
    height: 7rem;
  }
}

@media (min-width: 768px) {
  .logo-circle img {
    width: 9rem;
    height: 9rem;
  }
}

.header-content {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: 1;
  margin: 0;
  padding: 0;
}

.slick-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100%;
}

.slick-track {
  position: relative;
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  height: 100%;
}

.slick-slide {
  width: 100vw;
  min-width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  position: relative;
  display: block;
}

.slide-wrapper {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.slide-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: brightness(0.5);
  -webkit-backdrop-filter: brightness(0.5);
  z-index: 1;
}

.slide-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.slider-controls {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: 10;
  pointer-events: none;
}

.slider-btn {
  border: 2px solid #ffffff;
  padding: 0.5rem;
  border-radius: 50%;
  color: #ffffff;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s ease;
  opacity: 0.3;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  width: 48px;
  height: 48px;
}

.slider-btn:hover {
  opacity: 0.6;
}

.slider-btn svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .slide-wrapper,
  .slide-image {
    height: 60vh;
  }
  
  .slick-slide {
    height: 60vh;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    padding: 0.4rem;
  }
  
  .slider-btn svg {
    width: 20px;
    height: 20px;
  }
}

.bottom-strip {
    position: relative;
    /*background-color: var(--primary-500);*/
    background-color: rgba(45,45,45,0.95);
    height: 5rem;
    display: flex;
    align-items: flex-end;
    margin-top: -5rem;
}

.bottom-strip-inner {
  background-color: #ffffff;
  border-radius: 1rem 1rem 0 0;
  height: 100%;
}

.projects-section {
  background-color: #f1f1f1;
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  font-size: 1.875rem;
  font-weight: 600;
  margin: 0 auto;
}

.projects-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.tab {
  border-radius: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  font-size: 0.95rem;
  transition: background-color 0.2s ease, color 0.2s ease;
  border: none;
}

.tab:hover {
  transform: translateY(-1px);
}

.tab-active {
    /*background-color: var(--primary-500);*/
    background-color: rgba(45,45,45,0.95);
    color: #ffffff;
}

.projects-slider-wrapper {
  display: none;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.projects-slider-wrapper.active {
  display: block;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 0 -0.5rem;
}

.projects-grid > div {
  padding: 0 0.5rem;
}

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

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

.project-card-wrapper {
  padding: 0.5rem;
}

.project-card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  height: 99%;
  min-height: 274px;
}

.project-image {
  width: 100%;
  position: relative;
  padding-bottom: 66.67%;
  overflow: hidden;
}

.project-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.project-title {
  padding-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  text-align: center;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.projects-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #4b5563;
}

.projects-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background-color: #ffffff;
  width: fit-content;
  margin: 0 auto;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.circle-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  padding: 0.5rem;
  transition: background-color 0.2s ease;
}

    .circle-btn:hover {
        /*background-color: var(--primary-500);*/
        background-color: rgba(45,45,45,0.95);
        color: #ffffff;
    }

.all-projects-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.all-projects-link:hover {
  color: var(--primary-500);
}

.events-services-section {
  padding: 2.5rem 0;
  background-color: #ffffff;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.flex-row {
  flex-direction: row;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.gap-4 {
  gap: 1rem;
}

.basis-2\/5 {
  flex-basis: 40%;
}

.basis-3\/5 {
  flex-basis: 60%;
}

.overflow-hidden {
  overflow: hidden;
}

.justify-between {
  justify-content: space-between;
}

.items-end {
  align-items: flex-end;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.font-semibold {
  font-weight: 600;
}

.gap-x-1 {
  column-gap: 0.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.flex-wrap {
  flex-wrap: wrap;
}

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

.events-nav-btn {
  border: 1px solid var(--primary-500);
  color: var(--primary-500);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

    .events-nav-btn:hover {
        /*background-color: var(--primary-500);*/
        background-color: rgba(45,45,45,0.95);
        color: #ffffff;
    }

.all-events-link {
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid var(--primary-500);
  color: var(--primary-500);
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

    .all-events-link:hover {
        /*background-color: var(--primary-500);*/
        background-color: rgba(45,45,45,0.95);
        color: #ffffff;
    }

.etkinlikler {
  position: relative;
  width: 100%;
}

.etkinlikler .slick-slider {
  position: relative;
  width: 100%;
}

.etkinlikler .slick-slide {
  width: 202px !important;
  padding: 0;
  box-sizing: border-box;
}

.etkinlikler .slick-list {
  margin: 0;
  overflow: hidden;
}

.etkinlikler .p-2 {
  padding: 0.5rem;
}

.etkinlikler .bg-gray-100 {
  width: 100%;
  max-width: 202px;
}

.etkinlikler .relative.pb-\[66\.67\%\] {
  width: 162px;
  height: 108px;
  padding-bottom: 0 !important;
  margin: 0 auto;
}

.etkinlikler .relative.pb-\[66\.67\%\] img {
  width: 162px;
  height: 108px;
  position: absolute;
  top: 0;
  left: 0;
  inset: 0;
  object-fit: cover;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.shadow-md {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-slate-400 {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(148, 163, 184, 0.3);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.etkinlikler .slick-track {
  display: flex;
  align-items: stretch;
}

.etkinlikler .slick-slide > div {
  height: 100%;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.relative {
  position: relative;
}

.pb-\[66\.67\%\] {
  padding-bottom: 66.67%;
}

.relative.pb-\[66\.67\%\] img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.875rem;
  font-weight: 500;
  color: #111827;
  margin: 0;
}

.text-xs {
  font-size: 0.75rem;
}

.items-center {
  align-items: center;
}

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

.mb-1 {
  margin-bottom: 0.25rem;
}

.size-5 {
  width: 1.25rem;
  height: 1.25rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.border {
  border-width: 1px;
  border-style: solid;
}

.border-secondary-500 {
  border-color: var(--primary-500);
}

.text-secondary-500 {
  color: var(--primary-500);
}

.p-1 {
  padding: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.font-medium {
  font-weight: 500;
}

.services-column {
  flex: 0 0 60%;
  display: flex;
  align-items: center;
}

.hizmet-rehberi {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.services-grid {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.service-card {
  border-radius: 0.375rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.5rem;
  width: 8rem;
  height: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.service-card:hover {
  background-color: rgba(255, 94, 20, 0.1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.1) translateY(-0.75rem);
}

.service-card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 500;
  text-decoration: none;
  color: inherit;
  width: 100%;
  height: 100%;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon svg,
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-title {
  font-size: 0.875rem;
  color: #111827;
  line-height: 1.2;
}

@media (max-width: 1024px) {
  .events-services-container {
    flex-direction: column;
  }

  .events-column,
  .services-column {
    flex: 1 1 100%;
  }

  .services-grid,
  .hizmet-rehberi {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .events-title {
    font-size: 1.25rem;
  }

  .service-card {
    width: 7rem;
    height: 7rem;
  }
}

.event-slider {
  width: 100%;
}
.event-card {
  min-width: 190px;
  max-width: 190px;
  min-height: 250px;
  max-height: 250px;
  width: 190px;
  height: 250px;
  box-shadow: 0 4px 16px 0 #0001;
  background: #f5f6fa;
  border-radius: 18px;
  margin: 0 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.event-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}
.event-desc {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
.event-title {
  font-weight: 600;
  font-size: 1rem;
  line-clamp: 2;
}
.event-meta {
  font-size: .91rem;
  color: #444a;
}
.btn-orange-outline {
  border: 1.5px solid var(--primary-500);
  color: var(--primary-500);
  background: none;
  border-radius: 10px;
  padding: 3px 15px;
  font-weight: 500;
  cursor: pointer;
  transition: .2s;
}
.btn-orange-outline:hover {
  background: var(--primary-500);
  color: #fff;
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  min-width: 370px;
}
.service-card {
  width: 150px; height: 140px;
  box-shadow: 0 2px 10px #0002;
  border-radius: 13px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 1000px) {
  .event-card {width:140px;height:200px;}
  .service-card {width:100px;height:100px;  font-size:15px;}
}

.two-column-section {
  padding: 2.5rem 0 3rem;
}

.two-column-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .two-column-inner {
    flex-direction: row;
  }
}

.column {
  flex: 1;
  min-height: 220px;
  border-radius: 1.25rem;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-column {
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-400) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.media-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-placeholder-img {
  width: 100%;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-logo {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.text-column {
  background-color: #ffffff;
  padding: 2rem;
  display: flex;
  align-items: center;
}

.text-content {
  width: 100%;
}

.content-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.content-text {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--primary-500);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s ease;
}

.content-link:hover {
  color: var(--primary-400);
}

.media-placeholder {
  background-color: #e5e7eb;
}

.text-placeholder {
  background-color: #f9fafb;
}

.inner-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #4b5563;
}

.news-announcements-section {
  padding: 2.5rem 0;
  background-color: #f8f9fa;
}

.news-announcements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.news-panel {
  background-color: #e5e7eb;
  padding: 1.25rem;
  border-radius: 0.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.06);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.panel-header-left {
  display: flex;
  align-items: center;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #374151;
}

.panel-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.panel-nav-btn {
  border: 1px solid #374151;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  color: #374151;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.panel-nav-btn:hover {
  background-color: #374151;
  color: #ffffff;
}

.panel-link {
  border: 1px solid #374151;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  color: #374151;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.panel-link:hover {
  background-color: #374151;
  color: #ffffff;
}

.news-slider-container {
  overflow: hidden;
  position: relative;
}

.news-pages-wrapper {
  position: relative;
  width: 100%;
}

.news-page {
  display: none;
}

.news-page.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

.news-card {
  display: block;
  padding: 0.5rem;
}

.news-image {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.news-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.5rem;
}

.news-date {
  background-color: rgba(55, 65, 81, 0.7);
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  border-radius: 0.375rem;
  font-weight: 500;
  margin-left: auto;
  margin-bottom: auto;
}

.news-title {
  color: #ffffff;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.announcements-panel {
  background-color: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.tabs-header {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e7eb;
}

.tab-btn {
  padding: 1rem;
  font-size: 1rem;
  color: #6b7280;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: color 0.2s ease;
}

.tab-btn:hover {
  color: #374151;
}

.tab-btn.active {
  color: #374151;
  font-weight: 500;
  background-color: #ffffff;
}

.tab-btn.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #2563eb;
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #2563eb;
  z-index: 1;
}

.tab-content {
  display: none;
  border: 1px solid #e5e7eb;
  border-top: none;
}

.tab-content.active {
  display: block;
}

.tab-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1rem;
}

.tab-nav-buttons {
  display: flex;
  gap: 0.5rem;
}

.tab-nav-btn {
  border: 1px solid #374151;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  color: #374151;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tab-nav-btn:hover {
  background-color: #374151;
  color: #ffffff;
}

.announcements-list {
  padding: 0 1rem 1rem;
  max-height: 372px;
  overflow-y: auto;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0.75rem;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
  transition: color 0.2s ease;
}

.announcement-item:last-child {
  border-bottom: none;
}

.announcement-item:hover {
  color: #111827;
}

.announcement-icon {
  flex-shrink: 0;
}

.announcement-content {
  flex: 1;
  min-width: 0;
}

.announcement-title {
  font-size: 0.95rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.announcement-date {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.empty-message {
  padding: 2rem;
  text-align: center;
  color: #6b7280;
}

.site-footer {
  background: #111827;
}
.site-footer .footer-content {
  background: #111827;
  color: #F4F6F7;
}
.site-footer .footer-bottom {
  background: #1f2937;
  color: #F4F6F7;
  padding: 30px 0;
}
.site-footer .footer-bottom .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.site-footer .footer-bottom .flex-1.text-right {
  text-align: right;
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.site-footer .footer-content {
  padding-top: 46px;
  padding-bottom: 36px;
  border: none;
}
.site-footer .flex-row {
  gap: 32px;
  justify-content: start;
}
.site-footer .flex-col {
  margin-right: 40px;
}
.site-footer h4, .site-footer .text-xl {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.site-footer ul {
  color: #f4f6f7;
  font-size: 16px;
  font-weight: 400;
}
.site-footer ul li {
  padding-top: 3px;
  padding-bottom: 3px;
}
.site-footer a {
  color: #f4f6f7;
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s, color 0.2s;
}
.site-footer a:hover {
  opacity: 1;
  color: #ea9628;
}
.site-footer .footer-logo-container {
  margin-top: 72px;
  text-align: left;
}
.site-footer .footer-logo-container img {
  width: 140px;
  object-fit: contain;
}
.site-footer .footer-contact-row {
  color: #f4f6f7;
  font-size: 15px;
  margin-top: 8px;
  gap: 7px;
}
.site-footer .footer-social-icons {
  margin-top: 16px;
  margin-bottom: 0;
  gap: 15px;
}
.site-footer .footer-social-icons svg, .site-footer .footer-social-icons img {
  opacity: 0.45;
  width: 30px;
  height: 30px;
  transition: opacity 0.2s;
}
.site-footer .footer-social-icons a:hover svg, .site-footer .footer-social-icons a:hover img {
  opacity: 1;
}
.site-footer .footer-partners {
  margin-top: 32px;
  gap: 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  filter: grayscale(1) opacity(0.65);
  transition: filter 0.18s;
}
.site-footer .footer-partners img, .site-footer .footer-partners svg {
  max-height: 48px;
  margin: 0 8px;
}
.site-footer .footer-partners a:hover {
  filter: grayscale(0) opacity(1);
}
.site-footer .footer-bottom .text-primary-400, .site-footer .footer-bottom a {
  color: #ea9628 !important;
  font-weight: 600;
  opacity: 1;
}
@media (max-width: 1200px) {
  .site-footer .flex-row { flex-wrap: wrap; gap: 24px; }
  .site-footer .flex-col { margin-right: 22px; }
}
@media (max-width: 900px) {
  .site-footer .flex-row { flex-direction: column; align-items: flex-start; }
  .site-footer .flex-col { margin-right: 0; margin-bottom: 20px;   }
}

.cookie-banner {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: -999px;
    max-width: 960px;
    width: calc(100% - 2.5rem);
    /*background-color: rgba(255, 94, 20, 0.95);*/
    background-color: rgba(45,45,45,0.95);
    padding: 1.75rem 2rem;
    border-radius: 1.25rem;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    z-index: 9999;
    transition: transform 0.3s ease, bottom 0.3s ease;
}

.cookie-banner.visible {
  bottom: 1.5rem;
}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.cookie-text p {
  font-size: 0.9rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.btn {
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background-color 0.2s ease, color 0.2s ease,
    transform 0.1s ease;
}

.btn-accept {
  background-color: #22c55e;
  color: #ffffff;
}

.btn-accept:hover {
  background-color: #16a34a;
  transform: translateY(-1px);
}

.btn-more {
  background-color: #ffffff;
  color: #111827;
}

.btn-more:hover {
  background-color: #e5e7eb;
  transform: translateY(-1px);
}

.baskan-section {
    position: absolute;
    z-index: 20;
    height: 5rem;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    /*background-color: var(--primary-500);*/
    background-color: rgba(45,45,45,0.95);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1rem;
    padding: 0 0.5rem;
    overflow: visible;
}

.baskan-photo-wrapper {
  display: flex;
  align-items: flex-end;
  overflow: visible;
  position: relative;
  height: 5rem;
}

.baskan-photo {
  display: flex;
  align-items: flex-end;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 247px;
}

.baskan-photo img {
  height: 312px;
  width: 247px;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  flex-shrink: 0;
  z-index: 1;
}

.baskan-signature {
  max-height: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 0.25rem;
}

.signature-img {
  height: 4rem;
  width: auto;
  object-fit: contain;
}

.baskan-buttons {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  height: 5rem;
}

.baskan-btn {
    /*background-color: var(--primary-700);*/
    background-color: rgba(45,45,45,0.95);
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
    color: #ffffff;
    font-size: 0.875rem;
    transition: background-color 0.2s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.baskan-btn:hover {
  background-color: var(--primary-800);
}

.baskan-btn a {
  color: #ffffff;
  text-decoration: none;
  display: block;
}

.baskan-social {
  display: flex;
  height: 5rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.social-icon {
  background-color: #ffffff;
  padding: 0.75rem;
  color: var(--primary-700);
  transition: background-color 0.2s ease;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon:hover {
  background-color: #e5e7eb;
}

.social-icon a {
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.baskan-quick-links {
  height: 5rem;
  background-color: #ffffff;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: visible;
}

.quick-links-list {
  display: flex;
  flex: 1;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: space-evenly;
  list-style: none;
  padding: 0 0.5rem;
  margin: 0;
  width: 100%;
  overflow: visible;
}

.quick-link-item {
  height: 5rem;
  display: flex;
  padding: 0 0.25rem;
  border-bottom: 4px solid transparent;
  transition: border-color 0.2s ease;
  flex-shrink: 1;
  min-width: 0;
  white-space: nowrap;
}

.quick-link-item:hover {
  border-bottom-color: var(--primary-400);
}

.quick-link-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--primary-700);
  text-decoration: none;
}

.quick-link-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-700);
  fill: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quick-link-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.quick-link-text {
  margin-top: 0.5rem;
  line-height: 1rem;
  font-size: 0.75rem;
  white-space: normal;
  text-align: center;
}

@media (max-width: 1024px) {
  .quick-links-list {
    gap: 0.75rem;
  }
  
  .quick-link-text {
    font-size: 0.7rem;
  }
  
  .quick-link-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}

@media (max-width: 768px) {
  .baskan-section {
    flex-wrap: wrap;
    height: auto;
    min-height: 5rem;
    padding: 0.5rem;
  }
  
  .baskan-photo-wrapper {
    width: 100%;
    order: 1;
  }
  
  .baskan-photo img {
    height: 200px;
    width: auto;
    transform: translateY(-150px);
  }
  
  .baskan-name {
    font-size: 1.25rem;
  }
  
  .baskan-title {
    font-size: 0.75rem;
  }
  
  .baskan-signature {
    height: 4rem;
  }
  
  .signature-img {
    height: 3rem;
  }
  
  .baskan-buttons {
    height: auto;
    flex-wrap: wrap;
    order: 2;
  }
  
  .baskan-social {
    height: auto;
    order: 3;
  }
  
  .baskan-quick-links {
    height: auto;
    width: 100%;
    order: -1;
  }
  
  .quick-links-list {
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0.5rem;
  }
  
  .quick-link-item {
    height: auto;
    padding: 0.5rem;
  }
}

.event-inline { display: flex; gap: 1rem; }
.services-grid { gap: 8px !important; justify-content: center !important; }
.service-card { min-width: 140px; max-width: 170px; }

.kurumsal-links-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 28px;
}
.kurumsal-link-box {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  width: 170px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.3s;
  margin: 0;
  padding: 20px 12px;
}
.kurumsal-link-box:hover {
  opacity: 1;
}
.kurumsal-link-box img {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
  margin-bottom: 0px;
}

.site-footer svg.size-6 {
  width: 17.59px !important;
  height: 24px !important;
  min-width: 17.59px;
  min-height: 24px;
  max-width: 17.59px;
  max-height: 24px;
}

.site-footer img[src*="footer-logo2.svg"] {
  width: 330px !important;
  height: 96px !important;
  max-width: 330px;
  max-height: 96px;
  object-fit: contain;
}

.site-footer ul, .site-footer ul li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}


