/* ==========================================================================
   1. GENEL AYARLAR & GECE MAVİSİ / MAVİ-SİYAH TEMA
   ========================================================================== */
:root {
    --primary-blue: #0088ff;
    --dark-navy: #0A1128;
    --deep-navy: #050d1a;
    --dark-bg: #050d1a;
    --light-bg: #f4f7f6;
    --text-white: #ffffff;
    --text-gray: #8892b0;
    --text-dark: #1a1a1a;
    --font-main: 'Jost', sans-serif;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body kısmını şu şekilde güncelleyelim: */
body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; 
    background-attachment: fixed;
    background-position: center center; /* Orta-orta odaklı */
    background-repeat: no-repeat;
    background-size: cover;
}

/* --- KUSURSUZ MOBİL SLIDER RESİM AYARI --- */
.hero-slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; /* Resmi her zaman tam ortadan odaklar */
    z-index: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}


section {
    background-color: rgba(255, 255, 255, 0.9); /* Resim alttan hafif görünsün diye */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
/* Premium Buton Stili */
.custom-file-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7a31d4 0%, #2a75f3 100%);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(122, 49, 212, 0.3);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}
.custom-file-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(122, 49, 212, 0.5);
}
.custom-file-btn i { margin-right: 8px; }
a, button {
    text-decoration: none;
    cursor: none;
}

ul {
    list-style: none;
}

.bg-light {
    background-color: #fff;
}

/* Logo Görseli Ayarları */
.logo-image {
    max-width: 180px; /* Logonuzun genişliğini burayı değiştirerek ayarlayabilirsiniz */
    height: auto;     /* Orantılı küçülmesini sağlar */
    display: block;
    object-fit: contain;
}

/* Logonun Tıklanabilir Link Alanı (Tasarımı bozmaması için) */
a.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.header-dark {
    background-color: #1a1a1a !important; /* Arka planı koyu yapar */
    position: fixed !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2); /* Alt sayfalarda belirgin olması için hafif gölge */
}

/* ==========================================================================
   ÖZEL MOUSE İMLECİ (CUSTOM CURSOR)
   ========================================================================== */
.cursor-dot {
    position: fixed; /* absolute yerine fixed olmalı */
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue, #0088ff); /* Kendi mavi tonunuz */
    border-radius: 50%;
    pointer-events: none; /* Tıklamaları engellememesi için kritik */
    z-index: 9999;
}

.cursor-outline {
    position: fixed; /* absolute yerine fixed olmalı */
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-blue, #0088ff);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: width 0.2s, height 0.2s, background-color 0.2s; /* Hover efekti yumuşaklığı için */
}
body.video-modal-active,
body.video-modal-active a,
body.video-modal-active button,
body.video-modal-active .close-video,
body.quote-modal-active, 
body.quote-modal-active a, 
body.quote-modal-active button, 
body.quote-modal-active input, 
body.quote-modal-active textarea {
    /* Tarayıcının standart imlecine döner (beyaz ok veya el) */
    cursor: auto !important; 
}

/* Modal etkinken özel mavi imleçleri tamamen gizle */
body.video-modal-active .cursor-dot,
body.video-modal-active .cursor-outline,
body.quote-modal-active .cursor-dot, 
body.quote-modal-active .cursor-outline {
    display: none !important;
}

/* =========================================
   SU DAMLASI (BALONCUK) PATLAMA EFEKTİ
   ========================================= */
.water-splash {
    position: fixed; /* absolute yerine fixed olmalı */
    width: 20px;
    height: 20px;
    background-color: rgba(0, 136, 255, 0.4); /* Kendi temanızdaki mavi tonu */
    border-radius: 50%;
    transform: translate(-50%, -50%); /* Tam farenin ortasına hizalar */
    pointer-events: none;
    z-index: 9999; /* En üstte görünmesi için kritik */
    animation: splashEffect 0.6s ease-out forwards;
}

@keyframes splashEffect {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4); /* Büyüyerek kaybolur */
        opacity: 0;
    }
}
.scroll-progress {
    position: fixed;
    top: 0; 
    left: 0; 
    width: 0%; 
    height: 4px;
    background: var(--primary-blue);
    z-index: 1000001; 
    transition: width 0.1s ease-out;
}

/* ==========================================================================
   2. KUSURSUZ PRELOADER
   ========================================================================== */
.preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
    z-index: 99999; display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
