* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: rgb(42, 41, 39);

}

html,
body {
    overflow-x: hidden;
}

h2 {
    font-family: 'Space Grotesk', monospace;
}

@font-face {
    font-family: 'Inter';
    src: url('Inter.woff2') format('woff2');
    font-display: swap;
}

/* Navbar genel ayarları */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    background: transparent;
    /* Başta tamamen transparan */
    transition: background 0.5s ease, backdrop-filter 0.5s ease;
    z-index: 1000;
}

/* Kaydırılınca aktif olacak stil */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.3);
    /* Hafif transparan beyaz */
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

/* Canvas */
#navbarCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Logo */
.logo img {
    height: 120px;
    width: auto;
}

/* Linkler */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* Hover efekti */
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: hsl(0, 100%, 50%);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: hsl(0, 100%, 70%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ===================== DROPDOWN ===================== */

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.dropdown-toggle .arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

/* Menü */
.dropdown-menu {
    position: absolute;
    top: 45px;
    left: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    /* navbar.scrolled stili */
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    min-width: 280px;
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);

    /* Başta görünmez ama alanı korur */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
    z-index: 999;
}

/* Menü linkleri */
.dropdown-menu a {
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    display: block;
    transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: hsl(0, 100%, 70%);
}

/* Açılma animasyonu */
.dropdown.active .dropdown-menu,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
    /* hemen göster */
}

/* Kaybolma gecikmesi */
.dropdown:not(:hover):not(.active) .dropdown-menu {
    transition-delay: 0.25s;
    /* mouse çekilince 250ms bekle */
}

/* Ok animasyonu */
.dropdown.active .arrow,
.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu a {
    text-decoration: none;
}

.dropdown-menu a:hover {
    text-decoration: none !important;
}

/* === HAMBURGER BUTONU === */
.hamburger {
    position: absolute;
    right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    transition: transform 0.3s ease;
    display: none;
}

.hamburger span {
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.4s ease;
}

/* Açıldığında X şekline dönüşsün */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === MOBİL MENÜ (TAM EKRAN OVERLAY) === */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(250, 250, 250, 0.97);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* sola hizalı */
    justify-content: flex-start;
    padding: 100px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 1000;
    overflow-y: auto;
    /* Menü içi kaydırılabilir */
}

/* Menü aktif olduğunda görünür */
.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

/* === LOGO === */
.mobile-logo {
    width: 300px;
    margin: 0 auto 40px auto;
    display: block;
}

/* === MENÜ ELEMANLARI === */
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    /* ince ayırıcı çizgi */
    padding: 0.9rem 0;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a,
.mobile-dropdown-toggle {
    color: #1f1e1d;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
    text-align: left;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover efekti */
.mobile-menu a:hover,
.mobile-dropdown-toggle:hover {
    color: hsl(0, 100%, 70%);
    transform: translateX(4px);
}

/* Menü görünümü */
.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-left: 15px;
    padding-left: 10px;
    transition:
        max-height 0.6s ease,
        opacity 0.6s ease,
        margin-top 0.6s ease;
}

/* Açıldığında yumuşak animasyonla gelsin */
.mobile-dropdown.open .mobile-dropdown-menu {
    opacity: 1;
    max-height: 500px;
    /* yeterli alan */
    margin-top: 10px;
}

.hero-section {
    /* Tüm ekranı kaplaması için */
    height: 100vh;
    width: 100%;

    /* Arkaplan Görseli */
    /* !!! BURAYA KENDİ GÖRSEL ADRESİNİZİ GİRİN !!! */
    /* Örneğin: background-image: url('hero-gorsel.jpg'); */
    background-image: url('../img/kuyu/herogorsel.webp');
    background-size: cover;
    /* Görseli tam kaplatır */
    background-position: center center;
    /* Görseli ortalar */
    background-attachment: fixed;
    /* Parallax etkisi verir */

    /* İçeriği ortalamak için Flexbox */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    /* Metnin okunabilmesi için koyu bir katman (overlay) */
    position: relative;
    /* Bu, overlay'i konumlandırmak için gereklidir */
    color: white;
    /* Tüm metinler beyaz olacak */
    padding: 20px;
}

/* Arkaplan görseli üzerine koyu katman */
.hero-section::before {
    content: '';
    /* Bu bir zorunluluktur */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* %50 siyah saydamlık */
    z-index: 1;
    /* Katmanın metnin altında kalmasını sağlar */
}

