:root{
  --color_1: #242849;
  --color_2: #417cce;
  --color_3: #68bac6;
  --color_4: #ffffff;
  --color_5: #f4f4f4;
  --topbar-h: 42px;
  --nav-h: 72px;
  --header-h: calc(var(--topbar-h) + var(--nav-h));
}

*{
  box-sizing: border-box;
}

img{
  max-width: 100%;
  height: auto;
  display: block;
}

video{
  max-width: 100%;
  height: auto;
  display: block;
}

html{
  height: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

body{
  height: 100%;
  margin: 0;
  font-family: Roboto, Arial, sans-serif;
  color: var(--color_1);
  background: #fff;
  padding-top: var(--header-h);
  max-width: 100%;
  overflow-x: hidden !important;
}

[hidden]{
  display: none !important;
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
  max-width: 100%;
  overflow-x: clip;
}

.site-header.scrolled{
  background: rgba(36, 40, 73, .98);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.topbar{
  height: var(--topbar-h);
  background: var(--color_1);
  color: #fff;
}

.topbar-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.topbar-left{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.topbar-link{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: .95;
  white-space: nowrap;
}

.topbar-link:hover{
  opacity: 1;
  text-decoration: underline;
}

.topbar-sep{
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,.25);
  display: inline-block;
}

.topbar-right{
  display: flex;
  align-items: center;
  gap: 14px;
}

.portal-link{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: .95;
  white-space: nowrap;
}

.portal-link:hover{
  opacity: 1;
  text-decoration: underline;
}
/* Dil Seçici Konteynırı */
.lang-flags {
    display: flex;
    gap: 10px; /* Bayraklar arası mesafe biraz daraldı */
    align-items: center;
    padding: 2px;
}

/* Bayrakların Küçültülmüş Hali */
.flag-img {
    width: 24px; /* Boyutu 35'ten 24'e düşürdüm, tam kararında oldu */
    height: auto;
    border-radius: 3px; /* Daha küçük boyutta 3px daha keskin durur */
    transition: all 0.3s ease;
    filter: brightness(0.5) grayscale(0.2); /* Pasifler iyice geride kalsın */
    border: none !important;
    box-shadow: none !important;
}

/* Üzerine Gelince */
.lang-flags a.flag:hover .flag-img {
    filter: brightness(1) grayscale(0);
    transform: translateY(-2px);
}

/* AKTİF DİL (Küçük ama belirgin) */
.lang-flags a.flag.active .flag-img {
    filter: brightness(1.1) grayscale(0);
    transform: scale(1.2); /* Çok devasa olmadan hafifçe büyür */
    border: none !important; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* Hafif, doğal bir derinlik */
}

.flag:hover{
  opacity: 1;
}

.flag.active{
  opacity: 1;
  background: rgba(255,255,255,.18);
}

.navwrap{
  height: var(--nav-h);
  background: rgba(36,40,73,.35);
  backdrop-filter: saturate(1.2) blur(8px);
  transition: background .25s ease, backdrop-filter .25s ease;
}

.site-header.scrolled .navwrap{
  background: rgba(36,40,73,.98);
  backdrop-filter: none;
}

.header-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
}

.logo-wrap{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-wrap img{
  height: 54px;
  width: auto;
  display: block;
}

.brand-name{
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .03em;
  color: #fff;
  line-height: 1.05;
  font-size: 14px;
  text-transform: uppercase;
}

.main-nav{
  margin-left: auto;
}

.nav-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-item{
  position: relative;
}

.nav-link{
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  letter-spacing: .03em;
  font-weight: 500;
  white-space: nowrap;
  opacity: .92;
}

.nav-item:hover .nav-link{
  opacity: 1;
}

.nav-link .nav-text{
  position: relative;
  display: inline-block;
}

.nav-link .nav-text::after{
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
  opacity: .95;
}

.nav-item:hover .nav-link .nav-text::after{
  transform: scaleX(1);
}

.nav-item.is-active .nav-link .nav-text::after{
  transform: scaleX(1);
}

.dropdown{
  position: absolute;
  left: 10px;
  top: calc(100% + 8px);
  min-width: 260px;
  background: rgba(36,40,73,.92);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
  border-radius: 10px;
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .18s ease, transform .18s ease;
}

.has-dropdown.open > .dropdown{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown a{
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  opacity: .95;
}

.dropdown a:hover{
  background: rgba(104,186,198,.20);
  opacity: 1;
}

.mobile-toggle{
  display: none;
  margin-left: auto;
  width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(36,40,73,.35);
  color: #fff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 10px;
}

.mobile-toggle span{
  display: block;
  height: 2px;
  width: 18px;
  background: rgba(255,255,255,.92);
  border-radius: 2px;
}


.site-main{
  min-height: 60vh;
}

.hero-full{
  position: relative;
  min-height: 100vh;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
  background: url('../img/hero-office.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-full::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(36,40,73,.55);
}

.hero-content{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-big{
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: #fff;
  font-size: 72px;
  line-height: 1.05;
  margin: 0 0 14px;
}

.hero-paragraph{
  margin: 0 0 22px;
  max-width: 820px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.6;
}

.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-aura{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
  border: 1px solid rgba(14, 116, 144, .45);
  transition: transform .18s ease, filter .18s ease, background .18s ease;
  gap: 10px;
  font-size: 14px;
  background: #0e7490;
  color: #ffffff;
}

.btn-aura:active{
  transform: translateY(1px);
}

.btn-dark{
  background: rgba(36,40,73,.92);
  border-color: rgba(36,40,73,.92);
  color: #fff;
}

.btn-dark:hover{
  background: #1e2140;
  border-color: #1e2140;
  color: #fff;
}

.btn-teal{
  background: var(--color_3);
  border-color: var(--color_3);
  color: #fff;
}

.btn-teal:hover{
  background: #55aab6;
  border-color: #55aab6;
  color: #fff;
}

.hero-play{
  position: absolute;
  left: 26px;
  bottom: 26px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}

.hero-play::before{
  content: '';
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent var(--color_2);
  margin-left: 4px;
}

.section{
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.section-title{
  font-family: Montserrat, Arial, sans-serif;
  font-size: 34px;
  color: var(--color_1);
  margin: 0 0 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hscroll{
  display: flex;
  gap: 20px;
  overflow: auto;
  padding-bottom: 15px;
  scroll-snap-type: x mandatory;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 0 20px 0;
  scrollbar-width: thin;
  align-items: stretch;
}

.hscroll::-webkit-scrollbar{
  height: 6px;
}

.hscroll::-webkit-scrollbar-thumb{
  background: #ccc;
  border-radius: 10px;
}

.news-card{
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card .thumb{
  height: 180px;
  background: linear-gradient(135deg, rgba(65,124,206,.18), rgba(104,186,198,.22));
}

.news-card .body{
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card h3{
  font-family: Montserrat, Arial, sans-serif;
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--color_1);
}

.news-card p{
  margin: 0;
  color: rgba(36,40,73,.72);
  font-size: 14px;
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}

.about-box{
  background: #fff;
  border: 1px solid rgba(36,40,73,.10);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.about-img{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(36,40,73,.10);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.about-img img{
  display: block;
  width: 100%;
  height: auto;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card{
  border-radius: 14px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 10px 30px rgba(2, 6, 23, .06);
  background: #ffffff;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:nth-child(odd){
  background: rgba(65,124,206,.10);
}

.service-card:nth-child(even){
  background: rgba(104,186,198,.12);
}

.service-card h4{
  margin: 0 0 10px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 18px;
  color: #0f172a;
  font-weight: 700;
  flex: 0 0 auto;
}

.service-card p{
  margin: 0 0 14px;
  color: #334155;
  font-size: 14.5px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 0 0 auto;
  min-height: calc(1.55em * 4);
}

.site-footer{
  background: #fff;
  border-top: 1px solid rgba(36,40,73,.10);
}

.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.footer-title{
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  margin: 0 0 10px;
}

.footer-links a{
  display: block;
  color: rgba(36,40,73,.82);
  text-decoration: none;
  margin: 6px 0;
}

.footer-links a:hover{
  text-decoration: underline;
}

.small-muted{
  color: rgba(36,40,73,.65);
  font-size: 14px;
}

.form-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.service-hero{
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 60px 0;
  background: var(--hero-img, none) center/cover no-repeat;
  background-color: var(--color_1);
}

.service-hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(36,40,73,.60);
}

.service-hero-inner{
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.service-breadcrumb{
  color: rgba(255,255,255,.86);
  font-size: 13px;
  margin-bottom: 10px;
}

.service-breadcrumb a{
  color: rgba(255,255,255,.92);
  text-decoration: none;
}

.service-breadcrumb a:hover{
  text-decoration: underline;
}

.service-title{
  margin: 0 0 10px;
  color: #fff;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: 42px;
  line-height: 1.12;
}

.service-lead{
  margin: 0;
  max-width: 920px;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.7;
}

.service-detail-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.service-grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.service-media{
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(36,40,73,.10);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
  background: #fff;
}

.service-media img{
  display: block;
  width: 100%;
  height: auto;
}

.service-copy{
  background: #fff;
  border: 1px solid rgba(36,40,73,.10);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}

.service-copy h2{
  margin: 0 0 10px;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 20px;
  color: var(--color_1);
}

.service-copy p{
  margin: 0 0 14px;
  color: rgba(36,40,73,.78);
  line-height: 1.75;
}

.service-list{
  margin: 0;
  padding-left: 18px;
  color: rgba(36,40,73,.78);
}

.service-list li{
  margin: 6px 0;
}

.service-cta{
  margin-top: 22px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(65,124,206,.22);
  background: linear-gradient(
    135deg,
    rgba(65,124,206,.10),
    rgba(104,186,198,.12)
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.service-cta strong{
  color: var(--color_1);
}

.service-cta a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  background: rgba(36,40,73,.92);
  color: #fff;
  font-weight: 500;
}

.service-cta a:hover{
  background: #1e2140;
}

.trio-services{
  padding-top: 10px;
}

.trio-split{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: center;
  margin-top: 24px;
  margin: 34px 0 48px;
}

.trio-img{
  width: 100%;
  height: 420px;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}

.trio-h{
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
  color: #1f2a44;
}

.trio-line{
  width: 170px;
  height: 3px;
  background: #0D6EFD;
  margin: 12px 0 18px;
}

.trio-list{
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 18px;
}

.trio-list li{
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  line-height: 1.6;
  font-size: 18px;
  color: rgba(31,42,68,.86);
}

.trio-list li::before{
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
}

.trio-two{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 90px;
  margin: 26px 0 46px;
}

.trio-one{
  margin-top: 90px;
  margin: 8px 0 48px;
}

.trio-block{
  padding-top: 10px;
  background: #fff;
  border: 1px solid rgba(31,42,68,.10);
  border-radius: 16px;
  padding: 26px 26px 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.page-hero{
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 70px 0 40px;
  background: var(--hero-img) center/cover no-repeat;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
  --hero-img: none;
  color: #fff;
}

.page-hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,24,45,.78), rgba(20,24,45,.42));
}

.page-hero-inner{
  position: relative;
  z-index: 1;
  color: #fff;
}

.page-hero-title{
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  margin: 0 0 10px;
}

.page-hero-desc{
  max-width: 780px;
  opacity: .92;
  margin: 0 0 18px;
}

.page-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-aura-primary{
  background: #0D6EFD;
  color: #fff;
  border: 1px solid #0D6EFD;
}

.btn-aura-outline{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
}

.svc-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 26px;
}

.svc-nav a{
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31,42,68,.12);
  background: #fff;
  color: #1f2a44;
  font-weight: 600;
}

.services-flow{
  padding: 60px 0;
}

.trio-split.reverse{
  grid-template-columns: .95fr 1.05fr;
}

.trio-split.reverse .trio-left{
  order: 2;
}

.trio-split.reverse .trio-right{
  order: 1;
}

.trio-title{
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 800;
  color: #1f2a44;
  margin: 0 0 10px;
}

.trio-lead{
  color: rgba(31,42,68,.78);
  line-height: 1.7;
  margin: 0 0 16px;
}

.trio-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trio-block.wide{
  padding: 26px;
}

.mini-link{
  display: inline-block;
  margin-top: 14px;
  font-weight: 800;
  color: #0D6EFD;
  text-decoration: none;
}

.mini-link:hover{
  text-decoration: underline;
}

.wide-head{
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.wide-img{
  width: 180px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.page-hero .hero-title{
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 800;
  margin: 0 0 8px;
}

.page-hero .hero-sub{
  max-width: 760px;
  margin: 0;
  opacity: .95;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
}

.contact-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.contact-title{
  margin: 0 0 14px;
  font-weight: 800;
  color: #0f172a;
}

.contact-row{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  color: #0f172a;
}

.contact-row a{
  color: #0b3a7a;
  text-decoration: none;
  font-weight: 700;
}

.contact-row a:hover{
  text-decoration: underline;
}

.c-ico{
  width: 22px;
  line-height: 1.4;
  opacity: .9;
}

.map-stack{
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.map-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  min-height: 360px;
}

.map-card iframe{
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.media-card{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.08);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.media-card img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.media-card--tall img{
  height: 520px;
}

.form-media-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 26px;
}

.btn-aura--primary{
  background: #0d6efd;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(13,110,253,.22);
}

.btn-aura--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(13,110,253,.28);
}

.contact-map-btn{
  margin-top: 14px;
}

.page-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,16,35,.55);
}

.page-hero .hero-inner{
  position: relative;
  z-index: 1;
}

.hero-title{
  font-size: clamp(32px, 4vw, 56px);
  margin: 0 0 8px;
  font-weight: 800;
}

.hero-sub{
  margin: 0;
  opacity: .9;
}

.news-card:hover{
  transform: translateY(-5px);
}

.news-card .content{
  flex: 1;
}

.news-card .card-action{
  margin-top: auto;
  padding-top: 15px;
}

.post-detail{
  padding: 60px 0;
}

.post-article{
  max-width: 850px;
  margin: 0 auto;
}

.post-header{
  margin-bottom: 30px;
  text-align: left;
}

.post-date{
  display: block;
  color: var(--muted-color, #888);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.post-title{
  font-size: 20px;
  line-height: 1.25;
  color: #242849;
  margin: 0 0 10px;
}

.post-content{
  line-height: 1.8;
  font-size: 1.1rem;
  color: #444;
}

.post-content img{
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(14, 116, 144, .25);
  box-shadow: 0 18px 45px rgba(2, 6, 23, .10);
}

.btn-aura:hover{
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.btn-aura::after{
  content: "→";
  font-weight: 800;
}

.service-card .btn-aura{
  margin-top: auto;
  align-self: flex-start;
  width: 100%;
  justify-content: center;
}

.cats-grid{
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
  align-items: start;
}

.cat-box{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}

.cat-title{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.cat-posts{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-post{
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 12px;
  padding: 12px 12px 10px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cat-post h4{
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-post p{
  margin: 0;
  color: #334155;
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cat-post .btn-aura{
  margin-top: auto;
  align-self: flex-start;
}

.cta-compact{
  padding: 24px 0 !important;
}

.cta-compact-card{
  padding: 16px 18px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-title{
  margin: 0 0 4px !important;
  font-size: 20px !important;
  line-height: 1.2;
}

.cta-desc{
  margin: 0 !important;
  opacity: .85;
  font-size: 14px;
  line-height: 1.35;
}

.cta-actions{
  display: flex;
  gap: 10px;
  align-items: center;
}

.cta-compact-card .btn-aura{
  padding: 10px 14px !important;
  border-radius: 12px !important;
}

.cat-card{
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 16px;
  padding: 22px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  color: inherit;
}

.cat-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(2,6,23,.08);
  border-color: rgba(15,23,42,.14);
}

.cat-card-head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.cat-chip{
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.06);
}

.cat-empty{
  margin: 0;
  opacity: .75;
}

.cat-preview{
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.cat-preview-item{
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(15,23,42,.03);
}

.cat-preview-title{
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 6px;
  color: #0f172a;
}

.cat-preview-sum{
  font-size: 13px;
  opacity: .85;
  line-height: 1.6;
}

.cat-footer{
  margin-top: 14px;
}

.cat-link{
  font-weight: 800;
  opacity: .9;
}

.filters-row{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.filter-btn{
  opacity: .85;
}

.filter-btn.is-active{
  opacity: 1;
  filter: brightness(1.05);
}

.post-grid{
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 26px;
}

.post-card{
  background: #fff;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow .18s ease, transform .18s ease;
}

.post-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(2,6,23,.08);
}

.post-media{
  display: block;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.post-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .25s ease;
}

.post-card:hover .post-media img{
  transform: scale(1.03);
}

.post-body{
  padding: 18px 18px 20px;
}

.post-tag{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,94,215,.08);
  color: #0b5ed7;
  margin-bottom: 10px;
}

.post-title a{
  text-decoration: none;
  color: #0f172a;
}

.post-summary{
  margin: 0 0 14px;
  color: rgba(15,23,42,.72);
  line-height: 1.75;
}

.post-more{
  display: inline-flex;
}

.detail-top{
  max-width: 980px;
}

.detail-back{
  text-decoration: none;
  opacity: .8;
}

.detail-title{
  margin: 12px 0 0;
  font-size: 34px;
  letter-spacing: .02em;
  color: #0f172a;
  max-width: 980px;
}

.detail-cover{
  margin-top: 18px;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 14px;
  overflow: hidden;
}

.detail-cover img{
  width: 100%;
  display: block;
}

.detail-content{
  max-width: 980px;
  margin-top: 18px;
  line-height: 1.9;
  color: #0f172a;
}

.detail-content p{
  margin: 0 0 14px;
}

.about-hero{
  position: relative;
  min-height: 100vh;
  margin-top: calc(-1 * var(--header-h));
  padding-top: var(--header-h);
  background: var(--hero-img) center/cover no-repeat;
  display: flex;
  align-items: center;
}

.about-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15,23,42,.78) 0%,
    rgba(15,23,42,.55) 55%,
    rgba(15,23,42,.25) 100%
  );
}

.about-hero .container{
  position: relative;
  z-index: 1;
  max-width: 1140px;
}

.about-hero-title{
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: .01em;
  font-weight: 800;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.about-hero-lead{
  margin: 12px 0 0;
  color: rgba(255,255,255,.88);
  max-width: 680px;
  font-size: 16px;
  line-height: 1.7;
}

.pick-scroll{
  display: flex;
  gap: 10px;
  overflow: auto;
  padding: 6px 2px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.pick-scroll::-webkit-scrollbar{
  height: 10px;
}

.pick-scroll::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.15);
  border-radius: 999px;
}

.pick-card{
  min-width: 270px;
  max-width: 270px;
  height: 200px;
  display: flex;
  flex-direction: column;
  background: #0f1a30;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow: hidden;
  scroll-snap-align: start;
}

.pick-body{
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pick-title{
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.35;
  color: #fff;
  font-weight: 900;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pick-text{
  margin: 0 0 10px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pick-actions{
  margin-top: auto;
  display: flex;
  gap: 8px;
}

.pick-actions .btn-aura{
  flex: 1;
  text-align: center;
  justify-content: center;
  padding: 8px 10px;
  font-size: 12.5px;
  border-radius: 12px;
  font-weight: 900;
}

.pick-chip{
  display: inline-block;
  margin: 0 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
}

.section.trio-services{
  padding: 70px 0;
}




@media (max-width: 992px){
  .about-grid{
    grid-template-columns: 1fr;
  }

  .services-grid{
    grid-template-columns: repeat(2,1fr);
  }

  .main-nav{
    display: none;
  }

  .mobile-toggle{
    display: inline-flex;
  }

  .hero-big{
    font-size: 46px;
  }

  .service-title{
    font-size: 34px;
  }

  .service-grid{
    grid-template-columns: 1fr;
  }

  .topbar{
    height: auto !important;
    padding: 6px 0;
  }

  .topbar-inner{
    height: auto !important;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
  }

  .navwrap{
    height: auto !important;
  }

  .header-inner{
    height: auto !important;
    padding: 12px 16px !important;
  }

  body{
    padding-top: 0 !important;
  }

  .site-header{
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .hero-full{
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: 420px;
  }

  .logo-wrap{
    min-width: 0;
  }

  .brand-name{
    white-space: normal !important;
    font-size: 13px;
  }

  .dropdown{
    max-width: min(92vw, 320px);
  }

  .topbar-left{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .topbar-sep{
    display: none !important;
  }

  .topbar-link{
    display: inline-block;
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 48vw;
  }

  .topbar-right{
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .lang-flags{
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
  }

 

  details > summary{
    cursor: pointer;
  }

  .trio-split{
    grid-template-columns: 1fr;
  }

  .trio-split.reverse{
    grid-template-columns: 1fr;
  }

  .trio-split.reverse .trio-left{
    order: 1;
  }

  .trio-split.reverse .trio-right{
    order: 2;
  }

  .trio-img{
    height: 320px;
  }

  .trio-two{
    grid-template-columns: 1fr;
  }

  .wide-head{
    flex-direction: column;
    align-items: flex-start;
  }

  .wide-img{
    width: 100%;
    height: 220px;
  }

  .contact-grid{
    grid-template-columns: 1fr;
  }

  .form-media-grid{
    grid-template-columns: 1fr;
  }

  .media-card--tall img{
    height: 260px;
  }

  .map-card{
    min-height: 320px;
  }

  .map-card iframe{
    min-height: 320px;
  }
}

@media (max-width: 576px){
  .services-grid{
    grid-template-columns: 1fr;
  }

  .hero-big{
    font-size: 36px;
  }

  .topbar-link{
    font-size: 13px;
  }

  .portal-link{
    font-size: 13px;
  }

  .service-title{
    font-size: 28px;
  }

  .service-cta{
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px){
  .footer-inner{
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .site-footer a{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .site-footer p{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .site-footer li{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .about-hero{
    min-height: 280px;
    padding: 70px 0 50px;
  }

  .about-hero::before{
    background: linear-gradient(
        180deg,
        rgba(15,23,42,.72) 0%,
        rgba(15,23,42,.55) 60%,
        rgba(15,23,42,.25) 100%
      );
  }
}

@media (max-width: 560px){
  .page-hero{
    min-height: 420px;
    padding: 60px 0;
  }

  .page-hero-overlay{
    background: linear-gradient(180deg, rgba(20,24,45,.80), rgba(20,24,45,.55));
  }

  .trio-line{
    width: 140px;
  }
}

@media (max-width: 1024px){
  .services-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .section{
    padding: 42px 0;
  }

  .section-title{
    font-size: 26px;
  }

  .services-grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card{
    padding: 18px;
  }

  .cta-compact{
    padding: 18px 0 !important;
  }

  .cta-title{
    font-size: 18px !important;
  }

  .cta-compact-card{
    padding: 14px 14px !important;
  }
}

@media (max-width: 860px){
  .cats-grid{
    grid-template-columns: 1fr;
  }
}

@media(max-width:900px){
  .cats-grid{
    grid-template-columns: 1fr;
  }

  .post-grid{
    grid-template-columns: 1fr;
  }
}

@media(max-width:520px){
  .pick-card{
    min-width: 80vw;
    max-width: 80vw;
    height: 210px;
  }
}

/* --- MOBİL MENÜ SIFIRLAMA --- */

/* 1. Karartma Katmanı */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10040;
    display: none; /* JS .show() ile açar ya da biz class ile yönetiriz */
}

body.menu-open .mobile-overlay {
    display: block !important;
    opacity: 1;
}

/* 2. Menü Ana Gövde (Sağdan Kayar Panel) */
#mobileNav {
    position: fixed !important;
    top: 0 !important;
    right: -100% !important; /* Başlangıçta ekranın sağında gizli */
    width: 85% !important;
    max-width: 380px !important;
    height: 100vh !important;
    background: #1f2945 !important; /* Senin koyu mavi rengin */
    z-index: 10050 !important;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important; /* İçeriği dikey dizmek için */
    flex-direction: column !important;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3) !important;
}

/* Menü Açıldığında */
#mobileNav.is-open {
    right: 0 !important;
}

/* 3. Menü İçeriği Kaydırma Alanı */
.mobile-nav-inner {
    padding: 80px 20px 40px !important; /* Üstten 80px boşluk (kapatma butonu için) */
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

/* 4. Linkler ve Dropdownlar (Details) */
.mobile-nav-inner a, 
.mobile-nav-inner summary {
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 16px 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    display: block !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.mobile-nav-inner details {
    margin-bottom: 8px !important;
}

.mobile-nav-inner details a {
    margin: 5px 0 5px 20px !important; /* Alt linkleri biraz sağa çek */
    background: rgba(255, 255, 255, 0.02) !important;
    font-size: 15px !important;
}

/* 5. Kapatma Butonu (X) */
#mobileClose {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border: none !important;
    font-size: 24px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10051 !important;
}

/* Sayfa Kaymasını Engelle */
body.menu-open {
    overflow: hidden !important;
    touch-action: none;
}