.preloader-text {
    position: relative; z-index: 100000; color: #fff; font-size: 48px;
    font-weight: 700; display: flex; align-items: center; gap: 10px;
    letter-spacing: 2px; transition: opacity 0.5s ease, transform 0.5s ease;
}
body.loaded .preloader-text { opacity: 0; transform: translateY(-20px); }
.curtain-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.curtain-panel {
    position: absolute; top: 0; height: 100%; width: 25%;
    background-color: var(--deep-navy); transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.curtain-panel:nth-child(1) { left: 0; }
.curtain-panel:nth-child(2) { left: 25%; }
.curtain-panel:nth-child(3) { left: 50%; }
.curtain-panel:nth-child(4) { left: 75%; }
body.loaded .curtain-panel { transform: scaleX(0); }
body.loaded .curtain-panel:nth-child(1) { transition-delay: 0.2s; }
body.loaded .curtain-panel:nth-child(2) { transition-delay: 0.3s; }
body.loaded .curtain-panel:nth-child(3) { transition-delay: 0.4s; }
body.loaded .curtain-panel:nth-child(4) { transition-delay: 0.5s; }

/* ==========================================================================
   3. AOS (AŞAĞI KAYDIRILDIĞINDA AÇILAN ÖĞELER İÇİN)
   ========================================================================== */
.aos-init { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.aos-animate { opacity: 1; transform: translateY(0); }
[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
.aos-animate[data-aos="fade-right"], .aos-animate[data-aos="fade-left"] { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
.aos-animate[data-aos="zoom-in"] { transform: scale(1); }

/* ==========================================================================
   4. BUTONLAR & BİLEŞENLER
   ========================================================================== */
.btn-outline {
    border: 2px solid var(--text-white); color: var(--text-white);
    padding: 10px 24px; border-radius: 4px; font-weight: 600; transition: 0.3s;
}
.btn-outline:hover { background: var(--text-white); color: var(--dark-navy); }
.btn-solid {
    background: var(--text-white); color: var(--dark-navy);
    padding: 14px 30px; border-radius: 4px; font-weight: 600;
    display: inline-block; transition: 0.3s;
}
.btn-solid:hover { background: var(--primary-blue); color: var(--text-white); }
.section-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.blue-square { width: 16px; height: 16px; background: var(--primary-blue); }
.section-heading h2 { font-size: 36px; font-weight: 700; color: var(--dark-navy); }

/* ==========================================================================
   5. HEADER
   ========================================================================== */
.menu-toggle { 
    display: none; 
    color: var(--text-white); 
    font-size: 24px; 
    cursor: pointer; 
    transition: 0.3s;
}
.menu-toggle:hover { color: var(--primary-blue); }
.header {
    position: fixed; width: 100%; top: 0; left: 0; z-index: 100;
    padding: 20px 0; transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; color: var(--text-white); font-size: 24px; font-weight: 700; }
.navbar ul { display: flex; gap: 30px; }
.navbar a { color: var(--text-white); font-weight: 500; font-size: 14px; transition: 0.3s; }
.navbar a:hover, .navbar a.active { color: var(--primary-blue); }

/* ==========================================================================
   6. HERO BÖLÜMÜ & PLAK TASARIMI (Kusursuz GPU Parallax)
   ========================================================================== */
.hero-section { 
    position: relative; 
    height: 100vh; 
    min-height: 700px; 
    background-color: transparent;
    display: flex; 
    align-items: center; 
    padding-top: 120px; 
    overflow: hidden; 
}

/* GERÇEK PARALLAX KATMANI BURADA */
.hero-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    will-change: transform;
}

.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(5,13,26,0.95) 0%, rgba(5,13,26,0.7) 50%, rgba(5,13,26,0.4) 100%);
    z-index: 2; /* Resmin üstünde duracak */
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: 50px;
}

.hero-left { max-width: 600px; color: var(--text-white); }
.badge {
    border: 1px solid rgba(0, 136, 255, 0.4); background: rgba(0, 136, 255, 0.1);
    color: var(--primary-blue); padding: 6px 15px; border-radius: 30px;
    font-size: 12px; letter-spacing: 2px; display: inline-block; margin-bottom: 20px; font-weight: 600;
}
.hero-left h1 { font-size: 50px; line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
.hero-left p { color: #ccd6f6; margin-bottom: 40px; font-size: 18px; }

@keyframes fadeSlideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeSlideRight { from { opacity: 0; transform: translateX(-40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeSlideLeft { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes rotateText { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

body.loaded .hero-left .badge { animation: fadeSlideRight 0.8s ease-out 0.8s forwards; }
body.loaded .hero-left h1 { opacity: 0; animation: fadeSlideRight 0.8s ease-out 1s forwards; }
body.loaded .hero-left p { opacity: 0; animation: fadeSlideRight 0.8s ease-out 1.2s forwards; }
body.loaded .hero-left .btn-solid { opacity: 0; animation: fadeSlideUp 0.8s ease-out 1.4s forwards; }
body.loaded .stat-box.top-stat { opacity: 0; animation: fadeSlideLeft 0.8s ease-out 1.2s forwards; }
body.loaded .stat-box.bottom-stat { opacity: 0; animation: fadeSlideLeft 0.8s ease-out 1.4s forwards; }

.hero-right { position: relative; }
.stat-box {
    background: var(--text-white); color: var(--dark-navy);
    padding: 20px; border-radius: 8px; display: flex; align-items: center;
    gap: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.stat-box.bottom-stat { background: var(--primary-blue); color: var(--text-white); margin-top: 15px; margin-left: -40px; }
.stat-box h2 { font-size: 32px; line-height: 1; }
.stat-box span { font-size: 14px; font-weight: 500; line-height: 1.2; }

body.loaded .rotating-badge { animation: fadeSlideUp 0.8s ease-out 1.6s forwards; }

.vinyl-record {
    width: 100%; height: 100%; border-radius: 50%;
    background: url('https://images.unsplash.com/photo-1614613535308-eb5fbd3d2c17?auto=format&fit=crop&w=400&q=80') center/cover;
    position: relative; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.6), inset 0 0 30px rgba(0,0,0,0.8);
    border: 4px solid var(--deep-navy); animation: rotateText 12s linear infinite;
}
.vinyl-label {
    width: 80px; height: 80px; background-color: var(--primary-blue); border-radius: 50%;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.8); box-shadow: inset 0 0 10px rgba(0,0,0,0.3); position: absolute; z-index: 2;
}
.vinyl-label::after {
    content: ''; position: absolute; width: 12px; height: 12px;
    background-color: var(--light-bg); border-radius: 50%; border: 1px solid rgba(0,0,0,0.2);
}
.vinyl-label span { color: #fff; font-weight: 700; font-size: 15px; line-height: 1; z-index: 3; }
.vinyl-label .small-text { font-size: 9px; font-weight: 500; letter-spacing: 1px; }
.vinyl-svg-text { position: absolute; width: 100%; height: 100%; z-index: 1; transform: rotate(-90deg); opacity: 0.9; }

/* Slider Kapsayıcısı */
.hero-bg-slider {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}

/* Tekil Slaytlar */
.hero-bg-slider .slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    opacity: 0; transition: opacity 1.5s ease-in-out;
}

/* Aktif olan slayt görünür olur */
.hero-bg-slider .slide.active { opacity: 1; }
#tap-container {
    position: absolute;
    right: 15%; /* Okun gösterdiği sağ konuma hizalar. Görsele göre tam oturtmak için bu değeri 10% veya 200px gibi değiştirebilirsin */
    top: 45%;
    transform: translateY(-50%);
    width: 220px;
    z-index: 15;
    cursor: pointer;
    transition: .3s;
}

#musluk-img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,.45));
}

/* =========================================================
   DAMLA DAMLA AKAN SU EFEKTİ & ÇARPIŞMA (SPLASH)
   ========================================================= */
#water-stream {
    position: absolute;
    top: 115px;   
    left: 15px;   
    width: 20px;  
    /* overflow: hidden; KALDIRILDI! Aksi takdirde damla 260px'den sonra yok olur */
}

/* Damlaların Genel Tasarımı */
#water-stream span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;  
    height: 25px; 
    margin-left: -10px; 
    background: radial-gradient(circle at 30% 30%, #ffffff, #0088ff, #0052cc); 
    border-radius: 50%; 
    opacity: 0; 
    animation: dripDrop 1.8s ease-in infinite; /* SÜRE 1.8s */
    box-shadow: 0 5px 10px rgba(0, 136, 255, 0.4);
}

/* 3 Farklı Damlanın Gecikmesi */
#water-stream span:nth-child(1) { animation-delay: 0s; }
#water-stream span:nth-child(2) { animation-delay: 0.6s; }
#water-stream span:nth-child(3) { animation-delay: 1.2s; }

/* Musluk kapatıldığında suyu gizle */
.water-off {
    opacity: 0; 
    transition: 0.4s ease;
}

/* --- YERE ÇARPAN SU (SPLASH) HALKALARI --- */
#splash-stream {
    position: absolute;
    top: 115px; /* Başlangıcı water-stream ile aynı yerden aldık ki hizalama kusursuz olsun */
    left: 15px;
    width: 20px;
    z-index: 5;
    transition: opacity 0.4s ease;
}

/* Suyu kestiğinde sıçramalar da eşzamanlı yok olsun  */
#water-stream.water-off + #splash-stream {
    opacity: 0;
}

#splash-stream span {
    position: absolute;
    top: 560px; /* Damlanın 100% (Çarpışma) olduğu piksel ile BİREBİR aynı! */
    left: 50%;
    width: 40px;
    height: 10px;
    margin-left: -20px; /* Genişliğin yarısı ile tam merkeze oturtma */
    border: 2px solid #5d9cec; 
    border-radius: 50%;
    opacity: 0;
    animation: splashEffect 1.8s infinite; /* Damla ile aynı süre */
}

/* Damlalarla tam aynı saniyelerde yere çarpmaları için gecikmeler birebir aynı */
#splash-stream span:nth-child(1) { animation-delay: 0s; }
#splash-stream span:nth-child(2) { animation-delay: 0.6s; }
#splash-stream span:nth-child(3) { animation-delay: 1.2s; }

@keyframes splashEffect {
    0%, 90% { 
        /* Damla havada düşerken halkalar gizli ve küçüktür */
        transform: scale(0);
        opacity: 0;
    }
    95% { 
        /* Damlanın yere tam değdiği (560px) salise */
        transform: scale(0.2);
        opacity: 1;
    }
    100% { 
        /* Yere çarpıp etrafa yayılma anı */
        transform: scale(1.5);
        opacity: 0;
    }
}

/* --- DAMLAMA ANİMASYONU --- */
@keyframes dripDrop {
    0% {
        top: 105px;
        opacity: 0;
        transform: scale(0.2); 
    }
    10% {
        top: 112px;
        opacity: 1;
        transform: scale(1.1) scaleY(1.3);
    }
    20% {
        top: 130px;
        opacity: 1;
        transform: scale(0.9) scaleY(1.1);
    }
    80% {
        top: 480px;
        opacity: 0.8;
        transform: scale(0.7) scaleY(1.4); 
    }
    100% {
        top: 560px; /* Damla bu piksele değdiği an üstteki splashEffect 95% anına girer */
        opacity: 0;
        transform: scale(0.1);
    }
}
/* Yazıların okunması için koyu filtre */
.slider-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(13, 27, 42, 0.7); z-index: 1;
}

