/* ==================================== */
/* GENEL AYARLAR VE RENK PALETİ */
/* ==================================== */
:root {
    --color-dark: #121212; 
    --color-dark-alt: #1e1e1e; 
    --color-light: #f4f4f4; 
    --color-light-alt: #b0b0b0; 
    --color-accent: #FFD700; 
    --font-primary: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--color-dark);
    color: var(--color-light);
    font-family: var(--font-primary);
    line-height: 1.6;
}

.container {
    /* Genel içerik genişliği artırıldı */
    max-width: 1400px; 
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-light);
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-light);
    font-weight: 900;
}

/* Navigasyon Çubuğu */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--color-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative; 
    z-index: 10;
}

.logo-link {
    text-decoration: none;
}

.navbar .logo {
    font-size: 1.8em;
    font-weight: 900;
    color: var(--color-accent);
}

.navbar nav a {
    color: var(--color-light);
    text-decoration: none;
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s;
}

.navbar nav a:hover {
    color: var(--color-accent);
}

/* CTA Butonları */
.cta-button {
    background-color: var(--color-accent);
    color: var(--color-dark) !important; 
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 700 !important;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    border: 2px solid var(--color-accent);
}

.cta-button:hover {
    background-color: #ffe84d; 
    transform: translateY(-2px);
}

.large-cta {
    padding: 15px 35px;
    font-size: 1.1em;
}

.outline-cta {
    background: none !important;
    color: var(--color-accent) !important;
    border: 2px solid var(--color-accent);
    margin-top: 30px;
}

.outline-cta:hover {
    background-color: var(--color-accent) !important;
    color: var(--color-dark) !important;
}

/* ==================================== */
/* DROPDOWN MENÜ STİLLERİ */
/* ==================================== */

.dropdown {
    position: relative; 
    display: inline-block;
    margin-left: 25px; 
    vertical-align: middle; 
}

.dropbtn {
    background-color: transparent;
    color: var(--color-light);
    padding: 10px 15px;
    font-size: 1em;
    font-family: var(--font-primary);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
    display: inline-block; 
    vertical-align: middle; 
}

.dropbtn:hover {
    color: var(--color-accent);
}

.dropbtn i {
    font-size: 0.7em;
    margin-left: 5px;
}

.dropdown-content {
    /* Kurumsal (Tek Sütun) Menü için varsayılan ayarlar */
    display: none; 
    position: absolute;
    background-color: var(--color-dark-alt); 
    min-width: 220px; 
    z-index: 10;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    border-radius: 4px;
    border-top: 2px solid var(--color-accent);
    padding: 10px 0;
    left: 0; 
    flex-direction: column; 
}

.dropdown-content a {
    color: var(--color-light);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    margin: 0 !important; 
    transition: background-color 0.3s, padding-left 0.3s, color 0.3s;
}

.dropdown-content a:hover {
    background-color: #2a2a2a; 
    color: var(--color-accent); 
    padding-left: 20px;
}

.dropdown-content a i {
    float: right; 
    font-size: 0.8em;
    opacity: 0.7;
    color: var(--color-accent); 
}

/* 1. KURAL: Tüm Dropdown'lar hover'da AÇILIR */
.dropdown:hover .dropdown-content {
    display: block;
}

/* 2. KURAL: MEGA MENÜ'YÜ GÖRSEL OLARAK ZORLAMA (Sadece Hizmetler için) */
.large-dropdown:hover .dropdown-content { 
    min-width: 700px; 
    left: auto; 
    right: 0; 
    padding: 20px;
    display: flex; /* YAN YANA DİZİLİMİ ZORLAR */
    gap: 30px;
}

/* Mega Menü Sütunları (İçerik Stilleri) */
.menu-column {
    flex: 1;
    min-width: 200px;
}

.menu-column h4 {
    color: var(--color-accent); 
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-column a {
    padding: 8px 0; 
    font-size: 0.95em;
    color: var(--color-light-alt);
}

.menu-column a:hover {
    color: var(--color-accent); 
    background: none !important; 
    padding-left: 5px; 
}

/* ==================================== */
/* VİDEO ARKA PLAN STİLLERİ (KESİN ÇÖZÜM) */
/* ==================================== */

#video-background {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; 
    filter: brightness(0.6); 
}

/* ==================================== */
/* LOGO SLIDER STİLLERİ (NİHAİ - BEYAZ ZEMİN VE YAN BOŞLUK) */
/* ==================================== */

/* Animasyon Tanımlaması */
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%); 
    }
}

/* Trust Section (Kapsayıcı - Yanlardan 100px boşluk) */
.trust-section {
    padding: 0; 
    padding-left: 100px; /* Yanlardan 100px boşluk */
    padding-right: 100px;
    background-color: var(--color-dark-alt); 
    overflow: hidden; 
}

.trust-section h3 {
    color: var(--color-light);
    padding: 20px 0;
    font-size: 1.1em;
    font-weight: 700;
    margin-bottom: 0;
    text-align: center; 
}

/* Logo Kaydırıcı Ana Alanı */
.logo-slider-track {
    /* ARKA PLAN BEYAZ YAPILDI */
    background-color: var(--color-light); 
    
    /* Logolar Arası Boşluk ve Animasyon Ayarları */
    display: flex;
    gap: 8px; /* Logolar arasında 8px boşluk */
    overflow: hidden; 
    white-space: nowrap; 
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    
    /* Logoların kenarlara yapışmaması için iç dolgu (padding) */
    padding: 20px 20px; 

    width: 200%; 
    animation: slide 30s linear infinite; 
    align-items: center; 
}

.logo-slider-track img {
    height: 40px; 
    /* Logolar beyaz zeminde görünür olması için ayar */
    filter: grayscale(100%); 
    opacity: 0.6;
    transition: opacity 0.3s, filter 0.3s;
    flex-shrink: 0; 
    width: auto;
}

.logo-slider-track img:hover {
    opacity: 1;
    filter: none; 
}


/* ==================================== */
/* MARKA YOLCULUĞU SLIDER STİLLERİ (7 ADIM) */
/* ==================================== */

/* ======= Journey (yeni tasarım) ======= */

.journey-section {
  padding: 80px 0 120px;
  background: var(--color-dark);
  color: var(--color-light);
  text-align: center;
}

.journey-section .section-title {
  margin-bottom: 40px;
  font-size: 2.6rem;
  letter-spacing: 0.5px;
}

/* Viewport: içerik maskesi (overflow gizle) */
.journey-slider-wrapper { position: relative; }
.journey-viewport {
  overflow: hidden;
  padding: 0 40px;
}

/* Track: esnek satır */
.journey-track {
  display: flex;
  gap: 28px;
  transition: transform 0.6s cubic-bezier(.2,.9,.2,1);
  will-change: transform;
  padding: 20px 0;
}

