/* --- 1. TEMEL AYARLAR VE FONTLAR --- */
 @import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;500;700&family=Montserrat:wght@300;400;700&display=swap');
 :root {
     --navy: #051024;
     --blue: #1a4585;
     --neon: #00e5ff;
     --white: #ffffff;
     --gray: #1f293a;
}
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 body {
     background-color: var(--navy);
     color: var(--white);
     font-family: 'Montserrat', sans-serif;
     overflow-x: hidden;
     -webkit-user-select: none;
     -moz-user-select: none;
     user-select: none;
}
 input, textarea {
     user-select: text !important;
}
/* --- 2. NAVBAR (MENÜ) --- */
 .navbar {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     z-index: 1000;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1rem 5%;
     background: rgba(5, 16, 36, 0.9);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
     transition: all 0.3s ease;
}
 .logo {
     font-family: 'Teko', sans-serif;
     font-size: 2.5rem;
     font-weight: 700;
     letter-spacing: 2px;
}
 .logo span {
     color: var(--neon);
}
 .nav-links {
     list-style: none;
     display: flex;
     gap: 2rem;
}
 .nav-links a {
     text-decoration: none;
     color: var(--white);
     font-weight: 600;
     text-transform: uppercase;
     font-size: 0.9rem;
     transition: 0.3s;
}
 .nav-links a:hover, .nav-links a.active {
     color: var(--neon);
     text-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}
 .hamburger {
     display: none;
     font-size: 1.5rem;
     cursor: pointer;
     color: var(--white);
}
/* --- 3. HERO SECTION --- */
 .hero {
     height: 90vh;
     display: flex;
     align-items: center;
     padding: 0 5%;
     position: relative;
     background: radial-gradient(circle at center, #1a3a66 0%, #051024 100%);
     clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(45deg, var(--navy) 30%, transparent 100%);
     z-index: 1;
}
 .hero-content {
     position: relative;
     z-index: 2;
     max-width: 700px;
}
 .outline-text {
     font-family: 'Teko', sans-serif;
     font-size: 5rem;
     line-height: 0.8;
     color: transparent;
     -webkit-text-stroke: 2px rgba(255,255,255,0.2);
}
 .hero h1 {
     font-family: 'Teko', sans-serif;
     font-size: 6rem;
     line-height: 0.9;
     text-transform: uppercase;
     background: linear-gradient(to right, #fff, #aaa);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}
 .hero p {
     margin: 1.5rem 0;
     color: #ccc;
     font-size: 1.1rem;
     border-left: 3px solid var(--neon);
     padding-left: 1rem;
}
 .cta-btn {
     display: inline-block;
     padding: 1rem 3rem;
     background: var(--neon);
     color: var(--navy);
     font-weight: 800;
     text-decoration: none;
     text-transform: uppercase;
     clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
     transition: 0.3s;
}
 .cta-btn:hover {
     background: var(--white);
     transform: translateX(10px);
     box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}
/* --- 4. KAYAN YAZI --- */
 .scrolling-text {
     background: var(--blue);
     padding: 1rem 0;
     overflow: hidden;
     white-space: nowrap;
     transform: rotate(-2deg) translateY(-20px);
     border-top: 2px solid var(--neon);
     border-bottom: 2px solid var(--neon);
}
 .track {
     display: inline-block;
     animation: marquee 20s linear infinite;
     font-family: 'Teko', sans-serif;
     font-size: 2rem;
     font-weight: 700;
     color: var(--white);
}
 .dot {
     color: var(--neon);
     margin: 0 1rem;
}
 @keyframes marquee {
     from {
         transform: translateX(0);
    }
     to {
         transform: translateX(-50%);
    }
}
/* --- 5. ÜRÜNLER & KARTLAR --- */
 .products {
     padding: 5rem 5%;
}
 .section-header h3 {
     color: var(--neon);
     letter-spacing: 3px;
     font-size: 1rem;
}
 .section-header h2 {
     font-size: 3rem;
     font-family: 'Teko', sans-serif;
     margin-bottom: 3rem;
}
 .product-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
}
 .card {
     background: var(--gray);
     border: 1px solid rgba(255,255,255,0.05);
     position: relative;
     overflow: hidden;
     transition: 0.4s;
}
 .card:hover {
     transform: translateY(-10px);
     border-color: var(--neon);
     box-shadow: 0 10px 40px rgba(0, 229, 255, 0.1);
}
 .card-img {
     width: 100%;
     height: 440px;
     overflow: hidden;
     background-color: #fff;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     position: relative;
}
 .card-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
}
/* Düzeltme: Eğik yapma (rotate) kaldırıldı, sadece büyüme (scale) kaldı */
 .card:hover .card-img img {
     transform: scale(1.1);
}
 .img-placeholder {
     color: #333;
     font-weight: 800;
     font-size: 2rem;
}
 .card-info {
     padding: 1.5rem;
}
 .card-info h4 {
     font-size: 1.4rem;
     margin-bottom: 0.5rem;
}
 .price-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 1rem;
}
 .price {
     font-size: 1.2rem;
     color: var(--neon);
     font-weight: 700;
}
 .add-btn {
     background: transparent;
     border: 1px solid var(--white);
     color: var(--white);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     cursor: pointer;
     transition: 0.3s;
}
 .add-btn:hover {
     background: var(--neon);
     border-color: var(--neon);
     color: var(--navy);
}
/* Metalik Işıltı Efekti (İsteğe bağlı, eğiklik buradan geliyorsa bunu da silebilirsin ama görseli bozmaz) */
 .card-img::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 50%;
     height: 100%;
     background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
     transform: skewX(-25deg);
     transition: none;
     z-index: 2;
     pointer-events: none;
}
 .card:hover .card-img::before {
     left: 150%;
     transition: left 0.7s ease;
}
/* --- 6. GALERİ (ANA SAYFA) --- */
 .gallery-section {
     padding: 0 5% 5rem 5%;
}
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     grid-template-rows: repeat(2, 250px);
     gap: 1rem;
}
 .gallery-item {
     background-color: #111;
     position: relative;
     overflow: hidden;
     cursor: pointer;
     border: 1px solid transparent;
     transition: 0.3s;
     height: 100%;
     width: 100%;
}
 .item-large {
     grid-column: span 2;
     grid-row: span 2;
}
 .gallery-item:hover {
     border-color: var(--neon);
}
 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     display: block;
     transition: transform 0.5s ease;
}
 .gallery-item:hover img {
     transform: scale(1.1);
}
/* Büyüteç Overlay */
 .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(5, 16, 36, 0.7);
     backdrop-filter: blur(2px);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: all 0.3s ease;
     z-index: 2;
}
 .gallery-item:hover .overlay {
     opacity: 1;
}
 .overlay i {
     color: var(--neon);
     font-size: 3.5rem;
     transform: scale(0);
     transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
 .gallery-item:hover .overlay i {
     transform: scale(1);
}
/* Galeri Butonu */
 .gallery-btn-container {
     text-align: center;
     margin-top: 3rem;
     width: 100%;
}
 .outline-btn {
     display: inline-block;
     text-decoration: none;
     background: transparent;
     color: var(--white);
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     font-size: 1rem;
     padding: 1rem 3rem;
     border: 2px solid var(--neon);
     transition: all 0.3s ease;
     letter-spacing: 2px;
}
 .outline-btn:hover {
     background: var(--neon);
     color: var(--navy);
     box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}
 .outline-btn i {
     margin-left: 10px;
     transition: 0.3s;
}
 .outline-btn:hover i {
     transform: translateX(5px);
}
/* --- 7. TEKNİK ÖZELLİKLER (ACCORDION) --- */
 .tech-specs {
     background-color: #08162e;
     padding: 5rem 5%;
     border-top: 1px solid rgba(255,255,255,0.05);
}
 .tech-container {
     display: flex;
     flex-wrap: wrap;
     gap: 4rem;
     align-items: center;
}
 .tech-left {
     flex: 1;
     min-width: 300px;
}
 .accordion {
     flex: 1.5;
     min-width: 300px;
}
 .accordion-item {
     margin-bottom: 1rem;
     border: 1px solid rgba(255,255,255,0.1);
     background: var(--gray);
}
 .accordion-header {
     width: 100%;
     padding: 1.5rem;
     background: transparent;
     border: none;
     color: var(--white);
     font-family: 'Montserrat', sans-serif;
     font-weight: 700;
     font-size: 1.1rem;
     text-align: left;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     transition: 0.3s;
}
 .accordion-header:hover, .accordion-header.active {
     color: var(--neon);
     background: rgba(0, 229, 255, 0.05);
}
 .accordion-header.active i {
     transform: rotate(180deg);
}
 .accordion-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease-out;
     padding: 0 1.5rem;
     background-color: #1a2536;
}
 .accordion-content p {
     padding: 1.5rem 0;
     color: #bbb;
     line-height: 1.6;
}
/* --- 8. İSTATİSTİK SAYACI --- */
 .stats-section {
     background: url('../img/hero-bg.jpg') no-repeat center center/cover;
     background-attachment: fixed;
     padding: 6rem 5%;
     display: flex;
     justify-content: space-around;
     align-items: center;
     position: relative;
     text-align: center;
     flex-wrap: wrap;
     gap: 2rem;
}
 .stats-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(5, 16, 36, 0.85);
     z-index: 0;
}
 .stat-item {
     position: relative;
     z-index: 1;
     flex: 1;
     min-width: 200px;
}
 .stat-item i {
     font-size: 3rem;
     color: var(--neon);
     margin-bottom: 1rem;
     filter: drop-shadow(0 0 10px rgba(0, 229, 255, 0.5));
}
 .stat-item h2 {
     font-family: 'Teko', sans-serif;
     font-size: 4rem;
     line-height: 1;
     display: inline-block;
     color: var(--white);
}
 .stat-item span {
     font-family: 'Teko', sans-serif;
     font-size: 4rem;
     color: var(--neon);
}
 .stat-item p {
     font-size: 1rem;
     font-weight: 700;
     letter-spacing: 2px;
     color: #aaa;
     margin-top: 0.5rem;
}
/* --- 9. FOOTER --- */
 .site-footer {
     background-color: #020817;
     padding: 5rem 5% 2rem 5%;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     position: relative;
     overflow: hidden;
}
 .site-footer::before {
     content: '';
     position: absolute;
     top: -50px;
     left: 50%;
     transform: translateX(-50%);
     width: 60%;
     height: 100px;
     background: var(--neon);
     filter: blur(80px);
     opacity: 0.1;
     z-index: 0;
}
 .footer-content {
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 3rem;
     position: relative;
     z-index: 1;
     margin-bottom: 3rem;
}
 .footer-brand {
     flex: 2;
     min-width: 300px;
}
 .footer-logo {
     font-family: 'Teko', sans-serif;
     font-size: 3rem;
     margin-bottom: 1rem;
     color: var(--white);
}
 .footer-logo span {
     color: var(--neon);
}
 .footer-brand p {
     color: #8892b0;
     max-width: 400px;
     margin-bottom: 2rem;
     line-height: 1.6;
}
 .social-links {
     display: flex;
     gap: 1rem;
}
 .social-btn {
     text-decoration: none;
     padding: 1rem 2rem;
     font-weight: 700;
     font-size: 0.9rem;
     letter-spacing: 1px;
     display: flex;
     align-items: center;
     gap: 10px;
     transition: 0.3s;
     border-radius: 4px;
}
 .instagram {
     background: transparent;
     border: 1px solid rgba(255,255,255,0.2);
     color: var(--white);
}
 .instagram:hover {
     background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
     border-color: transparent;
     box-shadow: 0 10px 30px rgba(220, 39, 67, 0.4);
     transform: translateY(-3px);
}
 .whatsapp {
     background: transparent;
     border: 1px solid rgba(255,255,255,0.2);
     color: var(--white);
}
 .whatsapp:hover {
     background-color: #25D366;
     border-color: #25D366;
     color: #fff;
     box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
     transform: translateY(-3px);
}
 .footer-links h3 {
     color: var(--white);
     font-family: 'Teko', sans-serif;
     font-size: 1.5rem;
     margin-bottom: 1.5rem;
     letter-spacing: 1px;
}
 .footer-links ul {
     list-style: none;
}
 .footer-links li {
     margin-bottom: 10px;
}
 .footer-links a {
     color: #8892b0;
     text-decoration: none;
     transition: 0.3s;
}
 .footer-links a:hover {
     color: var(--neon);
     padding-left: 5px;
}
 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.05);
     padding-top: 2rem;
     text-align: center;
     color: #555;
     font-size: 0.8rem;
}
/* --- 10. PRELOADER & EFEKTLER --- */
 .preloader {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: var(--navy);
     z-index: 99999;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     transition: opacity 0.5s ease, visibility 0.5s ease;
}
 .loader-logo {
     font-family: 'Teko', sans-serif;
     font-size: 4rem;
     font-weight: 700;
     color: var(--white);
     margin-bottom: 20px;
     animation: pulse 1.5s infinite;
}
 .loader-logo span {
     color: var(--neon);
}
 .loader-line {
     width: 0;
     height: 3px;
     background-color: var(--neon);
     box-shadow: 0 0 10px var(--neon);
     transition: width 0.5s ease;
     border-radius: 2px;
}
 .preloader.hide {
     opacity: 0;
     visibility: hidden;
}
 @keyframes pulse {
     0% {
         transform: scale(1);
         opacity: 1;
    }
     50% {
         transform: scale(1.05);
         opacity: 0.8;
    }
     100% {
         transform: scale(1);
         opacity: 1;
    }
}
 .fade-in {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.8s ease-out;
}
 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
}
/* --- YÜZEN İLETİŞİM BUTONLARI (INSTAGRAM & WHATSAPP) --- */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column; /* Alt alta dizilsin */
    gap: 15px; /* Aralarında boşluk olsun */
    z-index: 9998;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    color: #FFF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: floatPulse 3s infinite; /* Zıplama efekti */
}

