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

html,
body {
    height: auto;
    font-family: 'Segoe UI', sans-serif;
    background: black;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

/* ÜST SABİT BAR */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
}

.topbar.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

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

.topbar-left img {
    height: 60px;
    width: auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Hover efekti */
.topbar-left img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.hamburger {
    background: none;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Menü */
.menu {
    display: none;
    background-color: black;
    padding: 10px 0;
    width: 100%;
    text-align: center;
}

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

.menu ul li {
    margin: 10px 0;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

/* Logo */
.logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.logo.logo-hidden {
    transform: translateY(-100px);
    opacity: 0;
    pointer-events: none;
}

.logo img {
    height: 180px;
    width: auto;
}

/* Arka plan */
.background {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: background-image 0.8s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1;
    pointer-events: none;

    /* Degrade daha yukarıdan başlar */
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 20%,
            rgba(0, 0, 0, 0.3) 45%,
            rgba(0, 0, 0, 0) 70%);
}

/* İçerik */
.slide-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 420px;
    opacity: 0;
    animation: fadeIn 0.6s ease-in-out forwards;
}

.slide-content h1 {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.cta {
    padding: 12px 28px;
    background: #2bc7ec;
    color: black;
    text-decoration: none;
    border-radius: 40px;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s ease;
}

.cta:hover {
    background: #1da7c9;
}

.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* Alt Butonlar */
.thumbs-swiper {
    position: relative;
    z-index: 3;
    margin-top: -100px;
    /* arka planın içine biraz taşırmak için */
}


.thumbs-swiper .swiper-slide {
    width: auto !important;
    margin: 0 12px;
}

.thumb-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 2px solid transparent;
    min-width: 320px;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.thumb-box.active {
    border-color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.thumb-box:hover {
    transform: translateY(-5px);
}

.proj-id {
    font-size: 16px;
    font-weight: bold;
}

.thumb-box strong {
    font-size: 18px;
}

.thumb-box span {
    font-size: 14px;
    color: #ccc;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Mobil */
@media (max-width: 768px) {
    .slide-content {
        left: 20px;
        right: 20px;
        max-width: 90%;
        top: auto;
        bottom: 140px;
        transform: none;
    }

    .slide-content h1 {
        font-size: 24px;
    }

    .cta {
        font-size: 14px;
        padding: 10px 20px;
    }

.logo {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.logo.logo-hidden {
    transform: translateY(-100px);
    opacity: 0;
    pointer-events: none;
}

    .logo img {
        height: 42px;
    }

    .thumb-box {
        min-width: 260px;
        padding: 14px 20px;
    }
}

/* ALT BLOK - SUA TARZI ÖZEL TASARIM */
.info-section.sua-style {
    background-color: #1f2a2e;
    padding: 120px 40px;
    color: white;
    display: flex;
    justify-content: center;
}

.sua-content {
    display: flex;
    flex-direction: row;
    gap: 80px;
    max-width: 1400px;
    width: 100%;
    align-items: center;
    flex-wrap: wrap;
}

.sua-left {
    flex: 1;
    min-width: 300px;
}

.sua-left h1 {
    font-size: 40px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 500;
}

.sua-left .subtext {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
}

.info-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta.light {
    background-color: #31c0e6;
    color: black;
}

.cta.light.ghost {
    background: transparent;
    color: white;
    border: 2px solid #31c0e6;
}

/* SAĞ KULE GÖRSELİ VE KART */
.sua-right {
    flex: 1;
    position: relative;
    min-width: 350px;
    display: flex;
    justify-content: center;
}

.image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transform: translateX(0px);
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.tower-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* Kayan Kart */
.floating-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 16px;
    max-width: 260px;
    z-index: 10;
}

.floating-text {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.cta.box {
    background: #63d1f4;
    color: #1a1a1a;
    padding: 12px 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    border-radius: 8px;
    font-size: 14px;
}

/* KETEN yazısı */
.overlay-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 200px;
    font-weight: 800;
    color: white;
    opacity: 0.08;
    pointer-events: none;
    z-index: 1;
}

.tower-img {
    position: relative;
    z-index: 2;
}

.floating-card {
    z-index: 3;
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.85);
    padding: 20px;
    border-radius: 16px;
    max-width: 260px;
}
.image-mask-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 300px;
    margin: 0 auto;
    overflow: hidden;
}

.image-mask-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: transform 0.1s ease-out;
}

.text-mask {
    font-size: 200px;
    font-weight: 900;
    text-align: center;
    color: white;
    mix-blend-mode: screen;
    opacity: 0.4;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    pointer-events: none;
    line-height: 1;
}

.text-mask .sub-text {
    display: block;
    font-size: 24px;
    margin-top: 20px;
    text-align: right;
    /* Sağ hizalama */
    padding-right: 10px;
    /* "N" harfine denk gelecek şekilde ayarlandı */
    letter-spacing: 3px;
    color: white;
    opacity: 0.4;
}

.counter-section {
    position: relative;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background: none;

}

.counter-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/counters-bg.webp');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    /* Blur azaltıldı */
    z-index: 1;
    opacity: 0.6;
    transition: transform 0.3s ease;
        transform: translate(var(--bg-x, 0px), var(--bg-y, 0px));
}

