/* --- style.css --- */

/* 1. GENEL AYARLAR ve RENK PALETİ */
:root {
    --lacivert: #0a192f;
    --sari: #fcdc0c;
    --altin: #e0b000;
    --beyaz: #ffffff;
    --gri: #f4f4f4;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    background-color: var(--beyaz);
    color: #2d2d2d;
    overflow-x: hidden;
}

/* 2. NAVBAR (MENÜ) */
.navbar {
    background-color: var(--lacivert);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(10, 25, 47, 0.96) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.65rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(224, 176, 0, 0.18);
}

.navbar-brand {
    color: #e0b000 !important; /*miraç elektrik başlık*/
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link {
    color: var(--beyaz) !important;
    font-weight: 500;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: #e0b000 !important;
}

.navbar-toggler {
    border-color: var(--beyaz);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* 3. BUTONLAR */
.btn-custom {
    background: linear-gradient(135deg, #e0b000 0%, #f5c800 100%);
    color: var(--lacivert);
    font-weight: 700;
    border: none;
    padding: 11px 28px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(224, 176, 0, 0.35);
    letter-spacing: 0.3px;
}

.btn-custom:hover {
    background: linear-gradient(135deg, #f5c800 0%, #e0b000 100%);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 176, 0, 0.45);
}

.btn-outline-light {
    border-width: 2px;
    font-weight: 700;
    padding: 11px 28px;
    letter-spacing: 0.3px;
}

.btn-outline-light:hover {
    background-color: var(--sari);
    border-color: var(--sari);
    color: var(--lacivert);
    transform: translateY(-2px);
}

/* 4. HERO (VİTRİN) BÖLÜMÜ */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* --- SLIDER ARKA PLAN --- */
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.6s ease-in-out;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 9s ease-in-out forwards;
}

@keyframes kenBurns {
    0%   { transform: scale(1)    translateX(0)    translateY(0); }
    100% { transform: scale(1.09) translateX(-1%)  translateY(-0.5%); }
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        160deg,
        rgba(10, 25, 47, 0.91) 0%,
        rgba(10, 25, 47, 0.65) 55%,
        rgba(5, 15, 30, 0.82) 100%
    );
}

/* --- HERO İÇERİK KATMANI --- */
.hero-contents {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-content-item {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* üst: navbar (76px) + nefes boşluğu | alt: noktalar + progress */
    padding: 96px 20px 130px;
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.95s ease, transform 0.95s ease;
    pointer-events: none;
}

.hero-content-item.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Slide etiket rozeti */
.hero-tag {
    display: inline-block;
    background: rgba(224, 176, 0, 0.14);
    color: #e0b000;
    border: 1px solid rgba(224, 176, 0, 0.38);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 22px;
}

/* --- SOL / SAĞ NAVİGASYON OKLARI --- */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.25rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-nav:hover {
    background: rgba(224, 176, 0, 0.28);
    border-color: rgba(224, 176, 0, 0.55);
    transform: translateY(-50%) scale(1.08);
}

.hero-nav.prev { left: 28px; }
.hero-nav.next { right: 28px; }

@media (max-width: 991px) {
    .hero-nav { display: none; }
}

/* ── MOBİL HERO DÜZELTMELERİ ── */
@media (max-width: 767px) {

    .hero-section {
        /* Bazı mobil tarayıcılarda adres çubuğu 100vh'i bozar */
        min-height: 100svh;
        min-height: 100vh;
    }

    .hero-content-item {
        padding: 96px 16px 110px;
    }

    /* Başlık boyutunu mobilde küçült */
    .hero-content-item h1.display-3 {
        font-size: 2rem;
        line-height: 1.25;
    }

    .hero-tag {
        font-size: 0.65rem;
        padding: 5px 14px;
        letter-spacing: 1.5px;
    }

    .hero-content-item .lead {
        font-size: 0.95rem;
    }

    /* Butonları mobilde alt alta diz */
    .hero-content-item .btn {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 10px auto !important;
    }

    /* Scroll göstergesi (Keşfet) mobilde gizle — noktalarla çakışıyor */
    .hero-scroll-indicator {
        display: none;
    }

    /* Noktaları alta taşı */
    .hero-indicators {
        bottom: 22px;
    }

    /* Progress bar mobilde biraz daha kalın */
    .hero-progress {
        height: 4px;
    }
}

/* --- PROGRESS BAR --- */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #e0b000, #fcdc0c);
    z-index: 4;
    animation: heroProgress 6s linear forwards;
}

@keyframes heroProgress {
    from { width: 0%; }
    to   { width: 100%; }
}

/* --- NOKTA İNDİKATÖRLERİ --- */
.hero-indicators {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 4;
}

.hero-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.4s ease;
}

.hero-dot.active {
    background: #e0b000;
    width: 28px;
    border-radius: 5px;
}

.hero-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.65);
}

