html, body { height: 100%; margin: 0; padding: 0; font-family: 'Poppins', sans-serif;scroll-behavior: smooth; }
        body { background-color: #ffffff; color: #000000; overflow-x: hidden; display: flex; flex-direction: column; }
        .navbar-custom { background: linear-gradient(180deg, #e0e0e0 0%, #b8b8b8 45%, #9d9d9d 55%, #bcbcbc 100%); border-bottom: 5px solid #666666; padding: 0 20px; min-height: 60px; }
        .navbar-brand { font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: #1a1a1a !important; }
        .nav-link { font-weight: 600; color: #1a1a1a !important; transition: 0.3s; margin-left: 20px; }
        .nav-link:hover { color: #ffffff !important; }   
        .showcase-container { flex-grow: 1; padding: 40px 0; width: 100%; }
        .phone-container { position: relative; max-width: 290px; width: 100%; margin: 0 auto; }
        .phone-mockup { width: 100%; height: auto; filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.18)); display: block; }
        .phone-screen-content { position: absolute; top: 12px; left: 12px; right: 12px; bottom: 12px; border-radius: 33px; overflow: hidden; z-index: 5; background-color: #000; }
        .phone-video { width: 100%; height: 100%; object-fit: cover; }
        .feature-item { position: relative; margin-bottom: 3.5rem; }
        .feature-title { font-weight: 700; font-size: 1.85rem; letter-spacing: 0.5px; margin-bottom: 2px; text-transform: uppercase; }
        .feature-desc { font-size: 1rem; font-weight: 700; }
		.feature-desc-gray {
    color: gray;
    font-size: 12px;
    font-weight: 400;
}

.navbar-collapse.collapse.show {
    background-color: white;
	z-index:9999999999999
}

.navbar-collapse.collapse {
    background-color: linear-gradient(180deg, #e0e0e0 0%, #b8b8b8 45%, #9d9d9d 55%, #bcbcbc 100%);
	z-index:9999999999999
}

.feature-wrapper {
    position: relative;
    padding: 3px; /* Border kalınlığı */
    border-radius: 18px; /* Köşe yuvarlatma */
    background: linear-gradient(45deg, #ff7a00, #ff00ff, #00d4ff, #ff7a00);
    background-size: 400% 400%;
    animation: gradientBorder 3s ease infinite;
    height: 100%; /* Row içindeki diğer kutularla eşit boyda olması için */
}

/* İçerik kutusu - İçi beyaz kalacak */
.feature-box {
    display: flex;
    align-items: center;
    background: #ffffff; /* İçi temiz beyaz */
    padding: 15px;
    border-radius: 15px;
    height: 100%;
    transition: 0.3s;
}

/* Hover olduğunda kutunun hafif kalkması */
.feature-wrapper:hover {
    transform: translateY(-5px);
}

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

        /* Hareketli Border Efekti */
        .about-image-wrapper {
            position: relative;
            padding: 5px;
            border-radius: 25px;
            background: linear-gradient(45deg, #ff7a00, #000, #666, #ff7a00);
            background-size: 400% 400%;
            animation: gradientBorder 3s ease infinite;
            display: inline-block;
            width: 100%;
        }
        @keyframes gradientBorder {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        .about-image { width: 100%; border-radius: 20px; display: block; }

        .divider-custom { height: 8px; background: #666666; border: none; margin: 60px 0; opacity: 1; }
        .about-section { padding: 5px 0; }
		.test-et-section { padding: 5px 0; }

        /* Medya sorguları */
        @media (min-width: 992px) {
            .feature-left { text-align: right; padding-right: 120px; }
            .feature-right { text-align: left; padding-left: 120px; }
            .feature-left::after { content: ''; position: absolute; top: 25px; right: 15px; width: 90px; height: 4px; background: var(--line-color); }
            .feature-right::after { content: ''; position: absolute; top: 25px; left: 15px; width: 90px; height: 4px; background: var(--line-color); }
        }
        
        .brand-tybox { --line-color: #ff7a00; color: #ff7a00; }
        .brand-xtbox { --line-color: #000000; color: #000000; }
        .brand-igbox { --line-color: #e1306c; color: #e1306c; }
        .brand-swarmbox { --line-color: #fc4c02; color: #fc4c02; }
        .brand-ytbox { --line-color: #ff0000; color: #ff0000; }
        .brand-facebox { --line-color: #101d9a; color: #101d9a; }
        .brand-hitbox { --line-color: #2b84ff; color: #2b84ff; }
        .brand-wabox { --line-color: #25d366; color: #25d366; }
		
		.status-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 25px; /* Ekran kenarlarından içeride kalması için */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-size: 10px;
    font-weight: 600;
    z-index: 10;
    pointer-events: none; /* Videoya tıklamayı engellememesi için */
}

.status-bar .icons {
    display: flex;
    gap: 8px; /* WiFi ve Batarya arası boşluk */
}
.navigation-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgba(0, 0, 0, 0.5); /* Şeffaf siyah arka plan */
    color: white;
    font-size: 18px;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-btn {
    cursor: pointer;
    opacity: 0.8;
    transition: 0.3s;
}

.nav-btn:hover {
    opacity: 1;
}

/* Formun dış kapsayıcısı (border efekti burada dönecek) */
.neon-border-wrapper {
    position: relative;
    padding: 3px; /* Border kalınlığı */
    border-radius: 28px; /* Form ile uyumlu köşe */
    background: linear-gradient(45deg, #ff7a00, #ff00ff, #00d4ff, #ff7a00);
    background-size: 400% 400%;
    animation: gradientBorder 3s ease infinite;
}

/* Animasyon tanımı */
@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Formun kendisine uygulanacak stil */
.neon-form {
    border-radius: 25px !important;
    background: white; /* İçi beyaz kalsın */
    margin: 0;
    border: none !important; /* Dış wrapper border'ı üstlenecek */
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.pricing-card:hover {
    border-color: #000;
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.plan-name {
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.price small {
    font-size: 1rem;
    color: #666;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.features-list li {
    margin-bottom: 10px;
    font-weight: 600;
    color: #444;
}

.btn-purchase {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    transition: 0.3s;
}

.btn-purchase:hover {
    background: #ff7a00;
}
/* Neon Border Wrapper */
.neon-card-wrapper {
    position: relative;
    padding: 3px; /* Border kalınlığı */
    border-radius: 23px;
    background: linear-gradient(45deg, var(--border-color), #333, var(--border-color));
    background-size: 400% 400%;
    animation: gradientBorder 3s ease infinite;
    height: 100%;
}

.pricing-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
}

.plan-name { font-weight: 800; font-size: 1.5rem; text-transform: uppercase; margin-bottom: 10px; }
.price { font-size: 2.2rem; font-weight: 800; margin-bottom: 20px; }
.price small { font-size: 1rem; color: #777; }

.features-list { list-style: none; padding: 0; margin-bottom: 25px; }
.features-list li { margin-bottom: 8px; font-weight: 600; color: #444; }

.btn-purchase {
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    transition: 0.3s;
}
.btn-purchase:hover { filter: brightness(1.2); transform: scale(1.02); }

@keyframes gradientBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.feature-box {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid #e0e0e0;
}

.feature-box:hover {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}
.footer-custom {
    background-color: #0d0d0d;
    color: #888;
    padding: 0px 0 20px 0;
    margin-top: 50px;
}

.footer-custom h5 {
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-custom ul li {
    margin-bottom: 10px;
}

.footer-custom a {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.footer-custom a:hover {
    color: #ff7a00; /* Marka renginizle uyumlu olması için */
}

.social-icons a {
    display: inline-block;
    padding: 5px 10px;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 0.8rem;
}
.kaydir_divi {height:0px}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff; /* İsterseniz rengini değiştirebilirsiniz */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none; /* İlk başta gizli */
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: opacity 0.3s, transform 0.3s;
}

.back-to-top:hover {
    transform: scale(1.1);
    background-color: #0056b3;
}
@media (max-width: 991.98px) {
    /* Tüm feature kutularını mobilde ortala ve genişliğini sabitle */
    .feature-item {
        width: 100% !important;
        max-width: 320px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        float: none !important;
        text-align: center !important;
        border: 2px solid rgba(0, 0, 0, 0.15) !important;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 15px !important;
        background: #fff;
    }

    /* Sol/sağ özel konumlandırmaları mobilde sıfırla */
    .feature-left, .feature-right {
        text-align: center !important;
        align-items: center !important;
    }

    /* Marka renklerine göre border vurgusu */
    .brand-tybox { border-color: #ff7a00 !important; }
    .brand-xtbox { border-color: #000000 !important; }
    .brand-igbox { border-color: #e1306c !important; }
    .brand-swarmbox { border-color: #fc4c02 !important; }
    .brand-ytbox { border-color: #ff0000 !important; }
    .brand-facebox { border-color: #101d9a !important; }
    .brand-hitbox { border-color: #2b84ff !important; }
    .brand-wabox { border-color: #25d366 !important; }
}
/* --- 3D KÜP DÖNME HOVER EFEKTİ --- */
.feature-item {
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.feature-item:hover {
    transform: rotateX(10deg) rotateY(10deg) scale(1.05);
}

/* --- AÇILIR PENCERE (MODAL) STİLLERİ --- */
.box-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding-top: 50px;
}

.box-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.box-modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.box-modal-overlay.active .box-modal-content {
    transform: translateY(0);
}

.box-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.box-modal-close:hover {
    color: #ff0000;
}

.box-modal-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
}

.box-modal-body textarea {
    width: 100%;
    height: 150px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-family: 'Poppins', sans-serif;
    resize: vertical;
    margin-top: 10px;
}
/* Modal İçi Özel Mavi Scrollbar Tasarımı */
    .box-modal-body::-webkit-scrollbar {
        width: 8px;
    }
    .box-modal-body::-webkit-scrollbar-track {
        background: #f1f5f9;
        border-radius: 4px;
    }
    .box-modal-body::-webkit-scrollbar-thumb {
        background: #0284c7;
        border-radius: 4px;
    }
    .box-modal-body::-webkit-scrollbar-thumb:hover {
        background: #0369a1;
    }
    
    /* Modal İçi Metin Düzenlemeleri */
    .box-modal-body {
        max-height: 70vh;
        overflow-y: auto;
        padding-right: 10px;
        color: #334155;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .box-modal-body h4 {
        color: #0f172a;
        font-weight: 700;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-size: 1.15rem;
        border-left: 3px solid #0284c7;
        padding-left: 8px;
    }
    .box-modal-body h4:first-child {
        margin-top: 0;
    }
    .box-modal-body p {
        margin-bottom: 1rem;
        color: #475569;
    }
    .box-modal-body ul {
        padding-left: 1.2rem;
        margin-bottom: 1rem;
    }
    .box-modal-body li {
        margin-bottom: 0.5rem;
        color: #475569;
    }
    .box-modal-body strong {
        color: #1e293b;
    }

.detail-btn {
    background: #111111 !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    color: #ffffff !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    padding: 5px 12px !important;
    border-radius: 6px !important;
    margin-top: 10px !important;
    align-self: flex-start !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    z-index: 10 !important;
}

.detail-btn:hover {
    background: #ff7a00 !important;
    border-color: #ff7a00 !important;
    transform: translateY(-2px);
}

.feature-left .detail-btn {
    margin-left: auto;
}

@media (min-width: 992px) {
    .feature-left .detail-btn {
        margin-left: auto;
        margin-right: 0;
    }
    .feature-right .detail-btn {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 991px) {
    .feature-left,
    .feature-right {
        align-items: center !important;
        text-align: center;
    }
    
    .feature-left .detail-btn,
    .feature-right .detail-btn {
        margin-left: auto;
        margin-right: auto;
    }
}