.counter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
        position: relative;
            z-index: 2;
}

.counter-box {
    flex: 1 1 calc(40% - 40px);
    /* %20 genişlik - gap telafisi */
    max-width: calc(30% - 30px);
    height: 200px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    color: white;
    backdrop-filter: blur(8px);
    transition: transform 0.2s ease;
}

.counter-box:hover {
    transform: translateY(-8px);
}


.counter-icon {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 120px;
  opacity: 0.06;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.counter-icon-top {
    position: relative;
    font-size: 30px;
    color: #fff;
    z-index: 2;
    text-align: center;
    margin-bottom: 10px;
}

.counter-value {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    z-index: 2;
}

.counter-label {
    font-size: 16px;
    text-align: center;
    color: #ccc;
    margin-top: 10px;
    z-index: 2;
}

.counter-value::after {
    content: "+";
    margin-left: 4px;
}

.counter-label {
    position: relative;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    z-index: 1;
    margin-top: 8px;
}

.call-button{
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    font-weight: 600;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
        animation: pulseGlow 2.5s infinite ease-in-out, floatUpDown 3s infinite ease-in-out;
}




.call-button.visible{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.call-button:not(.visible){
    opacity: 0;
    pointer-events: none;
}

.call-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.call-button i {
    font-size: 16px;
    animation: ring 1.6s infinite ease-in-out;
}

@keyframes ring {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-12deg);
    }

    50% {
        transform: rotate(12deg);
    }

    75% {
        transform: rotate(-8deg);
    }
}

.logo-container {
    position: relative;
}

.sparkle {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px 4px rgba(255, 255, 255, 0.6);
    animation: sparkleAnimation 2s infinite ease-in-out;
    pointer-events: none;
    opacity: 0.8;
    z-index: 10;
}

@keyframes sparkleAnimation {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: scale(2.5) rotate(45deg);
        opacity: 1;
    }
}
/* WhatsApp Butonu */
.whatsapp-button {
    position: fixed;
    top: 65px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
        color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
        animation: pulseGlow 2.5s infinite ease-in-out, floatUpDown 3s infinite ease-in-out;
}

.whatsapp-button i {
    font-size: 18px;
}

/* Buton görünüp kaybolma */
.whatsapp-button.visible {
    opacity: 1;
    pointer-events: auto;
}

.whatsapp-button:not(.visible) {
    opacity: 0;
    pointer-events: none;
}

/* WhatsApp İkonu Zıplama Animasyonu */
.animate-bounce {
    animation: bounce 1.4s infinite;
}