/* Instagram Rengi (Gradient) */
.instagram-btn {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

/* WhatsApp Rengi (Yeşil) */
.whatsapp-btn {
    background-color: #25D366;
}

/* Hover Efektleri */
.float-btn:hover {
    transform: scale(1.1); /* Hafif büyüsün */
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* Animasyon */
@keyframes floatPulse {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

/* Mobil Ayarı (Daha küçük olsun) */
@media (max-width: 768px) {
    .floating-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}
 @keyframes floatPulse {
     0% {
         transform: translateY(0);
    }
     50% {
         transform: translateY(-6px);
    }
     100% {
         transform: translateY(0);
    }
}
/* Lightbox */
 .lightbox {
     display: none;
     position: fixed;
     z-index: 2000;
     left: 0;
     top: 0;
     width: 100%;
     height: 100%;
     overflow: auto;
     background-color: rgba(0,0,0,0.95);
     align-items: center;
     justify-content: center;
     flex-direction: column;
     backdrop-filter: blur(5px);
}
 .lightbox.active {
     display: flex;
     animation: fadeIn 0.3s ease;
}
 .lightbox-content {
     margin: auto;
     display: block;
     max-width: 90%;
     max-height: 85vh;
     object-fit: contain;
     border: 2px solid var(--neon);
     box-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
     animation: zoomIn 0.3s ease;
}
 .close-lightbox {
     position: absolute;
     top: 20px;
     right: 35px;
     color: #f1f1f1;
     font-size: 40px;
     font-weight: bold;
     transition: 0.3s;
     cursor: pointer;
     z-index: 2001;
}
 .close-lightbox:hover {
     color: var(--neon);
}
 @keyframes fadeIn {
     from {
        opacity: 0;
    }
     to {
        opacity: 1;
    }
}
 @keyframes zoomIn {
     from {
        transform: scale(0.8);
    }
     to {
        transform: scale(1);
    }
}
/* --- 11. DİĞER SAYFALAR (Hakkımızda, SSS, Politika, Galeri) --- */
 .page-header {
     height: 50vh;
     background: radial-gradient(circle at center, #1a3a66 0%, #051024 100%);
     position: relative;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
 .header-content {
     position: relative;
     z-index: 2;
     padding-top: 3rem;
}
 .header-content h1 {
     font-family: 'Teko', sans-serif;
     font-size: 5rem;
     color: var(--white);
     letter-spacing: 2px;
}
 .header-content p {
     color: var(--neon);
     font-size: 1.2rem;
     letter-spacing: 1px;
}
/* Hakkımızda */
 .about-content {
     padding: 5rem 10%;
     background-color: var(--navy);
}
 .about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 4rem;
     align-items: center;
}
 .about-text h2 {
     font-family: 'Teko', sans-serif;
     font-size: 3.5rem;
     line-height: 1;
     margin-bottom: 2rem;
}
 .about-text h3 {
     color: var(--neon);
     letter-spacing: 3px;
     font-size: 1rem;
     margin-bottom: 10px;
}
 .about-text p {
     color: #ccc;
     line-height: 1.8;
     margin-bottom: 1.5rem;
     font-size: 1.05rem;
}
 .stats-mini {
     display: flex;
     gap: 3rem;
     margin-top: 2rem;
     padding-top: 2rem;
     border-top: 1px solid rgba(255,255,255,0.1);
}
 .stats-mini h4 {
     font-size: 2rem;
     color: var(--white);
     font-family: 'Teko', sans-serif;
}
 .stats-mini span {
     font-size: 0.8rem;
     color: #888;
}
 .about-img {
     position: relative;
}
 .about-img img {
     width: 100%;
     border-radius: 10px;
     filter: grayscale(100%);
     transition: 0.5s;
     position: relative;
     z-index: 2;
}
 .about-img:hover img {
     filter: grayscale(0%);
}
 .img-border {
     position: absolute;
     top: 20px;
     left: 20px;
     width: 100%;
     height: 100%;
     border: 2px solid var(--neon);
     border-radius: 10px;
     z-index: 1;
     transition: 0.3s;
}
 .about-img:hover .img-border {
     top: -10px;
     left: -10px;
}
 .vision-cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
     padding: 4rem 10%;
     background-color: #020817;
}
 .v-card {
     background: rgba(255,255,255,0.03);
     padding: 2.5rem;
     text-align: center;
     border: 1px solid rgba(255,255,255,0.05);
     transition: 0.3s;
}
 .v-card:hover {
     transform: translateY(-10px);
     border-color: var(--neon);
}
 .v-card i {
     font-size: 2.5rem;
     color: var(--neon);
     margin-bottom: 1.5rem;
}
 .v-card h3 {
     font-family: 'Teko', sans-serif;
     font-size: 1.8rem;
     margin-bottom: 1rem;
}
/* SSS */
 .faq-header {
     background: radial-gradient(circle at center, #2e1a47 0%, #051024 100%);
}
 .faq-section {
     padding: 5rem 10%;
     background-color: var(--navy);
}
 .faq-category {
     margin-bottom: 4rem;
}
 .category-title {
     color: var(--neon);
     font-family: 'Teko', sans-serif;
     font-size: 2.5rem;
     margin-bottom: 1.5rem;
     border-bottom: 1px solid rgba(255,255,255,0.1);
     padding-bottom: 10px;
     display: flex;
     align-items: center;
     gap: 15px;
}
 .faq-section .accordion-item {
     background: #0f1926;
     border: 1px solid rgba(255,255,255,0.05);
     margin-bottom: 15px;
     border-radius: 5px;
}
 .faq-footer {
     text-align: center;
     background: rgba(255,255,255,0.03);
     padding: 3rem;
     border-radius: 10px;
     border: 1px solid var(--neon);
     margin-top: 3rem;
     box-shadow: 0 0 20px rgba(0, 229, 255, 0.1);
}
 .faq-footer h3 {
     font-family: 'Teko', sans-serif;
     font-size: 2.5rem;
     color: var(--white);
     margin-bottom: 10px;
}
/* Kargo ve İade */
 .policy-header {
     background: radial-gradient(circle at center, #1b263b 0%, #051024 100%);
}
 .policy-section {
     padding: 5rem 10%;
     background-color: var(--navy);
}
 .policy-row {
     display: flex;
     gap: 3rem;
     margin-bottom: 5rem;
     padding: 3rem;
     background: rgba(255,255,255,0.02);
     border: 1px solid rgba(255,255,255,0.05);
     border-radius: 10px;
     transition: 0.3s;
}
 .policy-row:hover {
     border-color: var(--neon);
     box-shadow: 0 0 20px rgba(0, 229, 255, 0.05);
}
 .policy-icon {
     flex: 0 0 80px;
     height: 80px;
     background: rgba(0, 229, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .policy-icon i {
     font-size: 2.5rem;
     color: var(--neon);
}
 .policy-content {
     flex: 1;
}
 .policy-content h2 {
     font-family: 'Teko', sans-serif;
     font-size: 2.5rem;
     color: var(--white);
     margin-bottom: 1rem;
}
 .policy-list {
     list-style: none;
     background: #0f1824;
     padding: 1.5rem;
     border-radius: 8px;
}
 .policy-list li {
     margin-bottom: 10px;
     color: #bbb;
     display: flex;
     align-items: flex-start;
     gap: 10px;
}
 .policy-list li i {
     color: var(--neon);
     margin-top: 5px;
}
 .steps-box {
     background: #0f1824;
     padding: 2rem;
     border-radius: 8px;
     border-left: 3px solid var(--neon);
     margin-top: 1rem;
}
 .step-num {
     background: var(--neon);
     color: var(--navy);
     width: 30px;
     height: 30px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
     flex-shrink: 0;
}
 .step {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 15px;
}
 .warning-text {
     margin-top: 2rem;
     color: #ff9f43 !important;
     font-size: 0.9rem;
     font-style: italic;
}
/* Galeri (Portfolio) Sayfası */
 .gallery-page-header {
     background: radial-gradient(circle at center, #000000 0%, #1a1a1a 100%);
}
 .portfolio-section {
     padding: 5rem 5%;
     background-color: var(--navy);
}
 .portfolio-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 3rem;
}
 .portfolio-card {
     background: #0f1824;
     border: 1px solid rgba(255,255,255,0.05);
     border-radius: 8px;
     overflow: hidden;
     transition: 0.3s;
}
 .portfolio-card:hover {
     transform: translateY(-10px);
     border-color: var(--neon);
     box-shadow: 0 10px 30px rgba(0, 229, 255, 0.1);
}

/* Düzeltme: Portfolio açıklamaları görünür yapıldı */
 .portfolio-desc {
     padding: 1.5rem;
     display: block;
     background: #0f1824;
}
 .portfolio-desc h4 {
     font-family: 'Teko', sans-serif;
     font-size: 1.8rem;
     color: var(--white);
     margin-bottom: 0.5rem;
     letter-spacing: 1px;
}
 .portfolio-desc p {
     color: #aaa;
     font-size: 0.95rem;
     line-height: 1.6;
}
/* --- 12. MOBİL UYUMLULUK (HEPSİ BURADA) --- */
 @media (max-width: 768px) {
    /* Navbar */
     .nav-links {
         position: absolute;
         top: 100%;
         right: 0;
         background-color: var(--navy);
         flex-direction: column;
         width: 100%;
         text-align: center;
         padding: 2rem 0;
         transform: translateY(-150%);
         transition: 0.5s;
         border-bottom: 2px solid var(--neon);
    }
     .nav-links.active {
         transform: translateY(0);
    }
     .hamburger {
         display: block;
    }
    /* Hero */
     .hero {
         height: auto;
         min-height: 80vh;
         padding-top: 6rem;
         padding-bottom: 4rem;
         text-align: center;
    }
     .hero h1 {
         font-size: 3.5rem;
    }
     .outline-text {
         font-size: 3.5rem;
    }
     .hero p {
         padding-left: 0;
         border-left: none;
    }
    /* Genel Padding */
     .products, .gallery-section, .tech-specs, .about-content, .faq-section, .policy-section {
         padding: 3rem 1.5rem;
    }
    /* Galeri */
     .gallery-grid {
         grid-template-columns: repeat(2, 1fr);
         grid-template-rows: auto;
         gap: 0.5rem;
    }
     .item-large {
         grid-column: span 2;
         grid-row: span 2;
         height: 300px;
    }
     .gallery-item {
         height: 150px;
         aspect-ratio: 1 / 1 !important;
         height: auto !important;
    }
    /* Kart Resimleri */
     .card-img {
         aspect-ratio: 1 / 1;
         height: auto !important;
    }
    /* Tek Sütun Olması Gerekenler */
     .tech-container, .about-grid, .vision-cards, .portfolio-grid, .policy-row, .stats-section, .footer-content, .social-links {
         flex-direction: column;
         grid-template-columns: 1fr;
    }
    /* Ortalama ve Butonlar */
     .tech-left, .about-text, .policy-row, .footer-bottom {
         text-align: center;
    }
     .cta-btn, .social-btn, .tech-left button {
         width: 100%;
         text-align: center;
    }
    /* Diğer */
     .section-header h2 {
         font-size: 2.2rem;
    }
     .page-header h1 {
         font-size: 3rem;
    }
     .price-row {
         flex-direction: row;
    }
}
/* --- GALERİ SAYFASI DÜZELTMESİ (AÇIKLAMALAR GERİ GELSİN) --- */
/* 1. Resim kutusunun yüksekliğini sınırla ki yazıya yer kalsın */
 .portfolio-card .gallery-item {
     height: auto !important;
    /* Ana sayfadaki %100 kuralını eziyoruz */
     aspect-ratio: 1 / 1;
    /* Resimler düzgün dikdörtgen dursun */
     flex: none;
    /* Esnek kutu içinde bozulmasın */
}
/* 2. Resmin kendisine tam otur diyoruz */
 .portfolio-card .gallery-item img {
     height: 100%;
     width: 100%;
     object-fit: cover;
}
/* 3. Açıklama kutusunu görünür yap ve renklendir */
 .portfolio-desc {
     display: block !important;
    /* Kesinlikle görünür olsun */
     background-color: #0f1824;
    /* Kart rengi */
     padding: 1.5rem;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Resimle yazı arasına ince çizgi */
     position: relative;
     z-index: 5;
}
 .portfolio-desc h4 {
     color: #ffffff;
     font-family: 'Teko', sans-serif;
     font-size: 1.5rem;
     margin-bottom: 0.5rem;
}
 .portfolio-desc p {
     color: #aaaaaa;
     font-size: 0.9rem;
     line-height: 1.5;
}

/* --- NAVBAR LOGO RESMİ AYARI --- */
.logo img {
    height: 30px;       /* Logonun yüksekliği (İhtiyaca göre 40px - 60px arası yapabilirsin) */
    width: auto;        /* Genişlik otomatik ayarlansın, resim sünmesin */
    vertical-align: middle; /* Dikeyde tam ortalansın */
    display: block;     /* Altındaki boşlukları siler */
}

/* Mobilde logo çok büyük gelirse biraz küçültelim */
@media (max-width: 768px) {
    .logo img {
        height: 20px;
    }
}

/* --- PRELOADER LOGO RESMİ AYARI --- */
.loader-img {
    width: 300px; /* Logonun genişliği (İsteğe göre artır/azalt) */
    height: auto;
    margin-bottom: 20px;
    /* Nefes alma (Pulse) animasyonu */
    animation: pulse 1.5s infinite; 
}

/* Eğer pulse animasyonu daha önce tanımlanmadıysa burayı da ekle: */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; } /* Hafif büyüyüp soluklaşır */
    100% { transform: scale(1); opacity: 1; }
}

/* --- POLİTİKA LİSTESİ HİZALAMA --- */
.policy-list li strong {
    display: inline-block;
    min-width: 170px; /* En uzun kelimeye göre ayarladık */
}