@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;700;800&display=swap');

/* =========================================
   GENEL AYARLAR
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #080808; /* Premium ekstra koyu arka plan */
    color: #e0e0e0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   HEADER & NAVBAR
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 8%;
    background: rgba(8, 8, 8, 0.85);
    backdrop-filter: blur(10px); /* Cam efekti (Sinematik hissiyat) */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo a {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.logo span {
    color: #666; /* Sofistike vurgu */
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffffff;
}

/* Hover için alt çizgi animasyonu */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Dil Seçici */
.lang-switcher a {
    font-size: 13px;
    font-weight: 700;
    color: #555;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.lang-switcher a:hover,
.lang-switcher a.active-lang {
    color: #ffffff;
}

/* =========================================
   HERO BÖLÜMÜ (ANA SAYFA)
   ========================================= */
.hero-section {
    height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

/* Arkaya sinematik hafif glow (parlama) efekti */
.hero-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, rgba(8,8,8,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Tipografik derinlik efekti */
.hero-content h1 span {
    color: transparent;
    -webkit-text-stroke: 1px #555;
    transition: all 0.3s ease;
}

.hero-content h1 span:hover {
    color: #ffffff;
    -webkit-text-stroke: 1px #ffffff;
    text-shadow: 0 0 20px rgba(255,255,255,0.3);
}

.hero-content p {
    font-size: 18px;
    color: #888;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

/* Buton Tasarımı */
.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    color: #080808;
    background-color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.05);
}

.btn-primary:hover {
    background-color: #e0e0e0;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
}

/* =========================================
   FOOTER TASARIMI
   ========================================= */
.site-footer {
    background-color: #050505; /* Gövdeden biraz daha koyu */
    padding: 80px 8% 40px 8%;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 100px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-logo span {
    color: #444;
}

.footer-brand p {
    color: #666;
    font-size: 14px;
    max-width: 300px;
}

.footer-nav h4, .footer-social h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav ul li {
    margin-bottom: 12px;
}

.footer-nav ul li a {
    color: #888;
    font-size: 14px;
    transition: 0.3s;
}

.footer-nav ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-icons a {
    display: block;
    color: #888;
    font-size: 14px;
    margin-bottom: 12px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
}

.footer-bottom p {
    color: #444;
    font-size: 13px;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
}

/* =========================================
   ÖNE ÇIKAN PROJELER (ANA SAYFA)
   ========================================= */
/* Dış Bölüm ve Arka Plan */
.featured-projects {
    padding: 80px 0 !important;
    background-color: #080808 !important;
    width: 100% !important;
}

/* Genişliği Header ile Sınırla */
.featured-projects .container {
    max-width: 1700px !important; /* Header genişliğine göre burayı değiştirebilirsin */
    margin: 0 auto !important;
    padding: 0 15px !important;
}

/* Başlık Alanı */
.section-header {
    text-align: center !important;
    margin-bottom: 50px !important;
}

.section-header h2 {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #fff !important;
    text-transform: uppercase !important;
}

.section-header h2 span {
    color: transparent !important;
    -webkit-text-stroke: 1px #555 !important; /* Premium stroke efekti */
}

/* GRID YAPISI - KESİN YAN YANA 4 TANE */
.portfolio-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important; /* Yan yana 4 kolon */
    gap: 20px !important;
    width: 100% !important;
}

/* KART YAPISI (1:1 KARE) */
.portfolio-item {
    width: 100% !important;
}

.work-card {
    position: relative !important;
    aspect-ratio: 1 / 1 !important; /* Tam kare oran */
    overflow: hidden !important;
    background: #111 !important;
    border-radius: 4px !important;
}

.work-img {
    width: 100% !important;
    height: 100% !important;
}

.work-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important; /* Görseli ezmeden kareye sığdırır */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* OVERLAY (Üzerine Gelince Beliren Panel) */
.work-info-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.9) !important; /* Daha net metinler için koyu karartma */
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.4s ease !important;
    padding: 20px !important;
    text-align: center !important;
    z-index: 2 !important;
}

.work-card:hover .work-info-overlay {
    opacity: 1 !important;
}

.work-card:hover .work-img img {
    transform: scale(1.1) !important;
}

/* METİNLER */
.work-info-overlay h4 {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
}

.work-tools {
    color: #555 !important; /* İstediğin koyu gri */
    font-size: 11px !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

/* İNCELE BUTONU (OVAL VE DÜZGÜN) */
.detail-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    padding: 10px 25px !important;
    background-color: #fff !important;
    color: #000 !important;
    text-decoration: none !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    border-radius: 50px !important; /* Oval form */
    white-space: nowrap !important; /* Yazının taşmasını veya yuvarlak olmasını engeller */
    transition: 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.detail-btn:hover {
    background-color: #e0e0e0 !important;
    transform: translateY(-2px) !important;
}

.detail-btn i {
    font-size: 10px !important;
}

/* MOBİL VE TABLET AYARLARI */
@media (max-width: 992px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Tablette 2'li düzen */
    }
}

@media (max-width: 576px) {
    .portfolio-grid {
        grid-template-columns: 1fr !important; /* Mobilde tekli liste */
    }
    .section-header h2 {
        font-size: 28px !important;
    }
}

/* =========================================
   HİZMETLER ÖZETİ (ANA SAYFA)
   ========================================= */
.home-services {
    padding: 100px 8%;
    background-color: #080808;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: #0f0f0f;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Kartın altına çok ince bir çizgi efekti */
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::after {
    width: 100%;
}

.service-icon {
    font-size: 40px;
    color: #fff;
    margin-bottom: 25px;
    transition: 0.3s;
}

.service-card h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.service-card:hover .service-icon {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* =========================================
   NEDEN VEXA ART?
   ========================================= */
.why-vexa {
    padding: 120px 8%;
    background: linear-gradient(to bottom, #080808, #0a0a0a);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-main-desc {
    color: #888;
    font-size: 18px;
    margin: 30px 0 50px 0;
    line-height: 1.8;
}

/* Sayısal İstatistikler */
.why-stats {
    display: flex;
    gap: 40px;
}

.stat-item h3 {
    font-size: 32px;
    color: #fff;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 13px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sağ Taraf - Özellik Kutuları */
.why-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-box {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid #333;
    transition: 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.04);
    border-left-color: #fff;
    transform: translateX(10px);
}

.feature-box h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* =========================================
   ÇALIŞMA SÜRECİ
   ========================================= */
.work-process {
    padding: 100px 8%;
    background-color: #080808;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-item {
    position: relative;
    text-align: left;
}

.process-number {
    font-size: 48px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    transition: 0.3s;
}

.process-item:hover .process-number {
    -webkit-text-stroke: 1px #fff; /* Hoverda belirginleşir */
    color: rgba(255, 255, 255, 0.05); /* İçine hafif bir dolgu gelir */
    transform: translateY(-8px);
}

.process-item h4 {
    letter-spacing: 1px;
    text-transform: uppercase; /* Başlıkları daha kurumsal/sanatsal yapar */
}

.process-item p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

/* Masaüstünde adımlar arasına ayırıcı nokta/çizgi (Opsiyonel) */
@media (min-width: 992px) {
    .process-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 30px;
        right: -20px;
        width: 40px;
        height: 1px;
        background: rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .process-item {
        text-align: center;
    }
}

/* =========================================
   ÇÖZÜM ORTAKLARI (STATİK VE ORTALI)
   ========================================= */
.brand-slider {
    padding: 60px 8%;
    background-color: #080808;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.logo-container {
    display: flex;
    justify-content: center; /* Logoları yatayda ortalar */
    align-items: center;
    gap: 60px; /* Logolar arası boşluk */
    flex-wrap: wrap; /* Mobilde alt alta geçmesi için */
}

.logo-item img {
    height: 35px; /* Boyutu bir tık büyüttük */
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6; /* Görünürlüğü %30'dan %60'a çıkardık */
    transition: all 0.4s ease;
}

.logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1; /* Üzerine gelince tam netleşir */
    transform: scale(1.1);
}

/* Kayan animasyonu iptal ettik */
.logo-track {
    animation: none !important;
}

@media (max-width: 768px) {
    .logo-container {
        gap: 30px;
    }
    .logo-item img {
        height: 25px;
    }
}

/* =========================================
   HİZMETLER SAYFASI - KARTLI YAPI
   ========================================= */
.services-page {
    padding: 80px 8%;
    background-color: #080808;
    min-height: 80vh;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-premium-card {
    background: #0f0f0f;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
    /* Kartların altındaki footer kalktığı için hizalamayı merkeze alabiliriz */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* services.php'deki eski footer ve buton sınıflarını (varsa) temizleyebilirsin */
.card-footer, .view-detail {
    display: none;
}

.service-premium-card:hover {
    background: #121212;
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
}

.card-icon {
    font-size: 35px;
    color: #fff;
    margin-bottom: 25px;
    opacity: 0.8;
}

.service-premium-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-premium-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.view-detail {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
    transition: 0.3s;
}

.service-premium-card:hover .view-detail {
    opacity: 1;
    gap: 15px;
}

/* Kartların içindeki ikonlara renk geçişi */
.service-premium-card .card-icon i {
    background: linear-gradient(45deg, #fff, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Kartın arka planına çok hafif bir numara ekleme (01, 02 gibi) */
.service-premium-card::before {
    content: "";
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

/* =========================================
   GRAPHICS PAGE STYLES
   ========================================= */
/* Tüm sayfaların en üst kapsayıcısına standart bir boşluk veriyoruz */
.graphics-page, 
.shop-page, 
.contact-page, 
.product-detail,
.services-page,
.portfolio-page {
    padding-top: 100px !important; /* Header yüksekliğine göre burayı sabitledik */
}

/* Tüm sayfa başlıklarını (Header) ortak bir standarta çekiyoruz */
/* Sayfa Başlıkları İçin Ortak Hiza ve Stil */
.section-header, .page-header, .page-intro {
    padding-top: 80px !important; /* Tüm sayfaların üstten başlama mesafesi eşitlendi */
    text-align: center;
    margin-bottom: 50px;
    margin-top: -20px;
}

.section-header h2, 
.page-header h2, 
.page-intro h2 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff; /* İlk kelime (beyaz) */
    letter-spacing: -1px;
    margin-top: -125px;
    margin-bottom: -25px;
}

/* İkinci Kelime (Outline / İçi Boş Stil) */
.section-header h2 span, 
.page-header h2 span, 
.page-intro h2 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2); /* İnce gri outline */
    font-weight: 700;
    margin-left: 10px;
    margin-bottom: -100px;
}

/* Başlık altındaki açıklamaların (varsa) hizası */
.section-header p, .page-header p {
    margin-top: 15px;
    color: #666;
    font-size: 14px;
}

/* Başlık altındaki açıklama yazılarını biraz daha yaklaştıralım */
.section-header p, 
.page-header p {
    margin-top: 15px;
    opacity: 0.7;
    font-size: 14px;
}

/* 4'lü Grid Sistemi */
.pricing-container {
    padding: 0 8%;
    margin-bottom: 100px;
}

.pricing-packages.four-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.package-card {
    background: #0f0f0f;
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    background: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    z-index: 5;
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #000;
    font-size: 10px;
    font-weight: 900;
    padding: 4px 12px;
    text-transform: uppercase;
    border-radius: 2px;
}

.package-icon {
    font-size: 32px;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.4);
}

.package-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.package-card .price {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #fff;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.package-features li {
    font-size: 13px;
    color: #777;
    margin-bottom: 12px;
    text-align: left;
}

.package-features li i {
    color: #fff;
    margin-right: 8px;
    font-size: 11px;
}

.btn-order {
    display: block;
    background: #fff;
    color: #000;
    padding: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-order:hover {
    background: #e0e0e0;
    letter-spacing: 2px;
}

/* Tekil Hizmetler Listesi */
.single-services {
    padding: 0 8%;
    max-width: 900px;
    margin: 0 auto;
}

.price-list-wrapper {
    background: rgba(255,255,255,0.01);
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.03);
}

.price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.price-item:last-child { border-bottom: none; }

.service-name { font-size: 15px; color: #aaa; }
.service-price { font-weight: 700; color: #fff; }

.service-dot {
    flex-grow: 1;
    border-bottom: 1px dotted rgba(255,255,255,0.1);
    margin: 0 20px;
    transform: translateY(-4px);
}

/* Responsive Düzen */
@media (max-width: 1200px) {
    .pricing-packages.four-columns { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .package-card.featured { transform: scale(1); }
}

@media (max-width: 768px) {
    .pricing-packages.four-columns { grid-template-columns: 1fr; }
    .price-item { flex-direction: column; text-align: center; gap: 10px; }
    .service-dot { display: none; }
}

/* Paket Özellikleri - Olmayanlar İçin Stil */
.package-features li.not-included {
    color: rgba(255, 255, 255, 0.2) !important;
}
.package-features li.not-included i {
    color: rgba(255, 255, 255, 0.2) !important;
}

/* Tekil Fiyatlar Grid Yapısı */
.price-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Yan yana iki kolon */
    gap: 20px;
    /* max-width: 1200px; */ /* İsteğe bağlı: Çok geniş ekranlarda aşırı yayılmasın dersen bunu açabilirsin */
}

.single-services-grid {
    padding: 0 8% 100px; /* Paketlerle aynı %8 sağ-sol boşluğu verdik */
    width: 100%;
    margin: 0 auto;
}

.price-grid-item {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    transition: 0.3s;
}

.price-grid-item:hover {
    background: #121212;
    border-color: rgba(255, 255, 255, 0.1);
}

.price-info h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
}

.price-info p {
    color: #666;
    font-size: 13px;
    margin: 0;
}

.price-value {
    color: #fff;
    font-weight: 800;
    font-size: 20px;
}

/* Mobil için hizalama */
@media (max-width: 992px) {
    .price-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .single-services-grid {
        padding: 0 5% 80px; /* Mobilde biraz daha geniş alan */
    }
}

/* =========================================
   STORE
   ========================================= */
/* Shop Grid */
.shop-page { padding: 0 8% 100px; background: #080808; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; margin-top: 60px; }

.product-card { background: #0f0f0f; border: 1px solid rgba(255,255,255,0.03); transition: 0.3s; position: relative; }
.product-img { position: relative; overflow: hidden; height: 300px; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.product-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.8); display: flex; align-items: center; justify-content: center; opacity: 0; transition: 0.3s; }
.product-card:hover .product-overlay { opacity: 1; }
.product-card:hover .product-img img { transform: scale(1.1); }

.view-btn { width: 50px; height: 50px; background: #fff; color: #000; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 18px; }

.product-info {
    padding: 25px;
    background: #0a0a0a; /* Daha derin bir siyah */
    text-align: center;
}

/* Kategori (En Üstteki Küçük Yazı) */
.category {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888; /* Saf beyaz değil, hafif gri yaparak başlığı öne çıkarıyoruz */
    margin-bottom: 10px;
    font-weight: 500;
}

/* Ürün Başlığı */
.product-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    letter-spacing: -0.5px; /* Modern tasarımda harfler biraz bitişik olur */
}

/* Fiyat Alanı */
.product-price-box {
    margin-bottom: 25px;
}

.price-amount {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    position: relative;
}

/* Buton (Tam İstediğin Grafik Paketleri Tarzı) */
.shop-detail-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 55px; /* Sabit yükseklik daha tok durur */
    background: #ffffff;
    color: #000000;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #ffffff;
}

.shop-detail-btn:hover {
    background: transparent;
    color: #ffffff;
    letter-spacing: 3px; /* Hover yapınca yazının açılması premium bir histir */
}
.product-info h4 { font-size: 18px; margin: 10px 0; color: #fff; }
.product-info .price { color: #fff; font-weight: 800; font-size: 18px; }

/* Product Detail */
.product-detail { padding: 180px 8% 100px; background: #080808; color: #fff; }
.detail-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

.main-image-container img { width: 100%; border: 1px solid rgba(255,255,255,0.05); }
.thumb-gallery { display: flex; gap: 15px; margin-top: 20px; overflow-x: auto; }
.thumb { width: 80px; height: 80px; object-fit: cover; cursor: pointer; opacity: 0.4; border: 1px solid transparent; transition: 0.3s; }
.thumb.active, .thumb:hover { opacity: 1; border-color: #fff; }

.detail-content h1 { font-size: 36px; margin-bottom: 20px; }
.detail-price { font-size: 32px; font-weight: 800; margin-bottom: 30px; }
.description { color: #888; line-height: 1.8; margin-bottom: 40px; }
.buy-btn { display: inline-block; padding: 18px 45px; background: #fff; color: #000; text-decoration: none; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; }

@media (max-width: 992px) {
    .detail-wrapper { grid-template-columns: 1fr; }
}

/* =========================================
   CONTACT
   ========================================= */
   .contact-page { padding: 0 8% 100px; background: #080808; }
.contact-wrapper { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-top: 60px; }

.contact-info { display: flex; flex-direction: column; gap: 30px; }
.info-item { background: #0f0f0f; padding: 25px; border: 1px solid rgba(255,255,255,0.03); display: flex; align-items: center; gap: 20px; }
.info-item i { font-size: 24px; color: #fff; width: 40px; }
.info-item h4 { font-size: 14px; color: #666; text-transform: uppercase; margin-bottom: 5px; }
.info-item p { color: #fff; font-weight: 600; }

.contact-form-container { background: #0f0f0f; padding: 50px; border: 1px solid rgba(255,255,255,0.03); }
.vexa-form .form-group { margin-bottom: 20px; }
.vexa-form input, .vexa-form textarea {
    width: 100%; padding: 15px; background: #151515; border: 1px solid rgba(255,255,255,0.05); color: #fff; outline: none; transition: 0.3s;
}
.vexa-form input:focus, .vexa-form textarea:focus { border-color: rgba(255,255,255,0.2); }
.send-btn { width: 100%; padding: 15px; background: #fff; color: #000; border: none; font-weight: 800; cursor: pointer; transition: 0.3s; }
.send-btn:hover { background: #e0e0e0; letter-spacing: 1px; }

/* Alert Mesajları */
.alert { padding: 15px; margin-bottom: 20px; text-align: center; font-weight: 700; font-size: 14px; }
.alert.success { background: rgba(0, 255, 0, 0.1); color: #00ff00; border: 1px solid rgba(0, 255, 0, 0.2); }
.alert.error { background: rgba(255, 0, 0, 0.1); color: #ff0000; border: 1px solid rgba(255, 0, 0, 0.2); }

@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr; }
}

/* Ana Grid Düzeni */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Yan yana tam 4 adet */
    gap: 15px; /* Modern ve sıkı bir görünüm için boşluğu biraz daralttık */
    padding: 0 30px;
    margin-bottom: 100px;
}

/* Kare Kart Yapısı */
.work-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* Kare form factor */
    background: #050505;
}

.work-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); /* Hafif gri tonlama premium bir hava katar */
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover Efektleri */
.work-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%); /* Üstüne gelince tam renklenir */
}

.work-info {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s ease;
    padding: 20px;
    text-align: center;
}

.work-card:hover .work-info {
    opacity: 1;
}

.work-info h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Mobil Uyumluluk */
@media (max-width: 1200px) { .portfolio-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .portfolio-grid { grid-template-columns: repeat(1, 1fr); } }

.behance-layout {
    background: #000; /* Tam siyah arka plan */
    width: 100%;
}

.project-hero {
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), #000);
}

/* Proje Hero Başlık Düzenlemesi */
.project-hero h1 {
    font-size: 32px; /* Dev boyut yerine daha dengeli bir boyut */
    font-weight: 800;
    letter-spacing: 1px; /* Harf aralığını açarak ferahlık kattık */
    text-transform: uppercase; /* Daha kurumsal bir duruş için */
    margin-bottom: 10px;
}

.premium-tag {
    font-size: 11px;
    letter-spacing: 3px;
    color: #444; /* Etiketi biraz daha soluklaştırarak hiyerarşiyi koruyoruz */
}

.project-gallery {
    width: 100%;
    max-width: 1400px; /* Behance genişliği */
    margin: 0 auto;
}

.gallery-item {
    width: 100%;
    margin-bottom: 0; /* Görseller birbirine yapışık akar */
    line-height: 0;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.project-footer {
    padding: 100px 20px;
    text-align: center;
    background: #050505;
    margin-bottom: -100px;
}

.footer-info h3 { font-size: 30px; margin-bottom: 20px; }
.footer-info p { max-width: 700px; margin: 0 auto 40px; color: #888; }

.tools span {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #222;
    margin: 5px;
    font-size: 12px;
    color: #555;
}

.service-footer-info {
    max-width: 1200px; /* 3'lü yapı için genişliği biraz artırdık */
    margin: 50px auto; 
    padding: 30px;
    background: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 4px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Yan yana 3 sütun */
    gap: 30px; /* Sütunlar arası boşluk */
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item h3 {
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
    border-left: 2px solid #555;
    padding-left: 12px;
    text-transform: uppercase;
}

.info-item p {
    color: #888 !important;
    font-size: 12px;
    line-height: 1.6;
}

/* Tablet ve Mobil Uyumu */
@media (max-width: 992px) {
    .info-grid { grid-template-columns: 1fr 1fr; } /* Tablette 2'li */
}

@media (max-width: 768px) {
    .info-grid { grid-template-columns: 1fr; } /* Mobilde tekli */
}