/* ==========================================================================
   7. İÇERİK BÖLÜMLERİ & 3D KART EFEKTİ
   ========================================================================== */
   .features-overlap { 
    position: relative; 
    z-index: 20; 
    margin-top: -60px; 
    background: transparent !important; /* EKLENMESİ GEREKEN KOD: Beyaz bant oluşumunu engeller */
}
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    background: rgba(255, 255, 255, 0.85); box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border-radius: 8px; overflow: hidden;
}
.feature-card {
    padding: 40px 30px; display: flex; gap: 20px; border-right: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
    transform-style: preserve-3d; perspective: 1000px;
}
.feature-card:last-child { border-right: none; }
.feature-card:hover {
    background: var(--dark-navy); color: var(--text-white);
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 136, 255, 0.2); z-index: 10; position: relative;
}
.feature-card:hover p { color: var(--text-gray); }
.feature-card:hover .icon-wrap { color: var(--primary-blue); transform: scale(1.1); }
.icon-wrap { font-size: 40px; color: var(--dark-navy); transition: 0.3s; }
.content-wrap h3 { font-size: 18px; margin-bottom: 10px; }
.content-wrap p { font-size: 14px; color: var(--text-gray); }

.about-section { padding: 100px 0; background: var(--light-bg); }
.about-inner { display: flex; align-items: center; gap: 60px; }
.about-text { flex: 1; }
.about-text p { color: #555; margin-bottom: 20px; }
.about-images { flex: 1; position: relative; }
.about-images .img-main { width: 100%; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.completed-badge {
    position: absolute; bottom: -30px; left: -30px; background: var(--primary-blue);
    color: #fff; padding: 30px; box-shadow: 0 10px 40px rgba(0, 136, 255, 0.3);
    text-align: center; border-radius: 8px;
}
.completed-badge h2 { font-size: 48px; color: #fff; line-height: 1; }

.team-section { padding: 80px 0; background: #fff; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.team-member img {
    width: 150px; height: 150px; border-radius: 50%; object-fit: cover;
    margin-bottom: 20px; border: 4px solid var(--light-bg); transition: 0.3s;
}
.team-member:hover img { border-color: var(--primary-blue); transform: scale(1.05); }
.team-member h4 { font-size: 18px; color: var(--dark-navy); margin-bottom: 5px; }
.team-member p { color: var(--primary-blue); font-weight: 500; font-size: 14px; }

.four-features-section { padding: 80px 0; background-color: var(--dark-navy); }
.four-features-section .section-heading h2 {
    color: #ffffff !important;
}

.four-features-section .section-heading .blue-square {
    background-color: #ffffff !important;
}
.features-four-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid #ddd; background: #fff; }
.feature-box {
    padding: 50px 40px; border: 1px solid #ddd; text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease; transform-style: preserve-3d; perspective: 1000px;
}
.feature-box:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 136, 255, 0.2); z-index: 10; position: relative; border-color: transparent;
}
.feature-box i { font-size: 40px; margin-bottom: 20px; color: var(--primary-blue); }

.process-section { padding: 80px 0; background: #fff; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.step-icon {
    width: 60px; height: 60px; background: var(--primary-blue); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; font-weight: 700; margin: 0 auto 20px; box-shadow: 0 5px 15px rgba(0, 136, 255, 0.3);
}
.process-step h4 { font-size: 18px; color: var(--dark-navy); margin-bottom: 10px; }
.process-step p { color: var(--text-gray); font-size: 14px; }

.projects-section { padding: 80px 0; background: var(--light-bg); }
.projects-header { margin-bottom: 50px; }
.projects-list { display: flex; flex-direction: column; gap: 30px; }
.project-list-item { position: relative; height: 250px; border-radius: 10px; overflow: hidden; display: flex; align-items: center; padding: 0 50px; }
.project-list-item img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; filter: brightness(0.5); transition: 0.5s; }
.project-list-item:hover img { filter: brightness(0.3); transform: scale(1.05); }
.project-info { position: relative; z-index: 2; color: var(--text-white); }
.project-info h3 { font-size: 32px; margin-bottom: 5px; }
.project-info p { color: #ccc; }

.video-stats-section { padding: 80px 0; background: #fff; }
/* --- VİDEO KAPAK ALANI --- */
.video-banner {
    /* ARKAPLAN RESMİ BURAYA EKLENİYOR: Kendi resminin adını 'image/...' kısmına yaz */
    background-image: url('image/banyo3.jpeg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Resmi sabitler, aşağı kaydırırken şık bir efekt verir */
    background-color: #0A1128; /* Resim yüklenene kadar gece mavisi görünür */
    
    height: 450px; /* 800px çok devasa kalır, 450px çok daha derli toplu ve şıktır */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px; /* Köşeleri biraz daha yumuşattık */
    max-width: 1000px;
    width: 95%;        
    margin: 0 auto 60px auto; 
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15); /* Hafif derinlik gölgesi */
}

/* Resmin üzerine hafif siyah bir filtre atalım ki Play butonu ve arkadaki resim daha asil dursun */
.video-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4); /* Yüzde 40 oranında siyah karanlık filtre */
    z-index: 1;
}