@keyframes bounce {

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

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

/* Yazıya Yıldız Parlama Efekti */
.sparkle-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.sparkle-text::after {
    content: "✨";
    position: absolute;
    top: -12px;
    right: -10px;
    font-size: 12px;
    animation: sparkle 1.8s infinite ease-in-out;
    opacity: 0.7;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.6) rotate(30deg);
        opacity: 1;
    }
}

.counter-section {
  text-align: center;
  padding: 100px 20px 40px;
  position: relative;
}

.counter-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 60px;
  z-index: 1;
}

.counter-heading h1 {
  font-size: 48px;
  font-weight: bold;
  color: white;
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: inline-block;
}

.shine-effect h1::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: shine 2.5s infinite;
  z-index: 3;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
.counter-section {
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.counter-heading {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
}

.counter-heading h1 {
    font-size: 48px;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
    overflow: hidden;
    padding: 0 20px;
}

/* Yansıma efekti */
.shine-effect h1::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shine 2.5s infinite;
    z-index: 3;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

@media (max-width: 768px) {
    .counter-container {
        justify-content: center;
    }

    .counter-box {
        width: calc(50% - 20px);
        /* İki kutu yan yana, aralarında boşluk */
        margin: 10px;
        max-width: unset;
    }
}

@media (max-width: 768px) {
    .counter-icon {
        font-size: 60px;
        /* Mobilde arka ikon küçültüldü */
    }
}

.info-section.sua-style {
    position: relative;
    z-index: 1;
}

/* Arka plan resmi, blur ve animasyon */
.info-section.sua-style::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/assets/img/counters-bg.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    opacity: 0.6;
    z-index: -1;
    /* -> GÖRSEL OLARAK ARKAYA ALIR */
    pointer-events: none;
    /* -> BUTONLAR TIKLANABİLİR KALIR */
    transition: transform 0.3s ease;
    transform: translate(var(--sua-bg-x, 0px), var(--sua-bg-y, 0px));
}

.hero-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #1f2a2e 100%);
}
@media (max-width: 768px) {
    .text-mask {
        font-size: 100px;
    }

    .text-mask .sub-text {
        font-size: 16px;
    }
}


.counter-heading p {
    color: #ffffff;
}
.animated-menu {
    position: absolute;
    top: 100%;
    right: 20px;
    background: rgba(0, 0, 0, 0);
    padding: 20px 30px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
}

.animated-menu.show {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

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

.animated-menu ul li {
    opacity: 0;
    transform: translateX(40px);
    animation: slideIn 0.4s ease forwards;
    animation-delay: calc(0.1s * var(--i));
}

.animated-menu.show ul li {
    animation-name: slideIn;
}

.animated-menu:not(.show) ul li {
    animation-name: slideOut;
}



@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateX(40px);
    }
}

.animated-menu a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s;
}

.animated-menu a:hover {
    color: #31c0e6;
}
.animated-menu ul li {
    opacity: 0;
    transform: translateX(40px);
    animation: slideIn 0.4s ease forwards;
    animation-delay: calc(0.1s * var(--i));
    list-style: none;
}

.animated-menu a {
    display: block;
    background: rgba(255, 255, 255, 0.05);
    padding: 14px 28px;
    margin: 10px 0;
    border-radius: 48px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    text-align: center;
        animation: pulseGlow 2.8s infinite ease-in-out, floatUpDown 4s infinite ease-in-out;
}

.animated-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0.2);
    }
}

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

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

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


.haberler-blok {
    padding: 100px 40px;
    background: #1f2a2e;
    color: white;
    text-align: center;
}

.haberler-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: auto;
}

.haber-listesi {
    flex: 1;
    min-width: 300px;
}

.haber-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    opacity: 0;
    transform: translateX(40px);
    animation: slideInLeft 0.6s ease forwards;
    animation-delay: calc(0.1s * var(--i));
    transition: all 0.3s ease;
}

/* Hover animasyonu */
.haber-item:hover {
    transform: translateX(6px) scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 255, 255, 0.15);
}