/* ---------------------------------- */
/* Hero İçerik (Metin)         */
/* ---------------------------------- */
.hero-content {
    position: relative;
    /* Metnin overlay'in üzerinde kalması için */
    z-index: 2;
    max-width: 800px;
    /* Metnin çok genişlememesi için */
}

.hero-content h1 {
    font-size: 3.5rem;
    /* Büyük, etkileyici başlık */
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    /* Modern bir görünüm için büyük harf */
}

.hero-content p {
    font-size: 1.25rem;
    font-weight: 300;
    /* Daha ince, zarif bir açıklama metni */
}

/* ---------------------------------- */
/* Aşağı Kaydırma Animasyonu       */
/* ---------------------------------- */
.scroll-down-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    /* Yatayda tam ortalar */
    z-index: 2;
    /* Metinle aynı katmanda */
}

.scroll-down-animation {
    display: block;
    width: 40px;
    height: 40px;
    padding-top: 10px;
    /* Okun konumunu ayarlar */
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 3px solid white;
    border-bottom: 3px solid white;
    transform: rotate(45deg);
    /* Kareyi oka dönüştürür */

    /* Animasyonun adı, süresi ve sonsuz döngüsü */
    animation: bounce 2s infinite;
}

/* Animasyonun @keyframes tanımı */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
        opacity: 1;
    }

    40% {
        transform: translateY(10px) rotate(45deg);
        opacity: 0.7;
    }

    60% {
        transform: translateY(5px) rotate(45deg);
        opacity: 0.9;
    }
}

/* ---------------------------------- */
/* Mobil Uyumluluk (Ekstra)     */
/* ---------------------------------- */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
        /* Mobilde başlığı biraz küçült */
    }

    .hero-content p {
        font-size: 1rem;
        /* Mobilde açıklamayı biraz küçült */
    }
}

/* ---------------------------------- */
/* Hizmetler Bölümü Stili            */
/* ---------------------------------- */
.hizmetler-section {
    padding: 80px 0;
    /* Bölüme üstten ve alttan boşluk */
    background-color: #f9f9f9;
    /* Hero'dan farklı, hafif bir arkaplan */
}

/* İçeriği ortalayan ve sınırlayan konteyner */
.container {

    width: 90%;
    max-width: 1100px;
    /* Maksimum içerik genişliği */
    margin: 0 auto;
    /* Otomatik olarak ortalar */
}

/* Bölümün ana başlığı (H2) */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 60px;
    /* Başlık ve içerik arası boşluk */
}

/* Hizmet satırı (resim + metin) */
.hizmet-row {
    display: flex;
    flex-wrap: wrap;
    /* Mobil için sarmalama */
    align-items: center;
    /* Dikeyde ortalama */
    margin-bottom: 50px;
    /* Satırlar arası boşluk */
    gap: 40px;
    /* Resim ve metin arası boşluk */
}

/* Metin ve resim blokları (eşit yer kaplarlar) */
.hizmet-text,
.hizmet-image {
    flex: 1;
    /* Eşit olarak 1 birim yer kapla */
    min-width: 300px;
    /* Mobil için minimum genişlik */
}

.hizmetler-section {
    position: relative;
    padding: 80px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

/* Canvas arka plan */
#hizmetCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
    /* 🔥 Soft görünüm */
}

/* İçerik ön planda kalsın */
.hizmetler-section .container {
    position: relative;
    z-index: 1;
}

/* Resim stil ayarları */
.hizmet-image img {
    width: 100%;
    max-width: 450px;
    /* yatayda fazla büyümesin */
    max-height: 300px;
    /* 🔥 dikey yüksekliği sınırla */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    /* oranı koru, taşan kısmı kırp */
    object-position: center;
    /* ortadan kırpma yap */
}


/* Hizmet başlığı (H3) */
.hizmet-text h3 {
    font-size: 2rem;
    color: #2c3e50;
    /* Koyu mavi-gri */
    margin-bottom: 20px;
}

/* Hizmet açıklama paragrafı (P) */
.hizmet-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

/* "Ters" mizanpaj (resim sağda, metin solda) */
.hizmet-row.reverse {
    flex-direction: row-reverse;
    /* Sıralamayı tersine çevir (sadece PC) */
}

/* Eylem Butonu (CTA - Call to Action) */
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #3498db;
    /* Ana temanızla uyumlu bir renk seçin */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    /* Butonun üzerine gelinceki renk */
}