/* Hero scroll göstergesi — SOL ALT köşe, WP butonuyla çakışmaz */
.hero-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 40px;
    right: auto;
    transform: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    z-index: 3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: rgba(255,255,255,0.75);
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
    transform-origin: top;
}

@keyframes scrollPulse {
    0%   { opacity: 1;   transform: scaleY(1);   }
    60%  { opacity: 0.3; transform: scaleY(0.4); }
    100% { opacity: 1;   transform: scaleY(1);   }
}

.z-index-1 { z-index: 1; }
.letter-spacing-2 { letter-spacing: 2px; }

/* Animasyonlar */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* 5. GENEL BÖLÜM AYARLARI */
.section-padding {
    padding: 90px 0;
}

.divider {
    width: 60px;
    height: 3px;
    margin-top: 10px;
}

/* Premium bölüm başlığı etiketi */
.section-badge {
    display: inline-block;
    background: rgba(224, 176, 0, 0.1);
    color: var(--altin);
    border: 1px solid rgba(224, 176, 0, 0.3);
    padding: 5px 18px;
    border-radius: 30px;
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 14px;
}

.section-title {
    color: var(--lacivert);
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.title-line {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--altin), rgba(224,176,0,0.3));
    border-radius: 2px;
}

/* Hakkımızda Görseli */
.about-img-wrapper {
    position: relative;
}
.experience-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background-color: #e0b000;
    color: #ebe5ce;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    font-weight: bold;
}

/* Hizmet Kartları */
/* --- YENİ MODERN HİZMETLER (GARANTİLİ TASARIM) --- */

/* (section-padding & section-title already defined above) */

/* Hizmet Kutusu (Normal Hali) */
.service-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--altin), #fcdc0c, transparent);
    border-radius: 15px 15px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-item:hover::after {
    opacity: 1;
}

/* İkon Tasarımı */
.service-item .icon i {
    font-size: 3rem; /* Büyük ikon */
    color: #e0b000; /* İkon rengi sarı */
    transition: all 0.4s ease;
}

/* Başlık ve Yazı */
.service-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lacivert);
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
    transition: color 0.4s ease;
}

/* --- HOVER (ÜZERİNE GELİNCE) EFEKTİ --- */

/* 1. Kutunun Rengi Değişsin */
.service-item:hover {
    background-color: var(--lacivert); /* Zemin Lacivert oluyor */
    transform: translateY(-10px); /* Yukarı kalkıyor */
    box-shadow: 0 15px 30px rgba(10, 25, 47, 0.4); /* Gölge artıyor */
    border-color: var(--lacivert);
}

/* 2. Yazılar Beyaz Olsun */
.service-item:hover h3,
.service-item:hover p {
    color: #fff !important; /* Yazılar beyazlaşır */
}

/* 3. İkon Hafifçe Büyüsün */
.service-item:hover .icon i {
    transform: scale(1.1); /* %10 büyür */
}