/* Tıklama animasyonu */
.haber-item:active {
    transform: scale(0.96);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Gün bilgisi büyük yazı */
.haber-tarih strong {
    font-size: 36px;
    color: #00c6ff;
    display: block;
    font-weight: bold;
    transition: transform 0.3s ease;
}

/* Hover'da büyüme */
.haber-item:hover .haber-tarih strong {
    transform: scale(1.2);
}

.haber-tarih span {
    font-size: 13px;
    color: #ccc;
    display: block;
    margin-top: 2px;
    letter-spacing: 1px;
}

.haber-baslik h1 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
    padding: 0;
    text-align: center;
}

.haber-baslik p {
    font-weight: 400;
    font-size: 14px;
    color: #ccc;
    margin: 2px 0 0 0;
    text-align: center;
}

.haber-detay {
    flex: 1;
    background: white;
    color: black;
    border-radius: 16px;
    overflow: hidden;
    min-width: 320px;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    transform: scale(1);
    animation: fadeInCard 0.5s ease;
}

/* Tıklanınca fade geçiş */
.haber-detay.fade-out {
    opacity: 0;
    transform: scale(0.96);
}

.haber-detay.fade-in {
    opacity: 1;
    transform: scale(1);
}

.haber-detay img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.haber-baslik-icerik {
    padding: 20px;
}

.haber-baslik-icerik h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.haber-baslik-icerik p {
    font-size: 14px;
    color: #444;
}

.haber-baslik-icerik .cta.box {
    margin-top: 20px;
    display: inline-block;
    padding: 10px 20px;
    background: #2bc7ec;
    border-radius: 8px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

/* Soldan girme animasyonu */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Detay kutusu fade in */
@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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


/* Modal Arkaplanı */
.haber-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.75);
  animation: fadeIn 0.3s ease;
}

/* Modal İçeriği */
.haber-modal-content {
  background-color: #fff;
    color: #000 !important;
  margin: 60px auto;
  padding: 20px 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 640px;
  animation: slideUp 0.4s ease;
  position: relative;
}

#modalBaslik {
    color: #000;
    /* Siyah renk */
}

.haber-modal-content img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.haber-modal-content h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.haber-modal-content p {
  font-size: 16px;
  line-height: 1.6;
}

/* Kapat Butonu */
.haber-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  color: #333;
}

/* Animasyonlar */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  } 
  to {
    opacity: 1;
  }
}
.harita-blok {
    width: 100%;
    display: flex;
    flex-direction: row;
    padding: 0;
    margin: 0;
    height: 600px;
    box-sizing: border-box;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#map {
    flex: 1;
    height: 100%;
}

.location-panel {
    width: 300px;
    max-width: 300px;
    height: 100%;
    overflow-y: auto;
    padding: 20px;
    background: #1f2a2e !important;
    color: white;
    box-shadow: none;
    backdrop-filter: none;
}

.location-panel h3,#locationButtons button {
    font-size: 20px;
    color: white !important;
        margin-bottom: 20px;
}

#locationButtons button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 255, 255, 0.15);
        font-weight: 600;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    width: 100%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
}

#locationButtons button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}
#locationButtons .map-btn {
    width: 100%;
    padding: 14px 24px;
    margin-bottom: 12px;
    background: #1f2a2e00;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 48px;
    font-weight: bold;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    cursor: pointer;
}

#locationButtons .map-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

#locationButtons .map-btn i {
    font-size: 16px;
}
.harita-blok::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
    border-radius: 20px;
     background: none !important;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .harita-blok {
        flex-direction: column;
        height: auto;
        background: #1f2a2e !important;
        /* ✅ Mobilde arka plan düz renk */
    }

    .location-panel {
        width: 100% !important;
        max-width: 100% !important;
        background: #1f2a2e !important;
        /* ✅ Mobilde panelin tamamı aynı renk */
        padding: 20px 10px;
        box-sizing: border-box;
    }
        #map {
            width: 100% !important;
            min-height: 300px;
            order: 2;
        }



    .location-panel h3 {
        text-align: center;
        margin-bottom: 12px;
    }

    #locationButtons {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
            background: rgba(255, 255, 255, 0);
    }

    #locationButtons .map-btn {
        width: 90%;
        margin: auto;
    }
}
.site-footer {
    background: #101820;
    color: white;
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 30px;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1 1 300px;
}

