/* --- SOFT YUMUŞAK HİJYEN TASARIM SİSTEMİ --- */
:root {
    --lavantis-base: #a36cd9;
    --lavantis-soft-glow: 0 10px 30px rgba(163, 108, 217, 0.25);
    --bg-black: #0c0b0e;             /* Çok hafif yumuşatılmış gece siyahı */
    --bg-dark-gray: #141218;        /* Soft geçiş antrasiti */
    --border-color: rgba(163, 108, 217, 0.12);
}

/* Genel Gövde Kuralları */
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-black);
    color: #f1eff4;
    overflow-x: hidden;
}

.bg-soft-dark { background-color: var(--bg-dark-gray); }
.bg-soft-black { background-color: var(--bg-black); }
.text-lavantis { color: var(--lavantis-base); }

/* Genel Yumuşaklık Ölçüleri (Oval Çerçeveler) */
.rounded-container {
    border-radius: 24px !important; /* Büyük ve pürüzsüz oval köşeler */
}

/* Geniş Paddingler */
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }
.mb-6 { margin-bottom: 4rem; }

/* Yumuşak Başlık Mimarisi */
.section-tag {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--lavantis-base);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 2.3rem;
    color: #ffffff;
}
.block-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.85rem;
    color: #fff;
    line-height: 1.4;
}
.block-desc {
    color: #a9a6b0;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 300;
}

/* Üst Yumuşak Çizgi Işıltısı */
.border-soft-top {
    border-top: 1px solid var(--border-color);
    box-shadow: inset 0 20px 30px -20px rgba(163, 108, 217, 0.15);
}

/* --- NAVBAR --- */
.navbar {
    background-color: rgba(12, 11, 14, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 18px 0;
}
/* El Yazısı Detaylı Logo */
.soft-logo {
    font-family: 'Sacramento', cursive;
    font-size: 2.8rem;
    font-weight: 400;
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(163, 108, 217, 0.4);
}
.soft-nav .nav-link {
    color: #d1cbd6 !important;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-left: 25px;
    transition: all 0.3s ease;
}
.soft-nav .nav-link:hover {
    color: var(--lavantis-base) !important;
}

/* Yumuşak Oval Butonlar */
.btn-soft-hero {
    background: var(--lavantis-base);
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    padding: 14px 40px;
    border-radius: 50px; /* Tam yuvarlak oval hatlar */
    border: none;
    box-shadow: var(--lavantis-soft-glow);
    transition: all 0.3s ease;
}
.btn-soft-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(163, 108, 217, 0.45);
    color: #fff;
}
.btn-soft-sm {
    background: transparent;
    color: var(--lavantis-base);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 10px 22px;
    border: 1.5px solid var(--lavantis-base);
    border-radius: 50px;
    transition: all 0.3s ease;
}
.btn-soft-sm:hover {
    background: var(--lavantis-base);
    color: #fff;
    box-shadow: var(--lavantis-soft-glow);
}

/* --- 1. HERO SLIDER --- */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
}
.hero-section .carousel, .hero-section .carousel-inner, .hero-section .carousel-item { height: 100%; }
.hero-section .carousel-item { background-size: cover; background-position: center; }
.hero-section .carousel-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(12,11,14,0.3) 0%, rgba(12,11,14,0.92) 100%);
}
.hero-section .carousel-caption {
    position: absolute;
    top: 53%; transform: translateY(-50%);
    bottom: auto; left: 8%; right: 8%;
    text-align: center;
}
.hero-section .sub-title {
    font-family: 'Sacramento', cursive;
    font-size: 2.5rem;
    color: var(--lavantis-base);
    display: block;
    margin-bottom: 10px;
}
.hero-section .main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.8rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}
.hero-section .desc-text {
    font-size: 1.1rem;
    color: #d1cbd6;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}

/* Aşağı Ok Göstergesi */
.scroll-down-arrow {
    position: absolute;
    bottom: 35px; left: 50%; transform: translateX(-50%);
    color: #fff; z-index: 10;
    font-size: 1.8rem;
    animation: floatingArrow 2s infinite;
}
@keyframes floatingArrow {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); color: var(--lavantis-base); }
}