/* 7. Kutu (Acil Servis) için özel sınır */
.service-item.border-warning {
    border: 2px solid var(--sari) !important;
}

/* --- anasayfa REFERANS KARTLARI CSS --- */

.ref-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px; /* Hafif oval köşeler */
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Çok hafif gölge */
    border-left: 5px solid var(--sari); /* Sol tarafta sarı çizgi */
    height: 100%; /* Kartları eşit boyda tutar */
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Sol üstteki ikon */
.ref-icon {
    width: 50px;
    height: 50px;
    background-color: var(--lacivert);
    color: #e0b000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Firma Başlığı */
.ref-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lacivert);
    margin-bottom: 15px;
}

/* Açıklama Yazısı */
.ref-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* Yazıyı yayarak alt kısmı hizalar */
}

/* Alt Bilgi (Tamamlandı yazısı) */
.ref-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    font-size: 0.9rem;
    color: var(--lacivert);
    font-weight: 600;
}

/* Hover Efekti */
.ref-card:hover {
    transform: translateY(-5px); /* Hafifçe yukarı kalkar */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1); /* Gölge artar */
}



/* --- ÇALIŞMA SÜRECİ CSS (YENİ TASARIM) --- */

.process-section {
    position: relative;
    overflow: hidden;
}

.process-card {
    background: #fff;
    border-radius: 18px;
    padding: 42px 32px 36px 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 28px rgba(0,0,0,0.06);
    border: 1px solid #eef0f3;
    transition: all 0.4s ease;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Büyük arka plan numarası */
.process-card-bg-num {
    position: absolute;
    top: -12px;
    right: 16px;
    font-size: 6.5rem;
    font-weight: 900;
    color: rgba(10, 25, 47, 0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-family: 'Poppins', sans-serif;
}

/* İkon dairesi */
.process-card-icon {
    width: 82px;
    height: 82px;
    background: linear-gradient(145deg, var(--lacivert), #0d2a4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(10, 25, 47, 0.22);
    transition: all 0.4s ease;
}

.process-card-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(224, 176, 0, 0.22);
    transition: all 0.4s ease;
}

.process-card-icon i {
    font-size: 2rem;
    color: #e0b000;
    transition: all 0.4s ease;
}

/* Adım numarası rozeti */
.process-card-step {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #e0b000, #f5c800);
    color: var(--lacivert);
    border-radius: 50%;
    font-size: 0.72rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(224,176,0,0.4);
}

.process-card h4 {
    color: var(--lacivert);
    font-weight: 700;
    font-size: 1.12rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-card p {
    color: #7a8390;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Hover */
.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(10, 25, 47, 0.13);
    border-color: rgba(224, 176, 0, 0.3);
}

.process-card:hover .process-card-icon {
    background: linear-gradient(145deg, #e0b000, #f5c800);
    box-shadow: 0 8px 28px rgba(224, 176, 0, 0.4);
}

.process-card:hover .process-card-icon i {
    color: var(--lacivert);
}

.process-card:hover .process-card-icon::before {
    border-color: rgba(224, 176, 0, 0.5);
}

/* Adımlar arası ok (masaüstü) */
.process-divider {
    display: none;
}

@media (min-width: 992px) {
    .process-divider {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 0;
        color: rgba(10, 25, 47, 0.2);
        font-size: 1.4rem;
        flex-shrink: 0;
        width: 30px;
    }

    /* col-lg ile birlikte kartların eşit genişlikte olması */
    .row .col-lg {
        flex: 1;
        min-width: 0;
    }
}


/* --- SADE PROJE KARTI TASARIMI --- */

.gallery-hero {
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1498084393753-b411b2d26b34?q=80&w=1932&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 76px;
    display: flex;
    align-items: center;
}

/* KART YAPISI */
.project-card {
    background-color: #fff;
    border-radius: 12px; /* Köşeler biraz daha keskin */
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    height: 100%; /* Kartları eşit boyda tutar */
    display: flex;
    flex-direction: column;
}

/* Resim Alanı */
.img-wrapper {
    height: 250px; /* Resimler biraz daha yüksek */
    position: relative;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Kategori Etiketi (Sarı Kutu) */
.category-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--sari);
    color: var(--lacivert);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 4px; /* Kareye yakın */
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Yazı Alanı */
.card-content {
    padding: 25px;
    flex-grow: 1;
}

.card-content h4 {
    color: var(--lacivert);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Hover Efektleri */
.project-card:hover {
    transform: translateY(-5px); /* Hafif yukarı kalkma */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-color: var(--sari); /* Çerçeve sarı olsun */
}

.project-card:hover .img-wrapper img {
    transform: scale(1.05); /* Resim hafifçe büyüsün */
}


/* --- REFERANS SAYFASI HEADER --- */
.ref-hero {
    height: 300px;
    /* Daha kurumsal, ofis veya tokalaşma görseli */
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=2032&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 76px;
}

/* Referans Sayfasında ikon gizlemek istersek (Opsiyonel) */
/* .ref-card içindeki tasarımı zaten style.css'te yapmıştık, aynısını kullanıyor. */

/* --- SADE VE RESİMLİ REFERANS KARTI CSS --- */

/* Referans Sayfası Header Resmi (Farklılaşması için) */
.ref-hero {
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=2032&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 76px;
}

/* Kartın Kendisi */
.simple-ref-card {
    transition: all 0.3s ease; /* Yumuşak geçiş efekti */
    overflow: hidden; /* Köşelerin yuvarlak kalması için */
    border-radius: 10px !important; /* Daha modern yuvarlak köşeler */
}

/* Kartın Resmi (Kenarlığı sildik, tam genişlik verdik) */
.simple-ref-card .card-img-top {
    height: 220px; 
    width: 100%;
    display: block;
    object-fit: cover; 
}

/* Kartın İçeriği (Yazı Alanı) - SARI ÇİZGİYİ BURAYA EKLEDİK */
.simple-ref-card .card-body {
    padding: 25px;
    border-top: 4px solid #e0b000; /* Tam genişlikte sarı çizgi */
}

/* Hover (Üzerine Gelince) Efekti */
.simple-ref-card:hover {
    transform: translateY(-7px); /* Hafifçe yukarı kalkar */
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; /* Gölge belirginleşir */
}

/* --- FOOTER (ALT BİLGİ) CSS --- */

.footer-section {
    background-color: var(--lacivert); /* Koyu Lacivert Arka Plan */
    color: #ffffff;
    padding: 70px 0 20px 0; /* Üstten geniş, alttan dar boşluk */
    font-size: 0.95rem;
}

/* Başlıklar */
.footer-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Başlık Altı Kısa Sarı Çizgi */
.footer-divider {
    width: 40px;
    height: 3px;
    background-color: #e0b000;
    border-radius: 2px;
}

/* Açıklama Yazısı */
.footer-desc {
    color: #adb5bd; /* Açık Gri */
    line-height: 1.7;
}

/* Sosyal Medya İkonları */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.05); /* Şeffaf beyaz yuvarlak */
    color: #ffffff;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: #e0b000;
    color: var(--lacivert);
    transform: translateY(-3px); /* Hafif yukarı zıplar */
}

/* Hızlı Linkler Listesi */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a i {
    font-size: 0.8rem;
    margin-right: 8px;
    color: var(--sari); /* Ok işaretleri sarı */
    transition: all 0.3s ease;
}

/* Link Hover (Üzerine Gelince Sağa Kayma Efekti) */
.footer-links a:hover {
    color: var(--sari);
    transform: translateX(5px); /* Yazı 5px sağa kayar */
}

/* İletişim Bilgileri Listesi */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    color: #adb5bd;
}

.footer-contact li i {
    color: var(--sari);
    font-size: 1.2rem;
    margin-top: 4px;
    margin-right: 15px;
}

.footer-contact li a {
    color: #adb5bd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-contact li a:hover {
    color: var(--sari);
}

/* En Alt Telif Hakkı Çizgisi */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* İnce, şeffaf çizgi */
    margin-top: 40px;
    padding-top: 20px;
    color: #6c757d;
    font-size: 0.9rem;
}


/* --- İLETİŞİM SAYFASI CSS --- */

/* İletişim Header Resmi */
.contact-hero {
    height: 300px;
    background-image: url('https://images.unsplash.com/photo-1596524430615-b46475ddff6e?q=80&w=2070&auto=format&fit=crop'); /* İletişim çağrışımı yapan ofis/telefon görseli */
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 76px;
}

/* --- SOL TARAF: İKONLU BİLGİLER --- */
.info-item {
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px); /* Üzerine gelince çok hafif sağa kayar */
}