/* Play Butonunu filtrenin üstüne çıkartıyoruz */
.video-banner .play-btn {
    position: relative;
    z-index: 2; 
}
.play-btn {
    width: 80px; height: 80px; background: var(--primary-blue); color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px; cursor: pointer; box-shadow: 0 0 0 0 rgba(0, 136, 255, 0.7);
    animation: pulse-blue 2s infinite; 
}

@keyframes pulse-blue {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 136, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(0, 136, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 136, 255, 0); }
}

.play-btn:hover { transform: scale(1.1); }
.stats-text p { text-align: center; color: var(--text-gray); max-width: 800px; margin: 0 auto 50px; font-size: 18px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item h2 { font-size: 48px; color: var(--dark-bg); margin-bottom: 5px; line-height: 1; }
.stat-item p { color: var(--text-gray); font-weight: 500; }


.why-us-section { padding: 80px 0; background-color: var(--dark-navy); color: #fff; }
.why-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.why-us-item i { font-size: 40px; color: var(--primary-blue); margin-bottom: 20px; }
.why-us-item h4 { font-size: 18px; margin-bottom: 10px; }
.why-us-item p { color: var(--text-gray); font-size: 14px; }

.faq-section { padding: 80px 0; background: #fff; }
.faq-section .testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-bottom: 50px; }
.testimonial-card { background: #fff; padding: 30px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.testimonial-card .user-info { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.testimonial-card img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; }
.testimonial-card h4 { font-size: 16px; color: var(--dark-navy); }
.testimonial-card p { color: #555; font-style: italic; font-size: 14px; }

.faq-inner { max-width: 800px; margin: 0 auto; }
.accordion { margin-bottom: 30px; }
.accordion-item { border-bottom: 1px solid #eee; }
.accordion-header {
    width: 100%; text-align: left; background: none; border: none; padding: 20px 0;
    font-size: 16px; font-weight: 600; color: var(--text-dark); cursor: pointer;
    display: flex; justify-content: space-between; align-items: center; font-family: var(--font-main);
}
.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; color: var(--text-gray); }
.accordion-content p { padding-bottom: 20px; }
.support-link { color: var(--primary-blue); font-weight: 600; font-size: 14px; text-decoration: underline; display: block; text-align: center; }

/* ==========================================================================
   8. FOOTER
   ========================================================================== */
.site-footer { background: var(--deep-navy); color: var(--text-white); }
.cta-blue-section { background: var(--primary-blue); padding: 50px 0; }
.cta-flex { display: flex; justify-content: space-between; align-items: center; }
.cta-flex h2 { font-size: 36px; line-height: 1.2; color: #fff; }
.footer-main { padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-col h4 { font-size: 18px; margin-bottom: 25px; color: var(--text-white); }
.footer-col ul { display: flex; flex-direction: column; gap: 15px; }
.footer-col a { color: var(--text-gray); transition: 0.3s; }
.footer-col a:hover { color: var(--primary-blue); }
.contact-info li { color: var(--text-gray); display: flex; gap: 15px; align-items: flex-start; }
.contact-info i { color: var(--primary-blue); margin-top: 5px; }
.footer-socials { display: flex; gap: 15px; margin-top: 25px; }
.footer-socials a {
    width: 40px; height: 40px; border: 1px solid #333; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--text-white); transition: 0.3s;
}
.footer-socials a:hover { background: var(--primary-blue); border-color: var(--primary-blue); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding: 25px 0; color: var(--text-gray); font-size: 14px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.bottom-links { display: flex; gap: 20px; }
.bottom-links a { color: var(--text-gray); }

.fixed-icons { position: fixed; bottom: 30px; right: 30px; display: flex; flex-direction: column; gap: 15px; z-index: 1000; }
.fixed-icons a {
    width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 30px; color: #fff; box-shadow: 0 5px 15px rgba(0,0,0,0.3); transition: 0.3s;
}
.fixed-icons a:hover { transform: scale(1.1) translateY(-5px); }
.whatsapp-icon { background-color: #25d366; }
.phone-icon { background-color: var(--primary-blue); }


/* TÜM ALT BÖLÜMLERİ YARI ŞEFFAF YAP (Arkadaki resim görünsün) */
.about-section,
.four-features-section,
.process-section,
.projects-section,
.video-stats-section,
.faq-section {
    background: rgba(255, 255, 255, 0.85) !important;
}

/* Koyu renkli "Neden Biz?" bölümü için lacivert yarı şeffaf */
.why-us-section {
    background-color: var(--dark-navy);
}
/* ==========================================================================
   GENİŞ EKRANLAR VE 1920px MONİTÖRLER İÇİN DÜZELTME (1441px ve Üzeri)
   ========================================================================== */
@media (min-width: 1441px) {
    
    /* Geniş ekranlarda musluğu ekranın sağ kenarına çok daha yakın tutuyoruz */
    #tap-container {
        right: 3% !important; /* Orijinal %15 değeri ekranı ortalamasına sebep oluyordu */
    }

    /* İstatistik kutularını da musluğa değmemesi için hafifçe sola itiyoruz */
    .hero-right {
        margin-right: 150px !important; 
    }
}
/* ==========================================================================
   LAPTOP VE KÜÇÜK MASAÜSTÜ EKRAN DÜZELTMESİ (1025px - 1440px arası)
   ========================================================================== */
@media (min-width: 1025px) and (max-width: 1440px) {
    
    /* Musluğu iyice küçültüp en sağ köşeye sıfırlıyoruz */
    #tap-container {
        right: 0 !important; 
        width: 160px !important; 
        top: 35% !important; 
    }

    /* Küçülen musluğun ağzına göre damlayı yeniden hizaladık */
    #water-stream, 
    #splash-stream {
        top: 85px !important; 
        left: 10px !important;
    }

    /* Kutuları musluktan tamamen kaçırmak için sola itiyoruz */
    .hero-right {
        margin-right: 160px !important; 
    }

    /* Kutu boyutlarını laptop ekranına uygun olacak şekilde kibarlaştırdık */
    .stat-box {
        padding: 15px 20px !important;
        gap: 10px !important;
    }
    
    .stat-box h2 {
        font-size: 26px !important; /* 32px'den 26px'e düştü */
    }

    .stat-box span {
        font-size: 12px !important;
    }

    /* Sol taraftaki büyük başlığı da taşıp sıkışmaması için küçülttük */
    .hero-left h1 {
        font-size: 40px !important; 
    }
}
/* ==========================================================================
   9. MOBİL UYUM (RESPONSIVE TASARIM)
   Telefon ve küçük tablet ekranları için medya sorguları
   ========================================================================== */
@media (max-width: 1024px) {
    /* Telefonlarda parmak kullanıldığı için mouse imlecini ve gizleme kodunu kaldırıyoruz */
    body, a, button { cursor: auto; }
    .cursor-dot, .cursor-outline { display: none !important; }

    /* 1. SIKIŞMAYI ÖNLE: Hero bölümünü esnek yapıyoruz (Yazılar alt satıra geçtikçe uzar) */
    .hero-section {
        height: auto !important; 
        min-height: 100vh;
        padding-bottom: 80px; 
    }

    /* 2. MUSLUĞU VE EFEKTLERİ GİZLE: Ekran daraldığında yazıların üzerine binmesini engeller */
    #tap-container,
    #water-stream,
    #splash-stream {
        display: none !important;
    }

    /* Header & Hamburger Menü (Mobil) */
    .header-inner { flex-direction: row; justify-content: space-between; align-items: center; }
    .menu-toggle { display: block; } /* Butonu telefonda göster */
    .header-btn { display: none; } /* Butonu mobilde gizle */
    
    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(6, 11, 20, 0.98);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        max-height: 0; /* Başlangıçta menüyü gizle */
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }
    .navbar.active {
        max-height: 400px; /* Tıklanınca menüyü aç */
    }
    .navbar ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
    }

    /* Hero (Giriş) Bölümü */
    /* Mobilde parallax kasmasın diye transform iptal */
    .hero-section::before { transform: none !important; }
    
    .hero-content { flex-direction: column; text-align: center; margin-top: 120px; }
    .hero-left h1 { font-size: 36px; }
    .hero-left p { font-size: 16px; }
    
    /* İstatistik kutuları ile butonun arasına mesafe koyduk (margin-top: 50px) */
    .hero-right { display: flex; flex-direction: column; align-items: center; width: 100%; margin-top: 50px; padding-bottom: 50px; }
    .stat-box { width: 100%; max-width: 300px; justify-content: center; }
    .stat-box.bottom-stat { margin-left: 0; margin-top: 15px; }
    
    /* Mobil Ekranda Plağı Tamamen Gizliyoruz */
    .rotating-badge { display: none !important; }

    /* Tüm Çoklu Izgaraları (Grid Sütunlarını) Tek Sütuna Düşürüyoruz */
    .features-grid, 
    .team-grid, 
    .features-four-grid, 
    .process-grid, 
    .stats-grid, 
    .why-us-grid, 
    .testimonial-grid, 
    .footer-grid { 
        grid-template-columns: 1fr; /* %100 genişlik */
        gap: 20px; 
    }

    /* Özel Kart ve Kutuların Düzenlemeleri */
    .features-overlap { margin-top: 30px; }
    .feature-card { border-right: none; border-bottom: 1px solid #eee; padding: 30px 20px; flex-direction: column; text-align: center; }
    .feature-card:last-child { border-bottom: none; }
    
    .about-inner { flex-direction: column; text-align: center; }
    .section-heading { justify-content: center; flex-direction: column; text-align: center; }
    
    .completed-badge { position: relative; bottom: auto; left: auto; margin-top: -30px; width: 80%; margin-left: auto; margin-right: auto; padding: 15px; }
    .completed-badge h2 { font-size: 32px; }

    .project-list-item { padding: 0 20px; text-align: center; }
    .project-list-item h3 { font-size: 24px; }
    
    .cta-flex { flex-direction: column; text-align: center; gap: 20px; }
    .cta-flex h2 { font-size: 28px; }
    
    .flex-between { flex-direction: column; gap: 15px; text-align: center; }
    .bottom-links { flex-wrap: wrap; justify-content: center; }

    /* Sabit Whatsapp & Telefon İkonları */
    .fixed-icons { bottom: 15px; right: 15px; gap: 10px; }
    .fixed-icons a { width: 50px; height: 50px; font-size: 24px; }
}
/* ==========================================================================
   10. VİDEO POPUP (MODAL) SİSTEMİ
   ========================================================================== */
.video-modal {
    display: none; 
    position: fixed;
    z-index: 999999; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); 
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.show {
    display: flex;
    opacity: 1;
}

.video-modal-content {
    position: relative;
    width: 80%; 
    max-width: 800px; 
    max-height: 80vh; 
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    border-radius: 8px;
    background: #000;
    transform: scale(0.8); 
    transition: transform 0.3s ease;
    margin: auto; 
}

.video-modal-content video {
    width: 100%;
    max-height: 80vh; 
    object-fit: contain; 
    display: block;
    border-radius: 8px;
}

.video-modal.show .video-modal-content {
    transform: scale(1); 
}

/* Kapatma Çarpısı (X) */
.close-video {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px; 
    font-weight: 300; 
    cursor: pointer;
    transition: color 0.3s, transform 0.3s;
    z-index: 1000000; 
    background: rgba(0, 0, 0, 0.5); 
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; 
}

.close-video:hover {
    color: var(--primary-blue);
    transform: scale(1.1) rotate(90deg); 
}

/* ==========================================================================
   11. TEKLİF İSTE POPUP FORMU
   ========================================================================== */
.quote-modal {
    display: none;
    position: fixed;
    z-index: 999999; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(10, 17, 40, 0.9); 
    align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quote-modal.show {
    display: flex;
    opacity: 1;
}

.quote-modal-content {
    background: #fff;
    width: 90%; 
    max-width: 500px; 
    padding: 40px;
    border-radius: 8px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.quote-modal.show .quote-modal-content {
    transform: translateY(0); 
}

.quote-modal-content h2 { color: var(--dark-navy); margin-bottom: 5px; }
.quote-modal-content p { color: var(--text-gray); margin-bottom: 25px; font-size: 14px; }

/* Form Elemanları */
.input-group { margin-bottom: 20px; text-align: left; }
.input-group label {
    display: block; margin-bottom: 8px; font-weight: 600; color: var(--dark-navy); font-size: 14px;
}
.input-group input, .input-group textarea {
    width: 100%; padding: 12px 15px;
    border: 1px solid #ddd; border-radius: 4px;
    font-family: var(--font-main); font-size: 14px;
    transition: border-color 0.3s;
    background: #f9f9f9;
}
.input-group input:focus, .input-group textarea:focus {
    border-color: var(--primary-blue); background: #fff; outline: none;
}

.submit-btn { width: 100%; border: none; cursor: pointer; text-align: center; }

/* Kapatma Çarpısı */
.close-quote {
    position: absolute; top: 15px; right: 20px;
    font-size: 30px; font-weight: bold;
    color: #ccc; cursor: pointer; transition: 0.3s;
}
.close-quote:hover { color: var(--primary-blue); }
/* ==========================================================================
   12. DEĞERLENDİRME (YORUM YAP) POPUP FORMU
   ========================================================================== */
.review-modal {
    display: none;
    position: fixed;
    z-index: 999999; 
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(10, 17, 40, 0.9); 
    align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-modal.show {
    display: flex;
    opacity: 1;
}

.review-modal-content {
    background: #fff;
    width: 90%; 
    max-width: 500px; 
    padding: 40px;
    border-radius: 8px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
}

.review-modal.show .review-modal-content {
    transform: translateY(0); 
}

.review-modal-content h2 { color: var(--dark-navy); margin-bottom: 5px; }
.review-modal-content p { color: var(--text-gray); margin-bottom: 25px; font-size: 14px; }

.close-review {
    position: absolute; top: 15px; right: 20px;
    font-size: 30px; font-weight: bold;
    color: #ccc; cursor: pointer; transition: 0.3s;
}

.close-review:hover { color: var(--primary-blue); }

/* Mobil Ekranlar İçin Butonları Alt Alta Al */
@media (max-width: 1024px) {
    .header-btn {
        display: none !important; /* Menü kapalıyken header'daki butonları mobilde gizler */
    }
}
/* ==========================================================================
   HEADER'I EKSTRA DARALTMA VE İNCELTME AYARLARI
   ========================================================================== */
.header {
    padding: 5px 0 !important; /* Dikey boşluğu tamamen minimuma indirdik */
    min-height: 60px; /* Header'ın çok fazla ezilmesini önlemek için ideal ince yükseklik */
}

.logo-image {
    max-height: 80px !important; /* Logonun boyunu biraz daha kısaltarak header'ı şişirmesini engelledik */
    width: auto;
}

/* Header içindeki butonların boyutunu da küçültelim ki dikeyde yer kaplamasınlar */
.header-btn .btn-outline {
    padding: 6px 18px !important; 
    font-size: 13px !important;
}

/* Değerlendirme butonları yan yana geldiğinde çok bitişik durmasın */
.header-btn {
    align-items: center;
}
/* =========================================
   MOBİL VE MASAÜSTÜ BUTON GİZLEME AYARLARI
   ========================================= */

/* 1024px ve altı (Tablet ve Mobil) için ayarlar */
@media (max-width: 1024px) {
    /* Sağ üstteki yan yana butonları gizle */
    .desktop-only-btn {
        display: none !important;
    }
    
    /* Mobil menü içindeki butonları göster */
    .mobile-only-btn {
        display: block !important;
    }
}

/* 1025px ve üzeri (Bilgisayar) için ayarlar */
@media (min-width: 1025px) {
    /* Bilgisayarda menü içindeki mobil butonları gizle */
    .mobile-only-btn {
        display: none !important;
    }
}
/* =========================================
   MÜŞTERİ YORUMLARI SWIPER NOKTA (PAGINATION) AYARLARI
   ========================================= */

/* Kartlar ile noktalar arasına mesafe (boşluk) ekler */
.testimonial-slider {
    padding-bottom: 60px !important; 
}

/* Noktaların hizasını ayarlar */
.testimonial-slider .swiper-pagination {
    bottom: 0 !important; 
}

/* Pasif (Tıklanmamış) Noktaların Tasarımı */
.testimonial-slider .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #b0b0b0 !important;
    opacity: 0.6 !important;
    transition: all 0.3s ease !important; /* Yumuşak geçiş */
    margin: 0 6px !important;
}

/* Üzerine gelince belirginleşme efekti */
.testimonial-slider .swiper-pagination-bullet:hover {
    opacity: 1 !important;
    background: var(--primary-blue, #0088ff) !important;
}

/* Aktif (Seçili) Noktanın Tasarımı - Modern Hap (Pill) Görünümü */
.testimonial-slider .swiper-pagination-bullet-active {
    background: var(--primary-blue, #0088ff) !important; /* Temanızın mavisi */
    width: 28px !important; /* Genişleyerek diğerlerinden ayrılır */
    border-radius: 5px !important;
    opacity: 1 !important;
}
/* =========================================
   MÜŞTERİ YORUMLARI YÖN OKLARI (NAVIGATION)
   ========================================= */
.testimonial-slider {
    padding: 20px 40px !important; /* Okların dışarı taşması için yanlara boşluk */
}

/* Okların genel rengi ve boyutu */
.testimonial-slider .swiper-button-next,
.testimonial-slider .swiper-button-prev {
    color: var(--primary-blue, #0088ff) !important; /* Temanızın mavisi */
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1); /* Hafif gölge */
    transition: all 0.3s ease;
}

/* Okların içindeki ikon boyutunu küçültme */
.testimonial-slider .swiper-button-next::after,
.testimonial-slider .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: bold;
}

/* Hover efekti */
.testimonial-slider .swiper-button-next:hover,
.testimonial-slider .swiper-button-prev:hover {
    background: var(--primary-blue, #0088ff) !important;
    color: white !important;
}

/* Geri/İleri gidemeyecek durumda soluk görünmesi */
.testimonial-slider .swiper-button-disabled {
    opacity: 0.3 !important;
    cursor: not-allowed;
}

/* Mobil görünüm ayarı */
@media (max-width: 768px) {
    .testimonial-slider {
        padding: 10px 0 !important;
    }
    .testimonial-slider .swiper-button-next,
    .testimonial-slider .swiper-button-prev {
        display: none !important; /* Mobilde parmakla kaydırılacağı için okları gizle */
    }
}
/* =========================================
   MOBİLDEKİ BEYAZ BOŞLUK (HERO ve ÖZELLİKLER ARASI) ÇÖZÜMÜ
   ========================================= */
@media (max-width: 991px) {
    /* 1. Arka plan resminin, uzayan içeriğin sonuna kadar gitmesini zorunlu kılıyoruz */
    .hero-section {
        height: auto !important;
        padding-bottom: 60px !important; /* Kutuların altında resim biraz devam etsin */
    }

    .hero-bg-slider,
    .hero-bg-slider .slide,
    .slider-overlay {
        height: 100% !important;
    }

    /* 2. Alttaki özellikler kısmını yukarı çekip o beyaz boşluğu yutmasını sağlıyoruz */
    .features-overlap {
        margin-top: -40px !important; /* Yukarı doğru çeker, boşluğu kapatır */
        position: relative;
        z-index: 10; /* Arka planın üstünde görünmesini garanti eder */
    }
    
    /* İstatistik kutularının altındaki gereksiz boşluğu sıfırlayalım */
    .hero-right {
        margin-bottom: 0 !important;
    }
}
/* Premium Buton Stili */
.custom-file-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #7a31d4 0%, #2a75f3 100%);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(122, 49, 212, 0.3);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}
.custom-file-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(122, 49, 212, 0.5);
}
.custom-file-btn i { margin-right: 8px; }