.site-footer h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2bc7ec;
}

.site-footer p {
    font-size: 14px;
    margin: 5px 0;
}

.site-footer a {
    color: #ddd;
    text-decoration: none;
}

.site-footer a:hover {
    color: #2bc7ec;
    text-decoration: underline;
}
.footer-logo {
    width: 180px;
    max-width: 100%;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
}

.footer-contact p {
    margin: 6px 0;
    font-size: 14px;
    color: #ddd;
}

.footer-blok {
    background: linear-gradient(to bottom, #1f2a2e, #0f1a22);
    color: white;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1400px;
    margin: auto;
}

.footer-logo img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
    margin-right: 40px;
}

.footer-columns {
    display: flex;
    flex: 1;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: #31c0e6;
    margin-bottom: 10px;
    font-size: 16px;
}

.footer-column p {
    margin: 5px 0;
    font-size: 14px;
}

.footer-column a {
    color: white;
    text-decoration: none;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    color: white;
    /* net beyaz */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
    backdrop-filter: blur(4px);
    /* üstteki geçişi yumuşatır */
    z-index: 10;
    position: relative;
}

.footer-bottom a:hover {
    text-decoration: underline;
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px 10px;
    }

        .footer-logo {
            display: none !important;
        }

    .footer-logo img {
        width: 100px;
        height: auto;
    }

    .footer-columns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        width: 100%;
    }

    .footer-column {
        width: 100%;
        max-width: 320px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 12px;
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(4px);
        transition: transform 0.3s ease;
    }

    .footer-column:hover {
        transform: translateY(-4px);
    }

    .footer-column h4 {
        font-size: 16px;
        margin-bottom: 10px;
        color: #2bc7ec;
    }

    .footer-column p,
    .footer-column a {
        font-size: 14px;
        color: #eee;
        margin: 4px 0;
    }

    .footer-bottom {
        font-size: 8px;
        text-align: center;
        margin-top: 30px;
        line-height: 1.6;
        padding: 15px 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bottom span {
        display: block;
        font-weight: bold;
        opacity: 0.8;
        color: #ffffff;
        margin-bottom: 6px;
    }

    .footer-bottom a {
        color: #2bc7ec;
        font-weight: bold;
        text-decoration: none;
    }

    .footer-bottom a:hover {
        text-decoration: underline;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.footer-logo,
.footer-column {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-logo {
    animation-delay: 0.2s;
}

.footer-column:nth-child(1) {
    animation-delay: 0.4s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.6s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.8s;
}

.footer-bottom {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 1s;
}

.altbilgi-modal-wrapper {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.altbilgi-modal-wrapper.active {
    display: flex;
}

.altbilgi-modal-icerik {
    background: white;
    color: black;
    padding: 0;
    border-radius: 12px;
    max-width: 700px;
    width: 95%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    position: relative;
    display: flex;
    flex-direction: row;
}

.altbilgi-kapat {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
}

.modal-logo-blok {
    background: #1f2a2e;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
}

.modal-logo-blok img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.2));
}

.modal-yazi-blok {
    padding: 30px 20px;
    overflow-y: auto;
    flex: 1;
    position: relative;
}

.modal-yazi-blok h3 {
    margin-top: 0;
}

.modal-yazi-blok p {
    white-space: pre-wrap;
    word-break: break-word;
}

@media (max-width: 768px) {
    .modal-logo-blok {
        display: none;
    }

    .modal-yazi-blok {
        padding: 20px;
    }

    .altbilgi-modal-icerik {
        flex-direction: column;
    }
}

.genel-bilgi-blok {
    padding: 80px 20px;
    background: linear-gradient(to bottom,#1f2a2e, #0f1a22, #1f2a2e);
    text-align: center;
    color: #ababab;
}

.genel-baslik {
    font-size: 24px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 40px;
    color: #959aa5;
}

.genel-kutular {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.vizyon-kutu,
.misyon-kutu {
    flex: 1 1 300px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(4px);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
}

.vizyon-kutu h3,
.misyon-kutu h3 {
    color: #2bc7ec;
    margin-bottom: 10px;
    font-size: 18px;
}

.vizyon-kutu p,
.misyon-kutu p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

.fade-line {
    height: 1px;
    width: 100%;
    max-width: 600px;
    margin: 40px auto;
    background: linear-gradient(to right, transparent, #ffffff80, transparent);
    opacity: 0.5;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.animasyon-kutu {
    animation: fadeInUp 1.2s ease forwards;
    opacity: 0;
}

.animasyon-kutu:nth-child(1) {
    animation-delay: 0.2s;
}

.animasyon-kutu:nth-child(2) {
    animation-delay: 0.4s;
}

.vizyon-kutu:hover,
.misyon-kutu:hover {
    transform: translateY(-5px);
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(0, 209, 255, 0.3);
}

.projeler-blok {
  background: #1f2a2e;
  padding: 80px 30px;
  color: white;
    text-align: center;
}

.projeler-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: auto;
}

.proje-kolon {
    flex: 1;
    min-width: 320px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
transition: all 0.3s ease-in-out;
    /* Scrollbar tasarımı */
    scrollbar-width: thin;
    scrollbar-color: #31c0e6 rgba(255, 255, 255, 0.05);
}

/* Webkit (Chrome, Edge, Safari) için */
.proje-kolon::-webkit-scrollbar {
    width: 8px;
}

.proje-kolon::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.proje-kolon::-webkit-scrollbar-thumb {
    background-color: #31c0e6;
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: content-box;
}

.proje-kolon::-webkit-scrollbar-thumb:hover {
    background-color: #1da7c9;
}

@media (max-width: 768px) {
    .projeler-container {
        flex-direction: column;
    }

    .proje-kolon {
        max-height: unset;
        overflow-y: visible;
    }
}

.proje-kolon h2 {
  font-size: 24px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 10px;
}

.proje-kart {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

.proje-kart:hover {
  transform: scale(1.02);
  box-shadow: 0 0 12px rgba(0,255,255,0.15);
}

.proje-tarih {
  font-size: 32px;
  font-weight: bold;
  color: #00c6ff;
  text-align: center;
  min-width: 60px;
}

.proje-tarih span {
  display: block;
  font-size: 12px;
  letter-spacing: 1px;
  color: #ccc;
  margin-top: 4px;
}

.proje-icerik h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.proje-icerik p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 8px;
}

.proje-icerik a {
  color: #31c0e6;
  font-size: 14px;
  text-decoration: none;
  font-weight: bold;
}

.proje-icerik a:hover {
  text-decoration: underline;
}

.gallery-swiper {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 8px;
    overflow: hidden;
}

.gallery-swiper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.scroll-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    background-color: transparent;
    /* Ortası saydam */
    border: 2px solid #919191;
    /* Dış çizgi */
    color: #c7c7c7;
    /* Ok rengi */
    text-align: center;
    line-height: 41px;
    border-radius: 50%;
    font-size: 20px;
    z-index: 9999;
    transition: opacity 0.4s, background-color 0.3s, color 0.3s;
    opacity: 0;
    pointer-events: none;
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.scroll-to-top:hover {
    background-color: #bdbdbd;
    color: white;
}
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

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

    50% {
        transform: translateY(0);
    }

    70% {
        transform: translateY(-5px);
    }

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

.scroll-to-top.bouncing {
    animation: bounce 0.6s ease;
}