/* Yuvarlak İkon Kutusu */
.info-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(252, 220, 12, 0.15); /* Açık sarı zemin */
    color: var(--sari); /* İkon sarı */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0; /* İkonun ezilmesini önler */
}

/* İkon Kutusu Hover */
.info-item:hover .info-icon {
    background-color: var(--lacivert);
    color: #e0b000;
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.2);
}

/* --- SAĞ TARAF: MESAJ FORMU --- */

/* Form Kutusu */
.contact-form-card {
    border-color: #f0f0f0 !important;
}

/* Form İnputları (Metin kutuları) */
.custom-input {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* Kutunun içine tıklanınca (Focus durumu) */
.custom-input:focus {
    background-color: #ffffff;
    border-color: var(--sari); /* Çerçeve sarı olur */
    box-shadow: 0 0 0 0.25rem rgba(252, 220, 12, 0.25); /* Hafif sarı parlama efekti */
    outline: none;
}

/* Form içindeki başlıklar */
.form-label {
    color: var(--lacivert);
    font-size: 0.95rem;
}

/* --- YUKARI ÇIK BUTONU CSS --- */

#yukariCik {
    display: none; /* Başlangıçta görünmez */
    position: fixed; /* Ekrana sabitler */
    bottom: 30px; /* Alttan boşluk */
    right: 30px; /* Sağdan boşluk */
    z-index: 999; /* Her şeyin üstünde durmasını sağlar */
    font-size: 1.2rem;
    border: none;
    outline: none;
    background-color: #e0b000;
    color: var(--lacivert);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Tam yuvarlak yapar */
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); /* Şık bir gölge */
    transition: all 0.3s ease;
}