/* Kartlar */
.journey-step-card {
  background: var(--color-dark-alt);
  border-radius: 12px;
  padding: 48px 30px 36px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.04);
  min-width: 320px;            /* mobilde tekli gösterebilmek için */
  flex: 0 0 calc((100% / 3) - 28px); /* desktop: 3 sütun görünümü (hesaplama gap'ı içerir) */
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Kart içi düzen (başlık ortalı) */
.journey-step-card h3 {
  font-size: 1.25rem;
  margin-top: 18px;
  margin-bottom: 14px;
  color: var(--color-light);
  font-weight: 800;
}

/* Açıklama */
.journey-step-card p {
  color: var(--color-light-alt);
  line-height: 1.7;
  font-size: 0.98rem;
  margin: 0;
}

/* Numara rozeti - kartın üst merkezinde taşma efekti */
.step-badge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  border: 4px solid rgba(0,0,0,0.0);
}

/* Kontroller (ok + dot) */
.journey-controls {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* Ok butonları */
.journey-arrow {
  border: 2px solid rgba(255,255,255,0.08);
  background: transparent;
  color: var(--color-light);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .18s ease;
  font-size: 1.0rem;
  backdrop-filter: blur(2px);
}
.journey-arrow:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  background: rgba(255,215,0,0.06);
  color: var(--color-accent);
}

/* Dots */
.journey-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.journey-dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  cursor: pointer;
  transition: all .2s ease;
}
.journey-dot.active {
  width: 32px;
  height: 10px;
  background: var(--color-accent);
  border-radius: 6px;
}

/* Responsive ayarlar */
@media (max-width: 1100px) {
  .journey-step-card { flex: 0 0 calc((100% / 2) - 24px); min-width: 360px; }
}

@media (max-width: 700px) {
  .journey-section { padding: 60px 0 80px; }
  .journey-viewport { padding: 0 20px; }
  .journey-step-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 36px 22px;
  }
  .step-badge { width:46px; height:46px; top:-20px; font-size:1rem; }
  .journey-controls { gap: 12px; margin-top: 18px; }
  .journey-arrow { width:44px; height:44px; }
}


/* ==================================== */
/* ANASAYFA DİĞER BÖLÜMLERİ VE ORTAK STİLLER */
/* ==================================== */

/* Hizmet Özeti */
.services-summary {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-dark);
}

.service-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--color-dark-alt);
    padding: 40px 20px;
    border-radius: 8px;
    max-width: 350px;
    text-align: center;
    border-bottom: 4px solid var(--color-accent);
    transition: transform 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 3em;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: var(--color-light);
}

/* Neden Biz? */
.why-us {
    background-color: var(--color-dark-alt);
    padding: 80px 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.difference-grid div {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: var(--color-dark);
}

.difference-grid h4 {
    color: var(--color-accent);
    font-size: 1.3em;
    margin-bottom: 10px;
}

/* Portfolyo Özeti */
.portfolio-summary {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-dark);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.project-summary-card {
    background-color: var(--color-dark-alt);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 215, 0, 0.2);
}

.project-summary-card img {
    width: 100%;
    height: auto;
    display: block;
}

.project-summary-card h3 {
    font-size: 1.3em;
    padding: 15px 15px 5px;
    color: var(--color-light);
}

.project-summary-card p {
    color: var(--color-accent);
    font-weight: 600;
    padding: 0 15px 10px;
}

.project-summary-card .cta-link {
    display: block;
    text-align: right;
    padding: 10px 15px 15px;
    color: var(--color-light-alt);
    transition: color 0.3s;
}

.project-summary-card .cta-link:hover {
    color: var(--color-accent);
}

/* DİĞER SAYFALARIN STİLLERİ (Portfolyo, Hizmetler, Hakkımızda, İletişim, Yazılım Çözümleri) */

.page-hero {
    padding: 100px 0 50px;
    text-align: center;
    background-color: var(--color-dark);
}

.page-hero h1 {
    font-size: 3em;
    color: var(--color-accent);
}

.subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 20px auto 0;
    color: var(--color-light-alt);
}

/* HİZMETLER SAYFASI ÖZEL STİLLERİ */
.services-detail {
    padding: 60px 0 100px;
}

