
        /* GENEL SİYAH TEMA AYARLARI */
        body {
            background-color: #fff8f8;
            color: #a6030c;
            font-family: 'Inter', sans-serif;
            overflow-x: hidden;
            padding-top: 80px; 
        }

        /* HEADER (ÜST BAR) */
        header {
            background-color: #ffffff; 
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(166,3,12,0.05);
            transition: all 0.3s ease;
        }

        .site-logo img { max-height: 40px; object-fit: contain; }
        .site-logo-text { color: #a6030c; font-size: 24px; font-weight: 700; text-decoration: none; letter-spacing: 1px; }

        /* SAĞ ÜST AKSİYONLAR */
        .header-actions { display: flex; align-items: center; gap: 25px; }

        .search-btn {
            background: none; border: none; color: #a6030c;
            font-size: 22px; cursor: pointer; transition: color 0.3s ease, transform 0.3s ease;
        }
        .search-btn:hover { color: #785f62; transform: scale(1.1); }

        /* HAMBURGER MENÜ */
        .menu-btn {
            display: flex; flex-direction: column; gap: 6px; cursor: pointer;
            align-items: flex-end; width: 35px; z-index: 1050; 
        }
        .menu-btn span { background-color: #a6030c; height: 2px; transition: all 0.3s ease-in-out; }
        .menu-btn span:nth-child(1) { width: 60%; }
        .menu-btn span:nth-child(2) { width: 100%; }
        .menu-btn span:nth-child(3) { width: 60%; }

        .menu-btn.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); width: 100%; }
        .menu-btn.active span:nth-child(2) { opacity: 0; }
        .menu-btn.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); width: 100%; }

        /* AÇILIR YÜZEN YAN MENÜ */
        .side-menu {
            position: fixed; top: 20px; right: -500px; width: 420px; height: calc(100vh - 40px); 
            background-color: #fff8f8; border-radius: 20px; border: 1px solid rgba(166,3,12,0.05);
            z-index: 1040; transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1), transform 0.5s ease;
            transform: scale(0.95); display: flex; flex-direction: column; padding: 40px;
            overflow-y: auto; box-shadow: -15px 15px 40px rgba(0,0,0,0.8); 
        }
        .side-menu.open { right: 20px; transform: scale(1); }

        .menu-header-area { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid rgba(166,3,12,0.05); }
        .menu-inner-logo img { max-height: 35px; object-fit: contain; }
        .menu-inner-logo-text { color: #a6030c; font-size: 20px; font-weight: 700; text-decoration: none; }

        .menu-close-x { background: none; border: none; color: #a6030c; font-size: 28px; cursor: pointer; transition: transform 0.3s ease, color 0.3s; }
        .menu-close-x:hover { transform: rotate(90deg); color: #ff4d4d; }

        .menu-list { list-style: none; padding: 0; margin: 0; flex-grow: 1; }
        .menu-item { border-bottom: 1px solid rgba(166,3,12,0.03); }
        .menu-link-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
        .menu-link { color: #a6030c; text-decoration: none; font-size: 28px; font-weight: 700; transition: color 0.3s, transform 0.3s; display: inline-block; }
        .menu-link:hover { color: #785f62; transform: translateX(10px); }

        .menu-item-basvuru { margin-top: 30px; border-bottom: none; }
        .menu-link-basvuru {
            display: flex; align-items: center; justify-content: space-between;
            color: #a6030c; text-decoration: none; font-size: 24px; font-weight: 700;
            padding: 15px 25px; border: 2px solid rgba(166,3,12, 0.7); border-radius: 12px;
            transition: all 0.3s ease; background-color: transparent;
        }
        .menu-link-basvuru:hover { border-color: #a6030c; background-color: rgba(166,3,12, 0.1); color: #a6030c; transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }

        .toggle-icon { color: #a6030c; font-size: 28px; font-weight: 300; cursor: pointer; transition: transform 0.3s ease, color 0.3s; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
        .toggle-icon.open { transform: rotate(45deg); color: #785f62; }

        .submenu { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
        .submenu.open { max-height: 500px; }
        .submenu ul { list-style: none; padding: 0 0 15px 20px; margin: 0; }
        .submenu a { color: #785f62; text-decoration: none; display: block; padding: 10px 0; font-size: 17px; transition: color 0.3s, padding-left 0.3s; }
        .submenu a:hover { color: #a6030c; padding-left: 8px; }

        .mobile-close-btn { display: none; text-align: center; color: #785f62; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; padding: 20px; margin-top: auto; transition: color 0.3s; }
        .mobile-close-btn:hover { color: #a6030c; }

        @media (max-width: 768px) {
            .side-menu { top: 0; right: -100%; width: 100%; height: 100vh; border-radius: 0; padding: 30px 20px; }
            .side-menu.open { right: 0; }
            .mobile-close-btn { display: block; }
        }

        .menu-overlay { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); z-index: 1030; opacity: 0; visibility: hidden; transition: opacity 0.4s ease; }
        .menu-overlay.show { opacity: 1; visibility: visible; }

        /* ARAMA (SEARCH) MODAL EKRANI */
        .search-modal {
            position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
            background-color: rgba(255,255,255, 0.98); z-index: 1100;
            display: flex; flex-direction: column; justify-content: center;
            padding: 0 5%; opacity: 0; visibility: hidden; transition: opacity 0.4s ease;
        }
        .search-modal.active { opacity: 1; visibility: visible; }

        .search-modal-close {
            position: absolute; top: 30px; right: 5%; background: none; border: none; color: #a6030c;
            font-size: 40px; cursor: pointer; transition: transform 0.3s;
        }
        .search-modal-close:hover { transform: rotate(90deg); color: #ff4d4d; }

        .search-input-wrapper {
            position: relative; max-width: 900px; width: 100%; margin: 0 auto;
            border-bottom: 2px solid #555; display: flex; align-items: center; padding-bottom: 10px;
        }

        .search-input-wrapper input {
            background: transparent; border: none; color: #a6030c; font-size: 4rem; font-weight: 700;
            width: 100%; outline: none; font-family: 'Inter', sans-serif; padding-right: 80px; 
        }
        .search-input-wrapper input::placeholder { color: #e9c9cd; }

        .search-submit-btn {
            position: absolute; right: 0; bottom: 15px; background: none; border: none;
            color: #a6030c; font-size: 3rem; cursor: pointer; transition: transform 0.3s ease, color 0.3s ease;
        }
        .search-submit-btn:hover { color: #785f62; transform: scale(1.1); }
        
        @media (max-width: 768px) {
            .search-input-wrapper input { font-size: 2.5rem; padding-right: 50px; }
            .search-submit-btn { font-size: 2rem; bottom: 10px;}
        }
    

    /* FOOTER GENEL YAPISI */
    .site-footer {
        background-color: #ffffff; 
        color: #a6030c;
        padding: 80px 5% 30px 5%;
        border-top: 1px solid rgba(166,3,12,0.05);
        font-family: 'Inter', sans-serif;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important; /* Yatay taşmaları ve ekranın uzaklaşmasını KESİNLİKLE engeller */
        box-sizing: border-box !important;
    }

    /* Üst İletişim Metinleri */
    .footer-top-text {
        font-size: 1.1rem;
        color: #785f62;
        margin-bottom: 10px;
    }
    
    .footer-contact-link {
        font-size: 2.8rem; 
        color: #a6030c;
        text-decoration: underline;
        text-decoration-thickness: 3px;
        text-underline-offset: 10px;
        font-weight: 700;
        transition: color 0.3s ease;
        word-break: break-all;
    }
    
    .footer-contact-link:hover {
        color: #785f62;
    }

    /* DEVASA "TANIŞALIM" YAZISI */
    .footer-huge-text {
        font-size: 11vw;
        font-weight: 900;
        line-height: 1;
        margin: 0;
        text-transform: uppercase;
        color: #a6030c;
        text-align: right;
        letter-spacing: -2px;
    }

    /* Alt Logo */
    .footer-logo img {
        max-height: 70px;
        object-fit: contain;
    }
    .footer-logo-text {
        font-size: 36px;
        font-weight: 800;
        color: #a6030c;
        text-decoration: none;
    }

    /* İnce Ayrım Çizgisi */
    .footer-divider {
        border-color: rgba(166,3,12,0.1);
        margin: 60px 0 40px 0;
    }

    /* YUVARLAK SOSYAL MEDYA BUTONLARI */
    .social-pill {
        display: inline-block;
        padding: 10px 25px;
        border: 1px solid rgba(166,3,12,0.2);
        border-radius: 50px;
        color: #a6030c;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 600;
        transition: all 0.3s ease;
        margin: 5px;
    }

    .social-pill:hover {
        background-color: #a6030c;
        color: #ffffff;
        border-color: #a6030c;
        transform: translateY(-3px);
    }

    /* En Alt Bilgi Yazıları */
    .footer-bottom-text {
        font-size: 1rem;
        color: #785f62;
    }

    /* MOBİL (TELEFON) GÖRÜNÜM AYARLARI */
    @media (max-width: 768px) {
        .site-footer {
            text-align: center;
            /* Mobil için sağ ve sol boşlukları 5 piksele sabitledik */
            padding-left: 5px !important; 
            padding-right: 5px !important;
            padding-top: 60px !important;
        }

        /* Bootstrap satır boşluklarını (Gutter) eziyoruz */
        .site-footer .row {
            margin-left: 0 !important;
            margin-right: 0 !important;
            padding-left: 0 !important;
            padding-right: 0 !important;
            width: 100% !important;
        }
        
        .site-footer .col-md-6 {
            padding-left: 0 !important;
            padding-right: 0 !important;
            margin-bottom: 35px !important;
            width: 100% !important;
        }

        .footer-contact-link {
            /* Yazı boyutu tam ekrana uyacak, taşma yapmayacak şekilde sınırlandı */
            font-size: min(7.5vw, 1.8rem) !important; 
            white-space: nowrap !important; 
            word-break: normal !important; 
            width: 100% !important;
            display: inline-block !important;
            letter-spacing: -0.5px; /* Uzun maillerin sığmasına yardımcı olur */
        }

        .footer-huge-text {
            font-size: 13.5vw !important; 
            margin: 40px auto 0 auto !important;
            text-align: center !important; 
            width: 100% !important;
            display: block !important;
        }

        .footer-middle-row {
            flex-direction: column;
            align-items: center !important; 
            justify-content: center !important;
            width: 100% !important;
        }

        .footer-bottom-row {
            flex-direction: column;
            gap: 25px;
            text-align: center;
        }

        .social-pill-container {
            justify-content: center;
        }
    }


.site-logo img,.menu-header-area img,.footer-logo img{filter:brightness(0) saturate(100%) invert(12%) sepia(87%) saturate(4394%) hue-rotate(345deg) brightness(87%) contrast(114%)}
.btn-instagram-gradient{background:#a6030c!important;color:#fff!important}.text-white{color:#a6030c!important}.custom-cursor{mix-blend-mode:normal}.prof-card{position:relative}.module-caption{position:absolute;inset:auto 0 0;padding:65px 24px 25px;background:linear-gradient(transparent,rgba(46,0,5,.95));color:#fff}.module-caption strong{display:block;font-size:25px;line-height:1.2}.module-caption span{display:block;margin-top:12px;font-size:13px}.package-art{background:#fff1f2;padding:28px;display:flex;flex-direction:column;justify-content:space-between;color:#a6030c;border:1px solid #ecd2d5}.package-tag{font-size:11px;letter-spacing:2px;font-weight:700}.package-art h3{font-size:32px;font-weight:700}.package-art ul{padding-left:18px;font-size:15px;line-height:1.8;color:#66434a}.package-art>strong{font-size:15px}.desktop-srv-card:nth-of-type(2) .package-art{background:#a6030c;color:#fff}.desktop-srv-card:nth-of-type(2) .package-art ul{color:#fff}.nav-card-label{white-space:pre-line}a:focus-visible,button:focus-visible{outline:3px solid #a6030c;outline-offset:4px}@media(prefers-reduced-motion:reduce){.slider-track{animation:none!important}}
body{padding-top:80px;background:#fff;color:#341116}.detail-content{background:#fff;min-height:55vh}.site-footer{margin-top:40px}.side-menu:not(.open){visibility:hidden}.side-menu.open{visibility:visible}