#yukariCik:hover {
    background-color: #ffffff;
    color: var(--sari);
    transform: translateY(-5px);
}


/* --- PREMİUM CTA BANDI --- */

.cta-section {
    background: linear-gradient(135deg, #061422 0%, var(--lacivert) 50%, #0d2444 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(224,176,0,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -40px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(224,176,0,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .cta-title {
    color: #fff;
    font-weight: 800;
    font-size: 2.1rem;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.cta-section .cta-title span {
    color: var(--altin);
}

.cta-section .cta-desc {
    color: rgba(255,255,255,0.62);
    font-size: 1rem;
    margin-top: 14px;
    line-height: 1.7;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #e0b000 0%, #f5c800 100%);
    color: var(--lacivert);
    font-weight: 700;
    padding: 14px 34px;
    border-radius: 6px;
    border: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(224, 176, 0, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(224, 176, 0, 0.55);
    color: #000;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.25);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-outline:hover {
    border-color: var(--altin);
    color: var(--altin);
    transform: translateY(-3px);
}


/* --- İSTATİSTİK BÖLÜMÜ --- */

.stats-section {
    background-color: var(--lacivert);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.02);
    transform: rotate(15deg);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #e0b000;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    font-size: 2rem;
}

.stat-label {
    color: #adb5bd;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.stat-icon {
    font-size: 1.8rem;
    color: rgba(224, 176, 0, 0.25);
    margin-bottom: 12px;
    display: block;
}


/* --- MÜŞTERİ YORUMLARI --- */

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    color: #e0b000;
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-color: #e0b000;
}

.testimonial-stars {
    color: #e0b000;
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: #555;
    font-size: 0.97rem;
    line-height: 1.8;
    flex-grow: 1;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background-color: var(--lacivert);
    color: #e0b000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--lacivert);
    font-size: 0.95rem;
    display: block;
    line-height: 1.2;
}

.author-title {
    font-size: 0.82rem;
    color: #999;
}


/* --- WHATSAPP YÜZEN BUTONU --- */

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
    z-index: 998;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #1ebe57;
    color: #fff;
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
}