/* ---------------------------------- */
/* Hizmetler Bölümü - Mobil Uyumluluk */
/* ---------------------------------- */
@media (max-width: 768px) {
    .hizmet-row {
        flex-direction: column;
        /* Alt alta yığ */
        gap: 20px;
    }

    /* Ters sıralamayı mobilde iptal et (hepsi alt alta) */
    .hizmet-row.reverse {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .hizmet-text h3 {
        font-size: 1.8rem;
    }
}

/* === RESPONSIVE === */
@media (max-width: 950px) {

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .navbar .logo img {
        height: 100px;
        /* logo küçülür */
    }
}

/* ---------------------------------- */
/* Gerekli Genel Stiller (Konteyner vb.) */
/* ---------------------------------- */

body {
    font-family: 'Montserrat', sans-serif;
    /* Ana yazı tipiniz, eklemeyi unutmayın */
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    /* z-index için gerekli olabilir */
}

/* Genel Bölüm Başlığı */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}


/* ---------------------------------- */
/* SÜREÇ BÖLÜMÜ STİLİ (ADIM ADIM)    */
/* ---------------------------------- */
.surec-section {
    padding: 80px 0;
    background-color: #ffffff;
    /* Aydınlık bölüm arkaplanı */
}

/* Bu bölümdeki başlık KOYU */
.surec-section .section-title {
    color: #333333;
    margin-bottom: 20px;
}

/* Başlık için alt metin */
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto 60px auto;
    /* Üst/Alt boşluk ve ortalama */
}

/* 4'lü grid yapısı */
.surec-wrapper {
    display: grid;
    /* Cihaza göre otomatik sığan 280px'lik kartlar */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    /* Kartlar arası boşluk */
}

.surec-item {
    background: #f9f9f9;
    /* Hafif gri kart arkaplanı */
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    position: relative;
    /* Numarayı konumlandırmak için */
    overflow: hidden;
    /* Numarayı taşırabilmek için */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.surec-item:hover {
    transform: translateY(-10px);
    /* Üzerine gelince yükselme efekti */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Arkaplandaki büyük soluk numara */
.surec-sayi {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 5rem;
    /* Büyük font */
    font-weight: 700;
    color: #3498db;
    /* Temanızdaki mavi renk */
    opacity: 0.1;
    /* %10 saydamlık */
    z-index: 1;
    /* Metnin altında */
}

.surec-text {
    position: relative;
    z-index: 2;
    /* Numaranın üstünde */
}

/* Kart başlığı */
.surec-text h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    /* Koyu mavi-gri */
    margin-bottom: 15px;
}

/* Kart metni */
.surec-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* ---------------------------------- */
/* Mobil Uyumluluk (Süreç)           */
/* ---------------------------------- */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    /* Süreç bölümü zaten 'grid-template-columns: repeat(auto-fit...)'
       kullandığı için mobilde otomatik olarak alt alta dizilir.
       Ekstra bir medya sorgusuna ihtiyacı yoktur.
    */
}

/* ---------------------------------- */
/* Gerekli Genel Stiller (Konteyner vb.) */
/* ---------------------------------- */


.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}