/* --- 2. BEFORE/AFTER ENGINE --- */
.ba-slider {
    position: relative;
    width: 100%; aspect-ratio: 4/3;
}
.ba-slider img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-slider .img-container {
    position: absolute; top: 0; left: 0; width: 50%; height: 100%;
    overflow: hidden; border-right: 2.5px solid #fff;
}
.ba-slider .img-container img { width: 100%; height: 100%; max-width: none; }
.ba-slider .slider-input {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0; cursor: ew-resize; z-index: 3;
}
.ba-slider .slider-button {
    position: absolute; top: 0; left: 50%; width: 0; height: 100%;
    transform: translateX(-50%); z-index: 2; pointer-events: none;
}
.ba-slider .slider-button::after {
    content: '↔';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 44px; height: 44px; background-color: var(--bg-black);
    color: #fff; border: 2px solid var(--lavantis-base); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; box-shadow: var(--lavantis-soft-glow);
}
.features-soft span { font-size: 0.85rem; color: #e1dde6; font-weight: 400; }

/* --- 3. SOFT GALERİ --- */
.filter-btn {
    border: 1px solid rgba(163, 108, 217, 0.15);
    color: #bfaecf; background: rgba(20, 18, 24, 0.6);
    font-size: 0.8rem; font-weight: 500; padding: 10px 24px;
    border-radius: 50px; transition: all 0.3s ease;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--lavantis-base); color: #fff !important;
    box-shadow: var(--lavantis-soft-glow); border-color: var(--lavantis-base);
}
.gallery-item { transition: all 0.4s ease; }
.gallery-box {
    position: relative; aspect-ratio: 1/1; overflow: hidden;
    background-color: #000;
}
.gallery-box img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(12,11,14,0.92) 0%, rgba(163,108,217,0.15) 100%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 25px; opacity: 0; transition: opacity 0.35s ease;
}
.gallery-overlay h5 { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: #fff; }
.gallery-overlay span { font-size: 0.75rem; color: var(--lavantis-base); text-transform: uppercase; letter-spacing: 1px; }
.gallery-box:hover img { transform: scale(1.05); }
.gallery-box:hover .gallery-overlay { opacity: 1; }
.gallery-item.hide { display: none; }

/* --- 4. REELS VİDEOLARI --- */
.reels-card {
    position: relative; aspect-ratio: 9/16;
    background-color: #050506; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.reels-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.reels-card:hover { transform: scale(1.02); box-shadow: var(--lavantis-soft-glow); border-color: rgba(163,108,217,0.3); }
.reels-card:hover .reels-video { opacity: 1; }
.reels-icon {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 48px; height: 48px; background: rgba(12,11,14,0.75);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem; pointer-events: none; transition: all 0.3s ease;
}
.reels-card:hover .reels-icon { background: var(--lavantis-base); transform: translate(-50%, -50%) scale(0.9); }

/* --- 5. SONSUZ KAYAN YORUMLAR --- */
.review-section { border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.ticker-wrapper { width: 100%; overflow: hidden; padding: 10px 0; }
.ticker-track { display: flex; width: max-content; animation: softTicker 30s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.review-card {
    width: 340px; background: var(--bg-dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.02); padding: 25px;
    margin-right: 30px; border-radius: 16px; box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.review-card p { color: #d1cbd6; font-size: 0.9rem; font-style: italic; line-height: 1.6; }
.stars i { color: var(--lavantis-base); font-size: 0.8rem; margin-right: 1px; }
.client-name { font-size: 0.8rem; font-weight: 500; color: #fff; display: block; margin-top: 12px; }
@keyframes softTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- 6. FOOTER --- */
.footer-brand { font-family: 'Sacramento', cursive; font-size: 3rem; color: #fff; }
.footer-title { font-size: 0.95rem; font-weight: 500; letter-spacing: 1px; color: #fff; }
.text-footer-muted { color: #a9a6b0; line-height: 1.7; }
.footer-menu li { margin-bottom: 10px; }
.footer-menu a { color: #a9a6b0; text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-menu a:hover { color: var(--lavantis-base); }
.footer-social-icons a {
    width: 40px; height: 40px; background: var(--bg-dark-gray);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.1rem; text-decoration: none; transition: all 0.3s ease;
}
.footer-social-icons a:hover { background: var(--lavantis-base); transform: translateY(-3px); }
.map-container { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); }

/* --- RESPONSIVE MEDIA DIZAYNI --- */
@media (max-width: 991px) {
    .hero-section .main-title { font-size: 2.6rem; }
    .hero-section .sub-title { font-size: 2rem; }
    .navbar-collapse {
        background: rgba(12, 11, 14, 0.98); padding: 25px; margin-top: 15px;
        border-radius: 16px; border: 1px solid rgba(163, 108, 217, 0.2);
    }
    .soft-nav .nav-link { margin: 10px 0; margin-left: 0; }
    .py-6 { padding-top: 4rem; padding-bottom: 4rem; }
    .section-title { font-size: 1.8rem; }
}
@media (max-width: 576px) {
    .hero-section .main-title { font-size: 2rem; }
    .btn-soft-hero { padding: 12px 30px; font-size: 0.9rem; }
}