.whatsapp-float .tooltip-text {
    position: absolute;
    right: 60px;
    background: #25D366;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .tooltip-text {
    opacity: 1;
}


/* --- GALERİ FİLTRE BUTONLARI --- */

.filter-section {
    padding: 30px 0 10px 0;
}

.filter-btn {
    background: #fff;
    border: 2px solid #e0e0e0;
    color: #555;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    margin: 5px 4px;
}

.filter-btn:hover {
    border-color: var(--lacivert);
    color: var(--lacivert);
}

.filter-btn.active {
    background-color: var(--lacivert);
    border-color: var(--lacivert);
    color: #e0b000;
    box-shadow: 0 4px 12px rgba(10, 25, 47, 0.25);
}


/* --- SCROLL REVEAL ANİMASYONLARI --- */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }


/* --- AKTİF NAV LİNK (Sayfa bazlı) --- */

.nav-link.page-active {
    color: #e0b000 !important;
    font-weight: 700;
}


/* --- HARİTA BÖLÜMÜ --- */

.map-section {
    padding: 0;
}

.map-section iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
    filter: grayscale(15%) contrast(1.05);
}


/* ════════════════════════════════════════
   GENEL RESPONSİVE & LAYOUT DÜZELTMELERİ
   ════════════════════════════════════════ */

/* Tüm satır/sütunların sınır dışına taşmasını önle */
.container, .row, section, header, footer {
    max-width: 100%;
}

/* Section padding mobilde azalt */
@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    /* Stats: dikey çizgiyi mobilde kaldır */
    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        padding: 18px 10px;
    }
    .stat-item:last-child {
        border-bottom: none;
    }
    .stat-number {
        font-size: 2.2rem;
    }

    /* Hakkımızda rozet taşmasın */
    .experience-badge {
        right: 10px;
        bottom: -15px;
        padding: 14px;
        font-size: 0.9rem;
    }

    /* Hizmet kartları tam genişlik */
    .service-item {
        padding: 30px 22px;
    }

    /* Referans kartları */
    .ref-card {
        padding: 22px 18px;
    }

    /* Process kartları */
    .process-card {
        padding: 32px 24px;
    }

    /* CTA bölümü butonları */
    .btn-cta-primary,
    .btn-cta-outline {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 12px;
    }

    /* Footer iletişim */
    .footer-section {
        padding: 50px 0 15px;
    }

    /* Map yükseklik */
    .map-section iframe {
        height: 260px;
    }

    /* İletişim formu */
    .contact-info-wrapper,
    .contact-form-card {
        padding: 28px 20px !important;
    }
}

@media (max-width: 575px) {
    /* Çok küçük ekranlarda section badge taşmasın */
    .section-badge {
        font-size: 0.65rem;
        letter-spacing: 1.5px;
        padding: 5px 14px;
    }

    /* Referans "Tüm Referansları İncele" butonu */
    .btn-outline-dark.rounded-pill {
        padding: 12px 24px !important;
        font-size: 0.9rem;
    }

    /* Process card arası ok */
    .process-divider {
        display: none !important;
    }
}