/* ---------------------------------- */
/* SÜREÇ BÖLÜMÜ STİLİ (6 ADIM)       */
/* ---------------------------------- */
.surec-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.surec-section .section-title {
    color: #333333;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* 6'lı grid yapısı (3x2 düzeni) */
.surec-wrapper-6 {
    display: grid;
    /* MİNİMUM 320px'lik kartlar oluştur. 
       PC'de 3'lü, Tablette 2'li, Mobilde 1'li sıraya otomatik geçer.
    */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.surec-item {
    background: #f9f9f9;
    padding: 35px 30px;
    border-radius: 8px;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.surec-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.surec-sayi {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 5rem;
    font-weight: 700;
    color: #3498db;
    opacity: 0.1;
    z-index: 1;
}

.surec-text {
    position: relative;
    z-index: 2;
}

.surec-text h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.surec-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* ---------------------------------- */
/* Mobil Uyumluluk (Süreç)           */
/* ---------------------------------- */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    /* Grid yapısı 'auto-fit' kullandığı için
      otomatik olarak mobil uyumludur. 
      (Genişlik 320px'in altına düşerse kartlar alt alta dizilir)
    */
}

/* ---------------------------------- */
/* Gerekli Genel Stiller (Varsayılan) */
/* ---------------------------------- */

/* Bu stiller zaten mevcut olmalı, 
   ancak bölümün tek başına çalışması için buraya ekliyorum. */

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* ---------------------------------- */
/* Gerekli Genel Stiller (Varsayılan) */
/* ---------------------------------- */
/* Bu stiller zaten mevcut olmalı */

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #777;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* ---------------------------------- */
/* NEDEN BİZ BÖLÜMÜ STİLİ           */
/* ---------------------------------- */
.neden-biz-section {
    padding: 80px 0;
    /* Video galerisinin (beyaz) zıttı,
       hafif gri arkaplan */
    background-color: #f9f9f9;
}

.neden-biz-section .section-title {
    color: #333333;
    margin-bottom: 20px;
}

.neden-biz-section .section-subtitle {
    margin-bottom: 60px;
}

/* Kartların ızgara yapısı */
.neden-biz-wrapper {
    display: grid;
    /* PC'de 3, Mobilde 1 sütun */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    /* Kartlar arası boşluk */
}

/* Her bir özellik kartı */
.neden-biz-item {
    background: #ffffff;
    /* Kartlar beyaz */
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    /* İçeriği ortala */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* Hafif gölge */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.neden-biz-item:hover {
    transform: translateY(-10px);
    /* Hafif yükselme efekti */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* İkon Stili */
.neden-biz-icon {
    /* İkonu içeren SVG'nin boyutu */
    width: 60px;
    height: 60px;
    /* İkon rengi (Ana mavi temanız) */
    color: #3498db;
    margin: 0 auto 25px auto;
    /* Üst/Alt boşluk ve ortalama */
}

/* İkonun içindeki SVG'nin tam oturmasını sağlar */
.neden-biz-icon svg {
    width: 100%;
    height: 100%;
}

/* Kart başlığı */
.neden-biz-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    /* Koyu mavi-gri */
    margin-bottom: 15px;
}

/* Kart açıklama metni */
.neden-biz-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* ---------------------------------- */
/* GALERİ BÖLÜMÜ STİLİ              */
/* ---------------------------------- */
.galeri-section {
    padding: 80px 0;
    /* Süreç bölümü (beyaz) ile kontrast 
       oluşturması için hafif gri arkaplan */
    background-color: #f9f9f9;
}

.galeri-section .section-title {
    color: #333333;
    margin-bottom: 20px;
}

.galeri-section .section-subtitle {
    margin-bottom: 60px;
    /* Başlık ve galeri arası boşluk */
}

/* Fotoğraf ızgara yapısı */
.galeri-wrapper {
    display: grid;
    /* Responsive ızgara: 
      - En az 300px'lik sütunlar oluştur.
      - Sığdığı kadar yan yana koy (auto-fit).
      - Kalan boşluğu eşit dağıt (1fr).
    */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    /* Fotoğraflar arası boşluk */
}

.galeri-item {
    border-radius: 8px;
    overflow: hidden;
    /* Zoom efektinin taşmasını engeller */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);

    /* Bu, tüm kutuların aynı yükseklikte olmasını sağlar.
       İsteğe bağlı olarak değiştirebilirsiniz. */
    height: 280px;
    position: relative;
}

/* Fotoğrafların kutuyu doldurmasını sağlayan stiller */
.galeri-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Görüntüyü kırparak kutuya sığdırır */
    display: block;
    /* Alt boşluk sorununu çözer */
    transition: transform 0.4s ease;
    /* Zoom efekti için animasyon */
}

/* Üzerine gelince zoom efekti */
.galeri-item:hover img {
    transform: scale(1.1);
    /* Resmi %10 büyütür */
}

/* ---------------------------------- */
/* VİDEO GALERİSİ BÖLÜMÜ STİLİ      */
/* (LOKAL VİDEO İÇİN GÜNCELLENDİ)    */
/* ---------------------------------- */
.video-galeri-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.video-galeri-section .section-title {
    color: #333333;
    margin-bottom: 20px;
}

.video-galeri-section .section-subtitle {
    margin-bottom: 60px;
}

.video-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.video-item {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* GÜNCELLENEN KISIM: Lokal <video> etiketi için stil */
.video-item video {
    width: 100%;
    /* Videoyu kartın genişliğine sığdır */
    height: auto;
    /* Yüksekliği otomatik ayarla (oranı koru) */
    display: block;
    /* Alt boşluk sorununu çözer */
    background-color: #000;
    /* Video yüklenemezse siyah arkaplan */
}

/* Eski .video-wrapper-responsive sınıfına ve 
  içindeki 16:9'luk padding-top hilesine artık ihtiyaç yok.
*/

/* Video başlığı (Aynen kalır) */
.video-title {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    background-color: #f9f9f9;
}

/* ---------------------------------- */
/* Video Galerisi - Mobil Uyumluluk  */
/* ---------------------------------- */
@media (max-width: 450px) {
    .video-grid-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------- */
/* VİDEO GALERİSİ STİLİ (GÜNCELLENDİ) */
/* ---------------------------------- */

/* ... (Bölümün .video-galeri-section, .section-title, .video-grid-wrapper gibi 
       diğer stilleri aynı kalabilir) ... */


.video-item {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* YENİ EKLENDİ: 16:9 Aspect Ratio Konteyneri 
  (Tüm videoların aynı yükseklikte olmasını bu sağlar)
*/
.video-aspect-ratio-wrapper {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 Oranı (9 / 16 = 0.5625) */
    height: 0;
    overflow: hidden;
    background-color: #000;
    /* Video yüklenemezse siyah arkaplan */
}

/* GÜNCELLENDİ: Video etiketinin stili 
  Artık konteynerin içine tam olarak yerleşmesi gerekiyor
*/
.video-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;

    /* BU ÇOK ÖNEMLİ: 
      Video 16:9 değilse ne yapsın?
      - 'cover': Videoyu 16:9 alana sığdırır, taşan kısımları KESER. (Tavsiye edilen)
      - 'contain': Videoyu 16:9 alana sığdırır, boşluklara SİYAH BAR ekler.
    */
    object-fit: cover;
}


/* Video başlığı (Aynen kalır) */
.video-title {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    background-color: #f9f9f9;
}

/* footer */
.footer {
    background-color: #2a2927;
    color: #fff;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.footer-brand,
.footer-services,
.footer-pages,
.footer-socials {
    flex: 1 1 220px;
}

.footer-logo {
    width: 250px;
    margin-bottom: 15px;
}

.footer-brand p {
    margin: 8px 0;
}

.footer-services h3,
.footer-pages h3,
.footer-socials h3 {
    margin-bottom: 10px;
    color: #ff4d4d;
}

.footer-services ul,
.footer-pages ul {
    list-style: none;
    padding: 0;
}

.footer-services li,
.footer-pages li {
    margin: 6px 0;
}

.footer-services a,
.footer-pages a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}

.footer-services a:hover,
.footer-pages a:hover {
    color: #ff4d4d;
    text-shadow: 0 0 6px #ff4d4d;
}

.footer-socials a {
    display: flex;
    align-items: center;
    margin: 8px 0;
    font-weight: bold;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 4px;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.footer-socials a i {
    margin-right: 8px;
    font-size: 18px;
}

/* Sosyal medya renkleri */
.footer-socials a.instagram {
    background-color: #E1306C;
}

.footer-socials a.facebook {
    background-color: #1877F2;
}

.footer-socials a.x {
    background-color: #000;
}

.footer-socials a.linkedin {
    background-color: #0A66C2;
}

.footer-socials a:hover {
    transform: scale(1.05);
    box-shadow: 0 0 8px #ff4d4d;
}



.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    /* Ortaladı */
    display: flex;
    flex-direction: column;
    /* Alt alta getirir */
    justify-content: center;
    align-items: center;
    gap: 8px;
    /* iki yazı arası boşluk */
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: #ccc;
}

.footer-bottom .made-by {
    font-size: 0.9rem;
    color: #ff4d4d;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.whatsapp-fab {
    --size: 64px;
    position: fixed;
    left: 20px;
    /* solda */
    bottom: 20px;
    /* altta */
    width: var(--size);
    height: var(--size);
    display: inline-grid;
    place-items: center;
    background: linear-gradient(180deg, #25D366 0%, #1ebe57 100%);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 9999;
    text-decoration: none;
    transition: transform 200ms ease, box-shadow 200ms ease;
    will-change: transform;
    outline: none;
}

.whatsapp-fab svg {
    width: 56%;
    height: 56%;
    fill: white;
    display: block;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

/* Shake animasyonu (kısa, dikkat çekici) */
@keyframes whatsapp-shake {
    0% {
        transform: rotate(0deg);
    }

    15% {
        transform: rotate(-15deg);
    }

    30% {
        transform: rotate(10deg);
    }

    45% {
        transform: rotate(-8deg);
    }

    60% {
        transform: rotate(6deg);
    }

    75% {
        transform: rotate(-4deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* Shake uygulanmış hali (JS ile .shake class'ı eklenir/çıkarılır) */
.whatsapp-fab.shake {
    animation: whatsapp-shake 850ms cubic-bezier(.36, .07, .19, .97);
}

/* Ekran küçüldüğünde boyutu biraz küçült */
@media (max-width: 480px) {
    .whatsapp-fab {
        --size: 56px;
        left: 14px;
        bottom: 14px;
    }
}