.group-title {
    font-size: 2em;
    color: var(--color-light);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 10px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.group-title i {
    color: var(--color-accent);
    margin-right: 10px;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.detail-card {
    background-color: var(--color-dark-alt);
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--color-accent);
    transition: background-color 0.3s;
}

.detail-card:hover {
    background-color: #2a2a2a;
}

.detail-card h3 {
    font-size: 1.4em;
    color: var(--color-light);
    margin-bottom: 15px;
}

.cta-link {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 15px;
    transition: margin-left 0.3s;
}

.cta-link:hover {
    margin-left: 5px;
}

.cta-link i {
    margin-left: 5px;
}

/* PORTFOLYO SAYFASI ÖZEL STİLLERİ */
.portfolio-section {
    padding: 60px 0 100px;
}

/* Filtre Butonları */
.filter-buttons {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    background-color: var(--color-dark-alt);
    color: var(--color-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.filter-btn:hover {
    background-color: #2a2a2a;
}

.filter-btn.active {
    background-color: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

/* Proje Grid Yapısı */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--color-dark-alt);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s;
}

/* Hover Efekti */
.project-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(18, 18, 18, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s;
    text-align: center;
    padding: 20px;
}

.project-card:hover .project-info {
    opacity: 1;
}

.project-info h3 {
    color: var(--color-accent);
    font-size: 1.8em;
    margin-bottom: 5px;
}

.project-info p {
    color: var(--color-light);
}

.view-link {
    color: var(--color-light);
    border: 1px solid var(--color-light);
}

.view-link:hover {
    background-color: var(--color-accent);
    color: var(--color-dark) !important;
    border-color: var(--color-accent);
}

/* HAKKIMIZDA SAYFASI ÖZEL STİLLERİ */
.story-section {
    padding: 80px 0;
    text-align: center;
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 20px;
    text-align: left;
    color: var(--color-light-alt);
}

.story-content strong {
    color: var(--color-accent);
    font-weight: 700;
}

.values-section {
    padding: 80px 0;
    background-color: var(--color-dark-alt);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--color-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    border-color: var(--color-accent);
}

/* YAZILIM ÇÖZÜMLERİ SAYFASI ÖZEL STİLLERİ */
.software-products {
    padding: 80px 0;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
    padding: 40px;
    background-color: var(--color-dark-alt);
    border-radius: 10px;
}

.product-card.reverse {
    flex-direction: row-reverse;
}

.product-info {
    flex: 1;
}

.product-visual {
    flex: 1;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.product-visual img {
    width: 100%;
    display: block;
    height: auto;
}

.product-info h2 {
    color: var(--color-accent);
    font-size: 2em;
    margin-bottom: 20px;
}

.product-info p {
    margin-bottom: 30px;
    color: var(--color-light-alt);
}

.product-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.product-info ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--color-light);
}

.product-info ul li i {
    color: var(--color-accent);
    margin-right: 10px;
}

hr {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 60px auto;
    width: 80%;
}

/* İLETİŞİM SAYFASI ÖZEL STİLLERİ */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* Form Stilleri */
.contact-form-container {
    background-color: var(--color-dark-alt);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h2 {
    color: var(--color-accent);
    margin-bottom: 30px;
    font-size: 1.8em;
}

.form-group label {
    color: var(--color-light);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: var(--color-dark);
    color: var(--color-light);
}

.contact-form select option {
    background-color: var(--color-dark);
    color: var(--color-light);
}

/* İletişim Bilgileri Stilleri */
.contact-info-container h2 {
    color: var(--color-light);
}

.info-item a {
    color: var(--color-accent);
}

.info-item a:hover {
    color: #ffe84d;
}

.yellow-icon {
    color: var(--color-accent);
}

.map-placeholder {
    height: 300px;
    background-color: #2a2a2a;
    border: 1px dashed var(--color-accent);
    color: var(--color-light-alt);
}

/* FOOTER VE MOBİL UYUMLULUK */

footer {
    padding: 30px 0;
    background-color: var(--color-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
    color: var(--color-light-alt);
}

.social-links a {
    color: var(--color-light-alt);
    font-size: 1.2em;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--color-accent);
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2.5em;
    }
    .service-grid {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        max-width: 90%;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-container {
        order: 2;
    }
    .contact-info-container {
        order: 1;
    }
    footer .container {
        flex-direction: column;
        gap: 10px;
    }
    /* Mobilde menüleri gizler */
    .dropdown {
        display: none; 
    }
    /* Mobilde Mega Menü içeriğini tek sütun olarak gösterir */
    .large-dropdown .dropdown-content {
        display: block;
        min-width: 100%;
        padding: 10px;
        flex-direction: column; 
    }
    /* Mobilde 100px boşluğu 20px'e düşür */
    .trust-section {
        padding-left: 20px;
        padding-right: 20px;
    }
}
.new-services-section {
    padding: 100px 0;
    background-color: var(--color-dark); 
    text-align: center;
}

.new-services-section .subtitle {
    margin-bottom: 60px;
    color: var(--color-light-alt);
}

.new-service-grid {
    /* 2 Sütunlu Grid Düzeni */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px; /* Kartlar arası boşluk */
    margin-bottom: 40px;
}

.service-block {
    display: flex;
    align-items: flex-start; /* İkon ve metin yukarı hizalı */
    text-align: left;
    text-decoration: none;
    padding: 25px; 
    border-radius: 8px;
    background-color: var(--color-dark-alt); /* Daha koyu zemin */
    border: 1px solid rgba(255, 255, 255, 0.05); /* Çok hafif dış çizgi */
    transition: all 0.3s ease;
}

.service-block:hover {
    transform: translateY(-4px); /* Hafif yukarı kayma */
    background-color: #2a2a2a; /* Hafif açılma efekti */
    border-color: rgba(255, 215, 0, 0.3); /* Sarımsı çerçeve vurgusu */
}

.service-block i {
    /* İkon Stili (Görseldeki gibi büyük ve sarı) */
    font-size: 2.2em;
    color: var(--color-accent); 
    margin-right: 20px;
    flex-shrink: 0; /* İkonun küçülmesini engeller */
    margin-top: 5px; /* Başlık ile hizalama */
}

.service-text h3 {
    font-size: 1.4em;
    color: var(--color-light);
    margin-bottom: 8px;
    font-weight: 700;
}

.service-text p {
    color: var(--color-light-alt);
    font-size: 0.95em;
    line-height: 1.5;
}

/* Mobil Uyumlu Düzen (1 sütun) */
@media (max-width: 900px) {
    .new-service-grid {
        grid-template-columns: 1fr; /* Tek sütuna düşür */
    }
}
/* =========================================
   İLETİŞİM SAYFASI (RENKLENDİRME & STİL)
   ========================================= */

/* 1. Genel Alan ve Arka Plan */
.contact-page-content {
    background-color: #111; /* Biraz daha açık siyah tonu */
    padding: 80px 0;
    color: #e0e0e0;
}

/* 2. Başlıkları Renklendirelim */
.contact-info-box h3,
.contact-form-box h3 {
    color: #FFD700; /* ALTIN SARISI */
    font-size: 1.8rem;
    margin-bottom: 25px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-left: 4px solid #FFD700; /* Soluna sarı çizgi */
    padding-left: 15px;
}

/* 3. Sol Taraf: İkonlar ve Metinler */
.info-item {
    display: flex; /* Yanyana diz */
    align-items: flex-start;
    margin-bottom: 35px;
    background: #1a1a1a; /* Hafif kutu efekti */
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.info-item:hover {
    transform: translateY(-5px); /* Üzerine gelince hafif yukarı */
    border-color: #FFD700; /* Çerçevesi sarı olsun */
}

.icon-box {
    font-size: 24px;
    color: #FFD700; /* İkon rengi SARI */
    margin-right: 20px;
    background: rgba(255, 215, 0, 0.1); /* Sarımtırak şeffaf zemin */
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Yuvarlak */
}

.info-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.info-item p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* 4. Sağ Taraf: Form Kutuları (O beyazlığı yok ediyoruz!) */
.contact-form-box form {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #333;
}

.form-group {
    margin-bottom: 25px;
}

/* Input ve Textarea Özelleştirme */
.contact-form-box input, 
.contact-form-box textarea {
    width: 100%;
    background-color: transparent; /* ŞEFFAF YAPAR */
    border: none;
    border-bottom: 2px solid #444; /* Sadece alt çizgi */
    padding: 15
}

    /* --- GÖNDER BUTONU TASARIMI --- */
.submit-btn {
    background-color: #FFD700; /* Sarı Zemin */
    color: #000; /* Siyah Yazı */
    border: none; /* Çerçeveyi kaldır */
    padding: 12px 30px; /* İç boşlukları artır */
    font-weight: 800; /* Kalın yazı */
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px; /* Köşeleri hafif yuvarlat */
    transition: all 0.3s ease; /* Geçiş efekti */
    display: inline-flex;
    align-items: center;
    gap: 10px; /* Yazı ile ikon arası boşluk */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

/* Üzerine Gelince (Hover) */
.submit-btn:hover {
    background-color: #fff; /* Zemin beyaz olsun */
    transform: translateY(-3px); /* Hafif yukarı zıplasın */
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3); /* Sarı parlama efekti */
}
/* --- SAYFA BAŞLIĞINI SARI YAPMA --- */
.page-header h1 {
    color: #FFD700 !important; /* Beyaz yerine Sarı */
    font-weight: 900; /* Daha kalın ve tok dursun */
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3); /* Arkasına hafif sarı ışık */
}
/* --- MEGA FOOTER TASARIMI --- */
.site-footer {
    background-color: #050505; /* Kapkara zemin */
    color: #aaa; /* Gri yazı rengi */
    padding: 80px 0 30px;
    border-top: 1px solid #222; /* Üstüne ince çizgi */
    font-size: 0.95rem;
    margin-top: auto; /* Sayfa kısa olsa bile dibe it */
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Sütun genişlikleri */
    gap: 40px;
    margin-bottom: 60px;
}

/* Marka Alanı */
.footer-logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.brand-widget p {
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

/* Sosyal Medya İkonları */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.social-icons a:hover {
    background: #FFD700; /* Sarı */
    color: #000;
    transform: translateY(-3px);
}

/* Başlıklar */
.footer-widget h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    border-left: 3px solid #FFD700; /* Soluna sarı çizgi */
    padding-left: 10px;
}

/* Linkler */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFD700; /* Hover olunca sarı */
    transform: translateX(5px); /* Sağa kayma efekti */
}

/* İletişim Kısmı */
.contact-widget ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.contact-widget li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-widget i {
    color: #FFD700; /* İkonlar Sarı */
}

/* Footer CTA Butonu */
.footer-cta {
    display: inline-block;
    color: #FFD700;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    transition: 0.3s;
}

.footer-cta:hover {
    color: #fff;
    border-bottom-color: #fff;
}

/* Alt Çizgi (Copyright) */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.policy-links a {
    color: #666;
    margin-left: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.policy-links a:hover {
    color: #FFD700;
}

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr; /* Mobilde 2 sütun */
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr; /* Çok küçükte tek sütun */
        text-align: center;
    }
    .social-icons, .footer-bottom {
        justify-content: center;
    }
    .brand-widget p {
        margin: 0 auto 25px;
    }
    .contact-widget li {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}
/* =========================================
   TEKLİF AL SAYFASI TASARIMI
   ========================================= */

/* Hero Alanı */
.quote-header {
    padding: 180px 0 80px; /* Header altı boşluk */
    text-align: center;
    background-color: #000;
}

.sub-heading {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.quote-header h1 {
    font-size: 3.5rem;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.quote-header p {
    color: #aaa;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Form Genel Yapısı */
.quote-form-section {
    padding-bottom: 100px;
    background-color: #050505;
}

.quote-form {
    max-width: 900px;
    margin: 0 auto;
    background: #111;
    padding: 50px;
    border-radius: 20px;
    border: 1px solid #222;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.form-section {
    margin-bottom: 50px;
    border-bottom: 1px solid #222;
    padding-bottom: 40px;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-section h3::before {
    content: '';
    display: block;
    width: 5px;
    height: 25px;
    background-color: #FFD700;
}

/* Form Grid (Ad, Soyad vb.) */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.input-group label {
    display: block;
    color: #bbb;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #FFD700;
    background: #222;
}

.full-width {
    width: 100%;
    margin-top: 20px;
}

/* --- ÖZEL HİZMET SEÇİM KARTLARI (EN HAVALI KISIM) --- */
.services-grid-selection {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* Checkbox'ı gizle */
.service-select-card input[type="checkbox"] {
    display: none;
}

/* Kart Tasarımı */
.card-content {
    background: #1a1a1a;
    border: 2px solid #333;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.card-content i {
    font-size: 2rem;
    color: #666; /* Pasifken gri */
    transition: 0.3s;
}

.card-content span {
    color: #fff;
    font-weight: 600;
}

/* Seçilince veya Üzerine Gelince */
.service-select-card:hover .card-content {
    border-color: #666;
}

/* SEÇİLDİĞİNDE (Checked State) */
.service-select-card input:checked + .card-content {
    border-color: #FFD700; /* Çerçeve Sarı */
    background: rgba(255, 215, 0, 0.05); /* Zemin çok hafif sarı */
    transform: translateY(-5px);
}

.service-select-card input:checked + .card-content i {
    color: #FFD700; /* İkon Sarı */
}

/* Gönder Butonu Alanı */
.large-submit {
    width: 100%;
    padding: 20px;
    font-size: 1.1rem;
    margin-top: 20px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .quote-header h1 { font-size: 2.5rem; }
    .form-grid { grid-template-columns: 1fr; }
    .services-grid-selection { grid-template-columns: 1fr 1fr; } /* Mobilde 2'li */
    .quote-form { padding: 30px 20px; }
}
/* =========================================
   HAKKIMIZDA SAYFASI TASARIMI
   ========================================= */

/* Hero Alanı Özel Ayar */
.about-header {
    background-color: #050505;
    text-align: center;
    padding: 180px 0 100px;
}

.about-header h1 {
    font-size: 3rem;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.3;
}

.sub-title {
    color: #FFD700;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
    font-size: 0.9rem;
}

/* Hikaye Bölümü */
.about-content {
    background-color: #0a0a0a;
    padding: 100px 0;
    color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Sol Taraf: Görsel ve Rozet */
.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    filter: grayscale(100%); /* Siyah beyaz yap */
    transition: 0.5s;
    box-shadow: -20px 20px 0px #1a1a1a;
}

.about-image:hover img {
    filter: none; /* Üzerine gelince renkli olsun */
    transform: scale(1.02);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: #FFD700;
    color: #000;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Sağ Taraf: Yazı */
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.highlight-text {
    font-size: 1.2rem;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text p {
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: #fff;
}

.feature i {
    color: #FFD700;
}

/* İstatistikler (Stats) */
.stats-section {
    background-color: #000;
    padding: 80px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item .number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #FFD700; /* Sarı Rakamlar */
    margin-bottom: 10px;
}

.stat-item .label {
    color: #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Takım Bölümü */
.team-section {
    background-color: #0a0a0a;
    padding: 100px 0;
}

.section-title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-center h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.section-title-center p {
    color: #aaa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 Kişi yanyana */
    gap: 30px;
}

.team-card {
    background: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #222;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
}

.member-img {
    position: relative;
    overflow: hidden;
    height: 300px; /* Sabit yükseklik */
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.3s;
}

.team-card:hover .member-img img {
    filter: none; /* Hover'da renkli olsun */
    transform: scale(1.1);
}

/* Sosyal İkonlar (Resmin üzerinde) */
.social-overlay {
    position: absolute;
    bottom: -50px; /* Başlangıçta gizli */
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px;
    transition: 0.3s;
}

.team-card:hover .social-overlay {
    bottom: 0; /* Hover'da yukarı çıkar */
}

.social-overlay a {
    color: #FFD700;
    font-size: 1.2rem;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.member-info span {
    color: #888;
    font-size: 0.9rem;
}

/* CTA Bölümü */
.about-cta {
    background-color: #111;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.about-cta h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { order: 2; margin-top: 50px; }
    .about-text { order: 1; }
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: 1fr; }
    .about-header h1 { font-size: 2rem; }
}
/* =========================================
   HİZMETLER SAYFASI TASARIMI
   ========================================= */

/* Header (Hero) Ayarları */
.services-header {
    background-color: #050505;
    text-align: center;
    padding: 180px 0 80px;
    border-bottom: 1px solid #1a1a1a;
}

.services-header h1 {
    font-size: 3rem;
    color: #fff;
    line-height: 1.3;
    margin-top: 10px;
}

.services-header p {
    color: #aaa;
    font-size: 1.2rem;
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Genel Kategori Bölümü */
.service-category-section {
    padding: 100px 0;
    background-color: #0a0a0a;
}

.service-category-section.alt-bg {
    background-color: #050505; /* Bir açık, bir koyu arka plan */
}

.category-title {
    margin-bottom: 60px;
    border-left: 5px solid #FFD700;
    padding-left: 20px;
}

.category-title h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 10px;
}

.category-title p {
    color: #bbb;
    font-size: 1.1rem;
}

/* Hizmet Kartları Izgarası */
.services-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Detaylı Kart Tasarımı */
.service-card-detail {
    background: #111;
    border: 1px solid #222;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%; /* Kartların boyunu eşitle */
}

.service-card-detail:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.service-card-detail:hover .icon-wrapper {
    background-color: #FFD700;
    color: #000;
    transform: scale(1.1) rotate(-5deg);
}

/* Kart İkonu */
.icon-wrapper {
    width: 70px;
    height: 70px;
    background: #1a1a1a;
    border: 1px solid #333;
    color: #FFD700;
    font-size: 1.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card-detail h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card-detail p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Liste (Özellikler) */
.feature-list {
    list-style: none;
    padding: 0;
    border-top: 1px solid #222;
    padding-top: 20px;
    margin-top: auto; /* Listeyi alta it */
}

.feature-list li {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i {
    color: #FFD700;
    font-size: 0.8rem;
}

/* Çalışma Süreci Bölümü (Steps) */
.process-section {
    padding: 100px 0;
    background-color: #000;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.step {
    position: relative;
}

/* Adımlar arasındaki çizgi (Sadece masaüstünde) */
.step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #222;
    z-index: 0;
}

.step:last-child::after {
    display: none; /* Son adımda çizgi olmasın */
}

.step-number {
    width: 50px;
    height: 50px;
    background: #111;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1; /* Çizginin üstünde dursun */
    font-size: 1.2rem;
}

.step h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.step p {
    color: #888;
    font-size: 0.9rem;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .services-grid-large { grid-template-columns: repeat(2, 1fr); }
    .step::after { display: none; } /* Mobilde çizgileri kaldır */
}

@media (max-width: 768px) {
    .services-grid-large { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 40px; }
}
/* =========================================
   PORTFOLYO SAYFASI TASARIMI
   ========================================= */

/* Header */
.portfolio-header {
    background-color: #050505;
    text-align: center;
    padding: 180px 0 60px;
    border-bottom: 1px solid #1a1a1a;
}

.portfolio-header h1 {
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
}

/* Filtre Butonları */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 50px 0;
}

.filter-btn {
    background: transparent;
    border: 1px solid #333;
    color: #aaa;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
    transform: translateY(-2px);
}

/* Portfolyo Grid */
.portfolio-section {
    padding-bottom: 100px;
    background-color: #0a0a0a;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Portfolyo Kartı */
.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease; /* JS animasyonu için */
}

.portfolio-img img {
    width: 100%;
    height: 350px; /* Sabit yükseklik */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Efekti */
.portfolio-item:hover .portfolio-img img {
    transform: scale(1.1); /* Resim büyüsün */
}

/* Overlay (Üzerine Gelince Çıkan Kısım) */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85); /* Siyah transparan zemin */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0; /* Başlangıçta gizli */
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1; /* Hover'da görünür */
}

/* Overlay İçeriği */
.overlay-content {
    transform: translateY(20px); /* Aşağıdan yukarı gelsin */
    transition: all 0.4s ease;
}

.portfolio-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content span {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overlay-content h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.view-project {
    display: inline-block;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
}

.view-project:hover {
    background: #FFD700;
    color: #000;
}

/* Mobil Uyumluluk */
@media (max-width: 1024px) {
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-header h1 { font-size: 2.5rem; }
}
/* =========================================
   YENİ PORTFOLYO TASARIMI (SHARP & PREMIUM)
   ========================================= */

/* Header Düzenlemesi */
.portfolio-header {
    background: #080808;
    padding: 160px 0 60px;
    text-align: center;
    border-bottom: 1px solid #222;
}

.portfolio-header h1 {
    font-size: 2.8rem;
    color: #fff;
    margin-top: 10px;
    font-weight: 800;
}

/* Filtre Butonları */
.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 40px 0;
}

.filter-btn {
    background: #111;
    color: #888;
    border: 1px solid #333;
    padding: 12px 30px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

/* Grid Yapısı */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 100px;
}

/* Proje Kartı */
.portfolio-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: none; /* JS ile açılacak */
}

.portfolio-item.show {
    opacity: 1;
    transform: translateY(0);
}

.img-holder {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border: 1px solid #222; /* Keskin Çerçeve */
}

.img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: grayscale(20%);
}

.portfolio-item:hover .img-holder img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Overlay (Üzerine Gelince Çıkan Katman) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    border: 1px solid #FFD700;
    box-sizing: border-box;
    transform: scale(0.95);
}

.portfolio-item:hover .overlay {
    opacity: 1;
    transform: scale(1);
}

.overlay .text {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.portfolio-item:hover .overlay .text {
    transform: translateY(0);
}

.overlay h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.overlay span {
    color: #FFD700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.overlay a {
    display: inline-block;
    padding: 10px 25px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.3s;
}

.overlay a:hover {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
/* =========================================
   CİLALAMA & PROFESYONEL DOKUNUŞLAR
   ========================================= */

/* 1. Yumuşak Kaydırma (Smooth Scroll) */
html {
    scroll-behavior: smooth;
}

/* 2. Özel Metin Seçim Rengi (Selection) */
/* Kullanıcı yazıyı seçtiğinde Mavi değil, Sarı olsun */
::selection {
    background-color: #FFD700; /* Sarı */
    color: #000; /* Siyah Yazı */
}

/* Firefox için uyumluluk */
::-moz-selection {
    background-color: #FFD700;
    color: #000;
}

/* 3. Scrollbar (Kaydırma Çubuğu) Tasarımı */
/* Standart gri çubuk yerine, siteye uygun siyah-sarı çubuk */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #111; /* Çubuğun yolu */
}

::-webkit-scrollbar-thumb {
    background: #333; /* Çubuğun kendisi */
    border-radius: 5px;
    border: 1px solid #000;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFD700; /* Üzerine gelince sarı olsun */
}
/* =========================================
   YENİ TEKLİF BUTONU TASARIMI (ŞIK & ORTALI)
   ========================================= */

/* Butonun durduğu kutuyu ortala */
.form-footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222; /* Hafif bir ayırıcı çizgi */
}

/* Şık Buton Tasarımı */
.stylish-submit {
    background-color: #FFD700; /* Artı Ajans Sarısı */
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 18px 50px; /* Genişlik değil, dolgunluk veriyoruz */
    border: none;
    border-radius: 50px; /* Hap şeklinde (Oval) */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2); /* Hafif sarı gölge */
    display: inline-flex;
    align-items: center;
    gap: 15px; /* Yazı ile ok ikonu arası boşluk */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Üzerine Gelince (Hover) */
.stylish-submit:hover {
    background-color: #fff; /* Beyaz olsun */
    color: #000;
    transform: translateY(-5px); /* Hafif yukarı zıplasın */
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.3); /* Beyaz parlama */
}

.stylish-submit i {
    transition: transform 0.3s ease;
}

.stylish-submit:hover i {
    transform: translateX(5px); /* Ok işareti sağa kaysın */
}

/* Mobilde biraz daha geniş olabilir */
@media (max-width: 768px) {
    .stylish-submit {
        width: 100%; /* Mobilde tam genişlik daha kolay tıklanır */
        justify-content: center;
    }
}
/* =========================================
   ANA SAYFA ÖZEL TASARIMI (HOMEPAGE)
   ========================================= */

/* 1. HERO SECTION (Devasa Giriş) */
.hero-section {
    height: 100vh; /* Tam ekran yükseklik */
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #000;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Soyut koyu teknolojik arka plan */
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    animation: zoomEffect 20s infinite alternate; /* Hafif yaklaşma efekti */
}

@keyframes zoomEffect {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-top: 60px; /* Header payı */
}

.hero-tag {
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 4rem;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.gold-text {
    color: #FFD700;
}

.hero-content p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.6;
}

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

/* Hero Butonları */
.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1rem;
}

.hero-btn.primary {
    background: #FFD700;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-btn.primary:hover {
    background: #fff;
    transform: translateY(-5px);
}

.hero-btn.secondary {
    border: 2px solid #fff;
    color: #fff;
}

.hero-btn.secondary:hover {
    background: #fff;
    color: #000;
}

.hero-btn.outline-btn {
    border: 2px solid #333;
    color: #fff;
    margin-top: 30px;
}
.hero-btn.outline-btn:hover {
    border-color: #FFD700;
    color: #FFD700;
}

/* Mobil için Hero */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-btn { width: 100%; justify-content: center; }
}

/* 2. HİZMETLER ŞERİDİ */
.services-strip {
    background: #0a0a0a;
    padding: 80px 0;
    border-bottom: 1px solid #222;
}

.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.strip-box {
    background: #111;
    padding: 30px 20px;
    border: 1px solid #222;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.strip-box:hover {
    border-color: #FFD700;
    transform: translateY(-10px);
    background: #161616;
}

.strip-box i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.strip-box h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.strip-box p {
    color: #888;
    font-size: 0.9rem;
}

/* 3. HOME ABOUT (Neden Biz) */
.home-about {
    padding: 100px 0;
    background: #000;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-txt h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
}

.section-sub {
    color: #FFD700;
    font-size: 0.85rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    font-weight: 700;
}

.check-list {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.check-list li {
    color: #ddd;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.check-list i { color: #FFD700; }

.text-link {
    color: #fff;
    text-decoration: none;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 5px;
    font-weight: 700;
    transition: 0.3s;
}

.text-link:hover { color: #FFD700; }

.about-visual img {
    width: 100%;
    border-radius: 5px;
    filter: grayscale(100%);
    transition: 0.5s;
    border: 1px solid #333;
}

.about-visual:hover img {
    filter: none;
    transform: scale(1.02);
}

/* 4. HOME PORTFOLYO */
.home-portfolio {
    padding: 100px 0;
    background: #050505;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 { color: #fff; font-size: 2.5rem; }
.section-header-center p { color: #888; margin-top: 10px; }

.home-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hp-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border: 1px solid #222;
}

.hp-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.hp-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.9);
    padding: 20px;
    transition: 0.3s;
    border-top: 2px solid #FFD700;
}

.hp-item:hover .hp-overlay { bottom: 0; }
.hp-item:hover img { transform: scale(1.1); }

.hp-overlay h3 { color: #fff; font-size: 1.1rem; margin: 0; }
.hp-overlay span { color: #FFD700; font-size: 0.85rem; }

.btn-center { text-align: center; margin-top: 40px; }

/* 5. CLIENTS (Referanslar) */
.clients-section {
    padding: 60px 0;
    background: #111;
    border-top: 1px solid #222;
    text-align: center;
}

.clients-title {
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-size: 0.8rem;
    font-weight: 700;
}

.clients-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.client-box {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.7;
    transition: 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.client-box:hover {
    opacity: 1;
    color: #FFD700;
    transform: scale(1.1);
}

/* 6. CTA BANNER */
.cta-banner {
    background: #000;
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid #222;
}

.cta-banner h2 { color: #fff; font-size: 2.5rem; margin-bottom: 15px; }
.cta-banner p { color: #aaa; margin-bottom: 40px; }

/* Mobil Düzeltmeler */
@media (max-width: 768px) {
    .strip-grid, .home-about-grid, .home-portfolio-grid {
        grid-template-columns: 1fr;
    }
    .clients-grid { gap: 20px; flex-direction: column; }
}
/* ==================================== */
/* 1. GENEL AYARLAR                     */
/* ==================================== */
:root {
    --color-dark: #050505;
    --color-dark-alt: #111;
    --color-accent: #FFD700;
    --font-primary: 'Montserrat', sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background-color: var(--color-dark); color: #f4f4f4; font-family: var(--font-primary); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; }
ul { list-style: none; }
html { scroll-behavior: smooth; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Başlıklar */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-size: 2.5rem; color: #fff; font-weight: 800; }
.sub-title { color: var(--color-accent); font-weight: 700; letter-spacing: 2px; display: block; margin-bottom: 10px; font-size: 0.9rem; }
.gold-text { color: var(--color-accent); }

/* ==================================== */
/* 2. HEADER & NAVİGASYON               */
/* ==================================== */
.navbar {
    display: flex; justify-content: space-between; align-items: center; padding: 20px 40px;
    background: rgba(0, 0, 0, 0.95); border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed; width: 100%; top: 0; z-index: 1000;
}
.logo { font-size: 1.8em; font-weight: 900; color: #fff; text-transform: uppercase; }
.navbar nav a { color: #fff; margin-left: 25px; font-weight: 600; font-size: 0.95rem; transition: 0.3s; }
.navbar nav a:hover { color: var(--color-accent); }
.cta-button {
    background-color: var(--color-accent); color: #000 !important; padding: 10px 25px;
    border-radius: 4px; font-weight: 800 !important; transition: 0.3s;
}
.cta-button:hover { background-color: #fff; transform: translateY(-2px); }

/* Dropdown */
.dropdown { position: relative; display: inline-block; margin-left: 25px; }
.dropbtn { background: transparent; color: #fff; font-weight: 600; border: none; cursor: pointer; font-family: inherit; font-size: 0.95rem; }
.dropdown-content {
    display: none; position: absolute; top: 100%; left: 0; background: #111; min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.5); border-top: 2px solid var(--color-accent); padding: 10px 0;
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { color: #ccc; padding: 12px 20px; display: block; margin: 0; border-bottom: 1px solid #222; }
.dropdown-content a:hover { color: var(--color-accent); padding-left: 25px; }

/* ==================================== */
/* 3. HERO SECTION (GİRİŞ)              */
/* ==================================== */
.hero-section {
    position: relative; height: 100vh; min-height: 600px;
    display: flex; align-items: center; justify-content: center; text-align: center;
    background: #000; overflow: hidden;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    animation: zoomEffect 20s infinite alternate;
}
@keyframes zoomEffect { from { transform: scale(1); } to { transform: scale(1.1); } }
.overlay-dark { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 900px; padding: 0 20px; margin-top: 60px; }
.hero-tag { color: var(--color-accent); font-weight: 700; letter-spacing: 4px; display: block; margin-bottom: 20px; }
.hero-content h1 { font-size: 3.5rem; color: #fff; line-height: 1.2; margin-bottom: 25px; font-weight: 800; }
.hero-content p { color: #ddd; font-size: 1.2rem; margin-bottom: 40px; max-width: 700px; margin: 0 auto 40px; }
.hero-buttons { display: flex; justify-content: center; gap: 20px; }
.hero-btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 15px 35px; border-radius: 50px;
    font-weight: 700; transition: 0.3s; font-size: 1rem;
}
.hero-btn.primary { background: var(--color-accent); color: #000; }
.hero-btn.primary:hover { background: #fff; transform: translateY(-5px); }
.hero-btn.secondary { border: 2px solid #fff; color: #fff; }
.hero-btn.secondary:hover { background: #fff; color: #000; }

/* ==================================== */
/* 4. GÜVEN BANDI (LOGOLAR)             */
/* ==================================== */
.trust-section { padding: 40px 0; background: #111; overflow: hidden; border-bottom: 1px solid #222; }
.trust-section h3 { text-align: center; font-size: 0.9rem; color: #666; margin-bottom: 30px; letter-spacing: 2px; }
.logo-slider-track { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; text-align: center; }

/* ==================================== */
/* 5. HİZMETLER ÖZETİ                   */
/* ==================================== */
.services-summary { padding: 100px 0; background: #050505; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.service-card {
    background: #111; padding: 40px 25px; border: 1px solid #222; text-align: center;
    border-radius: 10px; transition: 0.3s;
}
.service-card:hover { transform: translateY(-10px); border-color: var(--color-accent); }
.service-card i { font-size: 2.5rem; color: var(--color-accent); margin-bottom: 20px; }
.service-card h3 { color: #fff; margin-bottom: 15px; font-size: 1.2rem; }
.service-card p { color: #888; font-size: 0.9rem; }

/* ==================================== */
/* 6. ÇALIŞMA SÜRECİ (PROCESS)          */
/* ==================================== */
.process-section { padding: 100px 0; background: #000; border-top: 1px solid #111; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.step { position: relative; }
/* Çizgi efekti (Sadece masaüstü) */
.step::after {
    content: ''; position: absolute; top: 25px; right: -50%; width: 100%; height: 2px; background: #222; z-index: 0;
}
.step:last-child::after { display: none; }
.step-number {
    width: 50px; height: 50px; background: #111; border: 2px solid var(--color-accent); color: var(--color-accent);
    font-weight: 900; border-radius: 50%; display: flex; justify-content: center; align-items: center;
    margin: 0 auto 25px; position: relative; z-index: 1; font-size: 1.2rem;
}
.step h3 { color: #fff; margin-bottom: 15px; font-size: 1.1rem; }
.step p { color: #888; font-size: 0.9rem; }

/* ==================================== */
/* 7. İSTATİSTİKLER                     */
/* ==================================== */
.stats-section { padding: 80px 0; background: #111; border-top: 1px solid #222; border-bottom: 1px solid #222; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat-item .number { font-size: 3.5rem; font-weight: 900; color: var(--color-accent); }
.stat-item .label { color: #fff; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-top: 5px; }

/* ==================================== */
/* 8. PORTFOLYO VİTRİNİ                 */
/* ==================================== */
.home-portfolio { padding: 100px 0; background: #050505; }
.home-portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.hp-item { position: relative; height: 300px; overflow: hidden; border-radius: 8px; border: 1px solid #222; }
.hp-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; filter: grayscale(20%); }
.hp-item:hover img { transform: scale(1.1); filter: grayscale(0%); }
.hp-overlay {
    position: absolute; bottom: -100px; left: 0; width: 100%; background: rgba(0,0,0,0.9);
    padding: 20px; transition: 0.3s; border-top: 2px solid var(--color-accent); text-align: center;
}
.hp-item:hover .hp-overlay { bottom: 0; }
.hp-overlay h3 { color: #fff; margin: 0; font-size: 1.2rem; }
.hp-overlay span { color: var(--color-accent); font-size: 0.85rem; }
.btn-center { text-align: center; margin-top: 50px; }

/* ==================================== */
/* 9. FAQ (SIKÇA SORULANLAR)            */
/* ==================================== */
.faq-section { padding: 100px 0; background: #080808; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.faq-item { background: #111; padding: 30px; border-radius: 10px; border: 1px solid #222; transition: 0.3s; }
.faq-item:hover { border-color: var(--color-accent); transform: translateY(-5px); }
.faq-item h4 { color: #fff; margin-bottom: 15px; font-size: 1.1rem; }
.faq-item p { color: #999; font-size: 0.95rem; }

/* ==================================== */
/* 10. CTA BANNER                       */
/* ==================================== */
.cta-banner { background: #000; padding: 100px 0; text-align: center; border-top: 1px solid #222; }
.cta-banner h2 { color: #fff; font-size: 2.5rem; margin-bottom: 15px; }
.cta-banner p { color: #aaa; margin-bottom: 40px; }

/* ==================================== */
/* 11. FOOTER                           */
/* ==================================== */
.site-footer { background: #050505; border-top: 1px solid #222; padding: 80px 0 30px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.footer-logo { font-size: 1.8rem; font-weight: 900; color: #fff; margin-bottom: 20px; }
.social-icons a { margin-right: 15px; color: #fff; font-size: 1.2rem; transition: 0.3s; }
.social-icons a:hover { color: var(--color-accent); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #888; transition: 0.3s; }
.footer-links a:hover { color: var(--color-accent); padding-left: 5px; }
.footer-bottom { border-top: 1px solid #222; padding-top: 30px; text-align: center; font-size: 0.9rem; color: #555; }

/* ==================================== */
/* 12. MOBİL UYUMLULUK                  */
/* ==================================== */
@media (max-width: 900px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-btn { width: 100%; justify-content: center; }
    .service-grid, .process-steps, .stats-grid, .home-portfolio-grid, .faq-grid, .footer-top {
        grid-template-columns: 1fr;
    }
    .step::after { display: none; } /* Mobilde çizgileri gizle */
    .trust-section h3 { font-size: 0.8rem; }
    .logo-slider-track { flex-direction: column; gap: 20px; }
}
/* =========================================
   PREMİUM FOOTER TASARIMI
   ========================================= */

.site-footer {
    background-color: #050505; /* Tam Siyah Zemin */
    color: #b0b0b0; /* Okunaklı Gri Metin */
    padding: 80px 0 0;
    font-size: 0.95rem;
    border-top: 1px solid #1a1a1a; /* Çok hafif üst çizgi */
    margin-top: auto;
}

.footer-top {
    display: grid;
    /* 4 Sütunlu Yapı: Marka (Geniş) - Link - Link - İletişim */
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

/* --- 1. Sütun: Marka --- */
.brand-widget p {
    margin: 20px 0 25px;
    line-height: 1.6;
    max-width: 300px; /* Yazı çok yayılmasın */
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
}

/* Yuvarlak Sosyal İkonlar */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: #111;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Tam yuvarlak */
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icons a:hover {
    background: #FFD700; /* Sarı */
    color: #000; /* İkon siyah olur */
    border-color: #FFD700;
    transform: translateY(-3px); /* Hafif zıplama */
}

/* --- Başlıklar --- */
.footer-widget h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

/* Başlık Altına Sarı Çizgi */
.footer-widget h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #FFD700;
}

/* --- Linkler (Hover Efekti) --- */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #FFD700;
    padding-left: 5px; /* Sağa kayma efekti */
}

/* --- İletişim Listesi --- */
.contact-list {
    list-style: none;
    margin-bottom: 25px;
}

.contact-list li {
    display: flex;
    align-items: center; /* İkonla yazıyı ortala */
    gap: 15px;
    margin-bottom: 15px;
    color: #ddd;
}

.contact-list i {
    color: #FFD700; /* İkonlar Sarı */
    font-size: 1rem;
    width: 20px; /* Hizalama için sabit genişlik */
    text-align: center;
}

.contact-list a {
    color: #ddd;
    transition: 0.3s;
}

.contact-list a:hover {
    color: #FFD700;
}

/* --- Footer CTA Butonu (Teklif Al) --- */
.footer-cta-btn {
    display: inline-block;
    background: transparent;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.footer-cta-btn:hover {
    background: #FFD700;
    color: #000;
    transform: translateX(5px);
}

/* --- Alt Bant (Copyright) --- */
.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #666;
}

.policy-links a {
    color: #666;
    transition: 0.3s;
}

.policy-links a:hover {
    color: #FFD700;
}

.separator {
    margin: 0 10px;
    color: #444;
}

/* --- Mobil Uyumluluk --- */
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr; /* Mobilde 2 sütun */
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: 1fr; /* Küçük ekranda tek sütun */
        text-align: center;
    }
    
    .footer-widget h3::after {
        left: 50%; /* Çizgiyi ortala */
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
/* WHATSAPP BUTONU STİLİ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
/* ==================================== */
/* 12. MOBİL UYUMLULUK VE HAMBURGER MENÜ */
/* ==================================== */

/* Masaüstünde Hamburger İkonunu Gizle */
.menu-toggle { display: none; }

@media (max-width: 900px) {
    /* 1. Header Düzeni */
    .navbar {
        padding: 15px 20px;
        justify-content: space-between; /* Logo solda, İkon sağda */
    }

    /* 2. Hamburger İkonu Görünümü */
    .menu-toggle {
        display: block;
        cursor: pointer;
    }
    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
    }

    /* İkon Dönüşümü (Tıklanınca X olsun istersen JS ile active eklenir) */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* 3. Menüyü Gizle ve Şekillendir */
    .nav-menu {
        position: fixed;
        left: -100%; /* Ekranın soluna sakla */
        top: 70px; /* Header'ın hemen altından başlasın */
        gap: 0;
        flex-direction: column;
        background-color: #000; /* Tam siyah arka plan */
        width: 100%;
        height: 100vh; /* Tüm ekranı kapla */
        text-align: center;
        transition: 0.3s;
        padding-top: 20px;
        border-top: 1px solid #222;
        overflow-y: auto; /* Menü uzunsa kaydırılabilsin */
    }

    /* Menü Açılınca (.active class'ı gelince) */
    .nav-menu.active {
        left: 0; /* Ekrana getir */
        display: flex;
    }

    /* Menü Linkleri Mobilde */
    .nav-menu a, .dropbtn {
        display: block;
        padding: 15px 0;
        font-size: 1.2rem;
        border-bottom: 1px solid #111;
        margin: 0;
        color: #fff;
    }

    .cta-button {
        margin: 20px auto; /* Butonu ortala */
        width: 80%; /* Geniş buton */
        display: inline-block;
    }

    /* Dropdown Menüleri Mobilde Düzeltme */
    .dropdown { display: block; margin: 0; width: 100%; }
    .dropdown-content {
        position: static; 
        display: none; /* Başlangıçta KESİNLİKLE kapalı */
        background-color: #111;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    /* DİKKAT: Hover iptal edildi. JavaScript ile "show" eklenince açılacak */
    .dropdown-content.show { display: block; } 
    
    .menu-column { width: 100%; text-align: center; padding: 10px 0; }
    .menu-column h4 { color: var(--color-accent); margin-bottom: 5px; font-size: 1rem; }

    /* Diğer Mobil Ayarlar */
    .hero-content h1 { font-size: 2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-btn { width: 100%; justify-content: center; }
    .service-grid, .process-steps, .stats-grid, .home-portfolio-grid, .faq-grid, .footer-top {
        grid-template-columns: 1fr;
    }
    .step::after { display: none; }
    .trust-section h3 { font-size: 0.8rem; }
    .logo-slider-track { flex-direction: column; gap: 20px; }
}